1 /*
  2  * Copyright (c) 1999, 2023, 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_CI_CIENV_HPP
 26 #define SHARE_CI_CIENV_HPP
 27 
 28 #include "ci/ciClassList.hpp"
 29 #include "ci/ciObjectFactory.hpp"
 30 #include "classfile/vmClassMacros.hpp"
 31 #include "code/debugInfoRec.hpp"
 32 #include "code/dependencies.hpp"
 33 #include "code/exceptionHandlerTable.hpp"
 34 #include "compiler/compiler_globals.hpp"
 35 #include "compiler/compilerThread.hpp"
 36 #include "compiler/cHeapStringHolder.hpp"
 37 #include "oops/methodData.hpp"
 38 #include "runtime/javaThread.hpp"
 39 
 40 class CompileTask;
 41 class OopMapSet;
 42 
 43 // ciEnv
 44 //
 45 // This class is the top level broker for requests from the compiler
 46 // to the VM.
 47 class ciEnv : StackObj {
 48   CI_PACKAGE_ACCESS_TO
 49   friend class CompileBroker;
 50   friend class Dependencies;  // for get_object, during logging
 51   friend class RecordLocation;
 52   friend class PrepareExtraDataClosure;
 53 
 54 private:
 55   Arena*           _arena;       // Alias for _ciEnv_arena except in init_shared_objects()
 56   Arena            _ciEnv_arena;
 57   ciObjectFactory* _factory;
 58   OopRecorder*     _oop_recorder;
 59   DebugInformationRecorder* _debug_info;
 60   Dependencies*    _dependencies;
 61   CHeapStringHolder _failure_reason;
 62   bool             _inc_decompile_count_on_failure;
 63   int              _compilable;
 64   bool             _break_at_compile;
 65   int              _num_inlined_bytecodes;
 66   CompileTask*     _task;           // faster access to CompilerThread::task
 67   CompileLog*      _log;            // faster access to CompilerThread::log
 68   void*            _compiler_data;  // compiler-specific stuff, if any
 69 
 70   char* _name_buffer;
 71   int   _name_buffer_len;
 72 
 73   // Cache Jvmti state
 74   uint64_t _jvmti_redefinition_count;
 75   bool  _jvmti_can_hotswap_or_post_breakpoint;
 76   bool  _jvmti_can_access_local_variables;
 77   bool  _jvmti_can_post_on_exceptions;
 78   bool  _jvmti_can_pop_frame;
 79   bool  _jvmti_can_get_owned_monitor_info; // includes can_get_owned_monitor_stack_depth_info
 80   bool  _jvmti_can_walk_any_space;
 81 
 82   // Cache DTrace flags
 83   bool  _dtrace_method_probes;
 84   bool  _dtrace_alloc_probes;
 85 
 86   // Distinguished instances of certain ciObjects..
 87   static ciObject*              _null_object_instance;
 88 
 89 #define VM_CLASS_DECL(name, ignore_s) static ciInstanceKlass* _##name;
 90   VM_CLASSES_DO(VM_CLASS_DECL)
 91 #undef VM_CLASS_DECL
 92 
 93   static ciSymbol*        _unloaded_cisymbol;
 94   static ciInstanceKlass* _unloaded_ciinstance_klass;
 95   static ciObjArrayKlass* _unloaded_ciobjarrayklass;
 96 
 97   static jobject _ArrayIndexOutOfBoundsException_handle;
 98   static jobject _ArrayStoreException_handle;
 99   static jobject _ClassCastException_handle;
100 
101   ciInstance* _NullPointerException_instance;
102   ciInstance* _ArithmeticException_instance;
103   ciInstance* _ArrayIndexOutOfBoundsException_instance;
104   ciInstance* _ArrayStoreException_instance;
105   ciInstance* _ClassCastException_instance;
106 
107   ciInstance* _the_null_string;      // The Java string "null"
108   ciInstance* _the_min_jint_string; // The Java string "-2147483648"
109 
110   // Look up a klass by name from a particular class loader (the accessor's).
111   // If require_local, result must be defined in that class loader, or null.
112   // If !require_local, a result from remote class loader may be reported,
113   // if sufficient class loader constraints exist such that initiating
114   // a class loading request from the given loader is bound to return
115   // the class defined in the remote loader (or throw an error).
116   //
117   // Return an unloaded klass if !require_local and no class at all is found.
118   //
119   // The CI treats a klass as loaded if it is consistently defined in
120   // another loader, even if it hasn't yet been loaded in all loaders
121   // that could potentially see it via delegation.
122   ciKlass* get_klass_by_name(ciKlass* accessing_klass,
123                              ciSymbol* klass_name,
124                              bool require_local);
125 
126   // Constant pool access.
127   ciKlass*   get_klass_by_index(const constantPoolHandle& cpool,
128                                 int klass_index,
129                                 bool& is_accessible,
130                                 ciInstanceKlass* loading_klass);
131   ciConstant get_constant_by_index(const constantPoolHandle& cpool,
132                                    int pool_index, int cache_index,
133                                    ciInstanceKlass* accessor);
134   ciField*   get_field_by_index(ciInstanceKlass* loading_klass,
135                                 int field_index, Bytecodes::Code bc);
136   ciMethod*  get_method_by_index(const constantPoolHandle& cpool,
137                                  int method_index, Bytecodes::Code bc,
138                                  ciInstanceKlass* loading_klass);
139 
140   // Implementation methods for loading and constant pool access.
141   ciKlass* get_klass_by_name_impl(ciKlass* accessing_klass,
142                                   const constantPoolHandle& cpool,
143                                   ciSymbol* klass_name,
144                                   bool require_local);
145   ciKlass*   get_klass_by_index_impl(const constantPoolHandle& cpool,
146                                      int klass_index,
147                                      bool& is_accessible,
148                                      ciInstanceKlass* loading_klass);
149   ciConstant get_constant_by_index_impl(const constantPoolHandle& cpool,
150                                         int pool_index, int cache_index,
151                                         ciInstanceKlass* loading_klass);
152   ciField*   get_field_by_index_impl(ciInstanceKlass* loading_klass,
153                                      int field_index, Bytecodes::Code bc);
154   ciMethod*  get_method_by_index_impl(const constantPoolHandle& cpool,
155                                       int method_index, Bytecodes::Code bc,
156                                       ciInstanceKlass* loading_klass);
157 
158   // Helper methods
159   bool       check_klass_accessibility(ciKlass* accessing_klass,
160                                       Klass* resolved_klass);
161   Method*    lookup_method(ciInstanceKlass* accessor,
162                            ciKlass*         holder,
163                            Symbol*          name,
164                            Symbol*          sig,
165                            Bytecodes::Code  bc,
166                            constantTag      tag);
167 
168   ciConstant unbox_primitive_value(ciObject* cibox, BasicType expected_bt = T_ILLEGAL);
169   ciConstant get_resolved_constant(const constantPoolHandle& cpool, int obj_index);
170 
171   // Get a ciObject from the object factory.  Ensures uniqueness
172   // of ciObjects.
173   ciObject* get_object(oop o) {
174     if (o == nullptr) {
175       return _null_object_instance;
176     } else {
177       return _factory->get(o);
178     }
179   }
180 
181   ciSymbol* get_symbol(Symbol* o) {
182     if (o == nullptr) {
183       ShouldNotReachHere();
184       return nullptr;
185     } else {
186       return _factory->get_symbol(o);
187     }
188   }
189 
190   ciMetadata* get_metadata(Metadata* o) {
191     if (o == nullptr) {
192       return nullptr;
193     } else {
194       return _factory->get_metadata(o);
195     }
196   }
197 
198   ciMetadata* cached_metadata(Metadata* o) {
199     return _factory->cached_metadata(o);
200   }
201 
202   ciInstance* get_instance(oop o) {
203     if (o == nullptr) return nullptr;
204     return get_object(o)->as_instance();
205   }
206   ciObjArrayKlass* get_obj_array_klass(Klass* o) {
207     if (o == nullptr) return nullptr;
208     return get_metadata(o)->as_obj_array_klass();
209   }
210   ciTypeArrayKlass* get_type_array_klass(Klass* o) {
211     if (o == nullptr) return nullptr;
212     return get_metadata(o)->as_type_array_klass();
213   }
214   ciKlass* get_klass(Klass* o) {
215     if (o == nullptr) return nullptr;
216     return get_metadata(o)->as_klass();
217   }
218   ciInstanceKlass* get_instance_klass(Klass* o) {
219     if (o == nullptr) return nullptr;
220     return get_metadata(o)->as_instance_klass();
221   }
222   ciMethod* get_method(Method* o) {
223     if (o == nullptr) return nullptr;
224     return get_metadata(o)->as_method();
225   }
226   ciMethodData* get_method_data(MethodData* o) {
227     if (o == nullptr) return nullptr;
228     return get_metadata(o)->as_method_data();
229   }
230 
231   ciMethod* get_method_from_handle(Method* method);
232 
233   ciInstance* get_or_create_exception(jobject& handle, Symbol* name);
234 
235   // Get a ciMethod representing either an unfound method or
236   // a method with an unloaded holder.  Ensures uniqueness of
237   // the result.
238   ciMethod* get_unloaded_method(ciKlass*         holder,
239                                 ciSymbol*        name,
240                                 ciSymbol*        signature,
241                                 ciInstanceKlass* accessor) {
242     ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder);
243     return _factory->get_unloaded_method(declared_holder, name, signature, accessor);
244   }
245 
246   // Get a ciKlass representing an unloaded klass.
247   // Ensures uniqueness of the result.
248   ciKlass* get_unloaded_klass(ciKlass*  accessing_klass,
249                               ciSymbol* name) {
250     return _factory->get_unloaded_klass(accessing_klass, name, true);
251   }
252 
253   // Get a ciKlass representing an unloaded klass mirror.
254   // Result is not necessarily unique, but will be unloaded.
255   ciInstance* get_unloaded_klass_mirror(ciKlass* type) {
256     return _factory->get_unloaded_klass_mirror(type);
257   }
258 
259   // Get a ciInstance representing an unresolved method handle constant.
260   ciInstance* get_unloaded_method_handle_constant(ciKlass*  holder,
261                                                   ciSymbol* name,
262                                                   ciSymbol* signature,
263                                                   int       ref_kind) {
264     return _factory->get_unloaded_method_handle_constant(holder, name, signature, ref_kind);
265   }
266 
267   // Get a ciInstance representing an unresolved method type constant.
268   ciInstance* get_unloaded_method_type_constant(ciSymbol* signature) {
269     return _factory->get_unloaded_method_type_constant(signature);
270   }
271 
272   // See if we already have an unloaded klass for the given name
273   // or return null if not.
274   ciKlass *check_get_unloaded_klass(ciKlass*  accessing_klass, ciSymbol* name) {
275     return _factory->get_unloaded_klass(accessing_klass, name, false);
276   }
277 
278   // Get a ciReturnAddress corresponding to the given bci.
279   // Ensures uniqueness of the result.
280   ciReturnAddress* get_return_address(int bci) {
281     return _factory->get_return_address(bci);
282   }
283 
284   // Get a ciMethodData representing the methodData for a method
285   // with none.
286   ciMethodData* get_empty_methodData() {
287     return _factory->get_empty_methodData();
288   }
289 
290   // General utility : get a buffer of some required length.
291   // Used in symbol creation.
292   char* name_buffer(int req_len);
293 
294   // Is this thread currently in the VM state?
295   static bool is_in_vm();
296 
297   // Helper routine for determining the validity of a compilation with
298   // respect to method dependencies (e.g. concurrent class loading).
299   void validate_compile_task_dependencies(ciMethod* target);
300 public:
301   enum {
302     MethodCompilable,
303     MethodCompilable_not_at_tier,
304     MethodCompilable_never
305   };
306 
307   ciEnv(CompileTask* task);
308   // Used only during initialization of the ci
309   ciEnv(Arena* arena);
310   ~ciEnv();
311 
312   OopRecorder* oop_recorder() { return _oop_recorder; }
313   void set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
314 
315   DebugInformationRecorder* debug_info() { return _debug_info; }
316   void set_debug_info(DebugInformationRecorder* i) { _debug_info = i; }
317 
318   Dependencies* dependencies() { return _dependencies; }
319   void set_dependencies(Dependencies* d) { _dependencies = d; }
320 
321   // This is true if the compilation is not going to produce code.
322   // (It is reasonable to retry failed compilations.)
323   bool failing() const { return _failure_reason.get() != nullptr; }
324 
325   // Reason this compilation is failing, such as "too many basic blocks".
326   const char* failure_reason() const { return _failure_reason.get(); }
327 
328   // Return state of appropriate compatibility
329   int compilable() { return _compilable; }
330 
331   const char* retry_message() const {
332     switch (_compilable) {
333       case ciEnv::MethodCompilable_not_at_tier:
334         return "retry at different tier";
335       case ciEnv::MethodCompilable_never:
336         return "not retryable";
337       case ciEnv::MethodCompilable:
338         return nullptr;
339       default:
340         ShouldNotReachHere();
341         return nullptr;
342     }
343   }
344 
345   bool break_at_compile() { return _break_at_compile; }
346   void set_break_at_compile(bool z) { _break_at_compile = z; }
347 
348   // Cache Jvmti state
349   bool  cache_jvmti_state();
350   bool  jvmti_state_changed() const;
351   bool  should_retain_local_variables() const {
352     return _jvmti_can_access_local_variables || _jvmti_can_pop_frame;
353   }
354   bool  jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; }
355   bool  jvmti_can_post_on_exceptions()         const { return _jvmti_can_post_on_exceptions; }
356   bool  jvmti_can_get_owned_monitor_info()     const { return _jvmti_can_get_owned_monitor_info; }
357   bool  jvmti_can_walk_any_space()             const { return _jvmti_can_walk_any_space; }
358 
359   // Cache DTrace flags
360   void  cache_dtrace_flags();
361   bool  dtrace_method_probes()   const { return _dtrace_method_probes; }
362   bool  dtrace_alloc_probes()    const { return _dtrace_alloc_probes; }
363 
364   // The compiler task which has created this env.
365   // May be useful to find out compile_id, comp_level, etc.
366   CompileTask* task() const { return _task; }
367 
368   // Handy forwards to the task:
369   int comp_level();   // task()->comp_level()
370   int compile_id();  // task()->compile_id()
371 
372   // Register the result of a compilation.
373   void register_method(ciMethod*                 target,
374                        int                       entry_bci,
375                        CodeOffsets*              offsets,
376                        int                       orig_pc_offset,
377                        CodeBuffer*               code_buffer,
378                        int                       frame_words,
379                        OopMapSet*                oop_map_set,
380                        ExceptionHandlerTable*    handler_table,
381                        ImplicitExceptionTable*   inc_table,
382                        AbstractCompiler*         compiler,
383                        bool                      has_unsafe_access,
384                        bool                      has_wide_vectors,
385                        bool                      has_monitors,
386                        int                       immediate_oops_patched,
387                        RTMState                  rtm_state = NoRTM);
388 
389   // Access to certain well known ciObjects.
390 #define VM_CLASS_FUNC(name, ignore_s) \
391   ciInstanceKlass* name() { \
392     return _##name;\
393   }
394   VM_CLASSES_DO(VM_CLASS_FUNC)
395 #undef VM_CLASS_FUNC
396 
397   ciInstance* NullPointerException_instance() {
398     assert(_NullPointerException_instance != nullptr, "initialization problem");
399     return _NullPointerException_instance;
400   }
401   ciInstance* ArithmeticException_instance() {
402     assert(_ArithmeticException_instance != nullptr, "initialization problem");
403     return _ArithmeticException_instance;
404   }
405 
406   // Lazy constructors:
407   ciInstance* ArrayIndexOutOfBoundsException_instance();
408   ciInstance* ArrayStoreException_instance();
409   ciInstance* ClassCastException_instance();
410 
411   ciInstance* the_null_string();
412   ciInstance* the_min_jint_string();
413 
414   static ciSymbol* unloaded_cisymbol() {
415     return _unloaded_cisymbol;
416   }
417   static ciObjArrayKlass* unloaded_ciobjarrayklass() {
418     return _unloaded_ciobjarrayklass;
419   }
420   static ciInstanceKlass* unloaded_ciinstance_klass() {
421     return _unloaded_ciinstance_klass;
422   }
423   ciInstance* unloaded_ciinstance();
424 
425   ciInstanceKlass* get_box_klass_for_primitive_type(BasicType type);
426 
427   ciKlass*  find_system_klass(ciSymbol* klass_name);
428 
429   // Note:  To find a class from its name string, use ciSymbol::make,
430   // but consider adding to vmSymbols.hpp instead.
431 
432   // converts the ciKlass* representing the holder of a method into a
433   // ciInstanceKlass*.  This is needed since the holder of a method in
434   // the bytecodes could be an array type.  Basically this converts
435   // array types into java/lang/Object and other types stay as they are.
436   static ciInstanceKlass* get_instance_klass_for_declared_method_holder(ciKlass* klass);
437 
438   // Access to the compile-lifetime allocation arena.
439   Arena*    arena() { return _arena; }
440 
441   // What is the current compilation environment?
442   static ciEnv* current() { return CompilerThread::current()->env(); }
443 
444   // Overload with current thread argument
445   static ciEnv* current(CompilerThread *thread) { return thread->env(); }
446 
447   // Per-compiler data.  (Used by C2 to publish the Compile* pointer.)
448   void* compiler_data() const { return _compiler_data; }
449   void set_compiler_data(void* x) { _compiler_data = x; }
450 
451   // Notice that a method has been inlined in the current compile;
452   // used only for statistics.
453   void notice_inlined_method(ciMethod* method);
454 
455   // Total number of bytecodes in inlined methods in this compile
456   int num_inlined_bytecodes() const;
457 
458   // Output stream for logging compilation info.
459   CompileLog* log() { return _log; }
460   void set_log(CompileLog* log) { _log = log; }
461 
462   void record_failure(const char* reason);      // Record failure and report later
463   void report_failure(const char* reason);      // Report failure immediately
464   void record_method_not_compilable(const char* reason, bool all_tiers = false);
465   void record_out_of_memory_failure();
466 
467   // RedefineClasses support
468   void metadata_do(MetadataClosure* f) { _factory->metadata_do(f); }
469 
470   // Replay support
471 private:
472   static int klass_compare(const InstanceKlass* const &ik1, const InstanceKlass* const &ik2) {
473     if (ik1 > ik2) {
474       return 1;
475     } else if (ik1 < ik2) {
476       return -1;
477     } else {
478       return 0;
479     }
480   }
481   bool dyno_loc(const InstanceKlass* ik, const char *&loc) const;
482   void set_dyno_loc(const InstanceKlass* ik);
483   void record_best_dyno_loc(const InstanceKlass* ik);
484   bool print_dyno_loc(outputStream* out, const InstanceKlass* ik) const;
485 
486   GrowableArray<const InstanceKlass*>* _dyno_klasses;
487   GrowableArray<const char *>*         _dyno_locs;
488 
489 #define MAX_DYNO_NAME_LENGTH 1024
490   char _dyno_name[MAX_DYNO_NAME_LENGTH+1];
491 
492 public:
493   // Dump the compilation replay data for the ciEnv to the stream.
494   void dump_replay_data(int compile_id);
495   void dump_inline_data(int compile_id);
496   void dump_replay_data(outputStream* out);
497   void dump_replay_data_unsafe(outputStream* out);
498   void dump_replay_data_helper(outputStream* out);
499   void dump_compile_data(outputStream* out);
500   void dump_replay_data_version(outputStream* out);
501 
502   const char *dyno_name(const InstanceKlass* ik) const;
503   const char *replay_name(const InstanceKlass* ik) const;
504   const char *replay_name(ciKlass* i) const;
505 
506   void record_lambdaform(Thread* thread, oop obj);
507   void record_member(Thread* thread, oop obj);
508   void record_mh(Thread* thread, oop obj);
509   void record_call_site_obj(Thread* thread, oop obj);
510   void record_call_site_method(Thread* thread, Method* adapter);
511   void process_invokedynamic(const constantPoolHandle &cp, int index, JavaThread* thread);
512   void process_invokehandle(const constantPoolHandle &cp, int index, JavaThread* thread);
513   void find_dynamic_call_sites();
514 };
515 
516 #endif // SHARE_CI_CIENV_HPP