author | lana |
Wed, 28 Dec 2011 10:51:24 -0800 | |
changeset 11360 | cfa173720adb |
parent 10734 | 065435337883 |
child 13391 | 30245956af37 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8333
diff
changeset
|
2 |
* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "ci/ciConstant.hpp" |
|
27 |
#include "ci/ciEnv.hpp" |
|
28 |
#include "ci/ciField.hpp" |
|
29 |
#include "ci/ciInstance.hpp" |
|
30 |
#include "ci/ciInstanceKlass.hpp" |
|
31 |
#include "ci/ciInstanceKlassKlass.hpp" |
|
32 |
#include "ci/ciMethod.hpp" |
|
33 |
#include "ci/ciNullObject.hpp" |
|
34 |
#include "ci/ciObjArrayKlassKlass.hpp" |
|
35 |
#include "ci/ciTypeArrayKlassKlass.hpp" |
|
36 |
#include "ci/ciUtilities.hpp" |
|
37 |
#include "classfile/systemDictionary.hpp" |
|
38 |
#include "classfile/vmSymbols.hpp" |
|
39 |
#include "code/scopeDesc.hpp" |
|
40 |
#include "compiler/compileBroker.hpp" |
|
41 |
#include "compiler/compileLog.hpp" |
|
42 |
#include "compiler/compilerOracle.hpp" |
|
43 |
#include "gc_interface/collectedHeap.inline.hpp" |
|
44 |
#include "interpreter/linkResolver.hpp" |
|
45 |
#include "memory/allocation.inline.hpp" |
|
46 |
#include "memory/oopFactory.hpp" |
|
47 |
#include "memory/universe.inline.hpp" |
|
48 |
#include "oops/methodDataOop.hpp" |
|
49 |
#include "oops/objArrayKlass.hpp" |
|
50 |
#include "oops/oop.inline.hpp" |
|
51 |
#include "oops/oop.inline2.hpp" |
|
52 |
#include "prims/jvmtiExport.hpp" |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
53 |
#include "prims/methodHandleWalk.hpp" |
7397 | 54 |
#include "runtime/init.hpp" |
55 |
#include "runtime/reflection.hpp" |
|
56 |
#include "runtime/sharedRuntime.hpp" |
|
57 |
#include "utilities/dtrace.hpp" |
|
58 |
#ifdef COMPILER1 |
|
59 |
#include "c1/c1_Runtime1.hpp" |
|
60 |
#endif |
|
61 |
#ifdef COMPILER2 |
|
62 |
#include "opto/runtime.hpp" |
|
63 |
#endif |
|
1 | 64 |
|
65 |
// ciEnv |
|
66 |
// |
|
67 |
// This class is the top level broker for requests from the compiler |
|
68 |
// to the VM. |
|
69 |
||
70 |
ciObject* ciEnv::_null_object_instance; |
|
71 |
ciMethodKlass* ciEnv::_method_klass_instance; |
|
72 |
ciKlassKlass* ciEnv::_klass_klass_instance; |
|
73 |
ciInstanceKlassKlass* ciEnv::_instance_klass_klass_instance; |
|
74 |
ciTypeArrayKlassKlass* ciEnv::_type_array_klass_klass_instance; |
|
75 |
ciObjArrayKlassKlass* ciEnv::_obj_array_klass_klass_instance; |
|
76 |
||
4571 | 77 |
#define WK_KLASS_DEFN(name, ignore_s, ignore_o) ciInstanceKlass* ciEnv::_##name = NULL; |
78 |
WK_KLASSES_DO(WK_KLASS_DEFN) |
|
79 |
#undef WK_KLASS_DEFN |
|
1 | 80 |
|
81 |
ciSymbol* ciEnv::_unloaded_cisymbol = NULL; |
|
82 |
ciInstanceKlass* ciEnv::_unloaded_ciinstance_klass = NULL; |
|
83 |
ciObjArrayKlass* ciEnv::_unloaded_ciobjarrayklass = NULL; |
|
84 |
||
85 |
jobject ciEnv::_ArrayIndexOutOfBoundsException_handle = NULL; |
|
86 |
jobject ciEnv::_ArrayStoreException_handle = NULL; |
|
87 |
jobject ciEnv::_ClassCastException_handle = NULL; |
|
88 |
||
89 |
#ifndef PRODUCT |
|
90 |
static bool firstEnv = true; |
|
91 |
#endif /* PRODUCT */ |
|
92 |
||
93 |
// ------------------------------------------------------------------ |
|
94 |
// ciEnv::ciEnv |
|
95 |
ciEnv::ciEnv(CompileTask* task, int system_dictionary_modification_counter) { |
|
96 |
VM_ENTRY_MARK; |
|
97 |
||
98 |
// Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc. |
|
99 |
thread->set_env(this); |
|
100 |
assert(ciEnv::current() == this, "sanity"); |
|
101 |
||
102 |
_oop_recorder = NULL; |
|
103 |
_debug_info = NULL; |
|
104 |
_dependencies = NULL; |
|
105 |
_failure_reason = NULL; |
|
106 |
_compilable = MethodCompilable; |
|
107 |
_break_at_compile = false; |
|
108 |
_compiler_data = NULL; |
|
109 |
#ifndef PRODUCT |
|
110 |
assert(!firstEnv, "not initialized properly"); |
|
111 |
#endif /* !PRODUCT */ |
|
112 |
||
113 |
_system_dictionary_modification_counter = system_dictionary_modification_counter; |
|
114 |
_num_inlined_bytecodes = 0; |
|
115 |
assert(task == NULL || thread->task() == task, "sanity"); |
|
116 |
_task = task; |
|
117 |
_log = NULL; |
|
118 |
||
119 |
// Temporary buffer for creating symbols and such. |
|
120 |
_name_buffer = NULL; |
|
121 |
_name_buffer_len = 0; |
|
122 |
||
123 |
_arena = &_ciEnv_arena; |
|
124 |
_factory = new (_arena) ciObjectFactory(_arena, 128); |
|
125 |
||
126 |
// Preload commonly referenced system ciObjects. |
|
127 |
||
128 |
// During VM initialization, these instances have not yet been created. |
|
129 |
// Assertions ensure that these instances are not accessed before |
|
130 |
// their initialization. |
|
131 |
||
132 |
assert(Universe::is_fully_initialized(), "should be complete"); |
|
133 |
||
134 |
oop o = Universe::null_ptr_exception_instance(); |
|
135 |
assert(o != NULL, "should have been initialized"); |
|
136 |
_NullPointerException_instance = get_object(o)->as_instance(); |
|
137 |
o = Universe::arithmetic_exception_instance(); |
|
138 |
assert(o != NULL, "should have been initialized"); |
|
139 |
_ArithmeticException_instance = get_object(o)->as_instance(); |
|
140 |
||
141 |
_ArrayIndexOutOfBoundsException_instance = NULL; |
|
142 |
_ArrayStoreException_instance = NULL; |
|
143 |
_ClassCastException_instance = NULL; |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
144 |
_the_null_string = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
145 |
_the_min_jint_string = NULL; |
1 | 146 |
} |
147 |
||
148 |
ciEnv::ciEnv(Arena* arena) { |
|
149 |
ASSERT_IN_VM; |
|
150 |
||
151 |
// Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc. |
|
152 |
CompilerThread* current_thread = CompilerThread::current(); |
|
153 |
assert(current_thread->env() == NULL, "must be"); |
|
154 |
current_thread->set_env(this); |
|
155 |
assert(ciEnv::current() == this, "sanity"); |
|
156 |
||
157 |
_oop_recorder = NULL; |
|
158 |
_debug_info = NULL; |
|
159 |
_dependencies = NULL; |
|
160 |
_failure_reason = NULL; |
|
161 |
_compilable = MethodCompilable_never; |
|
162 |
_break_at_compile = false; |
|
163 |
_compiler_data = NULL; |
|
164 |
#ifndef PRODUCT |
|
165 |
assert(firstEnv, "must be first"); |
|
166 |
firstEnv = false; |
|
167 |
#endif /* !PRODUCT */ |
|
168 |
||
169 |
_system_dictionary_modification_counter = 0; |
|
170 |
_num_inlined_bytecodes = 0; |
|
171 |
_task = NULL; |
|
172 |
_log = NULL; |
|
173 |
||
174 |
// Temporary buffer for creating symbols and such. |
|
175 |
_name_buffer = NULL; |
|
176 |
_name_buffer_len = 0; |
|
177 |
||
178 |
_arena = arena; |
|
179 |
_factory = new (_arena) ciObjectFactory(_arena, 128); |
|
180 |
||
181 |
// Preload commonly referenced system ciObjects. |
|
182 |
||
183 |
// During VM initialization, these instances have not yet been created. |
|
184 |
// Assertions ensure that these instances are not accessed before |
|
185 |
// their initialization. |
|
186 |
||
187 |
assert(Universe::is_fully_initialized(), "must be"); |
|
188 |
||
189 |
oop o = Universe::null_ptr_exception_instance(); |
|
190 |
assert(o != NULL, "should have been initialized"); |
|
191 |
_NullPointerException_instance = get_object(o)->as_instance(); |
|
192 |
o = Universe::arithmetic_exception_instance(); |
|
193 |
assert(o != NULL, "should have been initialized"); |
|
194 |
_ArithmeticException_instance = get_object(o)->as_instance(); |
|
195 |
||
196 |
_ArrayIndexOutOfBoundsException_instance = NULL; |
|
197 |
_ArrayStoreException_instance = NULL; |
|
198 |
_ClassCastException_instance = NULL; |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
199 |
_the_null_string = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
200 |
_the_min_jint_string = NULL; |
1 | 201 |
} |
202 |
||
203 |
ciEnv::~ciEnv() { |
|
204 |
CompilerThread* current_thread = CompilerThread::current(); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
205 |
_factory->remove_symbols(); |
1 | 206 |
current_thread->set_env(NULL); |
207 |
} |
|
208 |
||
209 |
// ------------------------------------------------------------------ |
|
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
210 |
// Cache Jvmti state |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
211 |
void ciEnv::cache_jvmti_state() { |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
212 |
VM_ENTRY_MARK; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
213 |
// Get Jvmti capabilities under lock to get consistant values. |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
214 |
MutexLocker mu(JvmtiThreadState_lock); |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
215 |
_jvmti_can_hotswap_or_post_breakpoint = JvmtiExport::can_hotswap_or_post_breakpoint(); |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
216 |
_jvmti_can_access_local_variables = JvmtiExport::can_access_local_variables(); |
4761
bdb7375a1fee
6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents:
4571
diff
changeset
|
217 |
_jvmti_can_post_on_exceptions = JvmtiExport::can_post_on_exceptions(); |
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
218 |
} |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
219 |
|
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
220 |
// ------------------------------------------------------------------ |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
221 |
// Cache DTrace flags |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
222 |
void ciEnv::cache_dtrace_flags() { |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
223 |
// Need lock? |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
224 |
_dtrace_extended_probes = ExtendedDTraceProbes; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
225 |
if (_dtrace_extended_probes) { |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
226 |
_dtrace_monitor_probes = true; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
227 |
_dtrace_method_probes = true; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
228 |
_dtrace_alloc_probes = true; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
229 |
} else { |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
230 |
_dtrace_monitor_probes = DTraceMonitorProbes; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
231 |
_dtrace_method_probes = DTraceMethodProbes; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
232 |
_dtrace_alloc_probes = DTraceAllocProbes; |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
233 |
} |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
234 |
} |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
235 |
|
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
236 |
// ------------------------------------------------------------------ |
1 | 237 |
// helper for lazy exception creation |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
238 |
ciInstance* ciEnv::get_or_create_exception(jobject& handle, Symbol* name) { |
1 | 239 |
VM_ENTRY_MARK; |
240 |
if (handle == NULL) { |
|
241 |
// Cf. universe.cpp, creation of Universe::_null_ptr_exception_instance. |
|
242 |
klassOop k = SystemDictionary::find(name, Handle(), Handle(), THREAD); |
|
243 |
jobject objh = NULL; |
|
244 |
if (!HAS_PENDING_EXCEPTION && k != NULL) { |
|
245 |
oop obj = instanceKlass::cast(k)->allocate_permanent_instance(THREAD); |
|
246 |
if (!HAS_PENDING_EXCEPTION) |
|
247 |
objh = JNIHandles::make_global(obj); |
|
248 |
} |
|
249 |
if (HAS_PENDING_EXCEPTION) { |
|
250 |
CLEAR_PENDING_EXCEPTION; |
|
251 |
} else { |
|
252 |
handle = objh; |
|
253 |
} |
|
254 |
} |
|
255 |
oop obj = JNIHandles::resolve(handle); |
|
256 |
return obj == NULL? NULL: get_object(obj)->as_instance(); |
|
257 |
} |
|
258 |
||
259 |
// ------------------------------------------------------------------ |
|
260 |
// ciEnv::ArrayIndexOutOfBoundsException_instance, etc. |
|
261 |
ciInstance* ciEnv::ArrayIndexOutOfBoundsException_instance() { |
|
262 |
if (_ArrayIndexOutOfBoundsException_instance == NULL) { |
|
263 |
_ArrayIndexOutOfBoundsException_instance |
|
264 |
= get_or_create_exception(_ArrayIndexOutOfBoundsException_handle, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
265 |
vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); |
1 | 266 |
} |
267 |
return _ArrayIndexOutOfBoundsException_instance; |
|
268 |
} |
|
269 |
ciInstance* ciEnv::ArrayStoreException_instance() { |
|
270 |
if (_ArrayStoreException_instance == NULL) { |
|
271 |
_ArrayStoreException_instance |
|
272 |
= get_or_create_exception(_ArrayStoreException_handle, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
273 |
vmSymbols::java_lang_ArrayStoreException()); |
1 | 274 |
} |
275 |
return _ArrayStoreException_instance; |
|
276 |
} |
|
277 |
ciInstance* ciEnv::ClassCastException_instance() { |
|
278 |
if (_ClassCastException_instance == NULL) { |
|
279 |
_ClassCastException_instance |
|
280 |
= get_or_create_exception(_ClassCastException_handle, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
281 |
vmSymbols::java_lang_ClassCastException()); |
1 | 282 |
} |
283 |
return _ClassCastException_instance; |
|
284 |
} |
|
285 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
286 |
ciInstance* ciEnv::the_null_string() { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
287 |
if (_the_null_string == NULL) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
288 |
VM_ENTRY_MARK; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
289 |
_the_null_string = get_object(Universe::the_null_string())->as_instance(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
290 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
291 |
return _the_null_string; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
292 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
293 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
294 |
ciInstance* ciEnv::the_min_jint_string() { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
295 |
if (_the_min_jint_string == NULL) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
296 |
VM_ENTRY_MARK; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
297 |
_the_min_jint_string = get_object(Universe::the_min_jint_string())->as_instance(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
298 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
299 |
return _the_min_jint_string; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
300 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4429
diff
changeset
|
301 |
|
1 | 302 |
// ------------------------------------------------------------------ |
303 |
// ciEnv::get_method_from_handle |
|
304 |
ciMethod* ciEnv::get_method_from_handle(jobject method) { |
|
305 |
VM_ENTRY_MARK; |
|
306 |
return get_object(JNIHandles::resolve(method))->as_method(); |
|
307 |
} |
|
308 |
||
309 |
// ------------------------------------------------------------------ |
|
310 |
// ciEnv::make_array |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
311 |
ciArray* ciEnv::make_system_array(GrowableArray<ciObject*>* objects) { |
1 | 312 |
VM_ENTRY_MARK; |
313 |
int length = objects->length(); |
|
314 |
objArrayOop a = oopFactory::new_system_objArray(length, THREAD); |
|
315 |
if (HAS_PENDING_EXCEPTION) { |
|
316 |
CLEAR_PENDING_EXCEPTION; |
|
317 |
record_out_of_memory_failure(); |
|
318 |
return NULL; |
|
319 |
} |
|
320 |
for (int i = 0; i < length; i++) { |
|
321 |
a->obj_at_put(i, objects->at(i)->get_oop()); |
|
322 |
} |
|
323 |
assert(a->is_perm(), ""); |
|
324 |
return get_object(a)->as_array(); |
|
325 |
} |
|
326 |
||
327 |
||
328 |
// ------------------------------------------------------------------ |
|
329 |
// ciEnv::array_element_offset_in_bytes |
|
330 |
int ciEnv::array_element_offset_in_bytes(ciArray* a_h, ciObject* o_h) { |
|
331 |
VM_ENTRY_MARK; |
|
332 |
objArrayOop a = (objArrayOop)a_h->get_oop(); |
|
333 |
assert(a->is_objArray(), ""); |
|
334 |
int length = a->length(); |
|
335 |
oop o = o_h->get_oop(); |
|
336 |
for (int i = 0; i < length; i++) { |
|
337 |
if (a->obj_at(i) == o) return i; |
|
338 |
} |
|
339 |
return -1; |
|
340 |
} |
|
341 |
||
342 |
||
343 |
// ------------------------------------------------------------------ |
|
344 |
// ciEnv::check_klass_accessiblity |
|
345 |
// |
|
346 |
// Note: the logic of this method should mirror the logic of |
|
347 |
// constantPoolOopDesc::verify_constant_pool_resolve. |
|
348 |
bool ciEnv::check_klass_accessibility(ciKlass* accessing_klass, |
|
349 |
klassOop resolved_klass) { |
|
350 |
if (accessing_klass == NULL || !accessing_klass->is_loaded()) { |
|
351 |
return true; |
|
352 |
} |
|
353 |
if (accessing_klass->is_obj_array()) { |
|
354 |
accessing_klass = accessing_klass->as_obj_array_klass()->base_element_klass(); |
|
355 |
} |
|
356 |
if (!accessing_klass->is_instance_klass()) { |
|
357 |
return true; |
|
358 |
} |
|
359 |
||
360 |
if (resolved_klass->klass_part()->oop_is_objArray()) { |
|
361 |
// Find the element klass, if this is an array. |
|
362 |
resolved_klass = objArrayKlass::cast(resolved_klass)->bottom_klass(); |
|
363 |
} |
|
364 |
if (resolved_klass->klass_part()->oop_is_instance()) { |
|
365 |
return Reflection::verify_class_access(accessing_klass->get_klassOop(), |
|
366 |
resolved_klass, |
|
367 |
true); |
|
368 |
} |
|
369 |
return true; |
|
370 |
} |
|
371 |
||
372 |
// ------------------------------------------------------------------ |
|
373 |
// ciEnv::get_klass_by_name_impl |
|
374 |
ciKlass* ciEnv::get_klass_by_name_impl(ciKlass* accessing_klass, |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
375 |
constantPoolHandle cpool, |
1 | 376 |
ciSymbol* name, |
377 |
bool require_local) { |
|
378 |
ASSERT_IN_VM; |
|
379 |
EXCEPTION_CONTEXT; |
|
380 |
||
381 |
// Now we need to check the SystemDictionary |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
382 |
Symbol* sym = name->get_symbol(); |
1 | 383 |
if (sym->byte_at(0) == 'L' && |
384 |
sym->byte_at(sym->utf8_length()-1) == ';') { |
|
385 |
// This is a name from a signature. Strip off the trimmings. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
386 |
// Call recursive to keep scope of strippedsym. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
387 |
TempNewSymbol strippedsym = SymbolTable::new_symbol(sym->as_utf8()+1, |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
388 |
sym->utf8_length()-2, |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
389 |
KILL_COMPILE_ON_FATAL_(_unloaded_ciinstance_klass)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
390 |
ciSymbol* strippedname = get_symbol(strippedsym); |
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
391 |
return get_klass_by_name_impl(accessing_klass, cpool, strippedname, require_local); |
1 | 392 |
} |
393 |
||
394 |
// Check for prior unloaded klass. The SystemDictionary's answers |
|
395 |
// can vary over time but the compiler needs consistency. |
|
396 |
ciKlass* unloaded_klass = check_get_unloaded_klass(accessing_klass, name); |
|
397 |
if (unloaded_klass != NULL) { |
|
398 |
if (require_local) return NULL; |
|
399 |
return unloaded_klass; |
|
400 |
} |
|
401 |
||
402 |
Handle loader(THREAD, (oop)NULL); |
|
403 |
Handle domain(THREAD, (oop)NULL); |
|
404 |
if (accessing_klass != NULL) { |
|
405 |
loader = Handle(THREAD, accessing_klass->loader()); |
|
406 |
domain = Handle(THREAD, accessing_klass->protection_domain()); |
|
407 |
} |
|
408 |
||
409 |
// setup up the proper type to return on OOM |
|
410 |
ciKlass* fail_type; |
|
411 |
if (sym->byte_at(0) == '[') { |
|
412 |
fail_type = _unloaded_ciobjarrayklass; |
|
413 |
} else { |
|
414 |
fail_type = _unloaded_ciinstance_klass; |
|
415 |
} |
|
7918
ce1e4ae77aea
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents:
7397
diff
changeset
|
416 |
KlassHandle found_klass; |
8314
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
417 |
{ |
8333
11a7f6fc6419
7021531: lock ordering problems after fix for 6354181
never
parents:
8314
diff
changeset
|
418 |
ttyUnlocker ttyul; // release tty lock to avoid ordering problems |
8314
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
419 |
MutexLocker ml(Compile_lock); |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
420 |
klassOop kls; |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
421 |
if (!require_local) { |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
422 |
kls = SystemDictionary::find_constrained_instance_or_array_klass(sym, loader, |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
423 |
KILL_COMPILE_ON_FATAL_(fail_type)); |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
424 |
} else { |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
425 |
kls = SystemDictionary::find_instance_or_array_klass(sym, loader, domain, |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
426 |
KILL_COMPILE_ON_FATAL_(fail_type)); |
057b1c20fd7e
6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents:
8076
diff
changeset
|
427 |
} |
7918
ce1e4ae77aea
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents:
7397
diff
changeset
|
428 |
found_klass = KlassHandle(THREAD, kls); |
1 | 429 |
} |
430 |
||
431 |
// If we fail to find an array klass, look again for its element type. |
|
432 |
// The element type may be available either locally or via constraints. |
|
433 |
// In either case, if we can find the element type in the system dictionary, |
|
434 |
// we must build an array type around it. The CI requires array klasses |
|
435 |
// to be loaded if their element klasses are loaded, except when memory |
|
436 |
// is exhausted. |
|
437 |
if (sym->byte_at(0) == '[' && |
|
438 |
(sym->byte_at(1) == '[' || sym->byte_at(1) == 'L')) { |
|
439 |
// We have an unloaded array. |
|
440 |
// Build it on the fly if the element class exists. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
441 |
TempNewSymbol elem_sym = SymbolTable::new_symbol(sym->as_utf8()+1, |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
442 |
sym->utf8_length()-1, |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
443 |
KILL_COMPILE_ON_FATAL_(fail_type)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
444 |
|
1 | 445 |
// Get element ciKlass recursively. |
446 |
ciKlass* elem_klass = |
|
447 |
get_klass_by_name_impl(accessing_klass, |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
448 |
cpool, |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
449 |
get_symbol(elem_sym), |
1 | 450 |
require_local); |
451 |
if (elem_klass != NULL && elem_klass->is_loaded()) { |
|
452 |
// Now make an array for it |
|
453 |
return ciObjArrayKlass::make_impl(elem_klass); |
|
454 |
} |
|
455 |
} |
|
456 |
||
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
457 |
if (found_klass() == NULL && !cpool.is_null() && cpool->has_preresolution()) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
458 |
// Look inside the constant pool for pre-resolved class entries. |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
459 |
for (int i = cpool->length() - 1; i >= 1; i--) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
460 |
if (cpool->tag_at(i).is_klass()) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
461 |
klassOop kls = cpool->resolved_klass_at(i); |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
462 |
if (Klass::cast(kls)->name() == sym) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
463 |
found_klass = KlassHandle(THREAD, kls); |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
464 |
break; |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
465 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
466 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
467 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
468 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
469 |
|
7918
ce1e4ae77aea
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents:
7397
diff
changeset
|
470 |
if (found_klass() != NULL) { |
1 | 471 |
// Found it. Build a CI handle. |
7918
ce1e4ae77aea
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents:
7397
diff
changeset
|
472 |
return get_object(found_klass())->as_klass(); |
1 | 473 |
} |
474 |
||
475 |
if (require_local) return NULL; |
|
10734
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
476 |
|
1 | 477 |
// Not yet loaded into the VM, or not governed by loader constraints. |
478 |
// Make a CI representative for it. |
|
479 |
return get_unloaded_klass(accessing_klass, name); |
|
480 |
} |
|
481 |
||
482 |
// ------------------------------------------------------------------ |
|
483 |
// ciEnv::get_klass_by_name |
|
484 |
ciKlass* ciEnv::get_klass_by_name(ciKlass* accessing_klass, |
|
485 |
ciSymbol* klass_name, |
|
486 |
bool require_local) { |
|
487 |
GUARDED_VM_ENTRY(return get_klass_by_name_impl(accessing_klass, |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
488 |
constantPoolHandle(), |
1 | 489 |
klass_name, |
490 |
require_local);) |
|
491 |
} |
|
492 |
||
493 |
// ------------------------------------------------------------------ |
|
494 |
// ciEnv::get_klass_by_index_impl |
|
495 |
// |
|
496 |
// Implementation of get_klass_by_index. |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
497 |
ciKlass* ciEnv::get_klass_by_index_impl(constantPoolHandle cpool, |
1 | 498 |
int index, |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
499 |
bool& is_accessible, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
500 |
ciInstanceKlass* accessor) { |
1 | 501 |
EXCEPTION_CONTEXT; |
10734
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
502 |
KlassHandle klass(THREAD, constantPoolOopDesc::klass_at_if_loaded(cpool, index)); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
503 |
Symbol* klass_name = NULL; |
1 | 504 |
if (klass.is_null()) { |
505 |
// The klass has not been inserted into the constant pool. |
|
506 |
// Try to look it up by name. |
|
507 |
{ |
|
508 |
// We have to lock the cpool to keep the oop from being resolved |
|
509 |
// while we are accessing it. |
|
510 |
ObjectLocker ol(cpool, THREAD); |
|
511 |
||
512 |
constantTag tag = cpool->tag_at(index); |
|
513 |
if (tag.is_klass()) { |
|
514 |
// The klass has been inserted into the constant pool |
|
515 |
// very recently. |
|
516 |
klass = KlassHandle(THREAD, cpool->resolved_klass_at(index)); |
|
517 |
} else if (tag.is_symbol()) { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
518 |
klass_name = cpool->symbol_at(index); |
1 | 519 |
} else { |
520 |
assert(cpool->tag_at(index).is_unresolved_klass(), "wrong tag"); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
521 |
klass_name = cpool->unresolved_klass_at(index); |
1 | 522 |
} |
523 |
} |
|
524 |
} |
|
525 |
||
526 |
if (klass.is_null()) { |
|
527 |
// Not found in constant pool. Use the name to do the lookup. |
|
528 |
ciKlass* k = get_klass_by_name_impl(accessor, |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
529 |
cpool, |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
530 |
get_symbol(klass_name), |
1 | 531 |
false); |
532 |
// Calculate accessibility the hard way. |
|
533 |
if (!k->is_loaded()) { |
|
534 |
is_accessible = false; |
|
535 |
} else if (k->loader() != accessor->loader() && |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
536 |
get_klass_by_name_impl(accessor, cpool, k->name(), true) == NULL) { |
1 | 537 |
// Loaded only remotely. Not linked yet. |
538 |
is_accessible = false; |
|
539 |
} else { |
|
540 |
// Linked locally, and we must also check public/private, etc. |
|
541 |
is_accessible = check_klass_accessibility(accessor, k->get_klassOop()); |
|
542 |
} |
|
543 |
return k; |
|
544 |
} |
|
545 |
||
546 |
// Check for prior unloaded klass. The SystemDictionary's answers |
|
547 |
// can vary over time but the compiler needs consistency. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
548 |
ciSymbol* name = get_symbol(klass()->klass_part()->name()); |
1 | 549 |
ciKlass* unloaded_klass = check_get_unloaded_klass(accessor, name); |
550 |
if (unloaded_klass != NULL) { |
|
551 |
is_accessible = false; |
|
552 |
return unloaded_klass; |
|
553 |
} |
|
554 |
||
555 |
// It is known to be accessible, since it was found in the constant pool. |
|
556 |
is_accessible = true; |
|
557 |
return get_object(klass())->as_klass(); |
|
558 |
} |
|
559 |
||
560 |
// ------------------------------------------------------------------ |
|
561 |
// ciEnv::get_klass_by_index |
|
562 |
// |
|
563 |
// Get a klass from the constant pool. |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
564 |
ciKlass* ciEnv::get_klass_by_index(constantPoolHandle cpool, |
1 | 565 |
int index, |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
566 |
bool& is_accessible, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
567 |
ciInstanceKlass* accessor) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
568 |
GUARDED_VM_ENTRY(return get_klass_by_index_impl(cpool, index, is_accessible, accessor);) |
1 | 569 |
} |
570 |
||
571 |
// ------------------------------------------------------------------ |
|
572 |
// ciEnv::get_constant_by_index_impl |
|
573 |
// |
|
574 |
// Implementation of get_constant_by_index(). |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
575 |
ciConstant ciEnv::get_constant_by_index_impl(constantPoolHandle cpool, |
5882 | 576 |
int pool_index, int cache_index, |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
577 |
ciInstanceKlass* accessor) { |
5882 | 578 |
bool ignore_will_link; |
1 | 579 |
EXCEPTION_CONTEXT; |
5882 | 580 |
int index = pool_index; |
581 |
if (cache_index >= 0) { |
|
582 |
assert(index < 0, "only one kind of index at a time"); |
|
583 |
ConstantPoolCacheEntry* cpc_entry = cpool->cache()->entry_at(cache_index); |
|
584 |
index = cpc_entry->constant_pool_index(); |
|
585 |
oop obj = cpc_entry->f1(); |
|
586 |
if (obj != NULL) { |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
587 |
assert(obj->is_instance() || obj->is_array(), "must be a Java reference"); |
5882 | 588 |
ciObject* ciobj = get_object(obj); |
589 |
return ciConstant(T_OBJECT, ciobj); |
|
590 |
} |
|
591 |
} |
|
1 | 592 |
constantTag tag = cpool->tag_at(index); |
593 |
if (tag.is_int()) { |
|
594 |
return ciConstant(T_INT, (jint)cpool->int_at(index)); |
|
595 |
} else if (tag.is_long()) { |
|
596 |
return ciConstant((jlong)cpool->long_at(index)); |
|
597 |
} else if (tag.is_float()) { |
|
598 |
return ciConstant((jfloat)cpool->float_at(index)); |
|
599 |
} else if (tag.is_double()) { |
|
600 |
return ciConstant((jdouble)cpool->double_at(index)); |
|
601 |
} else if (tag.is_string() || tag.is_unresolved_string()) { |
|
1550
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
602 |
oop string = NULL; |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
603 |
if (cpool->is_pseudo_string_at(index)) { |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
604 |
string = cpool->pseudo_string_at(index); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
605 |
} else { |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
606 |
string = cpool->string_at(index, THREAD); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
607 |
if (HAS_PENDING_EXCEPTION) { |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
608 |
CLEAR_PENDING_EXCEPTION; |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
609 |
record_out_of_memory_failure(); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
610 |
return ciConstant(); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
1
diff
changeset
|
611 |
} |
1 | 612 |
} |
613 |
ciObject* constant = get_object(string); |
|
614 |
assert (constant->is_instance(), "must be an instance, or not? "); |
|
615 |
return ciConstant(T_OBJECT, constant); |
|
616 |
} else if (tag.is_klass() || tag.is_unresolved_klass()) { |
|
617 |
// 4881222: allow ldc to take a class type |
|
5882 | 618 |
ciKlass* klass = get_klass_by_index_impl(cpool, index, ignore_will_link, accessor); |
1 | 619 |
if (HAS_PENDING_EXCEPTION) { |
620 |
CLEAR_PENDING_EXCEPTION; |
|
621 |
record_out_of_memory_failure(); |
|
622 |
return ciConstant(); |
|
623 |
} |
|
624 |
assert (klass->is_instance_klass() || klass->is_array_klass(), |
|
625 |
"must be an instance or array klass "); |
|
5882 | 626 |
return ciConstant(T_OBJECT, klass->java_mirror()); |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
627 |
} else if (tag.is_object()) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
628 |
oop obj = cpool->object_at(index); |
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
629 |
assert(obj->is_instance() || obj->is_array(), "must be a Java reference"); |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
630 |
ciObject* ciobj = get_object(obj); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
631 |
return ciConstant(T_OBJECT, ciobj); |
5882 | 632 |
} else if (tag.is_method_type()) { |
633 |
// must execute Java code to link this CP entry into cache[i].f1 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
634 |
ciSymbol* signature = get_symbol(cpool->method_type_signature_at(index)); |
5882 | 635 |
ciObject* ciobj = get_unloaded_method_type_constant(signature); |
636 |
return ciConstant(T_OBJECT, ciobj); |
|
637 |
} else if (tag.is_method_handle()) { |
|
638 |
// must execute Java code to link this CP entry into cache[i].f1 |
|
639 |
int ref_kind = cpool->method_handle_ref_kind_at(index); |
|
640 |
int callee_index = cpool->method_handle_klass_index_at(index); |
|
641 |
ciKlass* callee = get_klass_by_index_impl(cpool, callee_index, ignore_will_link, accessor); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
642 |
ciSymbol* name = get_symbol(cpool->method_handle_name_ref_at(index)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
643 |
ciSymbol* signature = get_symbol(cpool->method_handle_signature_ref_at(index)); |
5882 | 644 |
ciObject* ciobj = get_unloaded_method_handle_constant(callee, name, signature, ref_kind); |
645 |
return ciConstant(T_OBJECT, ciobj); |
|
1 | 646 |
} else { |
647 |
ShouldNotReachHere(); |
|
648 |
return ciConstant(); |
|
649 |
} |
|
650 |
} |
|
651 |
||
652 |
// ------------------------------------------------------------------ |
|
653 |
// ciEnv::get_constant_by_index |
|
654 |
// |
|
655 |
// Pull a constant out of the constant pool. How appropriate. |
|
656 |
// |
|
657 |
// Implementation note: this query is currently in no way cached. |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
658 |
ciConstant ciEnv::get_constant_by_index(constantPoolHandle cpool, |
5882 | 659 |
int pool_index, int cache_index, |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
660 |
ciInstanceKlass* accessor) { |
5882 | 661 |
GUARDED_VM_ENTRY(return get_constant_by_index_impl(cpool, pool_index, cache_index, accessor);) |
1 | 662 |
} |
663 |
||
664 |
// ------------------------------------------------------------------ |
|
665 |
// ciEnv::get_field_by_index_impl |
|
666 |
// |
|
667 |
// Implementation of get_field_by_index. |
|
668 |
// |
|
669 |
// Implementation note: the results of field lookups are cached |
|
670 |
// in the accessor klass. |
|
671 |
ciField* ciEnv::get_field_by_index_impl(ciInstanceKlass* accessor, |
|
672 |
int index) { |
|
673 |
ciConstantPoolCache* cache = accessor->field_cache(); |
|
674 |
if (cache == NULL) { |
|
675 |
ciField* field = new (arena()) ciField(accessor, index); |
|
676 |
return field; |
|
677 |
} else { |
|
678 |
ciField* field = (ciField*)cache->get(index); |
|
679 |
if (field == NULL) { |
|
680 |
field = new (arena()) ciField(accessor, index); |
|
681 |
cache->insert(index, field); |
|
682 |
} |
|
683 |
return field; |
|
684 |
} |
|
685 |
} |
|
686 |
||
687 |
// ------------------------------------------------------------------ |
|
688 |
// ciEnv::get_field_by_index |
|
689 |
// |
|
690 |
// Get a field by index from a klass's constant pool. |
|
691 |
ciField* ciEnv::get_field_by_index(ciInstanceKlass* accessor, |
|
692 |
int index) { |
|
693 |
GUARDED_VM_ENTRY(return get_field_by_index_impl(accessor, index);) |
|
694 |
} |
|
695 |
||
696 |
// ------------------------------------------------------------------ |
|
697 |
// ciEnv::lookup_method |
|
698 |
// |
|
699 |
// Perform an appropriate method lookup based on accessor, holder, |
|
700 |
// name, signature, and bytecode. |
|
701 |
methodOop ciEnv::lookup_method(instanceKlass* accessor, |
|
702 |
instanceKlass* holder, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
703 |
Symbol* name, |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
704 |
Symbol* sig, |
1 | 705 |
Bytecodes::Code bc) { |
706 |
EXCEPTION_CONTEXT; |
|
707 |
KlassHandle h_accessor(THREAD, accessor); |
|
708 |
KlassHandle h_holder(THREAD, holder); |
|
709 |
LinkResolver::check_klass_accessability(h_accessor, h_holder, KILL_COMPILE_ON_FATAL_(NULL)); |
|
710 |
methodHandle dest_method; |
|
711 |
switch (bc) { |
|
712 |
case Bytecodes::_invokestatic: |
|
713 |
dest_method = |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
714 |
LinkResolver::resolve_static_call_or_null(h_holder, name, sig, h_accessor); |
1 | 715 |
break; |
716 |
case Bytecodes::_invokespecial: |
|
717 |
dest_method = |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
718 |
LinkResolver::resolve_special_call_or_null(h_holder, name, sig, h_accessor); |
1 | 719 |
break; |
720 |
case Bytecodes::_invokeinterface: |
|
721 |
dest_method = |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
722 |
LinkResolver::linktime_resolve_interface_method_or_null(h_holder, name, sig, |
1 | 723 |
h_accessor, true); |
724 |
break; |
|
725 |
case Bytecodes::_invokevirtual: |
|
726 |
dest_method = |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
727 |
LinkResolver::linktime_resolve_virtual_method_or_null(h_holder, name, sig, |
1 | 728 |
h_accessor, true); |
729 |
break; |
|
730 |
default: ShouldNotReachHere(); |
|
731 |
} |
|
732 |
||
733 |
return dest_method(); |
|
734 |
} |
|
735 |
||
736 |
||
737 |
// ------------------------------------------------------------------ |
|
738 |
// ciEnv::get_method_by_index_impl |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
739 |
ciMethod* ciEnv::get_method_by_index_impl(constantPoolHandle cpool, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
740 |
int index, Bytecodes::Code bc, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
741 |
ciInstanceKlass* accessor) { |
1 | 742 |
int holder_index = cpool->klass_ref_index_at(index); |
743 |
bool holder_is_accessible; |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
744 |
ciKlass* holder = get_klass_by_index_impl(cpool, holder_index, holder_is_accessible, accessor); |
1 | 745 |
ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder); |
746 |
||
747 |
// Get the method's name and signature. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
748 |
Symbol* name_sym = cpool->name_ref_at(index); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
749 |
Symbol* sig_sym = cpool->signature_ref_at(index); |
1 | 750 |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
751 |
if (cpool->has_preresolution() |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
752 |
|| (holder == ciEnv::MethodHandle_klass() && |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
753 |
methodOopDesc::is_method_handle_invoke_name(name_sym))) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
754 |
// Short-circuit lookups for JSR 292-related call sites. |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
755 |
// That is, do not rely only on name-based lookups, because they may fail |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
756 |
// if the names are not resolvable in the boot class loader (7056328). |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
757 |
switch (bc) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
758 |
case Bytecodes::_invokevirtual: |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
759 |
case Bytecodes::_invokeinterface: |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
760 |
case Bytecodes::_invokespecial: |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
761 |
case Bytecodes::_invokestatic: |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
762 |
{ |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
763 |
methodOop m = constantPoolOopDesc::method_at_if_loaded(cpool, index, bc); |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
764 |
if (m != NULL) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
765 |
return get_object(m)->as_method(); |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
766 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
767 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
768 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
769 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
770 |
|
1 | 771 |
if (holder_is_accessible) { // Our declared holder is loaded. |
772 |
instanceKlass* lookup = declared_holder->get_instanceKlass(); |
|
773 |
methodOop m = lookup_method(accessor->get_instanceKlass(), lookup, name_sym, sig_sym, bc); |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
774 |
if (m != NULL && |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
775 |
(bc == Bytecodes::_invokestatic |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
776 |
? instanceKlass::cast(m->method_holder())->is_not_initialized() |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
777 |
: !instanceKlass::cast(m->method_holder())->is_loaded())) { |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
778 |
m = NULL; |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
779 |
} |
1 | 780 |
if (m != NULL) { |
781 |
// We found the method. |
|
782 |
return get_object(m)->as_method(); |
|
783 |
} |
|
784 |
} |
|
785 |
||
786 |
// Either the declared holder was not loaded, or the method could |
|
787 |
// not be found. Create a dummy ciMethod to represent the failed |
|
788 |
// lookup. |
|
10734
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
789 |
ciSymbol* name = get_symbol(name_sym); |
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
790 |
ciSymbol* signature = get_symbol(sig_sym); |
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
791 |
return get_unloaded_method(declared_holder, name, signature, accessor); |
1 | 792 |
} |
793 |
||
794 |
||
795 |
// ------------------------------------------------------------------ |
|
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
796 |
// ciEnv::get_fake_invokedynamic_method_impl |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
797 |
ciMethod* ciEnv::get_fake_invokedynamic_method_impl(constantPoolHandle cpool, |
10734
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
798 |
int index, Bytecodes::Code bc, |
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
799 |
ciInstanceKlass* accessor) { |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
800 |
// Compare the following logic with InterpreterRuntime::resolve_invokedynamic. |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
801 |
assert(bc == Bytecodes::_invokedynamic, "must be invokedynamic"); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
802 |
|
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
803 |
bool is_resolved = cpool->cache()->main_entry_at(index)->is_resolved(bc); |
9328
144894b3384b
6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents:
8921
diff
changeset
|
804 |
if (is_resolved && cpool->cache()->secondary_entry_at(index)->is_f1_null()) |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
805 |
// FIXME: code generation could allow for null (unlinked) call site |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
806 |
is_resolved = false; |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
807 |
|
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
808 |
// Call site might not be resolved yet. We could create a real invoker method from the |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
809 |
// compiler, but it is simpler to stop the code path here with an unlinked method. |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
810 |
if (!is_resolved) { |
10734
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
811 |
ciInstanceKlass* holder = get_object(SystemDictionary::MethodHandle_klass())->as_instance_klass(); |
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
812 |
ciSymbol* name = ciSymbol::invokeExact_name(); |
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
813 |
ciSymbol* signature = get_symbol(cpool->signature_ref_at(index)); |
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
814 |
return get_unloaded_method(holder, name, signature, accessor); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
815 |
} |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
816 |
|
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
817 |
// Get the invoker methodOop from the constant pool. |
6064
71e316283a85
6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents:
5882
diff
changeset
|
818 |
oop f1_value = cpool->cache()->main_entry_at(index)->f1(); |
9328
144894b3384b
6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents:
8921
diff
changeset
|
819 |
methodOop signature_invoker = (methodOop) f1_value; |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
820 |
assert(signature_invoker != NULL && signature_invoker->is_method() && signature_invoker->is_method_handle_invoke(), |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
821 |
"correct result from LinkResolver::resolve_invokedynamic"); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
822 |
|
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
5353
diff
changeset
|
823 |
return get_object(signature_invoker)->as_method(); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
824 |
} |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
825 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
826 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
827 |
// ------------------------------------------------------------------ |
1 | 828 |
// ciEnv::get_instance_klass_for_declared_method_holder |
829 |
ciInstanceKlass* ciEnv::get_instance_klass_for_declared_method_holder(ciKlass* method_holder) { |
|
830 |
// For the case of <array>.clone(), the method holder can be a ciArrayKlass |
|
831 |
// instead of a ciInstanceKlass. For that case simply pretend that the |
|
832 |
// declared holder is Object.clone since that's where the call will bottom out. |
|
833 |
// A more correct fix would trickle out through many interfaces in CI, |
|
834 |
// requiring ciInstanceKlass* to become ciKlass* and many more places would |
|
835 |
// require checks to make sure the expected type was found. Given that this |
|
836 |
// only occurs for clone() the more extensive fix seems like overkill so |
|
837 |
// instead we simply smear the array type into Object. |
|
838 |
if (method_holder->is_instance_klass()) { |
|
839 |
return method_holder->as_instance_klass(); |
|
840 |
} else if (method_holder->is_array_klass()) { |
|
841 |
return current()->Object_klass(); |
|
842 |
} else { |
|
843 |
ShouldNotReachHere(); |
|
844 |
} |
|
845 |
return NULL; |
|
846 |
} |
|
847 |
||
848 |
||
849 |
// ------------------------------------------------------------------ |
|
850 |
// ciEnv::get_method_by_index |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
851 |
ciMethod* ciEnv::get_method_by_index(constantPoolHandle cpool, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
852 |
int index, Bytecodes::Code bc, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
853 |
ciInstanceKlass* accessor) { |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
854 |
if (bc == Bytecodes::_invokedynamic) { |
10734
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
855 |
GUARDED_VM_ENTRY(return get_fake_invokedynamic_method_impl(cpool, index, bc, accessor);) |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
856 |
} else { |
10734
065435337883
7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents:
10564
diff
changeset
|
857 |
GUARDED_VM_ENTRY(return get_method_by_index_impl( cpool, index, bc, accessor);) |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
858 |
} |
1 | 859 |
} |
860 |
||
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
861 |
|
1 | 862 |
// ------------------------------------------------------------------ |
863 |
// ciEnv::name_buffer |
|
864 |
char *ciEnv::name_buffer(int req_len) { |
|
865 |
if (_name_buffer_len < req_len) { |
|
866 |
if (_name_buffer == NULL) { |
|
867 |
_name_buffer = (char*)arena()->Amalloc(sizeof(char)*req_len); |
|
868 |
_name_buffer_len = req_len; |
|
869 |
} else { |
|
870 |
_name_buffer = |
|
871 |
(char*)arena()->Arealloc(_name_buffer, _name_buffer_len, req_len); |
|
872 |
_name_buffer_len = req_len; |
|
873 |
} |
|
874 |
} |
|
875 |
return _name_buffer; |
|
876 |
} |
|
877 |
||
878 |
// ------------------------------------------------------------------ |
|
879 |
// ciEnv::is_in_vm |
|
880 |
bool ciEnv::is_in_vm() { |
|
881 |
return JavaThread::current()->thread_state() == _thread_in_vm; |
|
882 |
} |
|
883 |
||
884 |
bool ciEnv::system_dictionary_modification_counter_changed() { |
|
885 |
return _system_dictionary_modification_counter != SystemDictionary::number_of_modifications(); |
|
886 |
} |
|
887 |
||
888 |
// ------------------------------------------------------------------ |
|
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
889 |
// ciEnv::validate_compile_task_dependencies |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
890 |
// |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
891 |
// Check for changes during compilation (e.g. class loads, evolution, |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
892 |
// breakpoints, call site invalidation). |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
893 |
void ciEnv::validate_compile_task_dependencies(ciMethod* target) { |
1 | 894 |
if (failing()) return; // no need for further checks |
895 |
||
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
896 |
// First, check non-klass dependencies as we might return early and |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
897 |
// not check klass dependencies if the system dictionary |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
898 |
// modification counter hasn't changed (see below). |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
899 |
for (Dependencies::DepStream deps(dependencies()); deps.next(); ) { |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
900 |
if (deps.is_klass_type()) continue; // skip klass dependencies |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
901 |
klassOop witness = deps.check_dependency(); |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
902 |
if (witness != NULL) { |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
903 |
record_failure("invalid non-klass dependency"); |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
904 |
return; |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
905 |
} |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
906 |
} |
1 | 907 |
|
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
908 |
// Klass dependencies must be checked when the system dictionary |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
909 |
// changes. If logging is enabled all violated dependences will be |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
910 |
// recorded in the log. In debug mode check dependencies even if |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
911 |
// the system dictionary hasn't changed to verify that no invalid |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
912 |
// dependencies were inserted. Any violated dependences in this |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
913 |
// case are dumped to the tty. |
1 | 914 |
bool counter_changed = system_dictionary_modification_counter_changed(); |
915 |
||
10564 | 916 |
bool verify_deps = trueInDebug; |
917 |
if (!counter_changed && !verify_deps) return; |
|
918 |
||
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
919 |
int klass_violations = 0; |
1 | 920 |
for (Dependencies::DepStream deps(dependencies()); deps.next(); ) { |
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
921 |
if (!deps.is_klass_type()) continue; // skip non-klass dependencies |
1 | 922 |
klassOop witness = deps.check_dependency(); |
923 |
if (witness != NULL) { |
|
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
924 |
klass_violations++; |
10564 | 925 |
if (!counter_changed) { |
926 |
// Dependence failed but counter didn't change. Log a message |
|
927 |
// describing what failed and allow the assert at the end to |
|
928 |
// trigger. |
|
929 |
deps.print_dependency(witness); |
|
930 |
} else if (xtty == NULL) { |
|
931 |
// If we're not logging then a single violation is sufficient, |
|
932 |
// otherwise we want to log all the dependences which were |
|
933 |
// violated. |
|
934 |
break; |
|
935 |
} |
|
1 | 936 |
} |
937 |
} |
|
938 |
||
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
939 |
if (klass_violations != 0) { |
10564 | 940 |
#ifdef ASSERT |
941 |
if (!counter_changed && !PrintCompilation) { |
|
942 |
// Print out the compile task that failed |
|
943 |
_task->print_line(); |
|
944 |
} |
|
945 |
#endif |
|
1 | 946 |
assert(counter_changed, "failed dependencies, but counter didn't change"); |
947 |
record_failure("concurrent class loading"); |
|
948 |
} |
|
949 |
} |
|
950 |
||
951 |
// ------------------------------------------------------------------ |
|
952 |
// ciEnv::register_method |
|
953 |
void ciEnv::register_method(ciMethod* target, |
|
954 |
int entry_bci, |
|
955 |
CodeOffsets* offsets, |
|
956 |
int orig_pc_offset, |
|
957 |
CodeBuffer* code_buffer, |
|
958 |
int frame_words, |
|
959 |
OopMapSet* oop_map_set, |
|
960 |
ExceptionHandlerTable* handler_table, |
|
961 |
ImplicitExceptionTable* inc_table, |
|
962 |
AbstractCompiler* compiler, |
|
963 |
int comp_level, |
|
964 |
bool has_unsafe_access) { |
|
965 |
VM_ENTRY_MARK; |
|
966 |
nmethod* nm = NULL; |
|
967 |
{ |
|
968 |
// To prevent compile queue updates. |
|
969 |
MutexLocker locker(MethodCompileQueue_lock, THREAD); |
|
970 |
||
971 |
// Prevent SystemDictionary::add_to_hierarchy from running |
|
972 |
// and invalidating our dependencies until we install this method. |
|
973 |
MutexLocker ml(Compile_lock); |
|
974 |
||
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
975 |
// Change in Jvmti state may invalidate compilation. |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
976 |
if (!failing() && |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
977 |
( (!jvmti_can_hotswap_or_post_breakpoint() && |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
978 |
JvmtiExport::can_hotswap_or_post_breakpoint()) || |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
979 |
(!jvmti_can_access_local_variables() && |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
980 |
JvmtiExport::can_access_local_variables()) || |
4761
bdb7375a1fee
6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents:
4571
diff
changeset
|
981 |
(!jvmti_can_post_on_exceptions() && |
bdb7375a1fee
6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents:
4571
diff
changeset
|
982 |
JvmtiExport::can_post_on_exceptions()) )) { |
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
983 |
record_failure("Jvmti state change invalidated dependencies"); |
1 | 984 |
} |
985 |
||
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
986 |
// Change in DTrace flags may invalidate compilation. |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
987 |
if (!failing() && |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
988 |
( (!dtrace_extended_probes() && ExtendedDTraceProbes) || |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
989 |
(!dtrace_method_probes() && DTraceMethodProbes) || |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
990 |
(!dtrace_alloc_probes() && DTraceAllocProbes) )) { |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
991 |
record_failure("DTrace flags change invalidated dependencies"); |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
992 |
} |
1 | 993 |
|
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
994 |
if (!failing()) { |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
995 |
if (log() != NULL) { |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
996 |
// Log the dependencies which this compilation declares. |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
997 |
dependencies()->log_all_dependencies(); |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
998 |
} |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
999 |
|
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
1000 |
// Encode the dependencies now, so we can check them right away. |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
1001 |
dependencies()->encode_content_bytes(); |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
1002 |
|
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
1003 |
// Check for {class loads, evolution, breakpoints, ...} during compilation |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10008
diff
changeset
|
1004 |
validate_compile_task_dependencies(target); |
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1623
diff
changeset
|
1005 |
} |
1 | 1006 |
|
1007 |
methodHandle method(THREAD, target->get_methodOop()); |
|
1008 |
||
1009 |
if (failing()) { |
|
1010 |
// While not a true deoptimization, it is a preemptive decompile. |
|
1011 |
methodDataOop mdo = method()->method_data(); |
|
1012 |
if (mdo != NULL) { |
|
1013 |
mdo->inc_decompile_count(); |
|
1014 |
} |
|
1015 |
||
1016 |
// All buffers in the CodeBuffer are allocated in the CodeCache. |
|
1017 |
// If the code buffer is created on each compile attempt |
|
1018 |
// as in C2, then it must be freed. |
|
1019 |
code_buffer->free_blob(); |
|
1020 |
return; |
|
1021 |
} |
|
1022 |
||
1023 |
assert(offsets->value(CodeOffsets::Deopt) != -1, "must have deopt entry"); |
|
1024 |
assert(offsets->value(CodeOffsets::Exceptions) != -1, "must have exception entry"); |
|
1025 |
||
1026 |
nm = nmethod::new_nmethod(method, |
|
1027 |
compile_id(), |
|
1028 |
entry_bci, |
|
1029 |
offsets, |
|
1030 |
orig_pc_offset, |
|
1031 |
debug_info(), dependencies(), code_buffer, |
|
1032 |
frame_words, oop_map_set, |
|
1033 |
handler_table, inc_table, |
|
1034 |
compiler, comp_level); |
|
1035 |
||
1036 |
// Free codeBlobs |
|
1037 |
code_buffer->free_blob(); |
|
1038 |
||
1039 |
// stress test 6243940 by immediately making the method |
|
1040 |
// non-entrant behind the system's back. This has serious |
|
1041 |
// side effects on the code cache and is not meant for |
|
1042 |
// general stress testing |
|
1043 |
if (nm != NULL && StressNonEntrant) { |
|
1044 |
MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag); |
|
1045 |
NativeJump::patch_verified_entry(nm->entry_point(), nm->verified_entry_point(), |
|
1046 |
SharedRuntime::get_handle_wrong_method_stub()); |
|
1047 |
} |
|
1048 |
||
1049 |
if (nm == NULL) { |
|
1050 |
// The CodeCache is full. Print out warning and disable compilation. |
|
1051 |
record_failure("code cache is full"); |
|
4750 | 1052 |
{ |
1053 |
MutexUnlocker ml(Compile_lock); |
|
1054 |
MutexUnlocker locker(MethodCompileQueue_lock); |
|
1055 |
CompileBroker::handle_full_code_cache(); |
|
1 | 1056 |
} |
1057 |
} else { |
|
1058 |
nm->set_has_unsafe_access(has_unsafe_access); |
|
1059 |
||
1060 |
// Record successful registration. |
|
1061 |
// (Put nm into the task handle *before* publishing to the Java heap.) |
|
1062 |
if (task() != NULL) task()->set_code(nm); |
|
1063 |
||
1064 |
if (entry_bci == InvocationEntryBci) { |
|
6453 | 1065 |
if (TieredCompilation) { |
1066 |
// If there is an old version we're done with it |
|
1067 |
nmethod* old = method->code(); |
|
1068 |
if (TraceMethodReplacement && old != NULL) { |
|
1069 |
ResourceMark rm; |
|
1070 |
char *method_name = method->name_and_sig_as_C_string(); |
|
1071 |
tty->print_cr("Replacing method %s", method_name); |
|
1072 |
} |
|
1073 |
if (old != NULL ) { |
|
1074 |
old->make_not_entrant(); |
|
1075 |
} |
|
1 | 1076 |
} |
1077 |
if (TraceNMethodInstalls ) { |
|
1078 |
ResourceMark rm; |
|
1079 |
char *method_name = method->name_and_sig_as_C_string(); |
|
1080 |
ttyLocker ttyl; |
|
1081 |
tty->print_cr("Installing method (%d) %s ", |
|
1082 |
comp_level, |
|
1083 |
method_name); |
|
1084 |
} |
|
1085 |
// Allow the code to be executed |
|
1086 |
method->set_code(method, nm); |
|
1087 |
} else { |
|
1088 |
if (TraceNMethodInstalls ) { |
|
1089 |
ResourceMark rm; |
|
1090 |
char *method_name = method->name_and_sig_as_C_string(); |
|
1091 |
ttyLocker ttyl; |
|
1092 |
tty->print_cr("Installing osr method (%d) %s @ %d", |
|
1093 |
comp_level, |
|
1094 |
method_name, |
|
1095 |
entry_bci); |
|
1096 |
} |
|
1097 |
instanceKlass::cast(method->method_holder())->add_osr_nmethod(nm); |
|
1098 |
||
1099 |
} |
|
1100 |
} |
|
1101 |
} |
|
1102 |
// JVMTI -- compiled method notification (must be done outside lock) |
|
1103 |
if (nm != NULL) { |
|
1104 |
nm->post_compiled_method_load_event(); |
|
1105 |
} |
|
1106 |
||
1107 |
} |
|
1108 |
||
1109 |
||
1110 |
// ------------------------------------------------------------------ |
|
1111 |
// ciEnv::find_system_klass |
|
1112 |
ciKlass* ciEnv::find_system_klass(ciSymbol* klass_name) { |
|
1113 |
VM_ENTRY_MARK; |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9328
diff
changeset
|
1114 |
return get_klass_by_name_impl(NULL, constantPoolHandle(), klass_name, false); |
1 | 1115 |
} |
1116 |
||
1117 |
// ------------------------------------------------------------------ |
|
1118 |
// ciEnv::comp_level |
|
1119 |
int ciEnv::comp_level() { |
|
6453 | 1120 |
if (task() == NULL) return CompLevel_highest_tier; |
1 | 1121 |
return task()->comp_level(); |
1122 |
} |
|
1123 |
||
1124 |
// ------------------------------------------------------------------ |
|
1125 |
// ciEnv::compile_id |
|
1126 |
uint ciEnv::compile_id() { |
|
1127 |
if (task() == NULL) return 0; |
|
1128 |
return task()->compile_id(); |
|
1129 |
} |
|
1130 |
||
1131 |
// ------------------------------------------------------------------ |
|
1132 |
// ciEnv::notice_inlined_method() |
|
1133 |
void ciEnv::notice_inlined_method(ciMethod* method) { |
|
1134 |
_num_inlined_bytecodes += method->code_size(); |
|
1135 |
} |
|
1136 |
||
1137 |
// ------------------------------------------------------------------ |
|
1138 |
// ciEnv::num_inlined_bytecodes() |
|
1139 |
int ciEnv::num_inlined_bytecodes() const { |
|
1140 |
return _num_inlined_bytecodes; |
|
1141 |
} |
|
1142 |
||
1143 |
// ------------------------------------------------------------------ |
|
1144 |
// ciEnv::record_failure() |
|
1145 |
void ciEnv::record_failure(const char* reason) { |
|
1146 |
if (log() != NULL) { |
|
1147 |
log()->elem("failure reason='%s'", reason); |
|
1148 |
} |
|
1149 |
if (_failure_reason == NULL) { |
|
1150 |
// Record the first failure reason. |
|
1151 |
_failure_reason = reason; |
|
1152 |
} |
|
1153 |
} |
|
1154 |
||
1155 |
// ------------------------------------------------------------------ |
|
1156 |
// ciEnv::record_method_not_compilable() |
|
1157 |
void ciEnv::record_method_not_compilable(const char* reason, bool all_tiers) { |
|
1158 |
int new_compilable = |
|
1159 |
all_tiers ? MethodCompilable_never : MethodCompilable_not_at_tier ; |
|
1160 |
||
1161 |
// Only note transitions to a worse state |
|
1162 |
if (new_compilable > _compilable) { |
|
1163 |
if (log() != NULL) { |
|
1164 |
if (all_tiers) { |
|
1165 |
log()->elem("method_not_compilable"); |
|
1166 |
} else { |
|
1167 |
log()->elem("method_not_compilable_at_tier"); |
|
1168 |
} |
|
1169 |
} |
|
1170 |
_compilable = new_compilable; |
|
1171 |
||
1172 |
// Reset failure reason; this one is more important. |
|
1173 |
_failure_reason = NULL; |
|
1174 |
record_failure(reason); |
|
1175 |
} |
|
1176 |
} |
|
1177 |
||
1178 |
// ------------------------------------------------------------------ |
|
1179 |
// ciEnv::record_out_of_memory_failure() |
|
1180 |
void ciEnv::record_out_of_memory_failure() { |
|
1181 |
// If memory is low, we stop compiling methods. |
|
1182 |
record_method_not_compilable("out of memory"); |
|
1183 |
} |