annotate src/share/vm/ci/ciObjectFactory.cpp @ 3762:5c0a3c1858b1

7048782: CMS: assert(last_chunk_index_to_check<= last_chunk_index) failed: parCardTableModRefBS.cpp:359 Summary: The LNC array is sized before the start of a scavenge, while the heap may expand during a scavenge. With CMS, the last block of an arbitrary suffice of the LNC array may expand due to coalition with the expansion delta. We now take care not to attempt access past the end of the LNC array. LNC array code will be cleaned up and suitably encapsulated as part of the forthcoming performance RFE 7043675. Reviewed-by: brutisso
author ysr
date Thu, 02 Jun 2011 10:23:36 -0700
parents c7f3d0b4570f
children 0654ee04b214 5eb9169b1a14
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2357
8033953d67ff 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 2177
diff changeset
2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
26 #include "ci/ciCPCache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
27 #include "ci/ciCallSite.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
28 #include "ci/ciInstance.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
29 #include "ci/ciInstanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
30 #include "ci/ciInstanceKlassKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
31 #include "ci/ciMethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
32 #include "ci/ciMethodData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
33 #include "ci/ciMethodHandle.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
34 #include "ci/ciMethodKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
35 #include "ci/ciNullObject.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
36 #include "ci/ciObjArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
37 #include "ci/ciObjArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
38 #include "ci/ciObjArrayKlassKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
39 #include "ci/ciObjectFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
40 #include "ci/ciSymbol.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
41 #include "ci/ciTypeArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
42 #include "ci/ciTypeArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
43 #include "ci/ciTypeArrayKlassKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
44 #include "ci/ciUtilities.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
45 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
46 #include "gc_interface/collectedHeap.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
47 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
48 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
49 #include "oops/oop.inline2.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
50 #include "runtime/fieldType.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // ciObjectFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
53 //
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // This class handles requests for the creation of new instances
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // of ciObject and its subclasses. It contains a caching mechanism
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // which ensures that for each oop, at most one ciObject is created.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // This invariant allows more efficient implementation of ciObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 //
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Implementation note: the oop->ciObject mapping is represented as
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // a table stored in an array. Even though objects are moved
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // by the garbage collector, the compactor preserves their relative
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // order; address comparison of oops (in perm space) is safe so long
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // as we prohibit GC during our comparisons. We currently use binary
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // search to find the oop in the table, and inserting a new oop
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // into the table may be costly. If this cost ends up being
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // problematic the underlying data structure can be switched to some
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // sort of balanced binary tree.
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 GrowableArray<ciObject*>* ciObjectFactory::_shared_ci_objects = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ciSymbol* ciObjectFactory::_shared_ci_symbols[vmSymbols::SID_LIMIT];
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int ciObjectFactory::_shared_ident_limit = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 volatile bool ciObjectFactory::_initialized = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // ciObjectFactory::ciObjectFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ciObjectFactory::ciObjectFactory(Arena* arena,
a61af66fc99e Initial load
duke
parents:
diff changeset
78 int expected_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 for (int i = 0; i < NON_PERM_BUCKETS; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _non_perm_bucket[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _non_perm_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 _next_ident = _shared_ident_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 _arena = arena;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _ci_objects = new (arena) GrowableArray<ciObject*>(arena, expected_size, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // If the shared ci objects exist append them to this factory's objects
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 if (_shared_ci_objects != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 _ci_objects->appendAll(_shared_ci_objects);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _unloaded_methods = new (arena) GrowableArray<ciMethod*>(arena, 4, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _unloaded_klasses = new (arena) GrowableArray<ciKlass*>(arena, 8, 0, NULL);
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
97 _unloaded_instances = new (arena) GrowableArray<ciInstance*>(arena, 4, 0, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98 _return_addresses =
a61af66fc99e Initial load
duke
parents:
diff changeset
99 new (arena) GrowableArray<ciReturnAddress*>(arena, 8, 0, NULL);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
100
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
101 _symbols = new (arena) GrowableArray<ciSymbol*>(arena, 100, 0, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // ciObjectFactory::ciObjectFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void ciObjectFactory::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 HandleMark handle_mark(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // This Arena is long lived and exists in the resource mark of the
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // compiler thread that initializes the initial ciObjectFactory which
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // creates the shared ciObjects that all later ciObjectFactories use.
a61af66fc99e Initial load
duke
parents:
diff changeset
114 Arena* arena = new Arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
115 ciEnv initial(arena);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 ciEnv* env = ciEnv::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 env->_factory->init_shared_objects();
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 _initialized = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 void ciObjectFactory::init_shared_objects() {
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 _next_ident = 1; // start numbering CI objects at 1
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // Create the shared symbols, but not in _shared_ci_objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 for (i = vmSymbols::FIRST_SID; i < vmSymbols::SID_LIMIT; i++) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
131 Symbol* vmsym = vmSymbols::symbol_at((vmSymbols::SID) i);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
132 assert(vmSymbols::find_sid(vmsym) == i, "1-1 mapping");
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
133 ciSymbol* sym = new (_arena) ciSymbol(vmsym, (vmSymbols::SID) i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
134 init_ident_of(sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 _shared_ci_symbols[i] = sym;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
138 for (i = vmSymbols::FIRST_SID; i < vmSymbols::SID_LIMIT; i++) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
139 Symbol* vmsym = vmSymbols::symbol_at((vmSymbols::SID) i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 ciSymbol* sym = vm_symbol_at((vmSymbols::SID) i);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
141 assert(sym->get_symbol() == vmsym, "oop must match");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
143 assert(ciSymbol::void_class_signature()->get_symbol() == vmSymbols::void_class_signature(), "spot check");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 _ci_objects = new (_arena) GrowableArray<ciObject*>(_arena, 64, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 BasicType t = (BasicType)i;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
151 if (type2name(t) != NULL && t != T_OBJECT && t != T_ARRAY && t != T_NARROWOOP) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 ciType::_basic_types[t] = new (_arena) ciType(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 init_ident_of(ciType::_basic_types[t]);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 ciEnv::_null_object_instance = new (_arena) ciNullObject();
a61af66fc99e Initial load
duke
parents:
diff changeset
158 init_ident_of(ciEnv::_null_object_instance);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 ciEnv::_method_klass_instance =
a61af66fc99e Initial load
duke
parents:
diff changeset
160 get(Universe::methodKlassObj())->as_method_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
161 ciEnv::_klass_klass_instance =
a61af66fc99e Initial load
duke
parents:
diff changeset
162 get(Universe::klassKlassObj())->as_klass_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
163 ciEnv::_instance_klass_klass_instance =
a61af66fc99e Initial load
duke
parents:
diff changeset
164 get(Universe::instanceKlassKlassObj())
a61af66fc99e Initial load
duke
parents:
diff changeset
165 ->as_instance_klass_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
166 ciEnv::_type_array_klass_klass_instance =
a61af66fc99e Initial load
duke
parents:
diff changeset
167 get(Universe::typeArrayKlassKlassObj())
a61af66fc99e Initial load
duke
parents:
diff changeset
168 ->as_type_array_klass_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 ciEnv::_obj_array_klass_klass_instance =
a61af66fc99e Initial load
duke
parents:
diff changeset
170 get(Universe::objArrayKlassKlassObj())
a61af66fc99e Initial load
duke
parents:
diff changeset
171 ->as_obj_array_klass_klass();
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
172
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
173 #define WK_KLASS_DEFN(name, ignore_s, opt) \
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
174 if (SystemDictionary::name() != NULL) \
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
175 ciEnv::_##name = get(SystemDictionary::name())->as_instance_klass();
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
176
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
177 WK_KLASSES_DO(WK_KLASS_DEFN)
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
178 #undef WK_KLASS_DEFN
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 for (int len = -1; len != _ci_objects->length(); ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 len = _ci_objects->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
182 for (int i2 = 0; i2 < len; i2++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 ciObject* obj = _ci_objects->at(i2);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 if (obj->is_loaded() && obj->is_instance_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 obj->as_instance_klass()->compute_nonstatic_fields();
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
190 ciEnv::_unloaded_cisymbol = ciObjectFactory::get_symbol(vmSymbols::dummy_symbol());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Create dummy instanceKlass and objArrayKlass object and assign them idents
a61af66fc99e Initial load
duke
parents:
diff changeset
192 ciEnv::_unloaded_ciinstance_klass = new (_arena) ciInstanceKlass(ciEnv::_unloaded_cisymbol, NULL, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 init_ident_of(ciEnv::_unloaded_ciinstance_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 ciEnv::_unloaded_ciobjarrayklass = new (_arena) ciObjArrayKlass(ciEnv::_unloaded_cisymbol, ciEnv::_unloaded_ciinstance_klass, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 init_ident_of(ciEnv::_unloaded_ciobjarrayklass);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 assert(ciEnv::_unloaded_ciobjarrayklass->is_obj_array_klass(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 get(Universe::boolArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
199 get(Universe::charArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
200 get(Universe::singleArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
201 get(Universe::doubleArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
202 get(Universe::byteArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
203 get(Universe::shortArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
204 get(Universe::intArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
205 get(Universe::longArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 assert(_non_perm_count == 0, "no shared non-perm objects");
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // The shared_ident_limit is the first ident number that will
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // be used for non-shared objects. That is, numbers less than
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // this limit are permanently assigned to shared CI objects,
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // while the higher numbers are recycled afresh by each new ciEnv.
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 _shared_ident_limit = _next_ident;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 _shared_ci_objects = _ci_objects;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
220
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
221 ciSymbol* ciObjectFactory::get_symbol(Symbol* key) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
222 vmSymbols::SID sid = vmSymbols::find_sid(key);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
223 if (sid != vmSymbols::NO_SID) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
224 // do not pollute the main cache with it
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
225 return vm_symbol_at(sid);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
226 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
227
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
228 assert(vmSymbols::find_sid(key) == vmSymbols::NO_SID, "");
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
229 ciSymbol* s = new (arena()) ciSymbol(key, vmSymbols::NO_SID);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
230 _symbols->push(s);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
231 return s;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
232 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
233
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
234 // Decrement the refcount when done on symbols referenced by this compilation.
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
235 void ciObjectFactory::remove_symbols() {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
236 for (int i = 0; i < _symbols->length(); i++) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
237 ciSymbol* s = _symbols->at(i);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
238 s->get_symbol()->decrement_refcount();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
239 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
240 // Since _symbols is resource allocated we're not allowed to delete it
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
241 // but it'll go away just the same.
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
242 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
243
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // ciObjectFactory::get
a61af66fc99e Initial load
duke
parents:
diff changeset
246 //
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // Get the ciObject corresponding to some oop. If the ciObject has
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // already been created, it is returned. Otherwise, a new ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // is created.
a61af66fc99e Initial load
duke
parents:
diff changeset
250 ciObject* ciObjectFactory::get(oop key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 #ifdef ASSERT
909
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
254 if (CIObjectFactoryVerify) {
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
255 oop last = NULL;
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
256 for (int j = 0; j< _ci_objects->length(); j++) {
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
257 oop o = _ci_objects->at(j)->get_oop();
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
258 assert(last < o, "out of order");
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
259 last = o;
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
260 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
263 int len = _ci_objects->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
264 int index = find(key, _ci_objects);
a61af66fc99e Initial load
duke
parents:
diff changeset
265 #ifdef ASSERT
909
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
266 if (CIObjectFactoryVerify) {
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
267 for (int i=0; i<_ci_objects->length(); i++) {
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
268 if (_ci_objects->at(i)->get_oop() == key) {
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
269 assert(index == i, " bad lookup");
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
270 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
273 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if (!is_found_at(index, key, _ci_objects)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Check in the non-perm area before putting it in the list.
a61af66fc99e Initial load
duke
parents:
diff changeset
276 NonPermObject* &bucket = find_non_perm(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 if (bucket != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 return bucket->object();
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // The ciObject does not yet exist. Create it and insert it
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // into the cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
283 Handle keyHandle(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 ciObject* new_object = create_new_object(keyHandle());
a61af66fc99e Initial load
duke
parents:
diff changeset
285 assert(keyHandle() == new_object->get_oop(), "must be properly recorded");
a61af66fc99e Initial load
duke
parents:
diff changeset
286 init_ident_of(new_object);
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 909
diff changeset
287 if (!new_object->is_perm()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Not a perm-space object.
a61af66fc99e Initial load
duke
parents:
diff changeset
289 insert_non_perm(bucket, keyHandle(), new_object);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 return new_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 if (len != _ci_objects->length()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // creating the new object has recursively entered new objects
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // into the table. We need to recompute our index.
a61af66fc99e Initial load
duke
parents:
diff changeset
295 index = find(keyHandle(), _ci_objects);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297 assert(!is_found_at(index, keyHandle(), _ci_objects), "no double insert");
a61af66fc99e Initial load
duke
parents:
diff changeset
298 insert(index, new_object, _ci_objects);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 return new_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 return _ci_objects->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // ciObjectFactory::create_new_object
a61af66fc99e Initial load
duke
parents:
diff changeset
306 //
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // Create a new ciObject from an oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
308 //
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // Implementation note: this functionality could be virtual behavior
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // of the oop itself. For now, we explicitly marshal the object.
a61af66fc99e Initial load
duke
parents:
diff changeset
311 ciObject* ciObjectFactory::create_new_object(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
313
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
314 if (o->is_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
315 KlassHandle h_k(THREAD, (klassOop)o);
a61af66fc99e Initial load
duke
parents:
diff changeset
316 Klass* k = ((klassOop)o)->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
317 if (k->oop_is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 return new (arena()) ciInstanceKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 } else if (k->oop_is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 return new (arena()) ciObjArrayKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 } else if (k->oop_is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 return new (arena()) ciTypeArrayKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
323 } else if (k->oop_is_method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 return new (arena()) ciMethodKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 } else if (k->oop_is_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
326 if (k->oop_is_objArrayKlass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 return new (arena()) ciObjArrayKlassKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 } else if (k->oop_is_typeArrayKlass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 return new (arena()) ciTypeArrayKlassKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 } else if (k->oop_is_instanceKlass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 return new (arena()) ciInstanceKlassKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 assert(o == Universe::klassKlassObj(), "bad klassKlass");
a61af66fc99e Initial load
duke
parents:
diff changeset
334 return new (arena()) ciKlassKlass(h_k);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 } else if (o->is_method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 methodHandle h_m(THREAD, (methodOop)o);
a61af66fc99e Initial load
duke
parents:
diff changeset
339 return new (arena()) ciMethod(h_m);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 } else if (o->is_methodData()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 methodDataHandle h_md(THREAD, (methodDataOop)o);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 return new (arena()) ciMethodData(h_md);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 } else if (o->is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 instanceHandle h_i(THREAD, (instanceOop)o);
2357
8033953d67ff 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 2177
diff changeset
345 if (java_lang_invoke_CallSite::is_instance(o))
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
346 return new (arena()) ciCallSite(h_i);
2357
8033953d67ff 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 2177
diff changeset
347 else if (java_lang_invoke_MethodHandle::is_instance(o))
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
348 return new (arena()) ciMethodHandle(h_i);
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
349 else
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
350 return new (arena()) ciInstance(h_i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
351 } else if (o->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 objArrayHandle h_oa(THREAD, (objArrayOop)o);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 return new (arena()) ciObjArray(h_oa);
a61af66fc99e Initial load
duke
parents:
diff changeset
354 } else if (o->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 typeArrayHandle h_ta(THREAD, (typeArrayOop)o);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 return new (arena()) ciTypeArray(h_ta);
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1080
diff changeset
357 } else if (o->is_constantPoolCache()) {
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1080
diff changeset
358 constantPoolCacheHandle h_cpc(THREAD, (constantPoolCacheOop) o);
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1080
diff changeset
359 return new (arena()) ciCPCache(h_cpc);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
361
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // The oop is of some type not supported by the compiler interface.
a61af66fc99e Initial load
duke
parents:
diff changeset
363 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
364 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // ciObjectFactory::get_unloaded_method
a61af66fc99e Initial load
duke
parents:
diff changeset
369 //
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // Get the ciMethod representing an unloaded/unfound method.
a61af66fc99e Initial load
duke
parents:
diff changeset
371 //
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // Implementation note: unloaded methods are currently stored in
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // an unordered array, requiring a linear-time lookup for each
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // unloaded method. This may need to change.
a61af66fc99e Initial load
duke
parents:
diff changeset
375 ciMethod* ciObjectFactory::get_unloaded_method(ciInstanceKlass* holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
376 ciSymbol* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
377 ciSymbol* signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 for (int i=0; i<_unloaded_methods->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 ciMethod* entry = _unloaded_methods->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 if (entry->holder()->equals(holder) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
381 entry->name()->equals(name) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
382 entry->signature()->as_symbol()->equals(signature)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // We've found a match.
a61af66fc99e Initial load
duke
parents:
diff changeset
384 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
387
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // This is a new unloaded method. Create it and stick it in
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // the cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
390 ciMethod* new_method = new (arena()) ciMethod(holder, name, signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 init_ident_of(new_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
393 _unloaded_methods->append(new_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 return new_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
396 }
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // ciObjectFactory::get_unloaded_klass
a61af66fc99e Initial load
duke
parents:
diff changeset
400 //
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // Get a ciKlass representing an unloaded klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
402 //
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // Implementation note: unloaded klasses are currently stored in
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // an unordered array, requiring a linear-time lookup for each
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // unloaded klass. This may need to change.
a61af66fc99e Initial load
duke
parents:
diff changeset
406 ciKlass* ciObjectFactory::get_unloaded_klass(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
407 ciSymbol* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
408 bool create_if_not_found) {
a61af66fc99e Initial load
duke
parents:
diff changeset
409 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 oop loader = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
411 oop domain = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 if (accessing_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 loader = accessing_klass->loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
414 domain = accessing_klass->protection_domain();
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416 for (int i=0; i<_unloaded_klasses->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 ciKlass* entry = _unloaded_klasses->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
418 if (entry->name()->equals(name) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
419 entry->loader() == loader &&
a61af66fc99e Initial load
duke
parents:
diff changeset
420 entry->protection_domain() == domain) {
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // We've found a match.
a61af66fc99e Initial load
duke
parents:
diff changeset
422 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 if (!create_if_not_found)
a61af66fc99e Initial load
duke
parents:
diff changeset
427 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // This is a new unloaded klass. Create it and stick it in
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // the cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
431 ciKlass* new_klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // Two cases: this is an unloaded objArrayKlass or an
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // unloaded instanceKlass. Deal with both.
a61af66fc99e Initial load
duke
parents:
diff changeset
435 if (name->byte_at(0) == '[') {
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // Decompose the name.'
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
437 FieldArrayInfo fd;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
438 BasicType element_type = FieldType::get_array_info(name->get_symbol(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
439 fd, THREAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
440 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
441 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 CURRENT_THREAD_ENV->record_out_of_memory_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
443 return ciEnv::_unloaded_ciobjarrayklass;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
445 int dimension = fd.dimension();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
446 assert(element_type != T_ARRAY, "unsuccessful decomposition");
a61af66fc99e Initial load
duke
parents:
diff changeset
447 ciKlass* element_klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
448 if (element_type == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
449 ciEnv *env = CURRENT_THREAD_ENV;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
450 ciSymbol* ci_name = env->get_symbol(fd.object_key());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
451 element_klass =
a61af66fc99e Initial load
duke
parents:
diff changeset
452 env->get_klass_by_name(accessing_klass, ci_name, false)->as_instance_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
453 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
454 assert(dimension > 1, "one dimensional type arrays are always loaded.");
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // The type array itself takes care of one of the dimensions.
a61af66fc99e Initial load
duke
parents:
diff changeset
457 dimension--;
a61af66fc99e Initial load
duke
parents:
diff changeset
458
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // The element klass is a typeArrayKlass.
a61af66fc99e Initial load
duke
parents:
diff changeset
460 element_klass = ciTypeArrayKlass::make(element_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 new_klass = new (arena()) ciObjArrayKlass(name, element_klass, dimension);
a61af66fc99e Initial load
duke
parents:
diff changeset
463 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 jobject loader_handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 jobject domain_handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 if (accessing_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 loader_handle = accessing_klass->loader_handle();
a61af66fc99e Initial load
duke
parents:
diff changeset
468 domain_handle = accessing_klass->protection_domain_handle();
a61af66fc99e Initial load
duke
parents:
diff changeset
469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
470 new_klass = new (arena()) ciInstanceKlass(name, loader_handle, domain_handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
472 init_ident_of(new_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
473 _unloaded_klasses->append(new_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 return new_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
477
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
478
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
479 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
480 // ciObjectFactory::get_unloaded_instance
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
481 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
482 // Get a ciInstance representing an as-yet undetermined instance of a given class.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
483 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
484 ciInstance* ciObjectFactory::get_unloaded_instance(ciInstanceKlass* instance_klass) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
485 for (int i=0; i<_unloaded_instances->length(); i++) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
486 ciInstance* entry = _unloaded_instances->at(i);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
487 if (entry->klass()->equals(instance_klass)) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
488 // We've found a match.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
489 return entry;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
490 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
491 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
492
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
493 // This is a new unloaded instance. Create it and stick it in
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
494 // the cache.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
495 ciInstance* new_instance = new (arena()) ciInstance(instance_klass);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
496
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
497 init_ident_of(new_instance);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
498 _unloaded_instances->append(new_instance);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
499
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
500 // make sure it looks the way we want:
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
501 assert(!new_instance->is_loaded(), "");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
502 assert(new_instance->klass() == instance_klass, "");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
503
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
504 return new_instance;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
505 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
506
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
507
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
508 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
509 // ciObjectFactory::get_unloaded_klass_mirror
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
510 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
511 // Get a ciInstance representing an unresolved klass mirror.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
512 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
513 // Currently, this ignores the parameters and returns a unique unloaded instance.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
514 ciInstance* ciObjectFactory::get_unloaded_klass_mirror(ciKlass* type) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
515 assert(ciEnv::_Class_klass != NULL, "");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
516 return get_unloaded_instance(ciEnv::_Class_klass->as_instance_klass());
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
517 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
518
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
519 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
520 // ciObjectFactory::get_unloaded_method_handle_constant
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
521 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
522 // Get a ciInstance representing an unresolved method handle constant.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
523 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
524 // Currently, this ignores the parameters and returns a unique unloaded instance.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
525 ciInstance* ciObjectFactory::get_unloaded_method_handle_constant(ciKlass* holder,
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
526 ciSymbol* name,
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
527 ciSymbol* signature,
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
528 int ref_kind) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
529 if (ciEnv::_MethodHandle_klass == NULL) return NULL;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
530 return get_unloaded_instance(ciEnv::_MethodHandle_klass->as_instance_klass());
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
531 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
532
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
533 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
534 // ciObjectFactory::get_unloaded_method_type_constant
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
535 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
536 // Get a ciInstance representing an unresolved method type constant.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
537 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
538 // Currently, this ignores the parameters and returns a unique unloaded instance.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
539 ciInstance* ciObjectFactory::get_unloaded_method_type_constant(ciSymbol* signature) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
540 if (ciEnv::_MethodType_klass == NULL) return NULL;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
541 return get_unloaded_instance(ciEnv::_MethodType_klass->as_instance_klass());
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
542 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
543
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
544
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
545
0
a61af66fc99e Initial load
duke
parents:
diff changeset
546 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // ciObjectFactory::get_empty_methodData
a61af66fc99e Initial load
duke
parents:
diff changeset
548 //
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // Get the ciMethodData representing the methodData for a method with
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // none.
a61af66fc99e Initial load
duke
parents:
diff changeset
551 ciMethodData* ciObjectFactory::get_empty_methodData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 ciMethodData* new_methodData = new (arena()) ciMethodData();
a61af66fc99e Initial load
duke
parents:
diff changeset
553 init_ident_of(new_methodData);
a61af66fc99e Initial load
duke
parents:
diff changeset
554 return new_methodData;
a61af66fc99e Initial load
duke
parents:
diff changeset
555 }
a61af66fc99e Initial load
duke
parents:
diff changeset
556
a61af66fc99e Initial load
duke
parents:
diff changeset
557 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
558 // ciObjectFactory::get_return_address
a61af66fc99e Initial load
duke
parents:
diff changeset
559 //
a61af66fc99e Initial load
duke
parents:
diff changeset
560 // Get a ciReturnAddress for a specified bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
561 ciReturnAddress* ciObjectFactory::get_return_address(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
562 for (int i=0; i<_return_addresses->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 ciReturnAddress* entry = _return_addresses->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
564 if (entry->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
565 // We've found a match.
a61af66fc99e Initial load
duke
parents:
diff changeset
566 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 ciReturnAddress* new_ret_addr = new (arena()) ciReturnAddress(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
571 init_ident_of(new_ret_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
572 _return_addresses->append(new_ret_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
573 return new_ret_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
575
a61af66fc99e Initial load
duke
parents:
diff changeset
576 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
577 // ciObjectFactory::init_ident_of
a61af66fc99e Initial load
duke
parents:
diff changeset
578 void ciObjectFactory::init_ident_of(ciObject* obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 obj->set_ident(_next_ident++);
a61af66fc99e Initial load
duke
parents:
diff changeset
580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
581
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
582 void ciObjectFactory::init_ident_of(ciSymbol* obj) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
583 obj->set_ident(_next_ident++);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
584 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
585
0
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
588 // ciObjectFactory::find
a61af66fc99e Initial load
duke
parents:
diff changeset
589 //
a61af66fc99e Initial load
duke
parents:
diff changeset
590 // Use binary search to find the position of this oop in the cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
591 // If there is no entry in the cache corresponding to this oop, return
a61af66fc99e Initial load
duke
parents:
diff changeset
592 // the position at which the oop should be inserted.
a61af66fc99e Initial load
duke
parents:
diff changeset
593 int ciObjectFactory::find(oop key, GrowableArray<ciObject*>* objects) {
a61af66fc99e Initial load
duke
parents:
diff changeset
594 int min = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
595 int max = objects->length()-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
596
a61af66fc99e Initial load
duke
parents:
diff changeset
597 // print_contents();
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 while (max >= min) {
a61af66fc99e Initial load
duke
parents:
diff changeset
600 int mid = (max + min) / 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
601 oop value = objects->at(mid)->get_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
602 if (value < key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 min = mid + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 } else if (value > key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
605 max = mid - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
607 return mid;
a61af66fc99e Initial load
duke
parents:
diff changeset
608 }
a61af66fc99e Initial load
duke
parents:
diff changeset
609 }
a61af66fc99e Initial load
duke
parents:
diff changeset
610 return min;
a61af66fc99e Initial load
duke
parents:
diff changeset
611 }
a61af66fc99e Initial load
duke
parents:
diff changeset
612
a61af66fc99e Initial load
duke
parents:
diff changeset
613 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
614 // ciObjectFactory::is_found_at
a61af66fc99e Initial load
duke
parents:
diff changeset
615 //
a61af66fc99e Initial load
duke
parents:
diff changeset
616 // Verify that the binary seach found the given key.
a61af66fc99e Initial load
duke
parents:
diff changeset
617 bool ciObjectFactory::is_found_at(int index, oop key, GrowableArray<ciObject*>* objects) {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 return (index < objects->length() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
619 objects->at(index)->get_oop() == key);
a61af66fc99e Initial load
duke
parents:
diff changeset
620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
621
a61af66fc99e Initial load
duke
parents:
diff changeset
622
a61af66fc99e Initial load
duke
parents:
diff changeset
623 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // ciObjectFactory::insert
a61af66fc99e Initial load
duke
parents:
diff changeset
625 //
a61af66fc99e Initial load
duke
parents:
diff changeset
626 // Insert a ciObject into the table at some index.
a61af66fc99e Initial load
duke
parents:
diff changeset
627 void ciObjectFactory::insert(int index, ciObject* obj, GrowableArray<ciObject*>* objects) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 int len = objects->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
629 if (len == index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
630 objects->append(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
631 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
632 objects->append(objects->at(len-1));
a61af66fc99e Initial load
duke
parents:
diff changeset
633 int pos;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 for (pos = len-2; pos >= index; pos--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
635 objects->at_put(pos+1,objects->at(pos));
a61af66fc99e Initial load
duke
parents:
diff changeset
636 }
a61af66fc99e Initial load
duke
parents:
diff changeset
637 objects->at_put(index, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
639 #ifdef ASSERT
909
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
640 if (CIObjectFactoryVerify) {
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
641 oop last = NULL;
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
642 for (int j = 0; j< objects->length(); j++) {
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
643 oop o = objects->at(j)->get_oop();
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
644 assert(last < o, "out of order");
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
645 last = o;
b32a809aab08 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 196
diff changeset
646 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
648 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650
a61af66fc99e Initial load
duke
parents:
diff changeset
651 static ciObjectFactory::NonPermObject* emptyBucket = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
652
a61af66fc99e Initial load
duke
parents:
diff changeset
653 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // ciObjectFactory::find_non_perm
a61af66fc99e Initial load
duke
parents:
diff changeset
655 //
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // Use a small hash table, hashed on the klass of the key.
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // If there is no entry in the cache corresponding to this oop, return
a61af66fc99e Initial load
duke
parents:
diff changeset
658 // the null tail of the bucket into which the oop should be inserted.
a61af66fc99e Initial load
duke
parents:
diff changeset
659 ciObjectFactory::NonPermObject* &ciObjectFactory::find_non_perm(oop key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // Be careful: is_perm might change from false to true.
a61af66fc99e Initial load
duke
parents:
diff changeset
661 // Thus, there might be a matching perm object in the table.
a61af66fc99e Initial load
duke
parents:
diff changeset
662 // If there is, this probe must find it.
a61af66fc99e Initial load
duke
parents:
diff changeset
663 if (key->is_perm() && _non_perm_count == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
664 return emptyBucket;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 } else if (key->is_instance()) {
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2357
diff changeset
666 if (key->klass() == SystemDictionary::Class_klass() && JavaObjectsInPerm) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
667 // class mirror instances are always perm
a61af66fc99e Initial load
duke
parents:
diff changeset
668 return emptyBucket;
a61af66fc99e Initial load
duke
parents:
diff changeset
669 }
a61af66fc99e Initial load
duke
parents:
diff changeset
670 // fall through to probe
a61af66fc99e Initial load
duke
parents:
diff changeset
671 } else if (key->is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // fall through to probe
a61af66fc99e Initial load
duke
parents:
diff changeset
673 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
674 // not an array or instance
a61af66fc99e Initial load
duke
parents:
diff changeset
675 return emptyBucket;
a61af66fc99e Initial load
duke
parents:
diff changeset
676 }
a61af66fc99e Initial load
duke
parents:
diff changeset
677
a61af66fc99e Initial load
duke
parents:
diff changeset
678 ciObject* klass = get(key->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
679 NonPermObject* *bp = &_non_perm_bucket[(unsigned) klass->hash() % NON_PERM_BUCKETS];
a61af66fc99e Initial load
duke
parents:
diff changeset
680 for (NonPermObject* p; (p = (*bp)) != NULL; bp = &p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
681 if (is_equal(p, key)) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
682 }
a61af66fc99e Initial load
duke
parents:
diff changeset
683 return (*bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
689 // Code for for NonPermObject
a61af66fc99e Initial load
duke
parents:
diff changeset
690 //
a61af66fc99e Initial load
duke
parents:
diff changeset
691 inline ciObjectFactory::NonPermObject::NonPermObject(ciObjectFactory::NonPermObject* &bucket, oop key, ciObject* object) {
a61af66fc99e Initial load
duke
parents:
diff changeset
692 assert(ciObjectFactory::is_initialized(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
693 _object = object;
a61af66fc99e Initial load
duke
parents:
diff changeset
694 _next = bucket;
a61af66fc99e Initial load
duke
parents:
diff changeset
695 bucket = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
696 }
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698
a61af66fc99e Initial load
duke
parents:
diff changeset
699
a61af66fc99e Initial load
duke
parents:
diff changeset
700 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
701 // ciObjectFactory::insert_non_perm
a61af66fc99e Initial load
duke
parents:
diff changeset
702 //
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // Insert a ciObject into the non-perm table.
a61af66fc99e Initial load
duke
parents:
diff changeset
704 void ciObjectFactory::insert_non_perm(ciObjectFactory::NonPermObject* &where, oop key, ciObject* obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
705 assert(&where != &emptyBucket, "must not try to fill empty bucket");
a61af66fc99e Initial load
duke
parents:
diff changeset
706 NonPermObject* p = new (arena()) NonPermObject(where, key, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
707 assert(where == p && is_equal(p, key) && p->object() == obj, "entry must match");
a61af66fc99e Initial load
duke
parents:
diff changeset
708 assert(find_non_perm(key) == p, "must find the same spot");
a61af66fc99e Initial load
duke
parents:
diff changeset
709 ++_non_perm_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
710 }
a61af66fc99e Initial load
duke
parents:
diff changeset
711
a61af66fc99e Initial load
duke
parents:
diff changeset
712 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
713 // ciObjectFactory::vm_symbol_at
a61af66fc99e Initial load
duke
parents:
diff changeset
714 // Get the ciSymbol corresponding to some index in vmSymbols.
a61af66fc99e Initial load
duke
parents:
diff changeset
715 ciSymbol* ciObjectFactory::vm_symbol_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 assert(index >= vmSymbols::FIRST_SID && index < vmSymbols::SID_LIMIT, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
717 return _shared_ci_symbols[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
719
a61af66fc99e Initial load
duke
parents:
diff changeset
720 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
721 // ciObjectFactory::print_contents_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
722 void ciObjectFactory::print_contents_impl() {
a61af66fc99e Initial load
duke
parents:
diff changeset
723 int len = _ci_objects->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
724 tty->print_cr("ciObjectFactory (%d) oop contents:", len);
a61af66fc99e Initial load
duke
parents:
diff changeset
725 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
726 _ci_objects->at(i)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
727 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
728 }
a61af66fc99e Initial load
duke
parents:
diff changeset
729 }
a61af66fc99e Initial load
duke
parents:
diff changeset
730
a61af66fc99e Initial load
duke
parents:
diff changeset
731 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // ciObjectFactory::print_contents
a61af66fc99e Initial load
duke
parents:
diff changeset
733 void ciObjectFactory::print_contents() {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 print();
a61af66fc99e Initial load
duke
parents:
diff changeset
735 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
736 GUARDED_VM_ENTRY(print_contents_impl();)
a61af66fc99e Initial load
duke
parents:
diff changeset
737 }
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
740 // ciObjectFactory::print
a61af66fc99e Initial load
duke
parents:
diff changeset
741 //
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // Print debugging information about the object factory
a61af66fc99e Initial load
duke
parents:
diff changeset
743 void ciObjectFactory::print() {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
744 tty->print("<ciObjectFactory oops=%d unloaded_methods=%d unloaded_instances=%d unloaded_klasses=%d>",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
745 _ci_objects->length(), _unloaded_methods->length(),
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
746 _unloaded_instances->length(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
747 _unloaded_klasses->length());
a61af66fc99e Initial load
duke
parents:
diff changeset
748 }