annotate src/share/vm/ci/ciEnv.hpp @ 780:c96bf21b756f

6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits Summary: Cache Jvmti and DTrace flags used by Compiler. Reviewed-by: never
author kvn
date Fri, 08 May 2009 10:44:20 -0700
parents a61af66fc99e
children bd02caa94611
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class CompileTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // ciEnv
a61af66fc99e Initial load
duke
parents:
diff changeset
28 //
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // This class is the top level broker for requests from the compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // to the VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class ciEnv : StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 CI_PACKAGE_ACCESS_TO
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 friend class CompileBroker;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 friend class Dependencies; // for get_object, during logging
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
38 Arena* _arena; // Alias for _ciEnv_arena except in init_shared_objects()
a61af66fc99e Initial load
duke
parents:
diff changeset
39 Arena _ciEnv_arena;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 int _system_dictionary_modification_counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 ciObjectFactory* _factory;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 OopRecorder* _oop_recorder;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 DebugInformationRecorder* _debug_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 Dependencies* _dependencies;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 const char* _failure_reason;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 int _compilable;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 bool _break_at_compile;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int _num_inlined_bytecodes;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 CompileTask* _task; // faster access to CompilerThread::task
a61af66fc99e Initial load
duke
parents:
diff changeset
50 CompileLog* _log; // faster access to CompilerThread::log
a61af66fc99e Initial load
duke
parents:
diff changeset
51 void* _compiler_data; // compiler-specific stuff, if any
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 char* _name_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 int _name_buffer_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
55
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
56 // Cache Jvmti state
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
57 bool _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: 0
diff changeset
58 bool _jvmti_can_examine_or_deopt_anywhere;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
59 bool _jvmti_can_access_local_variables;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
60 bool _jvmti_can_post_exceptions;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
61
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
62 // Cache DTrace flags
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
63 bool _dtrace_extended_probes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
64 bool _dtrace_monitor_probes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
65 bool _dtrace_method_probes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
66 bool _dtrace_alloc_probes;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
67
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Distinguished instances of certain ciObjects..
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static ciObject* _null_object_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static ciMethodKlass* _method_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 static ciSymbolKlass* _symbol_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static ciKlassKlass* _klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 static ciInstanceKlassKlass* _instance_klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static ciTypeArrayKlassKlass* _type_array_klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static ciObjArrayKlassKlass* _obj_array_klass_klass_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 static ciInstanceKlass* _ArrayStoreException;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 static ciInstanceKlass* _Class;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 static ciInstanceKlass* _ClassCastException;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static ciInstanceKlass* _Object;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static ciInstanceKlass* _Throwable;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static ciInstanceKlass* _Thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static ciInstanceKlass* _OutOfMemoryError;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static ciInstanceKlass* _String;
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static ciSymbol* _unloaded_cisymbol;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 static ciInstanceKlass* _unloaded_ciinstance_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 static ciObjArrayKlass* _unloaded_ciobjarrayklass;
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 static jobject _ArrayIndexOutOfBoundsException_handle;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static jobject _ArrayStoreException_handle;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static jobject _ClassCastException_handle;
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ciInstance* _NullPointerException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 ciInstance* _ArithmeticException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 ciInstance* _ArrayIndexOutOfBoundsException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 ciInstance* _ArrayStoreException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 ciInstance* _ClassCastException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Look up a klass by name from a particular class loader (the accessor's).
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // If require_local, result must be defined in that class loader, or NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // If !require_local, a result from remote class loader may be reported,
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // if sufficient class loader constraints exist such that initiating
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // a class loading request from the given loader is bound to return
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // the class defined in the remote loader (or throw an error).
a61af66fc99e Initial load
duke
parents:
diff changeset
106 //
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Return an unloaded klass if !require_local and no class at all is found.
a61af66fc99e Initial load
duke
parents:
diff changeset
108 //
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // The CI treats a klass as loaded if it is consistently defined in
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // another loader, even if it hasn't yet been loaded in all loaders
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // that could potentially see it via delegation.
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ciKlass* get_klass_by_name(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 ciSymbol* klass_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 bool require_local);
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // Constant pool access.
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ciKlass* get_klass_by_index(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
118 int klass_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
119 bool& is_accessible);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 ciConstant get_constant_by_index(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
121 int constant_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 bool is_unresolved_string(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int constant_index) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 bool is_unresolved_klass(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
125 int constant_index) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 ciField* get_field_by_index(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
127 int field_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 ciMethod* get_method_by_index(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
129 int method_index, Bytecodes::Code bc);
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Implementation methods for loading and constant pool access.
a61af66fc99e Initial load
duke
parents:
diff changeset
132 ciKlass* get_klass_by_name_impl(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 ciSymbol* klass_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
134 bool require_local);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 ciKlass* get_klass_by_index_impl(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
136 int klass_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
137 bool& is_accessible);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 ciConstant get_constant_by_index_impl(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 int constant_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 bool is_unresolved_string_impl (instanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
141 int constant_index) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 bool is_unresolved_klass_impl (instanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
143 int constant_index) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 ciField* get_field_by_index_impl(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
145 int field_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 ciMethod* get_method_by_index_impl(ciInstanceKlass* loading_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
147 int method_index, Bytecodes::Code bc);
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // Helper methods
a61af66fc99e Initial load
duke
parents:
diff changeset
150 bool check_klass_accessibility(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
151 klassOop resolved_klassOop);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 methodOop lookup_method(instanceKlass* accessor,
a61af66fc99e Initial load
duke
parents:
diff changeset
153 instanceKlass* holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
154 symbolOop name,
a61af66fc99e Initial load
duke
parents:
diff changeset
155 symbolOop sig,
a61af66fc99e Initial load
duke
parents:
diff changeset
156 Bytecodes::Code bc);
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // Get a ciObject from the object factory. Ensures uniqueness
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // of ciObjects.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 ciObject* get_object(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 if (o == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 return _null_object_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 return _factory->get(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 ciMethod* get_method_from_handle(jobject method);
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 ciInstance* get_or_create_exception(jobject& handle, symbolHandle name);
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // Get a ciMethod representing either an unfound method or
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // a method with an unloaded holder. Ensures uniqueness of
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // the result.
a61af66fc99e Initial load
duke
parents:
diff changeset
175 ciMethod* get_unloaded_method(ciInstanceKlass* holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
176 ciSymbol* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
177 ciSymbol* signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 return _factory->get_unloaded_method(holder, name, signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Get a ciKlass representing an unloaded klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // Ensures uniqueness of the result.
a61af66fc99e Initial load
duke
parents:
diff changeset
183 ciKlass* get_unloaded_klass(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
184 ciSymbol* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 return _factory->get_unloaded_klass(accessing_klass, name, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // See if we already have an unloaded klass for the given name
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // or return NULL if not.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ciKlass *check_get_unloaded_klass(ciKlass* accessing_klass, ciSymbol* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return _factory->get_unloaded_klass(accessing_klass, name, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // Get a ciReturnAddress corresponding to the given bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // Ensures uniqueness of the result.
a61af66fc99e Initial load
duke
parents:
diff changeset
196 ciReturnAddress* get_return_address(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 return _factory->get_return_address(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Get a ciMethodData representing the methodData for a method
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // with none.
a61af66fc99e Initial load
duke
parents:
diff changeset
202 ciMethodData* get_empty_methodData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 return _factory->get_empty_methodData();
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // General utility : get a buffer of some required length.
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // Used in symbol creation.
a61af66fc99e Initial load
duke
parents:
diff changeset
208 char* name_buffer(int req_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // Is this thread currently in the VM state?
a61af66fc99e Initial load
duke
parents:
diff changeset
211 static bool is_in_vm();
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Helper routine for determining the validity of a compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // with respect to concurrent class loading.
a61af66fc99e Initial load
duke
parents:
diff changeset
215 void check_for_system_dictionary_modification(ciMethod* target);
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
218 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 MethodCompilable,
a61af66fc99e Initial load
duke
parents:
diff changeset
220 MethodCompilable_not_at_tier,
a61af66fc99e Initial load
duke
parents:
diff changeset
221 MethodCompilable_never
a61af66fc99e Initial load
duke
parents:
diff changeset
222 };
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 ciEnv(CompileTask* task, int system_dictionary_modification_counter);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // Used only during initialization of the ci
a61af66fc99e Initial load
duke
parents:
diff changeset
226 ciEnv(Arena* arena);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 ~ciEnv();
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 OopRecorder* oop_recorder() { return _oop_recorder; }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 DebugInformationRecorder* debug_info() { return _debug_info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void set_debug_info(DebugInformationRecorder* i) { _debug_info = i; }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 Dependencies* dependencies() { return _dependencies; }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 void set_dependencies(Dependencies* d) { _dependencies = d; }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // This is true if the compilation is not going to produce code.
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // (It is reasonable to retry failed compilations.)
a61af66fc99e Initial load
duke
parents:
diff changeset
240 bool failing() { return _failure_reason != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Reason this compilation is failing, such as "too many basic blocks".
a61af66fc99e Initial load
duke
parents:
diff changeset
243 const char* failure_reason() { return _failure_reason; }
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Return state of appropriate compilability
a61af66fc99e Initial load
duke
parents:
diff changeset
246 int compilable() { return _compilable; }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 bool break_at_compile() { return _break_at_compile; }
a61af66fc99e Initial load
duke
parents:
diff changeset
249 void set_break_at_compile(bool z) { _break_at_compile = z; }
a61af66fc99e Initial load
duke
parents:
diff changeset
250
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
251 // Cache Jvmti state
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
252 void cache_jvmti_state();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
253 bool jvmti_can_hotswap_or_post_breakpoint() const { return _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: 0
diff changeset
254 bool jvmti_can_examine_or_deopt_anywhere() const { return _jvmti_can_examine_or_deopt_anywhere; }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
255 bool jvmti_can_access_local_variables() const { return _jvmti_can_access_local_variables; }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
256 bool jvmti_can_post_exceptions() const { return _jvmti_can_post_exceptions; }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
257
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
258 // Cache DTrace flags
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
259 void cache_dtrace_flags();
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
260 bool dtrace_extended_probes() const { return _dtrace_extended_probes; }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
261 bool dtrace_monitor_probes() const { return _dtrace_monitor_probes; }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
262 bool dtrace_method_probes() const { return _dtrace_method_probes; }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
263 bool dtrace_alloc_probes() const { return _dtrace_alloc_probes; }
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 0
diff changeset
264
0
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // The compiler task which has created this env.
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // May be useful to find out compile_id, comp_level, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
267 CompileTask* task() { return _task; }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // Handy forwards to the task:
a61af66fc99e Initial load
duke
parents:
diff changeset
269 int comp_level(); // task()->comp_level()
a61af66fc99e Initial load
duke
parents:
diff changeset
270 uint compile_id(); // task()->compile_id()
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // Register the result of a compilation.
a61af66fc99e Initial load
duke
parents:
diff changeset
273 void register_method(ciMethod* target,
a61af66fc99e Initial load
duke
parents:
diff changeset
274 int entry_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
275 CodeOffsets* offsets,
a61af66fc99e Initial load
duke
parents:
diff changeset
276 int orig_pc_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
277 CodeBuffer* code_buffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
278 int frame_words,
a61af66fc99e Initial load
duke
parents:
diff changeset
279 OopMapSet* oop_map_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
280 ExceptionHandlerTable* handler_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
281 ImplicitExceptionTable* inc_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
282 AbstractCompiler* compiler,
a61af66fc99e Initial load
duke
parents:
diff changeset
283 int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
284 bool has_debug_info = true,
a61af66fc99e Initial load
duke
parents:
diff changeset
285 bool has_unsafe_access = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Access to certain well known ciObjects.
a61af66fc99e Initial load
duke
parents:
diff changeset
289 ciInstanceKlass* ArrayStoreException_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
290 return _ArrayStoreException;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 ciInstanceKlass* Class_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 return _Class;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295 ciInstanceKlass* ClassCastException_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
296 return _ClassCastException;
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298 ciInstanceKlass* Object_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 return _Object;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 ciInstanceKlass* Throwable_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 return _Throwable;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 }
a61af66fc99e Initial load
duke
parents:
diff changeset
304 ciInstanceKlass* Thread_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
305 return _Thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 ciInstanceKlass* OutOfMemoryError_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 return _OutOfMemoryError;
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310 ciInstanceKlass* String_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 return _String;
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313 ciInstance* NullPointerException_instance() {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 assert(_NullPointerException_instance != NULL, "initialization problem");
a61af66fc99e Initial load
duke
parents:
diff changeset
315 return _NullPointerException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 ciInstance* ArithmeticException_instance() {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 assert(_ArithmeticException_instance != NULL, "initialization problem");
a61af66fc99e Initial load
duke
parents:
diff changeset
319 return _ArithmeticException_instance;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // Lazy constructors:
a61af66fc99e Initial load
duke
parents:
diff changeset
323 ciInstance* ArrayIndexOutOfBoundsException_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
324 ciInstance* ArrayStoreException_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
325 ciInstance* ClassCastException_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 static ciSymbol* unloaded_cisymbol() {
a61af66fc99e Initial load
duke
parents:
diff changeset
328 return _unloaded_cisymbol;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330 static ciObjArrayKlass* unloaded_ciobjarrayklass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 return _unloaded_ciobjarrayklass;
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333 static ciInstanceKlass* unloaded_ciinstance_klass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 return _unloaded_ciinstance_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 ciKlass* find_system_klass(ciSymbol* klass_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // Note: To find a class from its name string, use ciSymbol::make,
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // but consider adding to vmSymbols.hpp instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Use this to make a holder for non-perm compile time constants.
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // The resulting array is guaranteed to satisfy "has_encoding".
a61af66fc99e Initial load
duke
parents:
diff changeset
343 ciArray* make_array(GrowableArray<ciObject*>* objects);
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // converts the ciKlass* representing the holder of a method into a
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // ciInstanceKlass*. This is needed since the holder of a method in
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // the bytecodes could be an array type. Basically this converts
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // array types into java/lang/Object and other types stay as they are.
a61af66fc99e Initial load
duke
parents:
diff changeset
349 static ciInstanceKlass* get_instance_klass_for_declared_method_holder(ciKlass* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // Return the machine-level offset of o, which must be an element of a.
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // This may be used to form constant-loading expressions in lieu of simpler encodings.
a61af66fc99e Initial load
duke
parents:
diff changeset
353 int array_element_offset_in_bytes(ciArray* a, ciObject* o);
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // Access to the compile-lifetime allocation arena.
a61af66fc99e Initial load
duke
parents:
diff changeset
356 Arena* arena() { return _arena; }
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // What is the current compilation environment?
a61af66fc99e Initial load
duke
parents:
diff changeset
359 static ciEnv* current() { return CompilerThread::current()->env(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // Overload with current thread argument
a61af66fc99e Initial load
duke
parents:
diff changeset
362 static ciEnv* current(CompilerThread *thread) { return thread->env(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Per-compiler data. (Used by C2 to publish the Compile* pointer.)
a61af66fc99e Initial load
duke
parents:
diff changeset
365 void* compiler_data() { return _compiler_data; }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void set_compiler_data(void* x) { _compiler_data = x; }
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // Notice that a method has been inlined in the current compile;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // used only for statistics.
a61af66fc99e Initial load
duke
parents:
diff changeset
370 void notice_inlined_method(ciMethod* method);
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // Total number of bytecodes in inlined methods in this compile
a61af66fc99e Initial load
duke
parents:
diff changeset
373 int num_inlined_bytecodes() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // Output stream for logging compilation info.
a61af66fc99e Initial load
duke
parents:
diff changeset
376 CompileLog* log() { return _log; }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 void set_log(CompileLog* log) { _log = log; }
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 // Check for changes to the system dictionary during compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
380 bool system_dictionary_modification_counter_changed();
a61af66fc99e Initial load
duke
parents:
diff changeset
381
a61af66fc99e Initial load
duke
parents:
diff changeset
382 void record_failure(const char* reason);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 void record_method_not_compilable(const char* reason, bool all_tiers = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 void record_out_of_memory_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
385 };