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