annotate src/share/vm/ci/ciEnv.cpp @ 4138:82af018d61db

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