annotate src/share/vm/ci/ciObjectFactory.cpp @ 20670:6a528388c7da

8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv Reviewed-by: kvn, roland, coleenp, mgerdin
author vlivanov
date Tue, 11 Nov 2014 04:46:13 -0800
parents 833b0f92429a
children 7848fc12602b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
20360
833b0f92429a 8046598: Scalable Native memory tracking development
zgu
parents: 20278
diff changeset
2 * Copyright (c) 1999, 2014, 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/ciCallSite.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
27 #include "ci/ciInstance.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
28 #include "ci/ciInstanceKlass.hpp"
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
29 #include "ci/ciMemberName.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
30 #include "ci/ciMethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
31 #include "ci/ciMethodData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
32 #include "ci/ciMethodHandle.hpp"
6822
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
33 #include "ci/ciMethodType.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
34 #include "ci/ciNullObject.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
35 #include "ci/ciObjArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
36 #include "ci/ciObjArrayKlass.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
37 #include "ci/ciObject.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
38 #include "ci/ciObjectFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
39 #include "ci/ciSymbol.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
40 #include "ci/ciTypeArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
41 #include "ci/ciTypeArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
42 #include "ci/ciUtilities.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
43 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
44 #include "gc_interface/collectedHeap.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
45 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
46 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
47 #include "oops/oop.inline2.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
48 #include "runtime/fieldType.hpp"
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
49 #if INCLUDE_ALL_GCS
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
50 # include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
51 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // ciObjectFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
54 //
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // This class handles requests for the creation of new instances
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // of ciObject and its subclasses. It contains a caching mechanism
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // which ensures that for each oop, at most one ciObject is created.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // This invariant allows more efficient implementation of ciObject.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 //
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Implementation note: the oop->ciObject mapping is represented as
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // a table stored in an array. Even though objects are moved
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // by the garbage collector, the compactor preserves their relative
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // order; address comparison of oops (in perm space) is safe so long
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // as we prohibit GC during our comparisons. We currently use binary
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // search to find the oop in the table, and inserting a new oop
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // into the table may be costly. If this cost ends up being
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // problematic the underlying data structure can be switched to some
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // sort of balanced binary tree.
a61af66fc99e Initial load
duke
parents:
diff changeset
69
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
70 GrowableArray<ciMetadata*>* ciObjectFactory::_shared_ci_metadata = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ciSymbol* ciObjectFactory::_shared_ci_symbols[vmSymbols::SID_LIMIT];
a61af66fc99e Initial load
duke
parents:
diff changeset
72 int ciObjectFactory::_shared_ident_limit = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 volatile bool ciObjectFactory::_initialized = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // ciObjectFactory::ciObjectFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ciObjectFactory::ciObjectFactory(Arena* arena,
a61af66fc99e Initial load
duke
parents:
diff changeset
79 int expected_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 for (int i = 0; i < NON_PERM_BUCKETS; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _non_perm_bucket[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 _non_perm_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 _next_ident = _shared_ident_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _arena = arena;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
88 _ci_metadata = new (arena) GrowableArray<ciMetadata*>(arena, expected_size, 0, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // If the shared ci objects exist append them to this factory's objects
a61af66fc99e Initial load
duke
parents:
diff changeset
91
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
92 if (_shared_ci_metadata != NULL) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
93 _ci_metadata->appendAll(_shared_ci_metadata);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _unloaded_methods = new (arena) GrowableArray<ciMethod*>(arena, 4, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 _unloaded_klasses = new (arena) GrowableArray<ciKlass*>(arena, 8, 0, NULL);
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
98 _unloaded_instances = new (arena) GrowableArray<ciInstance*>(arena, 4, 0, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _return_addresses =
a61af66fc99e Initial load
duke
parents:
diff changeset
100 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
101
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
102 _symbols = new (arena) GrowableArray<ciSymbol*>(arena, 100, 0, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // ciObjectFactory::ciObjectFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void ciObjectFactory::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 HandleMark handle_mark(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // This Arena is long lived and exists in the resource mark of the
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // compiler thread that initializes the initial ciObjectFactory which
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // creates the shared ciObjects that all later ciObjectFactories use.
20360
833b0f92429a 8046598: Scalable Native memory tracking development
zgu
parents: 20278
diff changeset
115 Arena* arena = new (mtCompiler) Arena(mtCompiler);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 ciEnv initial(arena);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ciEnv* env = ciEnv::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
118 env->_factory->init_shared_objects();
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _initialized = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void ciObjectFactory::init_shared_objects() {
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _next_ident = 1; // start numbering CI objects at 1
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
129 // Create the shared symbols, but not in _shared_ci_metadata.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
130 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 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
132 Symbol* vmsym = vmSymbols::symbol_at((vmSymbols::SID) i);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
133 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
134 ciSymbol* sym = new (_arena) ciSymbol(vmsym, (vmSymbols::SID) i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 init_ident_of(sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 _shared_ci_symbols[i] = sym;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
139 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
140 Symbol* vmsym = vmSymbols::symbol_at((vmSymbols::SID) i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 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
142 assert(sym->get_symbol() == vmsym, "oop must match");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
144 assert(ciSymbol::void_class_signature()->get_symbol() == vmSymbols::void_class_signature(), "spot check");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
148 _ci_metadata = new (_arena) GrowableArray<ciMetadata*>(_arena, 64, 0, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 BasicType t = (BasicType)i;
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6822
diff changeset
152 if (type2name(t) != NULL && t != T_OBJECT && t != T_ARRAY && t != T_NARROWOOP && t != T_NARROWKLASS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 ciType::_basic_types[t] = new (_arena) ciType(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 init_ident_of(ciType::_basic_types[t]);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 ciEnv::_null_object_instance = new (_arena) ciNullObject();
a61af66fc99e Initial load
duke
parents:
diff changeset
159 init_ident_of(ciEnv::_null_object_instance);
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
160
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
161 #define WK_KLASS_DEFN(name, ignore_s, opt) \
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
162 if (SystemDictionary::name() != NULL) \
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
163 ciEnv::_##name = get_metadata(SystemDictionary::name())->as_instance_klass();
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
164
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
165 WK_KLASSES_DO(WK_KLASS_DEFN)
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1138
diff changeset
166 #undef WK_KLASS_DEFN
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
168 for (int len = -1; len != _ci_metadata->length(); ) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
169 len = _ci_metadata->length();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
170 for (int i2 = 0; i2 < len; i2++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
171 ciMetadata* obj = _ci_metadata->at(i2);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
172 assert (obj->is_metadata(), "what else would it be?");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173 if (obj->is_loaded() && obj->is_instance_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 obj->as_instance_klass()->compute_nonstatic_fields();
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
179 ciEnv::_unloaded_cisymbol = ciObjectFactory::get_symbol(vmSymbols::dummy_symbol());
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
180 // Create dummy InstanceKlass and ObjArrayKlass object and assign them idents
0
a61af66fc99e Initial load
duke
parents:
diff changeset
181 ciEnv::_unloaded_ciinstance_klass = new (_arena) ciInstanceKlass(ciEnv::_unloaded_cisymbol, NULL, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
182 init_ident_of(ciEnv::_unloaded_ciinstance_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 ciEnv::_unloaded_ciobjarrayklass = new (_arena) ciObjArrayKlass(ciEnv::_unloaded_cisymbol, ciEnv::_unloaded_ciinstance_klass, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 init_ident_of(ciEnv::_unloaded_ciobjarrayklass);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 assert(ciEnv::_unloaded_ciobjarrayklass->is_obj_array_klass(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
186
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
187 get_metadata(Universe::boolArrayKlassObj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
188 get_metadata(Universe::charArrayKlassObj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
189 get_metadata(Universe::singleArrayKlassObj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
190 get_metadata(Universe::doubleArrayKlassObj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
191 get_metadata(Universe::byteArrayKlassObj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
192 get_metadata(Universe::shortArrayKlassObj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
193 get_metadata(Universe::intArrayKlassObj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
194 get_metadata(Universe::longArrayKlassObj());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 assert(_non_perm_count == 0, "no shared non-perm objects");
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // The shared_ident_limit is the first ident number that will
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // be used for non-shared objects. That is, numbers less than
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // this limit are permanently assigned to shared CI objects,
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // while the higher numbers are recycled afresh by each new ciEnv.
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 _shared_ident_limit = _next_ident;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
206 _shared_ci_metadata = _ci_metadata;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
209
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
210 ciSymbol* ciObjectFactory::get_symbol(Symbol* key) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
211 vmSymbols::SID sid = vmSymbols::find_sid(key);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
212 if (sid != vmSymbols::NO_SID) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
213 // do not pollute the main cache with it
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
214 return vm_symbol_at(sid);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
215 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
216
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
217 assert(vmSymbols::find_sid(key) == vmSymbols::NO_SID, "");
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
218 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
219 _symbols->push(s);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
220 return s;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
221 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
222
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
223 // 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
224 void ciObjectFactory::remove_symbols() {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
225 for (int i = 0; i < _symbols->length(); i++) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
226 ciSymbol* s = _symbols->at(i);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
227 s->get_symbol()->decrement_refcount();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
228 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
229 // 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
230 // but it'll go away just the same.
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
231 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
232
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // ciObjectFactory::get
a61af66fc99e Initial load
duke
parents:
diff changeset
235 //
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // Get the ciObject corresponding to some oop. If the ciObject has
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // already been created, it is returned. Otherwise, a new ciObject
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // is created.
a61af66fc99e Initial load
duke
parents:
diff changeset
239 ciObject* ciObjectFactory::get(oop key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
241
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
242 assert(Universe::heap()->is_in_reserved(key), "must be");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
243
6822
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
244 NonPermObject* &bucket = find_non_perm(key);
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
245 if (bucket != NULL) {
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
246 return bucket->object();
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
247 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
248
6822
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
249 // The ciObject does not yet exist. Create it and insert it
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
250 // into the cache.
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
251 Handle keyHandle(key);
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
252 ciObject* new_object = create_new_object(keyHandle());
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
253 assert(keyHandle() == new_object->get_oop(), "must be properly recorded");
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
254 init_ident_of(new_object);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
255 assert(Universe::heap()->is_in_reserved(new_object->get_oop()), "must be");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
256
6822
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
257 // Not a perm-space object.
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
258 insert_non_perm(bucket, keyHandle(), new_object);
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
259 return new_object;
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
260 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
261
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
262 // ------------------------------------------------------------------
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
263 // ciObjectFactory::get_metadata
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
264 //
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
265 // Get the ciMetadata corresponding to some Metadata. If the ciMetadata has
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
266 // already been created, it is returned. Otherwise, a new ciMetadata
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
267 // is created.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
268 ciMetadata* ciObjectFactory::get_metadata(Metadata* key) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
269 ASSERT_IN_VM;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
270
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
271 #ifdef ASSERT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
272 if (CIObjectFactoryVerify) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
273 Metadata* last = NULL;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
274 for (int j = 0; j< _ci_metadata->length(); j++) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
275 Metadata* o = _ci_metadata->at(j)->constant_encoding();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
276 assert(last < o, "out of order");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
277 last = o;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
278 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
279 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
280 #endif // ASSERT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
281 int len = _ci_metadata->length();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
282 int index = find(key, _ci_metadata);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
283 #ifdef ASSERT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
284 if (CIObjectFactoryVerify) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
285 for (int i=0; i<_ci_metadata->length(); i++) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
286 if (_ci_metadata->at(i)->constant_encoding() == key) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
287 assert(index == i, " bad lookup");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
288 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
289 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
290 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
291 #endif
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
292 if (!is_found_at(index, key, _ci_metadata)) {
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
293 // The ciMetadata does not yet exist. Create it and insert it
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
294 // into the cache.
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
295 ciMetadata* new_object = create_new_metadata(key);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
296 init_ident_of(new_object);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
297 assert(new_object->is_metadata(), "must be");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
298
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
299 if (len != _ci_metadata->length()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // creating the new object has recursively entered new objects
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // into the table. We need to recompute our index.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
302 index = find(key, _ci_metadata);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
303 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
304 assert(!is_found_at(index, key, _ci_metadata), "no double insert");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
305 insert(index, new_object, _ci_metadata);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
306 return new_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
308 return _ci_metadata->at(index)->as_metadata();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // ciObjectFactory::create_new_object
a61af66fc99e Initial load
duke
parents:
diff changeset
313 //
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // Create a new ciObject from an oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
315 //
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // Implementation note: this functionality could be virtual behavior
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // of the oop itself. For now, we explicitly marshal the object.
a61af66fc99e Initial load
duke
parents:
diff changeset
318 ciObject* ciObjectFactory::create_new_object(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
320
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
321 if (o->is_instance()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
322 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
323 if (java_lang_invoke_CallSite::is_instance(o))
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
324 return new (arena()) ciCallSite(h_i);
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
325 else if (java_lang_invoke_MemberName::is_instance(o))
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
326 return new (arena()) ciMemberName(h_i);
2357
8033953d67ff 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 2177
diff changeset
327 else if (java_lang_invoke_MethodHandle::is_instance(o))
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
328 return new (arena()) ciMethodHandle(h_i);
6822
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
329 else if (java_lang_invoke_MethodType::is_instance(o))
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
330 return new (arena()) ciMethodType(h_i);
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
331 else
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
332 return new (arena()) ciInstance(h_i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 } else if (o->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 objArrayHandle h_oa(THREAD, (objArrayOop)o);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 return new (arena()) ciObjArray(h_oa);
a61af66fc99e Initial load
duke
parents:
diff changeset
336 } else if (o->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
337 typeArrayHandle h_ta(THREAD, (typeArrayOop)o);
a61af66fc99e Initial load
duke
parents:
diff changeset
338 return new (arena()) ciTypeArray(h_ta);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
339 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
340
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
341 // The oop is of some type not supported by the compiler interface.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
342 ShouldNotReachHere();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
343 return NULL;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
344 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
345
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
346 // ------------------------------------------------------------------
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
347 // ciObjectFactory::create_new_metadata
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
348 //
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
349 // Create a new ciMetadata from a Metadata*.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
350 //
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
351 // Implementation note: in order to keep Metadata live, an auxiliary ciObject
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
352 // is used, which points to it's holder.
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
353 ciMetadata* ciObjectFactory::create_new_metadata(Metadata* o) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
354 EXCEPTION_CONTEXT;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
355
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
356 // Hold metadata from unloading by keeping it's holder alive.
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
357 if (_initialized && o->is_klass()) {
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
358 Klass* holder = ((Klass*)o);
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
359 if (holder->oop_is_instance() && InstanceKlass::cast(holder)->is_anonymous()) {
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
360 // Though ciInstanceKlass records class loader oop, it's not enough to keep
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
361 // VM anonymous classes alive (loader == NULL). Klass holder should be used instead.
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
362 // It is enough to record a ciObject, since cached elements are never removed
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
363 // during ciObjectFactory lifetime. ciObjectFactory itself is created for
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
364 // every compilation and lives for the whole duration of the compilation.
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
365 ciObject* h = get(holder->klass_holder());
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
366 }
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
367 }
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
368
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
369 if (o->is_klass()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
370 KlassHandle h_k(THREAD, (Klass*)o);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
371 Klass* k = (Klass*)o;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
372 if (k->oop_is_instance()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
373 return new (arena()) ciInstanceKlass(h_k);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
374 } else if (k->oop_is_objArray()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
375 return new (arena()) ciObjArrayKlass(h_k);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
376 } else if (k->oop_is_typeArray()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
377 return new (arena()) ciTypeArrayKlass(h_k);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
378 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
379 } else if (o->is_method()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
380 methodHandle h_m(THREAD, (Method*)o);
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
381 ciEnv *env = CURRENT_THREAD_ENV;
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
382 ciInstanceKlass* holder = env->get_instance_klass(h_m()->method_holder());
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
383 return new (arena()) ciMethod(h_m, holder);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
384 } else if (o->is_methodData()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
385 // Hold methodHandle alive - might not be necessary ???
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
386 methodHandle h_m(THREAD, ((MethodData*)o)->method());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
387 return new (arena()) ciMethodData((MethodData*)o);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
390 // The Metadata* is of some type not supported by the compiler interface.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
391 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
392 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
395 // ------------------------------------------------------------------
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
396 // ciObjectFactory::ensure_metadata_alive
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
397 //
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
398 // Ensure that the metadata wrapped by the ciMetadata is kept alive by GC.
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
399 // This is primarily useful for metadata which is considered as weak roots
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
400 // by the GC but need to be strong roots if reachable from a current compilation.
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
401 //
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
402 void ciObjectFactory::ensure_metadata_alive(ciMetadata* m) {
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
403 ASSERT_IN_VM; // We're handling raw oops here.
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
404
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
405 #if INCLUDE_ALL_GCS
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
406 if (!UseG1GC) {
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
407 return;
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
408 }
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
409 Klass* metadata_owner_klass;
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
410 if (m->is_klass()) {
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
411 metadata_owner_klass = m->as_klass()->get_Klass();
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
412 } else if (m->is_method()) {
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
413 metadata_owner_klass = m->as_method()->get_Method()->constants()->pool_holder();
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
414 } else {
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
415 fatal("Not implemented for other types of metadata");
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
416 }
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
417
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
418 oop metadata_holder = metadata_owner_klass->klass_holder();
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
419 if (metadata_holder != NULL) {
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
420 G1SATBCardTableModRefBS::enqueue(metadata_holder);
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
421 }
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
422
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
423 #endif
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
424 }
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 17467
diff changeset
425
0
a61af66fc99e Initial load
duke
parents:
diff changeset
426 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
427 // ciObjectFactory::get_unloaded_method
a61af66fc99e Initial load
duke
parents:
diff changeset
428 //
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Get the ciMethod representing an unloaded/unfound method.
a61af66fc99e Initial load
duke
parents:
diff changeset
430 //
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // Implementation note: unloaded methods are currently stored in
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // an unordered array, requiring a linear-time lookup for each
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // unloaded method. This may need to change.
a61af66fc99e Initial load
duke
parents:
diff changeset
434 ciMethod* ciObjectFactory::get_unloaded_method(ciInstanceKlass* holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
435 ciSymbol* name,
4001
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
436 ciSymbol* signature,
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
437 ciInstanceKlass* accessor) {
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
438 ciSignature* that = NULL;
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
439 for (int i = 0; i < _unloaded_methods->length(); i++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
440 ciMethod* entry = _unloaded_methods->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
441 if (entry->holder()->equals(holder) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
442 entry->name()->equals(name) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
443 entry->signature()->as_symbol()->equals(signature)) {
4001
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
444 // Short-circuit slow resolve.
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
445 if (entry->signature()->accessing_klass() == accessor) {
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
446 // We've found a match.
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
447 return entry;
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
448 } else {
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
449 // Lazily create ciSignature
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
450 if (that == NULL) that = new (arena()) ciSignature(accessor, constantPoolHandle(), signature);
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
451 if (entry->signature()->equals(that)) {
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
452 // We've found a match.
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
453 return entry;
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
454 }
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
455 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
456 }
a61af66fc99e Initial load
duke
parents:
diff changeset
457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
458
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // This is a new unloaded method. Create it and stick it in
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // the cache.
4001
5eb9169b1a14 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 2376
diff changeset
461 ciMethod* new_method = new (arena()) ciMethod(holder, name, signature, accessor);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 init_ident_of(new_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
464 _unloaded_methods->append(new_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 return new_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // ciObjectFactory::get_unloaded_klass
a61af66fc99e Initial load
duke
parents:
diff changeset
471 //
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // Get a ciKlass representing an unloaded klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
473 //
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // Implementation note: unloaded klasses are currently stored in
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // an unordered array, requiring a linear-time lookup for each
a61af66fc99e Initial load
duke
parents:
diff changeset
476 // unloaded klass. This may need to change.
a61af66fc99e Initial load
duke
parents:
diff changeset
477 ciKlass* ciObjectFactory::get_unloaded_klass(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
478 ciSymbol* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
479 bool create_if_not_found) {
a61af66fc99e Initial load
duke
parents:
diff changeset
480 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
481 oop loader = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
482 oop domain = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
483 if (accessing_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
484 loader = accessing_klass->loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
485 domain = accessing_klass->protection_domain();
a61af66fc99e Initial load
duke
parents:
diff changeset
486 }
a61af66fc99e Initial load
duke
parents:
diff changeset
487 for (int i=0; i<_unloaded_klasses->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
488 ciKlass* entry = _unloaded_klasses->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
489 if (entry->name()->equals(name) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
490 entry->loader() == loader &&
a61af66fc99e Initial load
duke
parents:
diff changeset
491 entry->protection_domain() == domain) {
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // We've found a match.
a61af66fc99e Initial load
duke
parents:
diff changeset
493 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
494 }
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 if (!create_if_not_found)
a61af66fc99e Initial load
duke
parents:
diff changeset
498 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // This is a new unloaded klass. Create it and stick it in
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // the cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
502 ciKlass* new_klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
503
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
504 // Two cases: this is an unloaded ObjArrayKlass or an
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
505 // unloaded InstanceKlass. Deal with both.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (name->byte_at(0) == '[') {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // Decompose the name.'
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
508 FieldArrayInfo fd;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
509 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
510 fd, THREAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
511 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
512 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
513 CURRENT_THREAD_ENV->record_out_of_memory_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
514 return ciEnv::_unloaded_ciobjarrayklass;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
516 int dimension = fd.dimension();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
517 assert(element_type != T_ARRAY, "unsuccessful decomposition");
a61af66fc99e Initial load
duke
parents:
diff changeset
518 ciKlass* element_klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 if (element_type == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
520 ciEnv *env = CURRENT_THREAD_ENV;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
521 ciSymbol* ci_name = env->get_symbol(fd.object_key());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
522 element_klass =
a61af66fc99e Initial load
duke
parents:
diff changeset
523 env->get_klass_by_name(accessing_klass, ci_name, false)->as_instance_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
524 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
525 assert(dimension > 1, "one dimensional type arrays are always loaded.");
a61af66fc99e Initial load
duke
parents:
diff changeset
526
a61af66fc99e Initial load
duke
parents:
diff changeset
527 // The type array itself takes care of one of the dimensions.
a61af66fc99e Initial load
duke
parents:
diff changeset
528 dimension--;
a61af66fc99e Initial load
duke
parents:
diff changeset
529
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
530 // The element klass is a TypeArrayKlass.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
531 element_klass = ciTypeArrayKlass::make(element_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533 new_klass = new (arena()) ciObjArrayKlass(name, element_klass, dimension);
a61af66fc99e Initial load
duke
parents:
diff changeset
534 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 jobject loader_handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
536 jobject domain_handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
537 if (accessing_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 loader_handle = accessing_klass->loader_handle();
a61af66fc99e Initial load
duke
parents:
diff changeset
539 domain_handle = accessing_klass->protection_domain_handle();
a61af66fc99e Initial load
duke
parents:
diff changeset
540 }
a61af66fc99e Initial load
duke
parents:
diff changeset
541 new_klass = new (arena()) ciInstanceKlass(name, loader_handle, domain_handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
542 }
a61af66fc99e Initial load
duke
parents:
diff changeset
543 init_ident_of(new_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
544 _unloaded_klasses->append(new_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 return new_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 }
a61af66fc99e Initial load
duke
parents:
diff changeset
548
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
549
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
550 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
551 // ciObjectFactory::get_unloaded_instance
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
552 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
553 // 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
554 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
555 ciInstance* ciObjectFactory::get_unloaded_instance(ciInstanceKlass* instance_klass) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
556 for (int i=0; i<_unloaded_instances->length(); i++) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
557 ciInstance* entry = _unloaded_instances->at(i);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
558 if (entry->klass()->equals(instance_klass)) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
559 // We've found a match.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
560 return entry;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
561 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
562 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
563
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
564 // 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
565 // the cache.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
566 ciInstance* new_instance = new (arena()) ciInstance(instance_klass);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
567
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
568 init_ident_of(new_instance);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
569 _unloaded_instances->append(new_instance);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
570
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
571 // make sure it looks the way we want:
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
572 assert(!new_instance->is_loaded(), "");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
573 assert(new_instance->klass() == instance_klass, "");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
574
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
575 return new_instance;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
576 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
577
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
578
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
579 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
580 // ciObjectFactory::get_unloaded_klass_mirror
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
581 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
582 // Get a ciInstance representing an unresolved klass mirror.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
583 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
584 // Currently, this ignores the parameters and returns a unique unloaded instance.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
585 ciInstance* ciObjectFactory::get_unloaded_klass_mirror(ciKlass* type) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
586 assert(ciEnv::_Class_klass != NULL, "");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
587 return get_unloaded_instance(ciEnv::_Class_klass->as_instance_klass());
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
588 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
589
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
590 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
591 // ciObjectFactory::get_unloaded_method_handle_constant
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
592 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
593 // Get a ciInstance representing an unresolved method handle constant.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
594 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
595 // Currently, this ignores the parameters and returns a unique unloaded instance.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
596 ciInstance* ciObjectFactory::get_unloaded_method_handle_constant(ciKlass* holder,
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
597 ciSymbol* name,
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
598 ciSymbol* signature,
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
599 int ref_kind) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
600 if (ciEnv::_MethodHandle_klass == NULL) return NULL;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
601 return get_unloaded_instance(ciEnv::_MethodHandle_klass->as_instance_klass());
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
602 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
603
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
604 //------------------------------------------------------------------
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
605 // ciObjectFactory::get_unloaded_method_type_constant
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
606 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
607 // Get a ciInstance representing an unresolved method type constant.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
608 //
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
609 // Currently, this ignores the parameters and returns a unique unloaded instance.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
610 ciInstance* ciObjectFactory::get_unloaded_method_type_constant(ciSymbol* signature) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
611 if (ciEnv::_MethodType_klass == NULL) return NULL;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
612 return get_unloaded_instance(ciEnv::_MethodType_klass->as_instance_klass());
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
613 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
614
12160
f98f5d48f511 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 11034
diff changeset
615 ciInstance* ciObjectFactory::get_unloaded_object_constant() {
f98f5d48f511 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 11034
diff changeset
616 if (ciEnv::_Object_klass == NULL) return NULL;
f98f5d48f511 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 11034
diff changeset
617 return get_unloaded_instance(ciEnv::_Object_klass->as_instance_klass());
f98f5d48f511 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 11034
diff changeset
618 }
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
619
0
a61af66fc99e Initial load
duke
parents:
diff changeset
620 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
621 // ciObjectFactory::get_empty_methodData
a61af66fc99e Initial load
duke
parents:
diff changeset
622 //
a61af66fc99e Initial load
duke
parents:
diff changeset
623 // Get the ciMethodData representing the methodData for a method with
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // none.
a61af66fc99e Initial load
duke
parents:
diff changeset
625 ciMethodData* ciObjectFactory::get_empty_methodData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 ciMethodData* new_methodData = new (arena()) ciMethodData();
a61af66fc99e Initial load
duke
parents:
diff changeset
627 init_ident_of(new_methodData);
a61af66fc99e Initial load
duke
parents:
diff changeset
628 return new_methodData;
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630
a61af66fc99e Initial load
duke
parents:
diff changeset
631 //------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // ciObjectFactory::get_return_address
a61af66fc99e Initial load
duke
parents:
diff changeset
633 //
a61af66fc99e Initial load
duke
parents:
diff changeset
634 // Get a ciReturnAddress for a specified bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
635 ciReturnAddress* ciObjectFactory::get_return_address(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
636 for (int i=0; i<_return_addresses->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
637 ciReturnAddress* entry = _return_addresses->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
638 if (entry->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 // We've found a match.
a61af66fc99e Initial load
duke
parents:
diff changeset
640 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 ciReturnAddress* new_ret_addr = new (arena()) ciReturnAddress(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
645 init_ident_of(new_ret_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
646 _return_addresses->append(new_ret_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
647 return new_ret_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
649
a61af66fc99e Initial load
duke
parents:
diff changeset
650 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
651 // ciObjectFactory::init_ident_of
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
652 void ciObjectFactory::init_ident_of(ciBaseObject* obj) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
653 obj->set_ident(_next_ident++);
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // ciObjectFactory::find
a61af66fc99e Initial load
duke
parents:
diff changeset
658 //
a61af66fc99e Initial load
duke
parents:
diff changeset
659 // Use binary search to find the position of this oop in the cache.
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // If there is no entry in the cache corresponding to this oop, return
a61af66fc99e Initial load
duke
parents:
diff changeset
661 // the position at which the oop should be inserted.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
662 int ciObjectFactory::find(Metadata* key, GrowableArray<ciMetadata*>* objects) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 int min = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
664 int max = objects->length()-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // print_contents();
a61af66fc99e Initial load
duke
parents:
diff changeset
667
a61af66fc99e Initial load
duke
parents:
diff changeset
668 while (max >= min) {
a61af66fc99e Initial load
duke
parents:
diff changeset
669 int mid = (max + min) / 2;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
670 Metadata* value = objects->at(mid)->constant_encoding();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
671 if (value < key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 min = mid + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
673 } else if (value > key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
674 max = mid - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
675 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
676 return mid;
a61af66fc99e Initial load
duke
parents:
diff changeset
677 }
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 return min;
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
683 // ciObjectFactory::is_found_at
a61af66fc99e Initial load
duke
parents:
diff changeset
684 //
a61af66fc99e Initial load
duke
parents:
diff changeset
685 // Verify that the binary seach found the given key.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
686 bool ciObjectFactory::is_found_at(int index, Metadata* key, GrowableArray<ciMetadata*>* objects) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
687 return (index < objects->length() &&
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
688 objects->at(index)->constant_encoding() == key);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
690
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
693 // ciObjectFactory::insert
a61af66fc99e Initial load
duke
parents:
diff changeset
694 //
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // Insert a ciObject into the table at some index.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
696 void ciObjectFactory::insert(int index, ciMetadata* obj, GrowableArray<ciMetadata*>* objects) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
697 int len = objects->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
698 if (len == index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
699 objects->append(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
700 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
701 objects->append(objects->at(len-1));
a61af66fc99e Initial load
duke
parents:
diff changeset
702 int pos;
a61af66fc99e Initial load
duke
parents:
diff changeset
703 for (pos = len-2; pos >= index; pos--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
704 objects->at_put(pos+1,objects->at(pos));
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706 objects->at_put(index, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 static ciObjectFactory::NonPermObject* emptyBucket = NULL;
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::find_non_perm
a61af66fc99e Initial load
duke
parents:
diff changeset
714 //
a61af66fc99e Initial load
duke
parents:
diff changeset
715 // Use a small hash table, hashed on the klass of the key.
a61af66fc99e Initial load
duke
parents:
diff changeset
716 // If there is no entry in the cache corresponding to this oop, return
a61af66fc99e Initial load
duke
parents:
diff changeset
717 // the null tail of the bucket into which the oop should be inserted.
a61af66fc99e Initial load
duke
parents:
diff changeset
718 ciObjectFactory::NonPermObject* &ciObjectFactory::find_non_perm(oop key) {
20670
6a528388c7da 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 20360
diff changeset
719 assert(Universe::heap()->is_in_reserved(key), "must be");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
720 ciMetadata* klass = get_metadata(key->klass());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
721 NonPermObject* *bp = &_non_perm_bucket[(unsigned) klass->hash() % NON_PERM_BUCKETS];
a61af66fc99e Initial load
duke
parents:
diff changeset
722 for (NonPermObject* p; (p = (*bp)) != NULL; bp = &p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
723 if (is_equal(p, key)) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
724 }
a61af66fc99e Initial load
duke
parents:
diff changeset
725 return (*bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
726 }
a61af66fc99e Initial load
duke
parents:
diff changeset
727
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 // Code for for NonPermObject
a61af66fc99e Initial load
duke
parents:
diff changeset
732 //
a61af66fc99e Initial load
duke
parents:
diff changeset
733 inline ciObjectFactory::NonPermObject::NonPermObject(ciObjectFactory::NonPermObject* &bucket, oop key, ciObject* object) {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 assert(ciObjectFactory::is_initialized(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
735 _object = object;
a61af66fc99e Initial load
duke
parents:
diff changeset
736 _next = bucket;
a61af66fc99e Initial load
duke
parents:
diff changeset
737 bucket = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
738 }
a61af66fc99e Initial load
duke
parents:
diff changeset
739
a61af66fc99e Initial load
duke
parents:
diff changeset
740
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // ciObjectFactory::insert_non_perm
a61af66fc99e Initial load
duke
parents:
diff changeset
744 //
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // Insert a ciObject into the non-perm table.
a61af66fc99e Initial load
duke
parents:
diff changeset
746 void ciObjectFactory::insert_non_perm(ciObjectFactory::NonPermObject* &where, oop key, ciObject* obj) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
747 assert(Universe::heap()->is_in_reserved_or_null(key), "must be");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
748 assert(&where != &emptyBucket, "must not try to fill empty bucket");
a61af66fc99e Initial load
duke
parents:
diff changeset
749 NonPermObject* p = new (arena()) NonPermObject(where, key, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
750 assert(where == p && is_equal(p, key) && p->object() == obj, "entry must match");
a61af66fc99e Initial load
duke
parents:
diff changeset
751 assert(find_non_perm(key) == p, "must find the same spot");
a61af66fc99e Initial load
duke
parents:
diff changeset
752 ++_non_perm_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
754
a61af66fc99e Initial load
duke
parents:
diff changeset
755 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
756 // ciObjectFactory::vm_symbol_at
a61af66fc99e Initial load
duke
parents:
diff changeset
757 // Get the ciSymbol corresponding to some index in vmSymbols.
a61af66fc99e Initial load
duke
parents:
diff changeset
758 ciSymbol* ciObjectFactory::vm_symbol_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
759 assert(index >= vmSymbols::FIRST_SID && index < vmSymbols::SID_LIMIT, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
760 return _shared_ci_symbols[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
761 }
a61af66fc99e Initial load
duke
parents:
diff changeset
762
a61af66fc99e Initial load
duke
parents:
diff changeset
763 // ------------------------------------------------------------------
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
764 // ciObjectFactory::metadata_do
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
765 void ciObjectFactory::metadata_do(void f(Metadata*)) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
766 if (_ci_metadata == NULL) return;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
767 for (int j = 0; j< _ci_metadata->length(); j++) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
768 Metadata* o = _ci_metadata->at(j)->constant_encoding();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
769 f(o);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
770 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
771 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
772
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
773 // ------------------------------------------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // ciObjectFactory::print_contents_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
775 void ciObjectFactory::print_contents_impl() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
776 int len = _ci_metadata->length();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
777 tty->print_cr("ciObjectFactory (%d) meta data contents:", len);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
778 for (int i=0; i<len; i++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
779 _ci_metadata->at(i)->print();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
780 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
781 }
a61af66fc99e Initial load
duke
parents:
diff changeset
782 }
a61af66fc99e Initial load
duke
parents:
diff changeset
783
a61af66fc99e Initial load
duke
parents:
diff changeset
784 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
785 // ciObjectFactory::print_contents
a61af66fc99e Initial load
duke
parents:
diff changeset
786 void ciObjectFactory::print_contents() {
a61af66fc99e Initial load
duke
parents:
diff changeset
787 print();
a61af66fc99e Initial load
duke
parents:
diff changeset
788 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
789 GUARDED_VM_ENTRY(print_contents_impl();)
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791
a61af66fc99e Initial load
duke
parents:
diff changeset
792 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
793 // ciObjectFactory::print
a61af66fc99e Initial load
duke
parents:
diff changeset
794 //
a61af66fc99e Initial load
duke
parents:
diff changeset
795 // Print debugging information about the object factory
a61af66fc99e Initial load
duke
parents:
diff changeset
796 void ciObjectFactory::print() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
797 tty->print("<ciObjectFactory oops=%d metadata=%d unloaded_methods=%d unloaded_instances=%d unloaded_klasses=%d>",
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
798 _non_perm_count, _ci_metadata->length(), _unloaded_methods->length(),
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
799 _unloaded_instances->length(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
800 _unloaded_klasses->length());
a61af66fc99e Initial load
duke
parents:
diff changeset
801 }