annotate src/share/vm/ci/ciEnv.cpp @ 989:148e5441d916

6863023: need non-perm oops in code cache for JSR 292 Summary: Make a special root-list for those few nmethods which might contain non-perm oops. Reviewed-by: twisti, kvn, never, jmasa, ysr
author jrose
date Tue, 15 Sep 2009 21:53:47 -0700
parents bd02caa94611
children 389049f3f393 0c3f888b7636
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
844
bd02caa94611 6862919: Update copyright year
xdono
parents: 780
diff changeset
2 * Copyright 1999-2009 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_ciEnv.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ciEnv
a61af66fc99e Initial load
duke
parents:
diff changeset
29 //
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // This class is the top level broker for requests from the compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // to the VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ciObject* ciEnv::_null_object_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 ciMethodKlass* ciEnv::_method_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 ciSymbolKlass* ciEnv::_symbol_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 ciKlassKlass* ciEnv::_klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 ciInstanceKlassKlass* ciEnv::_instance_klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ciTypeArrayKlassKlass* ciEnv::_type_array_klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 ciObjArrayKlassKlass* ciEnv::_obj_array_klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 ciInstanceKlass* ciEnv::_ArrayStoreException;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 ciInstanceKlass* ciEnv::_Class;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 ciInstanceKlass* ciEnv::_ClassCastException;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 ciInstanceKlass* ciEnv::_Object;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ciInstanceKlass* ciEnv::_Throwable;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ciInstanceKlass* ciEnv::_Thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 ciInstanceKlass* ciEnv::_OutOfMemoryError;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 ciInstanceKlass* ciEnv::_String;
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 ciSymbol* ciEnv::_unloaded_cisymbol = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ciInstanceKlass* ciEnv::_unloaded_ciinstance_klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ciObjArrayKlass* ciEnv::_unloaded_ciobjarrayklass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 jobject ciEnv::_ArrayIndexOutOfBoundsException_handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 jobject ciEnv::_ArrayStoreException_handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 jobject ciEnv::_ClassCastException_handle = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
59 static bool firstEnv = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // ciEnv::ciEnv
a61af66fc99e Initial load
duke
parents:
diff changeset
64 ciEnv::ciEnv(CompileTask* task, int system_dictionary_modification_counter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 thread->set_env(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 assert(ciEnv::current() == this, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 _oop_recorder = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 _debug_info = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 _dependencies = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 _failure_reason = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _compilable = MethodCompilable;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 _break_at_compile = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _compiler_data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
79 assert(!firstEnv, "not initialized properly");
a61af66fc99e Initial load
duke
parents:
diff changeset
80 #endif /* !PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _system_dictionary_modification_counter = system_dictionary_modification_counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _num_inlined_bytecodes = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 assert(task == NULL || thread->task() == task, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 _task = task;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 _log = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Temporary buffer for creating symbols and such.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 _name_buffer = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 _name_buffer_len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 _arena = &_ciEnv_arena;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _factory = new (_arena) ciObjectFactory(_arena, 128);
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Preload commonly referenced system ciObjects.
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // During VM initialization, these instances have not yet been created.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // Assertions ensure that these instances are not accessed before
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // their initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 assert(Universe::is_fully_initialized(), "should be complete");
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 oop o = Universe::null_ptr_exception_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 assert(o != NULL, "should have been initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
105 _NullPointerException_instance = get_object(o)->as_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
106 o = Universe::arithmetic_exception_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 assert(o != NULL, "should have been initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
108 _ArithmeticException_instance = get_object(o)->as_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 _ArrayIndexOutOfBoundsException_instance = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 _ArrayStoreException_instance = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _ClassCastException_instance = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 ciEnv::ciEnv(Arena* arena) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
119 CompilerThread* current_thread = CompilerThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
120 assert(current_thread->env() == NULL, "must be");
a61af66fc99e Initial load
duke
parents:
diff changeset
121 current_thread->set_env(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 assert(ciEnv::current() == this, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 _oop_recorder = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 _debug_info = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _dependencies = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _failure_reason = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 _compilable = MethodCompilable_never;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 _break_at_compile = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _compiler_data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
132 assert(firstEnv, "must be first");
a61af66fc99e Initial load
duke
parents:
diff changeset
133 firstEnv = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 #endif /* !PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 _system_dictionary_modification_counter = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 _num_inlined_bytecodes = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 _task = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _log = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // Temporary buffer for creating symbols and such.
a61af66fc99e Initial load
duke
parents:
diff changeset
142 _name_buffer = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 _name_buffer_len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 _arena = arena;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 _factory = new (_arena) ciObjectFactory(_arena, 128);
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Preload commonly referenced system ciObjects.
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // During VM initialization, these instances have not yet been created.
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // Assertions ensure that these instances are not accessed before
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // their initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 assert(Universe::is_fully_initialized(), "must be");
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 oop o = Universe::null_ptr_exception_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
157 assert(o != NULL, "should have been initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
158 _NullPointerException_instance = get_object(o)->as_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
159 o = Universe::arithmetic_exception_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
160 assert(o != NULL, "should have been initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
161 _ArithmeticException_instance = get_object(o)->as_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 _ArrayIndexOutOfBoundsException_instance = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _ArrayStoreException_instance = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 _ClassCastException_instance = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 ciEnv::~ciEnv() {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 CompilerThread* current_thread = CompilerThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 current_thread->set_env(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // ------------------------------------------------------------------
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
174 // Cache Jvmti state
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
175 void ciEnv::cache_jvmti_state() {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
176 VM_ENTRY_MARK;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
177 // Get Jvmti capabilities under lock to get consistant values.
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
178 MutexLocker mu(JvmtiThreadState_lock);
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
179 _jvmti_can_hotswap_or_post_breakpoint = JvmtiExport::can_hotswap_or_post_breakpoint();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
180 _jvmti_can_examine_or_deopt_anywhere = JvmtiExport::can_examine_or_deopt_anywhere();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
181 _jvmti_can_access_local_variables = JvmtiExport::can_access_local_variables();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
182 _jvmti_can_post_exceptions = JvmtiExport::can_post_exceptions();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
183 }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
184
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
185 // ------------------------------------------------------------------
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
186 // Cache DTrace flags
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
187 void ciEnv::cache_dtrace_flags() {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
188 // Need lock?
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
189 _dtrace_extended_probes = ExtendedDTraceProbes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
190 if (_dtrace_extended_probes) {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
191 _dtrace_monitor_probes = true;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
192 _dtrace_method_probes = true;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
193 _dtrace_alloc_probes = true;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
194 } else {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
195 _dtrace_monitor_probes = DTraceMonitorProbes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
196 _dtrace_method_probes = DTraceMethodProbes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
197 _dtrace_alloc_probes = DTraceAllocProbes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
198 }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
199 }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
200
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
201 // ------------------------------------------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // helper for lazy exception creation
a61af66fc99e Initial load
duke
parents:
diff changeset
203 ciInstance* ciEnv::get_or_create_exception(jobject& handle, symbolHandle name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 if (handle == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // Cf. universe.cpp, creation of Universe::_null_ptr_exception_instance.
a61af66fc99e Initial load
duke
parents:
diff changeset
207 klassOop k = SystemDictionary::find(name, Handle(), Handle(), THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 jobject objh = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 if (!HAS_PENDING_EXCEPTION && k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 oop obj = instanceKlass::cast(k)->allocate_permanent_instance(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 if (!HAS_PENDING_EXCEPTION)
a61af66fc99e Initial load
duke
parents:
diff changeset
212 objh = JNIHandles::make_global(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 handle = objh;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 oop obj = JNIHandles::resolve(handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 return obj == NULL? NULL: get_object(obj)->as_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // ciEnv::ArrayIndexOutOfBoundsException_instance, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 ciInstance* ciEnv::ArrayIndexOutOfBoundsException_instance() {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 if (_ArrayIndexOutOfBoundsException_instance == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _ArrayIndexOutOfBoundsException_instance
a61af66fc99e Initial load
duke
parents:
diff changeset
229 = get_or_create_exception(_ArrayIndexOutOfBoundsException_handle,
a61af66fc99e Initial load
duke
parents:
diff changeset
230 vmSymbolHandles::java_lang_ArrayIndexOutOfBoundsException());
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return _ArrayIndexOutOfBoundsException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 ciInstance* ciEnv::ArrayStoreException_instance() {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 if (_ArrayStoreException_instance == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 _ArrayStoreException_instance
a61af66fc99e Initial load
duke
parents:
diff changeset
237 = get_or_create_exception(_ArrayStoreException_handle,
a61af66fc99e Initial load
duke
parents:
diff changeset
238 vmSymbolHandles::java_lang_ArrayStoreException());
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 return _ArrayStoreException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242 ciInstance* ciEnv::ClassCastException_instance() {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 if (_ClassCastException_instance == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 _ClassCastException_instance
a61af66fc99e Initial load
duke
parents:
diff changeset
245 = get_or_create_exception(_ClassCastException_handle,
a61af66fc99e Initial load
duke
parents:
diff changeset
246 vmSymbolHandles::java_lang_ClassCastException());
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 return _ClassCastException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 }
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // ciEnv::get_method_from_handle
a61af66fc99e Initial load
duke
parents:
diff changeset
253 ciMethod* ciEnv::get_method_from_handle(jobject method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 return get_object(JNIHandles::resolve(method))->as_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // ciEnv::make_array
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 844
diff changeset
260 ciArray* ciEnv::make_system_array(GrowableArray<ciObject*>* objects) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 int length = objects->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
263 objArrayOop a = oopFactory::new_system_objArray(length, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 record_out_of_memory_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 for (int i = 0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 a->obj_at_put(i, objects->at(i)->get_oop());
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272 assert(a->is_perm(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
273 return get_object(a)->as_array();
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // ciEnv::array_element_offset_in_bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
279 int ciEnv::array_element_offset_in_bytes(ciArray* a_h, ciObject* o_h) {
a61af66fc99e Initial load
duke
parents:
diff changeset
280 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 objArrayOop a = (objArrayOop)a_h->get_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
282 assert(a->is_objArray(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
283 int length = a->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
284 oop o = o_h->get_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
285 for (int i = 0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 if (a->obj_at(i) == o) return i;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // ciEnv::check_klass_accessiblity
a61af66fc99e Initial load
duke
parents:
diff changeset
294 //
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // Note: the logic of this method should mirror the logic of
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // constantPoolOopDesc::verify_constant_pool_resolve.
a61af66fc99e Initial load
duke
parents:
diff changeset
297 bool ciEnv::check_klass_accessibility(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
298 klassOop resolved_klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if (accessing_klass == NULL || !accessing_klass->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302 if (accessing_klass->is_obj_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 accessing_klass = accessing_klass->as_obj_array_klass()->base_element_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305 if (!accessing_klass->is_instance_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 if (resolved_klass->klass_part()->oop_is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // Find the element klass, if this is an array.
a61af66fc99e Initial load
duke
parents:
diff changeset
311 resolved_klass = objArrayKlass::cast(resolved_klass)->bottom_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313 if (resolved_klass->klass_part()->oop_is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 return Reflection::verify_class_access(accessing_klass->get_klassOop(),
a61af66fc99e Initial load
duke
parents:
diff changeset
315 resolved_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
316 true);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // ciEnv::get_klass_by_name_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
323 ciKlass* ciEnv::get_klass_by_name_impl(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
324 ciSymbol* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
325 bool require_local) {
a61af66fc99e Initial load
duke
parents:
diff changeset
326 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // Now we need to check the SystemDictionary
a61af66fc99e Initial load
duke
parents:
diff changeset
330 symbolHandle sym(THREAD, name->get_symbolOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
331 if (sym->byte_at(0) == 'L' &&
a61af66fc99e Initial load
duke
parents:
diff changeset
332 sym->byte_at(sym->utf8_length()-1) == ';') {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // This is a name from a signature. Strip off the trimmings.
a61af66fc99e Initial load
duke
parents:
diff changeset
334 sym = oopFactory::new_symbol_handle(sym->as_utf8()+1,
a61af66fc99e Initial load
duke
parents:
diff changeset
335 sym->utf8_length()-2,
a61af66fc99e Initial load
duke
parents:
diff changeset
336 KILL_COMPILE_ON_FATAL_(_unloaded_ciinstance_klass));
a61af66fc99e Initial load
duke
parents:
diff changeset
337 name = get_object(sym())->as_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // Check for prior unloaded klass. The SystemDictionary's answers
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // can vary over time but the compiler needs consistency.
a61af66fc99e Initial load
duke
parents:
diff changeset
342 ciKlass* unloaded_klass = check_get_unloaded_klass(accessing_klass, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 if (unloaded_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 if (require_local) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
345 return unloaded_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
346 }
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348 Handle loader(THREAD, (oop)NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
349 Handle domain(THREAD, (oop)NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 if (accessing_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 loader = Handle(THREAD, accessing_klass->loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
352 domain = Handle(THREAD, accessing_klass->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // setup up the proper type to return on OOM
a61af66fc99e Initial load
duke
parents:
diff changeset
356 ciKlass* fail_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
357 if (sym->byte_at(0) == '[') {
a61af66fc99e Initial load
duke
parents:
diff changeset
358 fail_type = _unloaded_ciobjarrayklass;
a61af66fc99e Initial load
duke
parents:
diff changeset
359 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 fail_type = _unloaded_ciinstance_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
362 klassOop found_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
363 if (!require_local) {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 found_klass =
a61af66fc99e Initial load
duke
parents:
diff changeset
365 SystemDictionary::find_constrained_instance_or_array_klass(sym, loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
366 KILL_COMPILE_ON_FATAL_(fail_type));
a61af66fc99e Initial load
duke
parents:
diff changeset
367 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
368 found_klass =
a61af66fc99e Initial load
duke
parents:
diff changeset
369 SystemDictionary::find_instance_or_array_klass(sym, loader, domain,
a61af66fc99e Initial load
duke
parents:
diff changeset
370 KILL_COMPILE_ON_FATAL_(fail_type));
a61af66fc99e Initial load
duke
parents:
diff changeset
371 }
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 if (found_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // Found it. Build a CI handle.
a61af66fc99e Initial load
duke
parents:
diff changeset
375 return get_object(found_klass)->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // If we fail to find an array klass, look again for its element type.
a61af66fc99e Initial load
duke
parents:
diff changeset
379 // The element type may be available either locally or via constraints.
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // In either case, if we can find the element type in the system dictionary,
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // we must build an array type around it. The CI requires array klasses
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // to be loaded if their element klasses are loaded, except when memory
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // is exhausted.
a61af66fc99e Initial load
duke
parents:
diff changeset
384 if (sym->byte_at(0) == '[' &&
a61af66fc99e Initial load
duke
parents:
diff changeset
385 (sym->byte_at(1) == '[' || sym->byte_at(1) == 'L')) {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // We have an unloaded array.
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // Build it on the fly if the element class exists.
a61af66fc99e Initial load
duke
parents:
diff changeset
388 symbolOop elem_sym = oopFactory::new_symbol(sym->as_utf8()+1,
a61af66fc99e Initial load
duke
parents:
diff changeset
389 sym->utf8_length()-1,
a61af66fc99e Initial load
duke
parents:
diff changeset
390 KILL_COMPILE_ON_FATAL_(fail_type));
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // Get element ciKlass recursively.
a61af66fc99e Initial load
duke
parents:
diff changeset
392 ciKlass* elem_klass =
a61af66fc99e Initial load
duke
parents:
diff changeset
393 get_klass_by_name_impl(accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
394 get_object(elem_sym)->as_symbol(),
a61af66fc99e Initial load
duke
parents:
diff changeset
395 require_local);
a61af66fc99e Initial load
duke
parents:
diff changeset
396 if (elem_klass != NULL && elem_klass->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // Now make an array for it
a61af66fc99e Initial load
duke
parents:
diff changeset
398 return ciObjArrayKlass::make_impl(elem_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 if (require_local) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // Not yet loaded into the VM, or not governed by loader constraints.
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // Make a CI representative for it.
a61af66fc99e Initial load
duke
parents:
diff changeset
405 return get_unloaded_klass(accessing_klass, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // ciEnv::get_klass_by_name
a61af66fc99e Initial load
duke
parents:
diff changeset
410 ciKlass* ciEnv::get_klass_by_name(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
411 ciSymbol* klass_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
412 bool require_local) {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 GUARDED_VM_ENTRY(return get_klass_by_name_impl(accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
414 klass_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
415 require_local);)
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // ciEnv::get_klass_by_index_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
420 //
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // Implementation of get_klass_by_index.
a61af66fc99e Initial load
duke
parents:
diff changeset
422 ciKlass* ciEnv::get_klass_by_index_impl(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
423 int index,
a61af66fc99e Initial load
duke
parents:
diff changeset
424 bool& is_accessible) {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 assert(accessor->get_instanceKlass()->is_linked(), "must be linked before accessing constant pool");
a61af66fc99e Initial load
duke
parents:
diff changeset
426 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
427 constantPoolHandle cpool(THREAD, accessor->get_instanceKlass()->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
428 KlassHandle klass (THREAD, constantPoolOopDesc::klass_at_if_loaded(cpool, index));
a61af66fc99e Initial load
duke
parents:
diff changeset
429 symbolHandle klass_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
430 if (klass.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // The klass has not been inserted into the constant pool.
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // Try to look it up by name.
a61af66fc99e Initial load
duke
parents:
diff changeset
433 {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // We have to lock the cpool to keep the oop from being resolved
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // while we are accessing it.
a61af66fc99e Initial load
duke
parents:
diff changeset
436 ObjectLocker ol(cpool, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 constantTag tag = cpool->tag_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
439 if (tag.is_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // The klass has been inserted into the constant pool
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // very recently.
a61af66fc99e Initial load
duke
parents:
diff changeset
442 klass = KlassHandle(THREAD, cpool->resolved_klass_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
443 } else if (tag.is_symbol()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 klass_name = symbolHandle(THREAD, cpool->symbol_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
445 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 assert(cpool->tag_at(index).is_unresolved_klass(), "wrong tag");
a61af66fc99e Initial load
duke
parents:
diff changeset
447 klass_name = symbolHandle(THREAD, cpool->unresolved_klass_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 if (klass.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // Not found in constant pool. Use the name to do the lookup.
a61af66fc99e Initial load
duke
parents:
diff changeset
454 ciKlass* k = get_klass_by_name_impl(accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
455 get_object(klass_name())->as_symbol(),
a61af66fc99e Initial load
duke
parents:
diff changeset
456 false);
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // Calculate accessibility the hard way.
a61af66fc99e Initial load
duke
parents:
diff changeset
458 if (!k->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 is_accessible = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
460 } else if (k->loader() != accessor->loader() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
461 get_klass_by_name_impl(accessor, k->name(), true) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // Loaded only remotely. Not linked yet.
a61af66fc99e Initial load
duke
parents:
diff changeset
463 is_accessible = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // Linked locally, and we must also check public/private, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
466 is_accessible = check_klass_accessibility(accessor, k->get_klassOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468 return k;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 // Check for prior unloaded klass. The SystemDictionary's answers
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // can vary over time but the compiler needs consistency.
a61af66fc99e Initial load
duke
parents:
diff changeset
473 ciSymbol* name = get_object(klass()->klass_part()->name())->as_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
474 ciKlass* unloaded_klass = check_get_unloaded_klass(accessor, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
475 if (unloaded_klass != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 is_accessible = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 return unloaded_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
479
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // It is known to be accessible, since it was found in the constant pool.
a61af66fc99e Initial load
duke
parents:
diff changeset
481 is_accessible = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
482 return get_object(klass())->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // ciEnv::get_klass_by_index
a61af66fc99e Initial load
duke
parents:
diff changeset
487 //
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // Get a klass from the constant pool.
a61af66fc99e Initial load
duke
parents:
diff changeset
489 ciKlass* ciEnv::get_klass_by_index(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
490 int index,
a61af66fc99e Initial load
duke
parents:
diff changeset
491 bool& is_accessible) {
a61af66fc99e Initial load
duke
parents:
diff changeset
492 GUARDED_VM_ENTRY(return get_klass_by_index_impl(accessor, index, is_accessible);)
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // ciEnv::get_constant_by_index_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
497 //
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // Implementation of get_constant_by_index().
a61af66fc99e Initial load
duke
parents:
diff changeset
499 ciConstant ciEnv::get_constant_by_index_impl(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
500 int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
502 instanceKlass* ik_accessor = accessor->get_instanceKlass();
a61af66fc99e Initial load
duke
parents:
diff changeset
503 assert(ik_accessor->is_linked(), "must be linked before accessing constant pool");
a61af66fc99e Initial load
duke
parents:
diff changeset
504 constantPoolOop cpool = ik_accessor->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
505 constantTag tag = cpool->tag_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (tag.is_int()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 return ciConstant(T_INT, (jint)cpool->int_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
508 } else if (tag.is_long()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 return ciConstant((jlong)cpool->long_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
510 } else if (tag.is_float()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
511 return ciConstant((jfloat)cpool->float_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
512 } else if (tag.is_double()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 return ciConstant((jdouble)cpool->double_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
514 } else if (tag.is_string() || tag.is_unresolved_string()) {
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
515 oop string = NULL;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
516 if (cpool->is_pseudo_string_at(index)) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
517 string = cpool->pseudo_string_at(index);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
518 } else {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
519 string = cpool->string_at(index, THREAD);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
520 if (HAS_PENDING_EXCEPTION) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
521 CLEAR_PENDING_EXCEPTION;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
522 record_out_of_memory_failure();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
523 return ciConstant();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 0
diff changeset
524 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
526 ciObject* constant = get_object(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
527 assert (constant->is_instance(), "must be an instance, or not? ");
a61af66fc99e Initial load
duke
parents:
diff changeset
528 return ciConstant(T_OBJECT, constant);
a61af66fc99e Initial load
duke
parents:
diff changeset
529 } else if (tag.is_klass() || tag.is_unresolved_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // 4881222: allow ldc to take a class type
a61af66fc99e Initial load
duke
parents:
diff changeset
531 bool ignore;
a61af66fc99e Initial load
duke
parents:
diff changeset
532 ciKlass* klass = get_klass_by_index_impl(accessor, index, ignore);
a61af66fc99e Initial load
duke
parents:
diff changeset
533 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
535 record_out_of_memory_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
536 return ciConstant();
a61af66fc99e Initial load
duke
parents:
diff changeset
537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
538 assert (klass->is_instance_klass() || klass->is_array_klass(),
a61af66fc99e Initial load
duke
parents:
diff changeset
539 "must be an instance or array klass ");
a61af66fc99e Initial load
duke
parents:
diff changeset
540 return ciConstant(T_OBJECT, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
541 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
542 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
543 return ciConstant();
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545 }
a61af66fc99e Initial load
duke
parents:
diff changeset
546
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // ciEnv::is_unresolved_string_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
549 //
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // Implementation of is_unresolved_string().
a61af66fc99e Initial load
duke
parents:
diff changeset
551 bool ciEnv::is_unresolved_string_impl(instanceKlass* accessor, int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
553 assert(accessor->is_linked(), "must be linked before accessing constant pool");
a61af66fc99e Initial load
duke
parents:
diff changeset
554 constantPoolOop cpool = accessor->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
555 constantTag tag = cpool->tag_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
556 return tag.is_unresolved_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
557 }
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
560 // ciEnv::is_unresolved_klass_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
561 //
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // Implementation of is_unresolved_klass().
a61af66fc99e Initial load
duke
parents:
diff changeset
563 bool ciEnv::is_unresolved_klass_impl(instanceKlass* accessor, int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
564 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 assert(accessor->is_linked(), "must be linked before accessing constant pool");
a61af66fc99e Initial load
duke
parents:
diff changeset
566 constantPoolOop cpool = accessor->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
567 constantTag tag = cpool->tag_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
568 return tag.is_unresolved_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
569 }
a61af66fc99e Initial load
duke
parents:
diff changeset
570
a61af66fc99e Initial load
duke
parents:
diff changeset
571 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
572 // ciEnv::get_constant_by_index
a61af66fc99e Initial load
duke
parents:
diff changeset
573 //
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // Pull a constant out of the constant pool. How appropriate.
a61af66fc99e Initial load
duke
parents:
diff changeset
575 //
a61af66fc99e Initial load
duke
parents:
diff changeset
576 // Implementation note: this query is currently in no way cached.
a61af66fc99e Initial load
duke
parents:
diff changeset
577 ciConstant ciEnv::get_constant_by_index(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
578 int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 GUARDED_VM_ENTRY(return get_constant_by_index_impl(accessor, index); )
a61af66fc99e Initial load
duke
parents:
diff changeset
580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
581
a61af66fc99e Initial load
duke
parents:
diff changeset
582 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
583 // ciEnv::is_unresolved_string
a61af66fc99e Initial load
duke
parents:
diff changeset
584 //
a61af66fc99e Initial load
duke
parents:
diff changeset
585 // Check constant pool
a61af66fc99e Initial load
duke
parents:
diff changeset
586 //
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // Implementation note: this query is currently in no way cached.
a61af66fc99e Initial load
duke
parents:
diff changeset
588 bool ciEnv::is_unresolved_string(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
589 int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
590 GUARDED_VM_ENTRY(return is_unresolved_string_impl(accessor->get_instanceKlass(), index); )
a61af66fc99e Initial load
duke
parents:
diff changeset
591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
592
a61af66fc99e Initial load
duke
parents:
diff changeset
593 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
594 // ciEnv::is_unresolved_klass
a61af66fc99e Initial load
duke
parents:
diff changeset
595 //
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // Check constant pool
a61af66fc99e Initial load
duke
parents:
diff changeset
597 //
a61af66fc99e Initial load
duke
parents:
diff changeset
598 // Implementation note: this query is currently in no way cached.
a61af66fc99e Initial load
duke
parents:
diff changeset
599 bool ciEnv::is_unresolved_klass(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
600 int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
601 GUARDED_VM_ENTRY(return is_unresolved_klass_impl(accessor->get_instanceKlass(), index); )
a61af66fc99e Initial load
duke
parents:
diff changeset
602 }
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // ciEnv::get_field_by_index_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
606 //
a61af66fc99e Initial load
duke
parents:
diff changeset
607 // Implementation of get_field_by_index.
a61af66fc99e Initial load
duke
parents:
diff changeset
608 //
a61af66fc99e Initial load
duke
parents:
diff changeset
609 // Implementation note: the results of field lookups are cached
a61af66fc99e Initial load
duke
parents:
diff changeset
610 // in the accessor klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
611 ciField* ciEnv::get_field_by_index_impl(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
612 int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
613 ciConstantPoolCache* cache = accessor->field_cache();
a61af66fc99e Initial load
duke
parents:
diff changeset
614 if (cache == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
615 ciField* field = new (arena()) ciField(accessor, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 return field;
a61af66fc99e Initial load
duke
parents:
diff changeset
617 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 ciField* field = (ciField*)cache->get(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
619 if (field == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
620 field = new (arena()) ciField(accessor, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
621 cache->insert(index, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623 return field;
a61af66fc99e Initial load
duke
parents:
diff changeset
624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
628 // ciEnv::get_field_by_index
a61af66fc99e Initial load
duke
parents:
diff changeset
629 //
a61af66fc99e Initial load
duke
parents:
diff changeset
630 // Get a field by index from a klass's constant pool.
a61af66fc99e Initial load
duke
parents:
diff changeset
631 ciField* ciEnv::get_field_by_index(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
632 int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
633 GUARDED_VM_ENTRY(return get_field_by_index_impl(accessor, index);)
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
637 // ciEnv::lookup_method
a61af66fc99e Initial load
duke
parents:
diff changeset
638 //
a61af66fc99e Initial load
duke
parents:
diff changeset
639 // Perform an appropriate method lookup based on accessor, holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
640 // name, signature, and bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
641 methodOop ciEnv::lookup_method(instanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
642 instanceKlass* holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
643 symbolOop name,
a61af66fc99e Initial load
duke
parents:
diff changeset
644 symbolOop sig,
a61af66fc99e Initial load
duke
parents:
diff changeset
645 Bytecodes::Code bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
646 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
647 KlassHandle h_accessor(THREAD, accessor);
a61af66fc99e Initial load
duke
parents:
diff changeset
648 KlassHandle h_holder(THREAD, holder);
a61af66fc99e Initial load
duke
parents:
diff changeset
649 symbolHandle h_name(THREAD, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
650 symbolHandle h_sig(THREAD, sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 LinkResolver::check_klass_accessability(h_accessor, h_holder, KILL_COMPILE_ON_FATAL_(NULL));
a61af66fc99e Initial load
duke
parents:
diff changeset
652 methodHandle dest_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
653 switch (bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
654 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
655 dest_method =
a61af66fc99e Initial load
duke
parents:
diff changeset
656 LinkResolver::resolve_static_call_or_null(h_holder, h_name, h_sig, h_accessor);
a61af66fc99e Initial load
duke
parents:
diff changeset
657 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
659 dest_method =
a61af66fc99e Initial load
duke
parents:
diff changeset
660 LinkResolver::resolve_special_call_or_null(h_holder, h_name, h_sig, h_accessor);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 case Bytecodes::_invokeinterface:
a61af66fc99e Initial load
duke
parents:
diff changeset
663 dest_method =
a61af66fc99e Initial load
duke
parents:
diff changeset
664 LinkResolver::linktime_resolve_interface_method_or_null(h_holder, h_name, h_sig,
a61af66fc99e Initial load
duke
parents:
diff changeset
665 h_accessor, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
666 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
667 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
668 dest_method =
a61af66fc99e Initial load
duke
parents:
diff changeset
669 LinkResolver::linktime_resolve_virtual_method_or_null(h_holder, h_name, h_sig,
a61af66fc99e Initial load
duke
parents:
diff changeset
670 h_accessor, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
671 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
672 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
673 }
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 return dest_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
676 }
a61af66fc99e Initial load
duke
parents:
diff changeset
677
a61af66fc99e Initial load
duke
parents:
diff changeset
678
a61af66fc99e Initial load
duke
parents:
diff changeset
679 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
680 // ciEnv::get_method_by_index_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
681 ciMethod* ciEnv::get_method_by_index_impl(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
682 int index, Bytecodes::Code bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
683 // Get the method's declared holder.
a61af66fc99e Initial load
duke
parents:
diff changeset
684
a61af66fc99e Initial load
duke
parents:
diff changeset
685 assert(accessor->get_instanceKlass()->is_linked(), "must be linked before accessing constant pool");
a61af66fc99e Initial load
duke
parents:
diff changeset
686 constantPoolHandle cpool = accessor->get_instanceKlass()->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
687 int holder_index = cpool->klass_ref_index_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
688 bool holder_is_accessible;
a61af66fc99e Initial load
duke
parents:
diff changeset
689 ciKlass* holder = get_klass_by_index_impl(accessor, holder_index, holder_is_accessible);
a61af66fc99e Initial load
duke
parents:
diff changeset
690 ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder);
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 // Get the method's name and signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
693 int nt_index = cpool->name_and_type_ref_index_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 int sig_index = cpool->signature_ref_index_at(nt_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
695 symbolOop name_sym = cpool->name_ref_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
696 symbolOop sig_sym = cpool->symbol_at(sig_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 if (holder_is_accessible) { // Our declared holder is loaded.
a61af66fc99e Initial load
duke
parents:
diff changeset
699 instanceKlass* lookup = declared_holder->get_instanceKlass();
a61af66fc99e Initial load
duke
parents:
diff changeset
700 methodOop m = lookup_method(accessor->get_instanceKlass(), lookup, name_sym, sig_sym, bc);
a61af66fc99e Initial load
duke
parents:
diff changeset
701 if (m != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
702 // We found the method.
a61af66fc99e Initial load
duke
parents:
diff changeset
703 return get_object(m)->as_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // Either the declared holder was not loaded, or the method could
a61af66fc99e Initial load
duke
parents:
diff changeset
708 // not be found. Create a dummy ciMethod to represent the failed
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // lookup.
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 return get_unloaded_method(declared_holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
712 get_object(name_sym)->as_symbol(),
a61af66fc99e Initial load
duke
parents:
diff changeset
713 get_object(sig_sym)->as_symbol());
a61af66fc99e Initial load
duke
parents:
diff changeset
714 }
a61af66fc99e Initial load
duke
parents:
diff changeset
715
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // ciEnv::get_instance_klass_for_declared_method_holder
a61af66fc99e Initial load
duke
parents:
diff changeset
719 ciInstanceKlass* ciEnv::get_instance_klass_for_declared_method_holder(ciKlass* method_holder) {
a61af66fc99e Initial load
duke
parents:
diff changeset
720 // For the case of <array>.clone(), the method holder can be a ciArrayKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
721 // instead of a ciInstanceKlass. For that case simply pretend that the
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // declared holder is Object.clone since that's where the call will bottom out.
a61af66fc99e Initial load
duke
parents:
diff changeset
723 // A more correct fix would trickle out through many interfaces in CI,
a61af66fc99e Initial load
duke
parents:
diff changeset
724 // requiring ciInstanceKlass* to become ciKlass* and many more places would
a61af66fc99e Initial load
duke
parents:
diff changeset
725 // require checks to make sure the expected type was found. Given that this
a61af66fc99e Initial load
duke
parents:
diff changeset
726 // only occurs for clone() the more extensive fix seems like overkill so
a61af66fc99e Initial load
duke
parents:
diff changeset
727 // instead we simply smear the array type into Object.
a61af66fc99e Initial load
duke
parents:
diff changeset
728 if (method_holder->is_instance_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
729 return method_holder->as_instance_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
730 } else if (method_holder->is_array_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
731 return current()->Object_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
732 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
733 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
734 }
a61af66fc99e Initial load
duke
parents:
diff changeset
735 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
737
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739
a61af66fc99e Initial load
duke
parents:
diff changeset
740
a61af66fc99e Initial load
duke
parents:
diff changeset
741 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // ciEnv::get_method_by_index
a61af66fc99e Initial load
duke
parents:
diff changeset
743 ciMethod* ciEnv::get_method_by_index(ciInstanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
744 int index, Bytecodes::Code bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
745 GUARDED_VM_ENTRY(return get_method_by_index_impl(accessor, index, bc);)
a61af66fc99e Initial load
duke
parents:
diff changeset
746 }
a61af66fc99e Initial load
duke
parents:
diff changeset
747
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
749 // ciEnv::name_buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
750 char *ciEnv::name_buffer(int req_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
751 if (_name_buffer_len < req_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 if (_name_buffer == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
753 _name_buffer = (char*)arena()->Amalloc(sizeof(char)*req_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
754 _name_buffer_len = req_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
755 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
756 _name_buffer =
a61af66fc99e Initial load
duke
parents:
diff changeset
757 (char*)arena()->Arealloc(_name_buffer, _name_buffer_len, req_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
758 _name_buffer_len = req_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
759 }
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761 return _name_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // ciEnv::is_in_vm
a61af66fc99e Initial load
duke
parents:
diff changeset
766 bool ciEnv::is_in_vm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
767 return JavaThread::current()->thread_state() == _thread_in_vm;
a61af66fc99e Initial load
duke
parents:
diff changeset
768 }
a61af66fc99e Initial load
duke
parents:
diff changeset
769
a61af66fc99e Initial load
duke
parents:
diff changeset
770 bool ciEnv::system_dictionary_modification_counter_changed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
771 return _system_dictionary_modification_counter != SystemDictionary::number_of_modifications();
a61af66fc99e Initial load
duke
parents:
diff changeset
772 }
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // ciEnv::check_for_system_dictionary_modification
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // Check for changes to the system dictionary during compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
777 // class loads, evolution, breakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
778 void ciEnv::check_for_system_dictionary_modification(ciMethod* target) {
a61af66fc99e Initial load
duke
parents:
diff changeset
779 if (failing()) return; // no need for further checks
a61af66fc99e Initial load
duke
parents:
diff changeset
780
a61af66fc99e Initial load
duke
parents:
diff changeset
781 // Dependencies must be checked when the system dictionary changes.
a61af66fc99e Initial load
duke
parents:
diff changeset
782 // If logging is enabled all violated dependences will be recorded in
a61af66fc99e Initial load
duke
parents:
diff changeset
783 // the log. In debug mode check dependencies even if the system
a61af66fc99e Initial load
duke
parents:
diff changeset
784 // dictionary hasn't changed to verify that no invalid dependencies
a61af66fc99e Initial load
duke
parents:
diff changeset
785 // were inserted. Any violated dependences in this case are dumped to
a61af66fc99e Initial load
duke
parents:
diff changeset
786 // the tty.
a61af66fc99e Initial load
duke
parents:
diff changeset
787
a61af66fc99e Initial load
duke
parents:
diff changeset
788 bool counter_changed = system_dictionary_modification_counter_changed();
a61af66fc99e Initial load
duke
parents:
diff changeset
789 bool test_deps = counter_changed;
a61af66fc99e Initial load
duke
parents:
diff changeset
790 DEBUG_ONLY(test_deps = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
791 if (!test_deps) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
792
a61af66fc99e Initial load
duke
parents:
diff changeset
793 bool print_failures = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
794 DEBUG_ONLY(print_failures = !counter_changed);
a61af66fc99e Initial load
duke
parents:
diff changeset
795
a61af66fc99e Initial load
duke
parents:
diff changeset
796 bool keep_going = (print_failures || xtty != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
797
a61af66fc99e Initial load
duke
parents:
diff changeset
798 int violated = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
799
a61af66fc99e Initial load
duke
parents:
diff changeset
800 for (Dependencies::DepStream deps(dependencies()); deps.next(); ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
801 klassOop witness = deps.check_dependency();
a61af66fc99e Initial load
duke
parents:
diff changeset
802 if (witness != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
803 ++violated;
a61af66fc99e Initial load
duke
parents:
diff changeset
804 if (print_failures) deps.print_dependency(witness, /*verbose=*/ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
805 // If there's no log and we're not sanity-checking, we're done.
a61af66fc99e Initial load
duke
parents:
diff changeset
806 if (!keep_going) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 if (violated != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
811 assert(counter_changed, "failed dependencies, but counter didn't change");
a61af66fc99e Initial load
duke
parents:
diff changeset
812 record_failure("concurrent class loading");
a61af66fc99e Initial load
duke
parents:
diff changeset
813 }
a61af66fc99e Initial load
duke
parents:
diff changeset
814 }
a61af66fc99e Initial load
duke
parents:
diff changeset
815
a61af66fc99e Initial load
duke
parents:
diff changeset
816 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
817 // ciEnv::register_method
a61af66fc99e Initial load
duke
parents:
diff changeset
818 void ciEnv::register_method(ciMethod* target,
a61af66fc99e Initial load
duke
parents:
diff changeset
819 int entry_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
820 CodeOffsets* offsets,
a61af66fc99e Initial load
duke
parents:
diff changeset
821 int orig_pc_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
822 CodeBuffer* code_buffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
823 int frame_words,
a61af66fc99e Initial load
duke
parents:
diff changeset
824 OopMapSet* oop_map_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
825 ExceptionHandlerTable* handler_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
826 ImplicitExceptionTable* inc_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
827 AbstractCompiler* compiler,
a61af66fc99e Initial load
duke
parents:
diff changeset
828 int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
829 bool has_debug_info,
a61af66fc99e Initial load
duke
parents:
diff changeset
830 bool has_unsafe_access) {
a61af66fc99e Initial load
duke
parents:
diff changeset
831 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
832 nmethod* nm = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
833 {
a61af66fc99e Initial load
duke
parents:
diff changeset
834 // To prevent compile queue updates.
a61af66fc99e Initial load
duke
parents:
diff changeset
835 MutexLocker locker(MethodCompileQueue_lock, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
836
a61af66fc99e Initial load
duke
parents:
diff changeset
837 // Prevent SystemDictionary::add_to_hierarchy from running
a61af66fc99e Initial load
duke
parents:
diff changeset
838 // and invalidating our dependencies until we install this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
839 MutexLocker ml(Compile_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
840
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
841 // Change in Jvmti state may invalidate compilation.
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
842 if (!failing() &&
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
843 ( (!jvmti_can_hotswap_or_post_breakpoint() &&
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
844 JvmtiExport::can_hotswap_or_post_breakpoint()) ||
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
845 (!jvmti_can_examine_or_deopt_anywhere() &&
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
846 JvmtiExport::can_examine_or_deopt_anywhere()) ||
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
847 (!jvmti_can_access_local_variables() &&
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
848 JvmtiExport::can_access_local_variables()) ||
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
849 (!jvmti_can_post_exceptions() &&
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
850 JvmtiExport::can_post_exceptions()) )) {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
851 record_failure("Jvmti state change invalidated dependencies");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
a61af66fc99e Initial load
duke
parents:
diff changeset
853
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
854 // Change in DTrace flags may invalidate compilation.
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
855 if (!failing() &&
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
856 ( (!dtrace_extended_probes() && ExtendedDTraceProbes) ||
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
857 (!dtrace_method_probes() && DTraceMethodProbes) ||
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
858 (!dtrace_alloc_probes() && DTraceAllocProbes) )) {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
859 record_failure("DTrace flags change invalidated dependencies");
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
860 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
861
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
862 if (!failing()) {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
863 if (log() != NULL) {
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
864 // Log the dependencies which this compilation declares.
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
865 dependencies()->log_all_dependencies();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
866 }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
867
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
868 // Encode the dependencies now, so we can check them right away.
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
869 dependencies()->encode_content_bytes();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
870
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
871 // Check for {class loads, evolution, breakpoints} during compilation
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
872 check_for_system_dictionary_modification(target);
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 470
diff changeset
873 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
874
a61af66fc99e Initial load
duke
parents:
diff changeset
875 methodHandle method(THREAD, target->get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
876
a61af66fc99e Initial load
duke
parents:
diff changeset
877 if (failing()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
878 // While not a true deoptimization, it is a preemptive decompile.
a61af66fc99e Initial load
duke
parents:
diff changeset
879 methodDataOop mdo = method()->method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
880 if (mdo != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
881 mdo->inc_decompile_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
882 }
a61af66fc99e Initial load
duke
parents:
diff changeset
883
a61af66fc99e Initial load
duke
parents:
diff changeset
884 // All buffers in the CodeBuffer are allocated in the CodeCache.
a61af66fc99e Initial load
duke
parents:
diff changeset
885 // If the code buffer is created on each compile attempt
a61af66fc99e Initial load
duke
parents:
diff changeset
886 // as in C2, then it must be freed.
a61af66fc99e Initial load
duke
parents:
diff changeset
887 code_buffer->free_blob();
a61af66fc99e Initial load
duke
parents:
diff changeset
888 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891 assert(offsets->value(CodeOffsets::Deopt) != -1, "must have deopt entry");
a61af66fc99e Initial load
duke
parents:
diff changeset
892 assert(offsets->value(CodeOffsets::Exceptions) != -1, "must have exception entry");
a61af66fc99e Initial load
duke
parents:
diff changeset
893
a61af66fc99e Initial load
duke
parents:
diff changeset
894 nm = nmethod::new_nmethod(method,
a61af66fc99e Initial load
duke
parents:
diff changeset
895 compile_id(),
a61af66fc99e Initial load
duke
parents:
diff changeset
896 entry_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
897 offsets,
a61af66fc99e Initial load
duke
parents:
diff changeset
898 orig_pc_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
899 debug_info(), dependencies(), code_buffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
900 frame_words, oop_map_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
901 handler_table, inc_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
902 compiler, comp_level);
a61af66fc99e Initial load
duke
parents:
diff changeset
903
a61af66fc99e Initial load
duke
parents:
diff changeset
904 // Free codeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
905 code_buffer->free_blob();
a61af66fc99e Initial load
duke
parents:
diff changeset
906
a61af66fc99e Initial load
duke
parents:
diff changeset
907 // stress test 6243940 by immediately making the method
a61af66fc99e Initial load
duke
parents:
diff changeset
908 // non-entrant behind the system's back. This has serious
a61af66fc99e Initial load
duke
parents:
diff changeset
909 // side effects on the code cache and is not meant for
a61af66fc99e Initial load
duke
parents:
diff changeset
910 // general stress testing
a61af66fc99e Initial load
duke
parents:
diff changeset
911 if (nm != NULL && StressNonEntrant) {
a61af66fc99e Initial load
duke
parents:
diff changeset
912 MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
913 NativeJump::patch_verified_entry(nm->entry_point(), nm->verified_entry_point(),
a61af66fc99e Initial load
duke
parents:
diff changeset
914 SharedRuntime::get_handle_wrong_method_stub());
a61af66fc99e Initial load
duke
parents:
diff changeset
915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
916
a61af66fc99e Initial load
duke
parents:
diff changeset
917 if (nm == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
918 // The CodeCache is full. Print out warning and disable compilation.
a61af66fc99e Initial load
duke
parents:
diff changeset
919 record_failure("code cache is full");
a61af66fc99e Initial load
duke
parents:
diff changeset
920 UseInterpreter = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
921 if (UseCompiler || AlwaysCompileLoopMethods ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
922 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
923 warning("CodeCache is full. Compiler has been disabled");
a61af66fc99e Initial load
duke
parents:
diff changeset
924 if (CompileTheWorld || ExitOnFullCodeCache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
925 before_exit(JavaThread::current());
a61af66fc99e Initial load
duke
parents:
diff changeset
926 exit_globals(); // will delete tty
a61af66fc99e Initial load
duke
parents:
diff changeset
927 vm_direct_exit(CompileTheWorld ? 0 : 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
928 }
a61af66fc99e Initial load
duke
parents:
diff changeset
929 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
930 UseCompiler = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
931 AlwaysCompileLoopMethods = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
932 }
a61af66fc99e Initial load
duke
parents:
diff changeset
933 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
934 NOT_PRODUCT(nm->set_has_debug_info(has_debug_info); )
a61af66fc99e Initial load
duke
parents:
diff changeset
935 nm->set_has_unsafe_access(has_unsafe_access);
a61af66fc99e Initial load
duke
parents:
diff changeset
936
a61af66fc99e Initial load
duke
parents:
diff changeset
937 // Record successful registration.
a61af66fc99e Initial load
duke
parents:
diff changeset
938 // (Put nm into the task handle *before* publishing to the Java heap.)
a61af66fc99e Initial load
duke
parents:
diff changeset
939 if (task() != NULL) task()->set_code(nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
940
a61af66fc99e Initial load
duke
parents:
diff changeset
941 if (entry_bci == InvocationEntryBci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
942 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
943 // If there is an old version we're done with it
a61af66fc99e Initial load
duke
parents:
diff changeset
944 nmethod* old = method->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
945 if (TraceMethodReplacement && old != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
946 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
947 char *method_name = method->name_and_sig_as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
948 tty->print_cr("Replacing method %s", method_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
949 }
a61af66fc99e Initial load
duke
parents:
diff changeset
950 if (old != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
951 old->make_not_entrant();
a61af66fc99e Initial load
duke
parents:
diff changeset
952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
953 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
954 if (TraceNMethodInstalls ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
955 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
956 char *method_name = method->name_and_sig_as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
957 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
958 tty->print_cr("Installing method (%d) %s ",
a61af66fc99e Initial load
duke
parents:
diff changeset
959 comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
960 method_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
961 }
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // Allow the code to be executed
a61af66fc99e Initial load
duke
parents:
diff changeset
963 method->set_code(method, nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
964 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
965 if (TraceNMethodInstalls ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
966 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
967 char *method_name = method->name_and_sig_as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
968 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
969 tty->print_cr("Installing osr method (%d) %s @ %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
970 comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
971 method_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
972 entry_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
973 }
a61af66fc99e Initial load
duke
parents:
diff changeset
974 instanceKlass::cast(method->method_holder())->add_osr_nmethod(nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
975
a61af66fc99e Initial load
duke
parents:
diff changeset
976 }
a61af66fc99e Initial load
duke
parents:
diff changeset
977 }
a61af66fc99e Initial load
duke
parents:
diff changeset
978 }
a61af66fc99e Initial load
duke
parents:
diff changeset
979 // JVMTI -- compiled method notification (must be done outside lock)
a61af66fc99e Initial load
duke
parents:
diff changeset
980 if (nm != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
981 nm->post_compiled_method_load_event();
a61af66fc99e Initial load
duke
parents:
diff changeset
982 }
a61af66fc99e Initial load
duke
parents:
diff changeset
983
a61af66fc99e Initial load
duke
parents:
diff changeset
984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
985
a61af66fc99e Initial load
duke
parents:
diff changeset
986
a61af66fc99e Initial load
duke
parents:
diff changeset
987 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
988 // ciEnv::find_system_klass
a61af66fc99e Initial load
duke
parents:
diff changeset
989 ciKlass* ciEnv::find_system_klass(ciSymbol* klass_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
991 return get_klass_by_name_impl(NULL, klass_name, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
993
a61af66fc99e Initial load
duke
parents:
diff changeset
994 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
995 // ciEnv::comp_level
a61af66fc99e Initial load
duke
parents:
diff changeset
996 int ciEnv::comp_level() {
a61af66fc99e Initial load
duke
parents:
diff changeset
997 if (task() == NULL) return CompLevel_full_optimization;
a61af66fc99e Initial load
duke
parents:
diff changeset
998 return task()->comp_level();
a61af66fc99e Initial load
duke
parents:
diff changeset
999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1000
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 // ciEnv::compile_id
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 uint ciEnv::compile_id() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 if (task() == NULL) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 return task()->compile_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1007
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 // ciEnv::notice_inlined_method()
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 void ciEnv::notice_inlined_method(ciMethod* method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 _num_inlined_bytecodes += method->code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1013
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 // ciEnv::num_inlined_bytecodes()
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 int ciEnv::num_inlined_bytecodes() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 return _num_inlined_bytecodes;
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1019
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // ciEnv::record_failure()
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 void ciEnv::record_failure(const char* reason) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 if (log() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 log()->elem("failure reason='%s'", reason);
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 if (_failure_reason == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 // Record the first failure reason.
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 _failure_reason = reason;
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1031
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 // ciEnv::record_method_not_compilable()
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 void ciEnv::record_method_not_compilable(const char* reason, bool all_tiers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 int new_compilable =
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 all_tiers ? MethodCompilable_never : MethodCompilable_not_at_tier ;
a61af66fc99e Initial load
duke
parents:
diff changeset
1037
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 // Only note transitions to a worse state
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 if (new_compilable > _compilable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 if (log() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (all_tiers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 log()->elem("method_not_compilable");
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 log()->elem("method_not_compilable_at_tier");
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 _compilable = new_compilable;
a61af66fc99e Initial load
duke
parents:
diff changeset
1048
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 // Reset failure reason; this one is more important.
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 _failure_reason = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 record_failure(reason);
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1054
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 // ciEnv::record_out_of_memory_failure()
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 void ciEnv::record_out_of_memory_failure() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 // If memory is low, we stop compiling methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 record_method_not_compilable("out of memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 }