1 /*
2  * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #ifndef SHARE_VM_CI_CIENV_HPP
26 #define SHARE_VM_CI_CIENV_HPP
27 
28 #include "ci/ciClassList.hpp"
29 #include "ci/ciObjectFactory.hpp"
30 #include "classfile/systemDictionary.hpp"
31 #include "code/debugInfoRec.hpp"
32 #include "code/dependencies.hpp"
33 #include "code/exceptionHandlerTable.hpp"
34 #include "compiler/oopMap.hpp"
35 #include "oops/methodData.hpp"
36 #include "runtime/thread.hpp"
37 
38 class CompileTask;
39 
40 // ciEnv
41 //
42 // This class is the top level broker for requests from the compiler
43 // to the VM.
44 class ciEnv : StackObj {
45   CI_PACKAGE_ACCESS_TO
46 
47   friend class CompileBroker;
48   friend class Dependencies;  // for get_object, during logging
49 
50 private:
51   Arena*           _arena;       // Alias for _ciEnv_arena except in init_shared_objects()
52   Arena            _ciEnv_arena;
53   int              _system_dictionary_modification_counter;
54   ciObjectFactory* _factory;
55   OopRecorder*     _oop_recorder;
56   DebugInformationRecorder* _debug_info;
57   Dependencies*    _dependencies;
58   const char*      _failure_reason;
59   bool             _inc_decompile_count_on_failure;
60   int              _compilable;
61   bool             _break_at_compile;
62   int              _num_inlined_bytecodes;
63   CompileTask*     _task;           // faster access to CompilerThread::task
64   CompileLog*      _log;            // faster access to CompilerThread::log
65   void*            _compiler_data;  // compiler-specific stuff, if any
66 
67   char* _name_buffer;
68   int   _name_buffer_len;
69 
70   // Cache Jvmti state
71   bool  _jvmti_can_hotswap_or_post_breakpoint;
72   bool  _jvmti_can_access_local_variables;
73   bool  _jvmti_can_post_on_exceptions;
74   bool  _jvmti_can_pop_frame;
75   bool  _jvmti_can_get_owned_monitor_info; // includes can_get_owned_monitor_stack_depth_info
76 
77   // Cache DTrace flags
78   bool  _dtrace_extended_probes;
79   bool  _dtrace_monitor_probes;
80   bool  _dtrace_method_probes;
81   bool  _dtrace_alloc_probes;
82 
83   // Distinguished instances of certain ciObjects..
84   static ciObject*              _null_object_instance;
85 
86 #define WK_KLASS_DECL(name, ignore_s, ignore_o) static ciInstanceKlass* _##name;
87   WK_KLASSES_DO(WK_KLASS_DECL)
88 #undef WK_KLASS_DECL
89 
90   static ciSymbol*        _unloaded_cisymbol;
91   static ciInstanceKlass* _unloaded_ciinstance_klass;
92   static ciObjArrayKlass* _unloaded_ciobjarrayklass;
93 
94   static jobject _ArrayIndexOutOfBoundsException_handle;
95   static jobject _ArrayStoreException_handle;
96   static jobject _ClassCastException_handle;
97 
98   ciInstance* _NullPointerException_instance;
99   ciInstance* _ArithmeticException_instance;
100   ciInstance* _ArrayIndexOutOfBoundsException_instance;
101   ciInstance* _ArrayStoreException_instance;
102   ciInstance* _ClassCastException_instance;
103 
104   ciInstance* _the_null_string;      // The Java string "null"
105   ciInstance* _the_min_jint_string; // The Java string "-2147483648"
106 
107   // Look up a klass by name from a particular class loader (the accessor's).
108   // If require_local, result must be defined in that class loader, or NULL.
109   // If !require_local, a result from remote class loader may be reported,
110   // if sufficient class loader constraints exist such that initiating
111   // a class loading request from the given loader is bound to return
112   // the class defined in the remote loader (or throw an error).
113   //
114   // Return an unloaded klass if !require_local and no class at all is found.
115   //
116   // The CI treats a klass as loaded if it is consistently defined in
117   // another loader, even if it hasn't yet been loaded in all loaders
118   // that could potentially see it via delegation.
119   ciKlass* get_klass_by_name(ciKlass* accessing_klass,
120                              ciSymbol* klass_name,
121                              bool require_local);
122 
123   // Constant pool access.
124   ciKlass*   get_klass_by_index(const constantPoolHandle& cpool,
125                                 int klass_index,
126                                 bool& is_accessible,
127                                 ciInstanceKlass* loading_klass);
128   ciConstant get_constant_by_index(const constantPoolHandle& cpool,
129                                    int pool_index, int cache_index,
130                                    ciInstanceKlass* accessor);
131   ciField*   get_field_by_index(ciInstanceKlass* loading_klass,
132                                 int field_index);
133   ciMethod*  get_method_by_index(const constantPoolHandle& cpool,
134                                  int method_index, Bytecodes::Code bc,
135                                  ciInstanceKlass* loading_klass);
136 
137   // Implementation methods for loading and constant pool access.
138   ciKlass* get_klass_by_name_impl(ciKlass* accessing_klass,
139                                   const constantPoolHandle& cpool,
140                                   ciSymbol* klass_name,
141                                   bool require_local);
142   ciKlass*   get_klass_by_index_impl(const constantPoolHandle& cpool,
143                                      int klass_index,
144                                      bool& is_accessible,
145                                      ciInstanceKlass* loading_klass);
146   ciConstant get_constant_by_index_impl(const constantPoolHandle& cpool,
147                                         int pool_index, int cache_index,
148                                         ciInstanceKlass* loading_klass);
149   ciField*   get_field_by_index_impl(ciInstanceKlass* loading_klass,
150                                      int field_index);
151   ciMethod*  get_method_by_index_impl(const constantPoolHandle& cpool,
152                                       int method_index, Bytecodes::Code bc,
153                                       ciInstanceKlass* loading_klass);
154 
155   // Helper methods
156   bool       check_klass_accessibility(ciKlass* accessing_klass,
157                                       Klass* resolved_klass);
158   Method*    lookup_method(ciInstanceKlass* accessor,
159                            ciKlass*         holder,
160                            Symbol*          name,
161                            Symbol*          sig,
162                            Bytecodes::Code  bc,
163                            constantTag      tag);
164 
165   // Get a ciObject from the object factory.  Ensures uniqueness
166   // of ciObjects.
get_object(oop o)167   ciObject* get_object(oop o) {
168     if (o == NULL) {
169       return _null_object_instance;
170     } else {
171       return _factory->get(o);
172     }
173   }
174 
get_symbol(Symbol * o)175   ciSymbol* get_symbol(Symbol* o) {
176     if (o == NULL) {
177       ShouldNotReachHere();
178       return NULL;
179     } else {
180       return _factory->get_symbol(o);
181     }
182   }
183 
get_metadata(Metadata * o)184   ciMetadata* get_metadata(Metadata* o) {
185     if (o == NULL) {
186       return NULL;
187     } else {
188       return _factory->get_metadata(o);
189     }
190   }
191 
get_instance(oop o)192   ciInstance* get_instance(oop o) {
193     if (o == NULL) return NULL;
194     return get_object(o)->as_instance();
195   }
get_obj_array_klass(Klass * o)196   ciObjArrayKlass* get_obj_array_klass(Klass* o) {
197     if (o == NULL) return NULL;
198     return get_metadata(o)->as_obj_array_klass();
199   }
get_type_array_klass(Klass * o)200   ciTypeArrayKlass* get_type_array_klass(Klass* o) {
201     if (o == NULL) return NULL;
202     return get_metadata(o)->as_type_array_klass();
203   }
get_klass(Klass * o)204   ciKlass* get_klass(Klass* o) {
205     if (o == NULL) return NULL;
206     return get_metadata(o)->as_klass();
207   }
get_instance_klass(Klass * o)208   ciInstanceKlass* get_instance_klass(Klass* o) {
209     if (o == NULL) return NULL;
210     return get_metadata(o)->as_instance_klass();
211   }
get_method(Method * o)212   ciMethod* get_method(Method* o) {
213     if (o == NULL) return NULL;
214     return get_metadata(o)->as_method();
215   }
get_method_data(MethodData * o)216   ciMethodData* get_method_data(MethodData* o) {
217     if (o == NULL) return NULL;
218     return get_metadata(o)->as_method_data();
219   }
220 
221   ciMethod* get_method_from_handle(Method* method);
222 
223   ciInstance* get_or_create_exception(jobject& handle, Symbol* name);
224 
225   // Get a ciMethod representing either an unfound method or
226   // a method with an unloaded holder.  Ensures uniqueness of
227   // the result.
get_unloaded_method(ciKlass * holder,ciSymbol * name,ciSymbol * signature,ciInstanceKlass * accessor)228   ciMethod* get_unloaded_method(ciKlass*         holder,
229                                 ciSymbol*        name,
230                                 ciSymbol*        signature,
231                                 ciInstanceKlass* accessor) {
232     ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder);
233     return _factory->get_unloaded_method(declared_holder, name, signature, accessor);
234   }
235 
236   // Get a ciKlass representing an unloaded klass.
237   // Ensures uniqueness of the result.
get_unloaded_klass(ciKlass * accessing_klass,ciSymbol * name)238   ciKlass* get_unloaded_klass(ciKlass*  accessing_klass,
239                               ciSymbol* name) {
240     return _factory->get_unloaded_klass(accessing_klass, name, true);
241   }
242 
243   // Get a ciKlass representing an unloaded klass mirror.
244   // Result is not necessarily unique, but will be unloaded.
get_unloaded_klass_mirror(ciKlass * type)245   ciInstance* get_unloaded_klass_mirror(ciKlass* type) {
246     return _factory->get_unloaded_klass_mirror(type);
247   }
248 
249   // Get a ciInstance representing an unresolved method handle constant.
get_unloaded_method_handle_constant(ciKlass * holder,ciSymbol * name,ciSymbol * signature,int ref_kind)250   ciInstance* get_unloaded_method_handle_constant(ciKlass*  holder,
251                                                   ciSymbol* name,
252                                                   ciSymbol* signature,
253                                                   int       ref_kind) {
254     return _factory->get_unloaded_method_handle_constant(holder, name, signature, ref_kind);
255   }
256 
257   // Get a ciInstance representing an unresolved method type constant.
get_unloaded_method_type_constant(ciSymbol * signature)258   ciInstance* get_unloaded_method_type_constant(ciSymbol* signature) {
259     return _factory->get_unloaded_method_type_constant(signature);
260   }
261 
262   // See if we already have an unloaded klass for the given name
263   // or return NULL if not.
check_get_unloaded_klass(ciKlass * accessing_klass,ciSymbol * name)264   ciKlass *check_get_unloaded_klass(ciKlass*  accessing_klass, ciSymbol* name) {
265     return _factory->get_unloaded_klass(accessing_klass, name, false);
266   }
267 
268   // Get a ciReturnAddress corresponding to the given bci.
269   // Ensures uniqueness of the result.
get_return_address(int bci)270   ciReturnAddress* get_return_address(int bci) {
271     return _factory->get_return_address(bci);
272   }
273 
274   // Get a ciMethodData representing the methodData for a method
275   // with none.
get_empty_methodData()276   ciMethodData* get_empty_methodData() {
277     return _factory->get_empty_methodData();
278   }
279 
280   // General utility : get a buffer of some required length.
281   // Used in symbol creation.
282   char* name_buffer(int req_len);
283 
284   // Is this thread currently in the VM state?
285   static bool is_in_vm();
286 
287   // Helper routine for determining the validity of a compilation with
288   // respect to method dependencies (e.g. concurrent class loading).
289   void validate_compile_task_dependencies(ciMethod* target);
290 
291 public:
292   enum {
293     MethodCompilable,
294     MethodCompilable_not_at_tier,
295     MethodCompilable_never
296   };
297 
298   ciEnv(CompileTask* task, int system_dictionary_modification_counter);
299   // Used only during initialization of the ci
300   ciEnv(Arena* arena);
301   ~ciEnv();
302 
oop_recorder()303   OopRecorder* oop_recorder() { return _oop_recorder; }
set_oop_recorder(OopRecorder * r)304   void set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
305 
debug_info()306   DebugInformationRecorder* debug_info() { return _debug_info; }
set_debug_info(DebugInformationRecorder * i)307   void set_debug_info(DebugInformationRecorder* i) { _debug_info = i; }
308 
dependencies()309   Dependencies* dependencies() { return _dependencies; }
set_dependencies(Dependencies * d)310   void set_dependencies(Dependencies* d) { _dependencies = d; }
311 
312   // This is true if the compilation is not going to produce code.
313   // (It is reasonable to retry failed compilations.)
failing()314   bool failing() { return _failure_reason != NULL; }
315 
316   // Reason this compilation is failing, such as "too many basic blocks".
failure_reason()317   const char* failure_reason() { return _failure_reason; }
318 
319   // Return state of appropriate compilability
compilable()320   int compilable() { return _compilable; }
321 
retry_message() const322   const char* retry_message() const {
323     switch (_compilable) {
324       case ciEnv::MethodCompilable_not_at_tier:
325         return "retry at different tier";
326       case ciEnv::MethodCompilable_never:
327         return "not retryable";
328       case ciEnv::MethodCompilable:
329         return NULL;
330       default:
331         ShouldNotReachHere();
332         return NULL;
333     }
334   }
335 
break_at_compile()336   bool break_at_compile() { return _break_at_compile; }
set_break_at_compile(bool z)337   void set_break_at_compile(bool z) { _break_at_compile = z; }
338 
339   // Cache Jvmti state
340   void  cache_jvmti_state();
341   bool  jvmti_state_changed() const;
should_retain_local_variables() const342   bool  should_retain_local_variables() const {
343     return _jvmti_can_access_local_variables || _jvmti_can_pop_frame;
344   }
jvmti_can_hotswap_or_post_breakpoint() const345   bool  jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; }
jvmti_can_post_on_exceptions() const346   bool  jvmti_can_post_on_exceptions()         const { return _jvmti_can_post_on_exceptions; }
jvmti_can_get_owned_monitor_info() const347   bool  jvmti_can_get_owned_monitor_info()     const { return _jvmti_can_get_owned_monitor_info; }
348 
349   // Cache DTrace flags
350   void  cache_dtrace_flags();
dtrace_extended_probes() const351   bool  dtrace_extended_probes() const { return _dtrace_extended_probes; }
dtrace_monitor_probes() const352   bool  dtrace_monitor_probes()  const { return _dtrace_monitor_probes; }
dtrace_method_probes() const353   bool  dtrace_method_probes()   const { return _dtrace_method_probes; }
dtrace_alloc_probes() const354   bool  dtrace_alloc_probes()    const { return _dtrace_alloc_probes; }
355 
356   // The compiler task which has created this env.
357   // May be useful to find out compile_id, comp_level, etc.
task()358   CompileTask* task() { return _task; }
359 
360   // Handy forwards to the task:
361   int comp_level();   // task()->comp_level()
362   uint compile_id();  // task()->compile_id()
363 
364   // Register the result of a compilation.
365   void register_method(ciMethod*                 target,
366                        int                       entry_bci,
367                        CodeOffsets*              offsets,
368                        int                       orig_pc_offset,
369                        CodeBuffer*               code_buffer,
370                        int                       frame_words,
371                        OopMapSet*                oop_map_set,
372                        ExceptionHandlerTable*    handler_table,
373                        ImplicitExceptionTable*   inc_table,
374                        AbstractCompiler*         compiler,
375                        bool                      has_unsafe_access,
376                        bool                      has_wide_vectors,
377                        RTMState                  rtm_state = NoRTM);
378 
379 
380   // Access to certain well known ciObjects.
381 #define WK_KLASS_FUNC(name, ignore_s, ignore_o) \
382   ciInstanceKlass* name() { \
383     return _##name;\
384   }
WK_KLASSES_DO(WK_KLASS_FUNC)385   WK_KLASSES_DO(WK_KLASS_FUNC)
386 #undef WK_KLASS_FUNC
387 
388   ciInstance* NullPointerException_instance() {
389     assert(_NullPointerException_instance != NULL, "initialization problem");
390     return _NullPointerException_instance;
391   }
ArithmeticException_instance()392   ciInstance* ArithmeticException_instance() {
393     assert(_ArithmeticException_instance != NULL, "initialization problem");
394     return _ArithmeticException_instance;
395   }
396 
397   // Lazy constructors:
398   ciInstance* ArrayIndexOutOfBoundsException_instance();
399   ciInstance* ArrayStoreException_instance();
400   ciInstance* ClassCastException_instance();
401 
402   ciInstance* the_null_string();
403   ciInstance* the_min_jint_string();
404 
unloaded_cisymbol()405   static ciSymbol* unloaded_cisymbol() {
406     return _unloaded_cisymbol;
407   }
unloaded_ciobjarrayklass()408   static ciObjArrayKlass* unloaded_ciobjarrayklass() {
409     return _unloaded_ciobjarrayklass;
410   }
unloaded_ciinstance_klass()411   static ciInstanceKlass* unloaded_ciinstance_klass() {
412     return _unloaded_ciinstance_klass;
413   }
414   ciInstance* unloaded_ciinstance();
415 
416   ciKlass*  find_system_klass(ciSymbol* klass_name);
417   // Note:  To find a class from its name string, use ciSymbol::make,
418   // but consider adding to vmSymbols.hpp instead.
419 
420   // converts the ciKlass* representing the holder of a method into a
421   // ciInstanceKlass*.  This is needed since the holder of a method in
422   // the bytecodes could be an array type.  Basically this converts
423   // array types into java/lang/Object and other types stay as they are.
424   static ciInstanceKlass* get_instance_klass_for_declared_method_holder(ciKlass* klass);
425 
426   // Return the machine-level offset of o, which must be an element of a.
427   // This may be used to form constant-loading expressions in lieu of simpler encodings.
428   int       array_element_offset_in_bytes(ciArray* a, ciObject* o);
429 
430   // Access to the compile-lifetime allocation arena.
arena()431   Arena*    arena() { return _arena; }
432 
433   // What is the current compilation environment?
current()434   static ciEnv* current() { return CompilerThread::current()->env(); }
435 
436   // Overload with current thread argument
current(CompilerThread * thread)437   static ciEnv* current(CompilerThread *thread) { return thread->env(); }
438 
439   // Per-compiler data.  (Used by C2 to publish the Compile* pointer.)
compiler_data()440   void* compiler_data() { return _compiler_data; }
set_compiler_data(void * x)441   void set_compiler_data(void* x) { _compiler_data = x; }
442 
443   // Notice that a method has been inlined in the current compile;
444   // used only for statistics.
445   void notice_inlined_method(ciMethod* method);
446 
447   // Total number of bytecodes in inlined methods in this compile
448   int num_inlined_bytecodes() const;
449 
450   // Output stream for logging compilation info.
log()451   CompileLog* log() { return _log; }
set_log(CompileLog * log)452   void set_log(CompileLog* log) { _log = log; }
453 
454   // Check for changes to the system dictionary during compilation
455   bool system_dictionary_modification_counter_changed();
456 
457   void record_failure(const char* reason);      // Record failure and report later
458   void report_failure(const char* reason);      // Report failure immediately
459   void record_method_not_compilable(const char* reason, bool all_tiers = true);
460   void record_out_of_memory_failure();
461 
462   // RedefineClasses support
metadata_do(void f (Metadata *))463   void metadata_do(void f(Metadata*)) { _factory->metadata_do(f); }
464 
465   // Dump the compilation replay data for the ciEnv to the stream.
466   void dump_replay_data(int compile_id);
467   void dump_inline_data(int compile_id);
468   void dump_replay_data(outputStream* out);
469   void dump_replay_data_unsafe(outputStream* out);
470   void dump_compile_data(outputStream* out);
471 };
472 
473 #endif // SHARE_VM_CI_CIENV_HPP
474