1 /*
   2  * Copyright (c) 2015, 2020, 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 #include "precompiled.hpp"
  26 #include "compiler/compileBroker.hpp"
  27 #include "gc/shared/collectedHeap.hpp"
  28 #include "jvmci/jvmciCodeInstaller.hpp"
  29 #include "jvmci/jvmciCompilerToVM.hpp"
  30 #include "jvmci/jvmciRuntime.hpp"
  31 #include "jvmci/vmStructs_compiler_runtime.hpp"
  32 #include "jvmci/vmStructs_jvmci.hpp"
  33 #include "oops/objArrayKlass.hpp"
  34 #include "runtime/deoptimization.hpp"
  35 #include "runtime/sharedRuntime.hpp"
  36 #if INCLUDE_G1GC
  37 #include "gc/g1/g1CardTable.hpp"
  38 #include "gc/g1/heapRegion.hpp"
  39 #include "gc/g1/g1ThreadLocalData.hpp"
  40 #endif
  41 
  42 #define VM_STRUCTS(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field) \
  43   static_field(CompilerToVM::Data,             Klass_vtable_start_offset,              int)                                          \
  44   static_field(CompilerToVM::Data,             Klass_vtable_length_offset,             int)                                          \
  45                                                                                                                                      \
  46   static_field(CompilerToVM::Data,             Method_extra_stack_entries,             int)                                          \
  47                                                                                                                                      \
  48   static_field(CompilerToVM::Data,             SharedRuntime_ic_miss_stub,             address)                                      \
  49   static_field(CompilerToVM::Data,             SharedRuntime_handle_wrong_method_stub, address)                                      \
  50   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_unpack,        address)                                      \
  51   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_unpack_with_exception_in_tls,        address)                       \
  52   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_uncommon_trap, address)                                      \
  53                                                                                                                                      \
  54   static_field(CompilerToVM::Data,             ThreadLocalAllocBuffer_alignment_reserve, size_t)                                     \
  55                                                                                                                                      \
  56   static_field(CompilerToVM::Data,             Universe_collectedHeap,                 CollectedHeap*)                               \
  57   static_field(CompilerToVM::Data,             Universe_base_vtable_size,              int)                                          \
  58   static_field(CompilerToVM::Data,             Universe_narrow_oop_base,               address)                                      \
  59   static_field(CompilerToVM::Data,             Universe_narrow_oop_shift,              int)                                          \
  60   static_field(CompilerToVM::Data,             Universe_narrow_klass_base,             address)                                      \
  61   static_field(CompilerToVM::Data,             Universe_narrow_klass_shift,            int)                                          \
  62   static_field(CompilerToVM::Data,             Universe_non_oop_bits,                  void*)                                        \
  63   static_field(CompilerToVM::Data,             Universe_verify_oop_mask,               uintptr_t)                                    \
  64   static_field(CompilerToVM::Data,             Universe_verify_oop_bits,               uintptr_t)                                    \
  65                                                                                                                                      \
  66   static_field(CompilerToVM::Data,             _supports_inline_contig_alloc,          bool)                                         \
  67   static_field(CompilerToVM::Data,             _heap_end_addr,                         HeapWord**)                                   \
  68   static_field(CompilerToVM::Data,             _heap_top_addr,                         HeapWord* volatile*)                          \
  69                                                                                                                                      \
  70   static_field(CompilerToVM::Data,             _max_oop_map_stack_offset,              int)                                          \
  71   static_field(CompilerToVM::Data,             _fields_annotations_base_offset,        int)                                          \
  72                                                                                                                                      \
  73   static_field(CompilerToVM::Data,             cardtable_start_address,                CardTable::CardValue*)                        \
  74   static_field(CompilerToVM::Data,             cardtable_shift,                        int)                                          \
  75                                                                                                                                      \
  76   static_field(CompilerToVM::Data,             vm_page_size,                           int)                                          \
  77                                                                                                                                      \
  78   static_field(CompilerToVM::Data,             sizeof_vtableEntry,                     int)                                          \
  79   static_field(CompilerToVM::Data,             sizeof_ExceptionTableElement,           int)                                          \
  80   static_field(CompilerToVM::Data,             sizeof_LocalVariableTableElement,       int)                                          \
  81   static_field(CompilerToVM::Data,             sizeof_ConstantPool,                    int)                                          \
  82   static_field(CompilerToVM::Data,             sizeof_narrowKlass,                     int)                                          \
  83   static_field(CompilerToVM::Data,             sizeof_arrayOopDesc,                    int)                                          \
  84   static_field(CompilerToVM::Data,             sizeof_BasicLock,                       int)                                          \
  85                                                                                                                                      \
  86   static_field(CompilerToVM::Data,             dsin,                                   address)                                      \
  87   static_field(CompilerToVM::Data,             dcos,                                   address)                                      \
  88   static_field(CompilerToVM::Data,             dtan,                                   address)                                      \
  89   static_field(CompilerToVM::Data,             dexp,                                   address)                                      \
  90   static_field(CompilerToVM::Data,             dlog,                                   address)                                      \
  91   static_field(CompilerToVM::Data,             dlog10,                                 address)                                      \
  92   static_field(CompilerToVM::Data,             dpow,                                   address)                                      \
  93                                                                                                                                      \
  94   static_field(CompilerToVM::Data,             symbol_init,                            address)                                      \
  95   static_field(CompilerToVM::Data,             symbol_clinit,                          address)                                      \
  96                                                                                                                                      \
  97   static_field(Abstract_VM_Version,            _features,                              uint64_t)                                     \
  98                                                                                                                                      \
  99   nonstatic_field(Annotations,                 _fields_annotations,                    Array<AnnotationArray*>*)                     \
 100                                                                                                                                      \
 101   nonstatic_field(Array<int>,                  _length,                                int)                                          \
 102   unchecked_nonstatic_field(Array<u1>,         _data,                                  sizeof(u1))                                   \
 103   unchecked_nonstatic_field(Array<u2>,         _data,                                  sizeof(u2))                                   \
 104   nonstatic_field(Array<Klass*>,               _length,                                int)                                          \
 105   nonstatic_field(Array<Klass*>,               _data[0],                               Klass*)                                       \
 106                                                                                                                                      \
 107   volatile_nonstatic_field(BasicLock,          _displaced_header,                      markWord)                                     \
 108                                                                                                                                      \
 109   static_field(CodeCache,                      _low_bound,                             address)                                      \
 110   static_field(CodeCache,                      _high_bound,                            address)                                      \
 111                                                                                                                                      \
 112   nonstatic_field(CollectedHeap,               _total_collections,                     unsigned int)                                 \
 113                                                                                                                                      \
 114   nonstatic_field(CompileTask,                 _num_inlined_bytecodes,                 int)                                          \
 115                                                                                                                                      \
 116   nonstatic_field(ConstantPool,                _tags,                                  Array<u1>*)                                   \
 117   nonstatic_field(ConstantPool,                _pool_holder,                           InstanceKlass*)                               \
 118   nonstatic_field(ConstantPool,                _length,                                int)                                          \
 119   nonstatic_field(ConstantPool,                _flags,                                 u2)                                           \
 120   nonstatic_field(ConstantPool,                _source_file_name_index,                u2)                                           \
 121                                                                                                                                      \
 122   nonstatic_field(ConstMethod,                 _constants,                             ConstantPool*)                                \
 123   nonstatic_field(ConstMethod,                 _flags,                                 u2)                                           \
 124   nonstatic_field(ConstMethod,                 _code_size,                             u2)                                           \
 125   nonstatic_field(ConstMethod,                 _name_index,                            u2)                                           \
 126   nonstatic_field(ConstMethod,                 _signature_index,                       u2)                                           \
 127   nonstatic_field(ConstMethod,                 _method_idnum,                          u2)                                           \
 128   nonstatic_field(ConstMethod,                 _max_stack,                             u2)                                           \
 129   nonstatic_field(ConstMethod,                 _max_locals,                            u2)                                           \
 130                                                                                                                                      \
 131   nonstatic_field(DataLayout,                  _header._struct._tag,                   u1)                                           \
 132   nonstatic_field(DataLayout,                  _header._struct._flags,                 u1)                                           \
 133   nonstatic_field(DataLayout,                  _header._struct._bci,                   u2)                                           \
 134   nonstatic_field(DataLayout,                  _header._struct._traps,                 u4)                                           \
 135   nonstatic_field(DataLayout,                  _cells[0],                              intptr_t)                                     \
 136                                                                                                                                      \
 137   nonstatic_field(Deoptimization::UnrollBlock, _size_of_deoptimized_frame,             int)                                          \
 138   nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment,                     int)                                          \
 139   nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames,                      int)                                          \
 140   nonstatic_field(Deoptimization::UnrollBlock, _total_frame_sizes,                     int)                                          \
 141   nonstatic_field(Deoptimization::UnrollBlock, _frame_sizes,                           intptr_t*)                                    \
 142   nonstatic_field(Deoptimization::UnrollBlock, _frame_pcs,                             address*)                                     \
 143   nonstatic_field(Deoptimization::UnrollBlock, _initial_info,                          intptr_t)                                     \
 144   nonstatic_field(Deoptimization::UnrollBlock, _unpack_kind,                           int)                                          \
 145                                                                                                                                      \
 146   nonstatic_field(ExceptionTableElement,       start_pc,                                      u2)                                    \
 147   nonstatic_field(ExceptionTableElement,       end_pc,                                        u2)                                    \
 148   nonstatic_field(ExceptionTableElement,       handler_pc,                                    u2)                                    \
 149   nonstatic_field(ExceptionTableElement,       catch_type_index,                              u2)                                    \
 150                                                                                                                                      \
 151   nonstatic_field(JVMFlag,                     _type,                                         const char*)                           \
 152   nonstatic_field(JVMFlag,                     _name,                                         const char*)                           \
 153   unchecked_nonstatic_field(JVMFlag,           _addr,                                         sizeof(void*))                         \
 154   nonstatic_field(JVMFlag,                     _flags,                                        JVMFlag::Flags)                        \
 155   static_field(JVMFlag,                        flags,                                         JVMFlag*)                              \
 156                                                                                                                                      \
 157   nonstatic_field(InstanceKlass,               _fields,                                       Array<u2>*)                            \
 158   nonstatic_field(InstanceKlass,               _constants,                                    ConstantPool*)                         \
 159   nonstatic_field(InstanceKlass,               _init_state,                                   u1)                                    \
 160   nonstatic_field(InstanceKlass,               _init_thread,                                  Thread*)                               \
 161   nonstatic_field(InstanceKlass,               _misc_flags,                                   u2)                                    \
 162   nonstatic_field(InstanceKlass,               _annotations,                                  Annotations*)                          \
 163                                                                                                                                      \
 164   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_sp,                                 intptr_t*)                             \
 165   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_pc,                                 address)                               \
 166                                                                                                                                      \
 167   nonstatic_field(JVMCICompileState,           _jvmti_can_hotswap_or_post_breakpoint,         jbyte)                                 \
 168   nonstatic_field(JVMCICompileState,           _jvmti_can_access_local_variables,             jbyte)                                 \
 169   nonstatic_field(JVMCICompileState,           _jvmti_can_post_on_exceptions,                 jbyte)                                 \
 170   nonstatic_field(JVMCICompileState,           _jvmti_can_pop_frame,                          jbyte)                                 \
 171                                                                                                                                      \
 172   nonstatic_field(JavaThread,                  _threadObj,                                    oop)                                   \
 173   nonstatic_field(JavaThread,                  _anchor,                                       JavaFrameAnchor)                       \
 174   nonstatic_field(JavaThread,                  _vm_result,                                    oop)                                   \
 175   volatile_nonstatic_field(JavaThread,         _exception_oop,                                oop)                                   \
 176   volatile_nonstatic_field(JavaThread,         _exception_pc,                                 address)                               \
 177   volatile_nonstatic_field(JavaThread,         _is_method_handle_return,                      int)                                   \
 178   volatile_nonstatic_field(JavaThread,         _doing_unsafe_access,                          bool)                                  \
 179   nonstatic_field(JavaThread,                  _osthread,                                     OSThread*)                             \
 180   nonstatic_field(JavaThread,                  _pending_deoptimization,                       int)                                   \
 181   nonstatic_field(JavaThread,                  _pending_failed_speculation,                   jlong)                                 \
 182   nonstatic_field(JavaThread,                  _pending_transfer_to_interpreter,              bool)                                  \
 183   nonstatic_field(JavaThread,                  _jvmci_counters,                               jlong*)                                \
 184   nonstatic_field(JavaThread,                  _should_post_on_exceptions_flag,               int)                                   \
 185   nonstatic_field(JavaThread,                  _jni_environment,                              JNIEnv)                                \
 186   nonstatic_field(JavaThread,                  _reserved_stack_activation,                    address)                               \
 187                                                                                                                                      \
 188   static_field(java_lang_Class,                _klass_offset,                                 int)                                   \
 189   static_field(java_lang_Class,                _array_klass_offset,                           int)                                   \
 190                                                                                                                                      \
 191   nonstatic_field(InvocationCounter,           _counter,                                      unsigned int)                          \
 192                                                                                                                                      \
 193   nonstatic_field(Klass,                       _secondary_super_cache,                        Klass*)                                \
 194   nonstatic_field(Klass,                       _secondary_supers,                             Array<Klass*>*)                        \
 195   nonstatic_field(Klass,                       _super,                                        Klass*)                                \
 196   nonstatic_field(Klass,                       _super_check_offset,                           juint)                                 \
 197   volatile_nonstatic_field(Klass,              _subklass,                                     Klass*)                                \
 198   nonstatic_field(Klass,                       _layout_helper,                                jint)                                  \
 199   nonstatic_field(Klass,                       _name,                                         Symbol*)                               \
 200   nonstatic_field(Klass,                       _prototype_header,                             markWord)                              \
 201   volatile_nonstatic_field(Klass,              _next_sibling,                                 Klass*)                                \
 202   nonstatic_field(Klass,                       _java_mirror,                                  OopHandle)                             \
 203   nonstatic_field(Klass,                       _modifier_flags,                               jint)                                  \
 204   nonstatic_field(Klass,                       _access_flags,                                 AccessFlags)                           \
 205   nonstatic_field(Klass,                       _class_loader_data,                            ClassLoaderData*)                      \
 206                                                                                                                                      \
 207   nonstatic_field(LocalVariableTableElement,   start_bci,                                     u2)                                    \
 208   nonstatic_field(LocalVariableTableElement,   length,                                        u2)                                    \
 209   nonstatic_field(LocalVariableTableElement,   name_cp_index,                                 u2)                                    \
 210   nonstatic_field(LocalVariableTableElement,   descriptor_cp_index,                           u2)                                    \
 211   nonstatic_field(LocalVariableTableElement,   signature_cp_index,                            u2)                                    \
 212   nonstatic_field(LocalVariableTableElement,   slot,                                          u2)                                    \
 213                                                                                                                                      \
 214   nonstatic_field(Method,                      _constMethod,                                  ConstMethod*)                          \
 215   nonstatic_field(Method,                      _method_data,                                  MethodData*)                           \
 216   nonstatic_field(Method,                      _method_counters,                              MethodCounters*)                       \
 217   nonstatic_field(Method,                      _access_flags,                                 AccessFlags)                           \
 218   nonstatic_field(Method,                      _vtable_index,                                 int)                                   \
 219   nonstatic_field(Method,                      _intrinsic_id,                                 u2)                                    \
 220   nonstatic_field(Method,                      _flags,                                        u2)                                    \
 221   volatile_nonstatic_field(Method,             _code,                                         CompiledMethod*)                       \
 222   volatile_nonstatic_field(Method,             _from_compiled_entry,                          address)                               \
 223                                                                                                                                      \
 224   nonstatic_field(MethodCounters,              _nmethod_age,                                  int)                                   \
 225   nonstatic_field(MethodCounters,              _interpreter_invocation_limit,                 int)                                   \
 226   nonstatic_field(MethodCounters,              _interpreter_backward_branch_limit,            int)                                   \
 227   nonstatic_field(MethodCounters,              _interpreter_profile_limit,                    int)                                   \
 228   nonstatic_field(MethodCounters,              _invoke_mask,                                  int)                                   \
 229   nonstatic_field(MethodCounters,              _backedge_mask,                                int)                                   \
 230   nonstatic_field(MethodCounters,              _interpreter_invocation_count,                 int)                                   \
 231   nonstatic_field(MethodCounters,              _interpreter_throwout_count,                   u2)                                    \
 232   JVMTI_ONLY(nonstatic_field(MethodCounters,   _number_of_breakpoints,                        u2))                                   \
 233   nonstatic_field(MethodCounters,              _invocation_counter,                           InvocationCounter)                     \
 234   nonstatic_field(MethodCounters,              _backedge_counter,                             InvocationCounter)                     \
 235                                                                                                                                      \
 236   nonstatic_field(MethodData,                  _size,                                         int)                                   \
 237   nonstatic_field(MethodData,                  _method,                                       Method*)                               \
 238   nonstatic_field(MethodData,                  _data_size,                                    int)                                   \
 239   nonstatic_field(MethodData,                  _data[0],                                      intptr_t)                              \
 240   nonstatic_field(MethodData,                  _parameters_type_data_di,                      int)                                   \
 241   nonstatic_field(MethodData,                  _nof_decompiles,                               uint)                                  \
 242   nonstatic_field(MethodData,                  _nof_overflow_recompiles,                      uint)                                  \
 243   nonstatic_field(MethodData,                  _nof_overflow_traps,                           uint)                                  \
 244   nonstatic_field(MethodData,                  _trap_hist._array[0],                          u1)                                    \
 245   nonstatic_field(MethodData,                  _eflags,                                       intx)                                  \
 246   nonstatic_field(MethodData,                  _arg_local,                                    intx)                                  \
 247   nonstatic_field(MethodData,                  _arg_stack,                                    intx)                                  \
 248   nonstatic_field(MethodData,                  _arg_returned,                                 intx)                                  \
 249   nonstatic_field(MethodData,                  _tenure_traps,                                 uint)                                  \
 250   nonstatic_field(MethodData,                  _invoke_mask,                                  int)                                   \
 251   nonstatic_field(MethodData,                  _backedge_mask,                                int)                                   \
 252   nonstatic_field(MethodData,                  _jvmci_ir_size,                                int)                                   \
 253                                                                                                                                      \
 254   nonstatic_field(nmethod,                     _verified_entry_point,                         address)                               \
 255   nonstatic_field(nmethod,                     _comp_level,                                   int)                                   \
 256                                                                                                                                      \
 257   nonstatic_field(ObjArrayKlass,               _element_klass,                                Klass*)                                \
 258                                                                                                                                      \
 259   unchecked_nonstatic_field(ObjectMonitor,     _owner,                                        sizeof(void *)) /* NOTE: no type */    \
 260   volatile_nonstatic_field(ObjectMonitor,      _recursions,                                   intptr_t)                              \
 261   volatile_nonstatic_field(ObjectMonitor,      _cxq,                                          ObjectWaiter*)                         \
 262   volatile_nonstatic_field(ObjectMonitor,      _EntryList,                                    ObjectWaiter*)                         \
 263   volatile_nonstatic_field(ObjectMonitor,      _succ,                                         Thread*)                               \
 264                                                                                                                                      \
 265   volatile_nonstatic_field(oopDesc,            _mark,                                         markWord)                              \
 266   volatile_nonstatic_field(oopDesc,            _metadata._klass,                              Klass*)                                \
 267                                                                                                                                      \
 268   static_field(os,                             _polling_page,                                 address)                               \
 269                                                                                                                                      \
 270   static_field(StubRoutines,                _verify_oop_count,                                jint)                                  \
 271                                                                                                                                      \
 272   static_field(StubRoutines,                _throw_delayed_StackOverflowError_entry,          address)                               \
 273                                                                                                                                      \
 274   static_field(StubRoutines,                _jbyte_arraycopy,                                 address)                               \
 275   static_field(StubRoutines,                _jshort_arraycopy,                                address)                               \
 276   static_field(StubRoutines,                _jint_arraycopy,                                  address)                               \
 277   static_field(StubRoutines,                _jlong_arraycopy,                                 address)                               \
 278   static_field(StubRoutines,                _oop_arraycopy,                                   address)                               \
 279   static_field(StubRoutines,                _oop_arraycopy_uninit,                            address)                               \
 280   static_field(StubRoutines,                _jbyte_disjoint_arraycopy,                        address)                               \
 281   static_field(StubRoutines,                _jshort_disjoint_arraycopy,                       address)                               \
 282   static_field(StubRoutines,                _jint_disjoint_arraycopy,                         address)                               \
 283   static_field(StubRoutines,                _jlong_disjoint_arraycopy,                        address)                               \
 284   static_field(StubRoutines,                _oop_disjoint_arraycopy,                          address)                               \
 285   static_field(StubRoutines,                _oop_disjoint_arraycopy_uninit,                   address)                               \
 286   static_field(StubRoutines,                _arrayof_jbyte_arraycopy,                         address)                               \
 287   static_field(StubRoutines,                _arrayof_jshort_arraycopy,                        address)                               \
 288   static_field(StubRoutines,                _arrayof_jint_arraycopy,                          address)                               \
 289   static_field(StubRoutines,                _arrayof_jlong_arraycopy,                         address)                               \
 290   static_field(StubRoutines,                _arrayof_oop_arraycopy,                           address)                               \
 291   static_field(StubRoutines,                _arrayof_oop_arraycopy_uninit,                    address)                               \
 292   static_field(StubRoutines,                _arrayof_jbyte_disjoint_arraycopy,                address)                               \
 293   static_field(StubRoutines,                _arrayof_jshort_disjoint_arraycopy,               address)                               \
 294   static_field(StubRoutines,                _arrayof_jint_disjoint_arraycopy,                 address)                               \
 295   static_field(StubRoutines,                _arrayof_jlong_disjoint_arraycopy,                address)                               \
 296   static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy,                  address)                               \
 297   static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy_uninit,           address)                               \
 298   static_field(StubRoutines,                _checkcast_arraycopy,                             address)                               \
 299   static_field(StubRoutines,                _checkcast_arraycopy_uninit,                      address)                               \
 300   static_field(StubRoutines,                _unsafe_arraycopy,                                address)                               \
 301   static_field(StubRoutines,                _generic_arraycopy,                               address)                               \
 302                                                                                                                                      \
 303   static_field(StubRoutines,                _aescrypt_encryptBlock,                           address)                               \
 304   static_field(StubRoutines,                _aescrypt_decryptBlock,                           address)                               \
 305   static_field(StubRoutines,                _cipherBlockChaining_encryptAESCrypt,             address)                               \
 306   static_field(StubRoutines,                _cipherBlockChaining_decryptAESCrypt,             address)                               \
 307   static_field(StubRoutines,                _electronicCodeBook_encryptAESCrypt,              address)                               \
 308   static_field(StubRoutines,                _electronicCodeBook_decryptAESCrypt,              address)                               \
 309   static_field(StubRoutines,                _counterMode_AESCrypt,                            address)                               \
 310   static_field(StubRoutines,                _base64_encodeBlock,                              address)                               \
 311   static_field(StubRoutines,                _ghash_processBlocks,                             address)                               \
 312   static_field(StubRoutines,                _sha1_implCompress,                               address)                               \
 313   static_field(StubRoutines,                _sha1_implCompressMB,                             address)                               \
 314   static_field(StubRoutines,                _sha256_implCompress,                             address)                               \
 315   static_field(StubRoutines,                _sha256_implCompressMB,                           address)                               \
 316   static_field(StubRoutines,                _sha512_implCompress,                             address)                               \
 317   static_field(StubRoutines,                _sha512_implCompressMB,                           address)                               \
 318   static_field(StubRoutines,                _updateBytesCRC32,                                address)                               \
 319   static_field(StubRoutines,                _crc_table_adr,                                   address)                               \
 320   static_field(StubRoutines,                _crc32c_table_addr,                               address)                               \
 321   static_field(StubRoutines,                _updateBytesCRC32C,                               address)                               \
 322   static_field(StubRoutines,                _updateBytesAdler32,                              address)                               \
 323   static_field(StubRoutines,                _multiplyToLen,                                   address)                               \
 324   static_field(StubRoutines,                _squareToLen,                                     address)                               \
 325   static_field(StubRoutines,                _mulAdd,                                          address)                               \
 326   static_field(StubRoutines,                _montgomeryMultiply,                              address)                               \
 327   static_field(StubRoutines,                _montgomerySquare,                                address)                               \
 328   static_field(StubRoutines,                _vectorizedMismatch,                              address)                               \
 329   static_field(StubRoutines,                _bigIntegerRightShiftWorker,                      address)                               \
 330   static_field(StubRoutines,                _bigIntegerLeftShiftWorker,                       address)                               \
 331                                                                                                                                      \
 332   nonstatic_field(Thread,                   _tlab,                                            ThreadLocalAllocBuffer)                \
 333   nonstatic_field(Thread,                   _allocated_bytes,                                 jlong)                                 \
 334   nonstatic_field(Thread,                   _polling_page,                                    volatile void*)                        \
 335                                                                                                                                      \
 336   nonstatic_field(ThreadLocalAllocBuffer,   _start,                                           HeapWord*)                             \
 337   nonstatic_field(ThreadLocalAllocBuffer,   _top,                                             HeapWord*)                             \
 338   nonstatic_field(ThreadLocalAllocBuffer,   _end,                                             HeapWord*)                             \
 339   nonstatic_field(ThreadLocalAllocBuffer,   _pf_top,                                          HeapWord*)                             \
 340   nonstatic_field(ThreadLocalAllocBuffer,   _desired_size,                                    size_t)                                \
 341   nonstatic_field(ThreadLocalAllocBuffer,   _refill_waste_limit,                              size_t)                                \
 342   nonstatic_field(ThreadLocalAllocBuffer,   _number_of_refills,                               unsigned)                              \
 343   nonstatic_field(ThreadLocalAllocBuffer,   _fast_refill_waste,                               unsigned)                              \
 344   nonstatic_field(ThreadLocalAllocBuffer,   _slow_allocations,                                unsigned)                              \
 345                                                                                                                                      \
 346   nonstatic_field(ThreadShadow,             _pending_exception,                               oop)                                   \
 347                                                                                                                                      \
 348   static_field(vmSymbols,                   _symbols[0],                                      Symbol*)                               \
 349                                                                                                                                      \
 350   nonstatic_field(vtableEntry,              _method,                                          Method*)                               \
 351 
 352 #define VM_TYPES(declare_type, declare_toplevel_type, declare_integer_type, declare_unsigned_integer_type) \
 353   declare_integer_type(bool)                                              \
 354   declare_unsigned_integer_type(size_t)                                   \
 355   declare_integer_type(intx)                                              \
 356   declare_unsigned_integer_type(uintx)                                    \
 357                                                                           \
 358   declare_toplevel_type(BasicLock)                                        \
 359   declare_toplevel_type(CompilerToVM)                                     \
 360   declare_toplevel_type(ExceptionTableElement)                            \
 361   declare_toplevel_type(JVMFlag)                                          \
 362   declare_toplevel_type(JVMFlag*)                                         \
 363   declare_toplevel_type(InvocationCounter)                                \
 364   declare_toplevel_type(JVMCICompileState)                                \
 365   declare_toplevel_type(JVMCIEnv)                                         \
 366   declare_toplevel_type(LocalVariableTableElement)                        \
 367   declare_toplevel_type(narrowKlass)                                      \
 368   declare_toplevel_type(ObjectWaiter)                                     \
 369   declare_toplevel_type(Symbol*)                                          \
 370   declare_toplevel_type(vtableEntry)                                      \
 371                                                                           \
 372   declare_toplevel_type(oopDesc)                                          \
 373     declare_type(arrayOopDesc, oopDesc)                                   \
 374                                                                           \
 375   declare_toplevel_type(MetaspaceObj)                                     \
 376     declare_type(Metadata, MetaspaceObj)                                  \
 377     declare_type(Klass, Metadata)                                         \
 378       declare_type(InstanceKlass, Klass)                                  \
 379     declare_type(ConstantPool, Metadata)                                  \
 380 
 381 #define VM_INT_CONSTANTS(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
 382   declare_preprocessor_constant("ASSERT", DEBUG_ONLY(1) NOT_DEBUG(0))     \
 383   declare_preprocessor_constant("FIELDINFO_TAG_SIZE", FIELDINFO_TAG_SIZE) \
 384   declare_preprocessor_constant("STACK_BIAS", STACK_BIAS)                 \
 385                                                                           \
 386   declare_constant(CompLevel_none)                                        \
 387   declare_constant(CompLevel_simple)                                      \
 388   declare_constant(CompLevel_limited_profile)                             \
 389   declare_constant(CompLevel_full_profile)                                \
 390   declare_constant(CompLevel_full_optimization)                           \
 391   declare_constant(HeapWordSize)                                          \
 392   declare_constant(InvocationEntryBci)                                    \
 393   declare_constant(LogKlassAlignmentInBytes)                              \
 394                                                                           \
 395   declare_constant(JVM_ACC_WRITTEN_FLAGS)                                 \
 396   declare_constant(JVM_ACC_MONITOR_MATCH)                                 \
 397   declare_constant(JVM_ACC_HAS_MONITOR_BYTECODES)                         \
 398   declare_constant(JVM_ACC_HAS_FINALIZER)                                 \
 399   declare_constant(JVM_ACC_IS_CLONEABLE_FAST)                             \
 400   declare_constant(JVM_ACC_IS_HIDDEN_CLASS)                               \
 401   declare_constant(JVM_ACC_FIELD_INTERNAL)                                \
 402   declare_constant(JVM_ACC_FIELD_STABLE)                                  \
 403   declare_constant(JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE)                   \
 404   declare_preprocessor_constant("JVM_ACC_VARARGS", JVM_ACC_VARARGS)       \
 405   declare_preprocessor_constant("JVM_ACC_BRIDGE", JVM_ACC_BRIDGE)         \
 406   declare_preprocessor_constant("JVM_ACC_ANNOTATION", JVM_ACC_ANNOTATION) \
 407   declare_preprocessor_constant("JVM_ACC_ENUM", JVM_ACC_ENUM)             \
 408   declare_preprocessor_constant("JVM_ACC_SYNTHETIC", JVM_ACC_SYNTHETIC)   \
 409   declare_preprocessor_constant("JVM_ACC_INTERFACE", JVM_ACC_INTERFACE)   \
 410                                                                           \
 411   declare_constant(JVM_CONSTANT_Utf8)                                     \
 412   declare_constant(JVM_CONSTANT_Unicode)                                  \
 413   declare_constant(JVM_CONSTANT_Integer)                                  \
 414   declare_constant(JVM_CONSTANT_Float)                                    \
 415   declare_constant(JVM_CONSTANT_Long)                                     \
 416   declare_constant(JVM_CONSTANT_Double)                                   \
 417   declare_constant(JVM_CONSTANT_Class)                                    \
 418   declare_constant(JVM_CONSTANT_String)                                   \
 419   declare_constant(JVM_CONSTANT_Fieldref)                                 \
 420   declare_constant(JVM_CONSTANT_Methodref)                                \
 421   declare_constant(JVM_CONSTANT_InterfaceMethodref)                       \
 422   declare_constant(JVM_CONSTANT_NameAndType)                              \
 423   declare_constant(JVM_CONSTANT_MethodHandle)                             \
 424   declare_constant(JVM_CONSTANT_MethodType)                               \
 425   declare_constant(JVM_CONSTANT_InvokeDynamic)                            \
 426   declare_constant(JVM_CONSTANT_Module)                                   \
 427   declare_constant(JVM_CONSTANT_Package)                                  \
 428   declare_constant(JVM_CONSTANT_ExternalMax)                              \
 429                                                                           \
 430   declare_constant(JVM_CONSTANT_Invalid)                                  \
 431   declare_constant(JVM_CONSTANT_InternalMin)                              \
 432   declare_constant(JVM_CONSTANT_UnresolvedClass)                          \
 433   declare_constant(JVM_CONSTANT_ClassIndex)                               \
 434   declare_constant(JVM_CONSTANT_StringIndex)                              \
 435   declare_constant(JVM_CONSTANT_UnresolvedClassInError)                   \
 436   declare_constant(JVM_CONSTANT_MethodHandleInError)                      \
 437   declare_constant(JVM_CONSTANT_MethodTypeInError)                        \
 438   declare_constant(JVM_CONSTANT_DynamicInError)                           \
 439   declare_constant(JVM_CONSTANT_InternalMax)                              \
 440                                                                           \
 441   declare_constant(ArrayData::array_len_off_set)                          \
 442   declare_constant(ArrayData::array_start_off_set)                        \
 443                                                                           \
 444   declare_constant(BitData::exception_seen_flag)                          \
 445   declare_constant(BitData::null_seen_flag)                               \
 446   declare_constant(BranchData::not_taken_off_set)                         \
 447                                                                           \
 448   declare_constant_with_value("CardTable::dirty_card", CardTable::dirty_card_val()) \
 449                                                                           \
 450   declare_constant(CodeInstaller::VERIFIED_ENTRY)                         \
 451   declare_constant(CodeInstaller::UNVERIFIED_ENTRY)                       \
 452   declare_constant(CodeInstaller::OSR_ENTRY)                              \
 453   declare_constant(CodeInstaller::EXCEPTION_HANDLER_ENTRY)                \
 454   declare_constant(CodeInstaller::DEOPT_HANDLER_ENTRY)                    \
 455   declare_constant(CodeInstaller::FRAME_COMPLETE)                         \
 456   declare_constant(CodeInstaller::INVOKEINTERFACE)                        \
 457   declare_constant(CodeInstaller::INVOKEVIRTUAL)                          \
 458   declare_constant(CodeInstaller::INVOKESTATIC)                           \
 459   declare_constant(CodeInstaller::INVOKESPECIAL)                          \
 460   declare_constant(CodeInstaller::INLINE_INVOKE)                          \
 461   declare_constant(CodeInstaller::POLL_NEAR)                              \
 462   declare_constant(CodeInstaller::POLL_RETURN_NEAR)                       \
 463   declare_constant(CodeInstaller::POLL_FAR)                               \
 464   declare_constant(CodeInstaller::POLL_RETURN_FAR)                        \
 465   declare_constant(CodeInstaller::CARD_TABLE_SHIFT)                       \
 466   declare_constant(CodeInstaller::CARD_TABLE_ADDRESS)                     \
 467   declare_constant(CodeInstaller::HEAP_TOP_ADDRESS)                       \
 468   declare_constant(CodeInstaller::HEAP_END_ADDRESS)                       \
 469   declare_constant(CodeInstaller::NARROW_KLASS_BASE_ADDRESS)              \
 470   declare_constant(CodeInstaller::NARROW_OOP_BASE_ADDRESS)                \
 471   declare_constant(CodeInstaller::CRC_TABLE_ADDRESS)                      \
 472   declare_constant(CodeInstaller::LOG_OF_HEAP_REGION_GRAIN_BYTES)         \
 473   declare_constant(CodeInstaller::INLINE_CONTIGUOUS_ALLOCATION_SUPPORTED) \
 474   declare_constant(CodeInstaller::INVOKE_INVALID)                         \
 475                                                                           \
 476   declare_constant(CollectedHeap::Serial)                                 \
 477   declare_constant(CollectedHeap::Parallel)                               \
 478   declare_constant(CollectedHeap::G1)                                     \
 479   declare_constant(CollectedHeap::Epsilon)                                \
 480   declare_constant(CollectedHeap::Z)                                      \
 481   declare_constant(CollectedHeap::Shenandoah)                             \
 482                                                                           \
 483   declare_constant(ConstantPool::CPCACHE_INDEX_TAG)                       \
 484   declare_constant(ConstantPool::_has_dynamic_constant)                   \
 485                                                                           \
 486   declare_constant(ConstMethod::_has_linenumber_table)                    \
 487   declare_constant(ConstMethod::_has_localvariable_table)                 \
 488   declare_constant(ConstMethod::_has_exception_table)                     \
 489   declare_constant(ConstMethod::_has_method_annotations)                  \
 490   declare_constant(ConstMethod::_has_parameter_annotations)               \
 491                                                                           \
 492   declare_constant(CounterData::count_off)                                \
 493                                                                           \
 494   declare_constant(DataLayout::cell_size)                                 \
 495   declare_constant(DataLayout::no_tag)                                    \
 496   declare_constant(DataLayout::bit_data_tag)                              \
 497   declare_constant(DataLayout::counter_data_tag)                          \
 498   declare_constant(DataLayout::jump_data_tag)                             \
 499   declare_constant(DataLayout::receiver_type_data_tag)                    \
 500   declare_constant(DataLayout::virtual_call_data_tag)                     \
 501   declare_constant(DataLayout::ret_data_tag)                              \
 502   declare_constant(DataLayout::branch_data_tag)                           \
 503   declare_constant(DataLayout::multi_branch_data_tag)                     \
 504   declare_constant(DataLayout::arg_info_data_tag)                         \
 505   declare_constant(DataLayout::call_type_data_tag)                        \
 506   declare_constant(DataLayout::virtual_call_type_data_tag)                \
 507   declare_constant(DataLayout::parameters_type_data_tag)                  \
 508   declare_constant(DataLayout::speculative_trap_data_tag)                 \
 509                                                                           \
 510   declare_constant(Deoptimization::Unpack_deopt)                          \
 511   declare_constant(Deoptimization::Unpack_exception)                      \
 512   declare_constant(Deoptimization::Unpack_uncommon_trap)                  \
 513   declare_constant(Deoptimization::Unpack_reexecute)                      \
 514                                                                           \
 515   declare_constant(Deoptimization::_action_bits)                          \
 516   declare_constant(Deoptimization::_reason_bits)                          \
 517   declare_constant(Deoptimization::_debug_id_bits)                        \
 518   declare_constant(Deoptimization::_action_shift)                         \
 519   declare_constant(Deoptimization::_reason_shift)                         \
 520   declare_constant(Deoptimization::_debug_id_shift)                       \
 521                                                                           \
 522   declare_constant(Deoptimization::Action_none)                           \
 523   declare_constant(Deoptimization::Action_maybe_recompile)                \
 524   declare_constant(Deoptimization::Action_reinterpret)                    \
 525   declare_constant(Deoptimization::Action_make_not_entrant)               \
 526   declare_constant(Deoptimization::Action_make_not_compilable)            \
 527                                                                           \
 528   declare_constant(Deoptimization::Reason_none)                           \
 529   declare_constant(Deoptimization::Reason_null_check)                     \
 530   declare_constant(Deoptimization::Reason_range_check)                    \
 531   declare_constant(Deoptimization::Reason_class_check)                    \
 532   declare_constant(Deoptimization::Reason_array_check)                    \
 533   declare_constant(Deoptimization::Reason_unreached0)                     \
 534   declare_constant(Deoptimization::Reason_constraint)                     \
 535   declare_constant(Deoptimization::Reason_div0_check)                     \
 536   declare_constant(Deoptimization::Reason_loop_limit_check)               \
 537   declare_constant(Deoptimization::Reason_type_checked_inlining)          \
 538   declare_constant(Deoptimization::Reason_optimized_type_check)           \
 539   declare_constant(Deoptimization::Reason_aliasing)                       \
 540   declare_constant(Deoptimization::Reason_transfer_to_interpreter)        \
 541   declare_constant(Deoptimization::Reason_not_compiled_exception_handler) \
 542   declare_constant(Deoptimization::Reason_unresolved)                     \
 543   declare_constant(Deoptimization::Reason_jsr_mismatch)                   \
 544   declare_constant(Deoptimization::Reason_LIMIT)                          \
 545   declare_constant(Deoptimization::_support_large_access_byte_array_virtualization)               \
 546                                                                           \
 547   declare_constant(FieldInfo::access_flags_offset)                        \
 548   declare_constant(FieldInfo::name_index_offset)                          \
 549   declare_constant(FieldInfo::signature_index_offset)                     \
 550   declare_constant(FieldInfo::initval_index_offset)                       \
 551   declare_constant(FieldInfo::low_packed_offset)                          \
 552   declare_constant(FieldInfo::high_packed_offset)                         \
 553   declare_constant(FieldInfo::field_slots)                                \
 554                                                                           \
 555   declare_constant(InstanceKlass::linked)                                 \
 556   declare_constant(InstanceKlass::being_initialized)                      \
 557   declare_constant(InstanceKlass::fully_initialized)                      \
 558   declare_constant(InstanceKlass::_misc_is_unsafe_anonymous)              \
 559                                                                           \
 560   declare_constant(JumpData::taken_off_set)                               \
 561   declare_constant(JumpData::displacement_off_set)                        \
 562                                                                           \
 563   declare_preprocessor_constant("JVMCI::ok",                   JVMCI::ok)                      \
 564   declare_preprocessor_constant("JVMCI::dependencies_failed",  JVMCI::dependencies_failed)     \
 565   declare_preprocessor_constant("JVMCI::cache_full",           JVMCI::cache_full)              \
 566   declare_preprocessor_constant("JVMCI::code_too_large",       JVMCI::code_too_large)          \
 567   declare_constant(JVMCIRuntime::none)                                    \
 568   declare_constant(JVMCIRuntime::by_holder)                               \
 569   declare_constant(JVMCIRuntime::by_full_signature)                       \
 570                                                                           \
 571   declare_constant(Klass::_lh_neutral_value)                              \
 572   declare_constant(Klass::_lh_instance_slow_path_bit)                     \
 573   declare_constant(Klass::_lh_log2_element_size_shift)                    \
 574   declare_constant(Klass::_lh_log2_element_size_mask)                     \
 575   declare_constant(Klass::_lh_element_type_shift)                         \
 576   declare_constant(Klass::_lh_element_type_mask)                          \
 577   declare_constant(Klass::_lh_header_size_shift)                          \
 578   declare_constant(Klass::_lh_header_size_mask)                           \
 579   declare_constant(Klass::_lh_array_tag_shift)                            \
 580   declare_constant(Klass::_lh_array_tag_type_value)                       \
 581   declare_constant(Klass::_lh_array_tag_obj_value)                        \
 582                                                                           \
 583   declare_constant(markWord::no_hash)                                     \
 584                                                                           \
 585   declare_constant(Method::_caller_sensitive)                             \
 586   declare_constant(Method::_force_inline)                                 \
 587   declare_constant(Method::_dont_inline)                                  \
 588   declare_constant(Method::_hidden)                                       \
 589   declare_constant(Method::_intrinsic_candidate)                          \
 590   declare_constant(Method::_reserved_stack_access)                        \
 591                                                                           \
 592   declare_constant(Method::nonvirtual_vtable_index)                       \
 593   declare_constant(Method::invalid_vtable_index)                          \
 594                                                                           \
 595   declare_constant(MultiBranchData::per_case_cell_count)                  \
 596                                                                           \
 597   declare_constant(ReceiverTypeData::nonprofiled_count_off_set)           \
 598   declare_constant(ReceiverTypeData::receiver_type_row_cell_count)        \
 599   declare_constant(ReceiverTypeData::receiver0_offset)                    \
 600   declare_constant(ReceiverTypeData::count0_offset)                       \
 601                                                                           \
 602   declare_constant(vmIntrinsics::_invokeBasic)                            \
 603   declare_constant(vmIntrinsics::_linkToVirtual)                          \
 604   declare_constant(vmIntrinsics::_linkToStatic)                           \
 605   declare_constant(vmIntrinsics::_linkToSpecial)                          \
 606   declare_constant(vmIntrinsics::_linkToInterface)                        \
 607                                                                           \
 608   declare_constant(vmSymbols::FIRST_SID)                                  \
 609   declare_constant(vmSymbols::SID_LIMIT)                                  \
 610 
 611 #define VM_LONG_CONSTANTS(declare_constant, declare_preprocessor_constant) \
 612   declare_constant(InvocationCounter::count_increment)                    \
 613   declare_constant(InvocationCounter::count_shift)                        \
 614                                                                           \
 615   declare_constant(markWord::hash_shift)                                  \
 616   declare_constant(markWord::monitor_value)                               \
 617                                                                           \
 618   declare_constant(markWord::biased_lock_mask_in_place)                   \
 619   declare_constant(markWord::age_mask_in_place)                           \
 620   declare_constant(markWord::epoch_mask_in_place)                         \
 621   declare_constant(markWord::hash_mask)                                   \
 622   declare_constant(markWord::hash_mask_in_place)                          \
 623                                                                           \
 624   declare_constant(markWord::unlocked_value)                              \
 625   declare_constant(markWord::biased_lock_pattern)                         \
 626                                                                           \
 627   declare_constant(markWord::no_hash_in_place)                            \
 628   declare_constant(markWord::no_lock_in_place)                            \
 629 
 630 #define VM_ADDRESSES(declare_address, declare_preprocessor_address, declare_function) \
 631   declare_function(SharedRuntime::register_finalizer)                     \
 632   declare_function(SharedRuntime::exception_handler_for_return_address)   \
 633   declare_function(SharedRuntime::OSR_migration_end)                      \
 634   declare_function(SharedRuntime::enable_stack_reserved_zone)             \
 635   declare_function(SharedRuntime::frem)                                   \
 636   declare_function(SharedRuntime::drem)                                   \
 637                                                                           \
 638   declare_function(os::dll_load)                                          \
 639   declare_function(os::dll_lookup)                                        \
 640   declare_function(os::javaTimeMillis)                                    \
 641   declare_function(os::javaTimeNanos)                                     \
 642                                                                           \
 643   declare_function(Deoptimization::fetch_unroll_info)                     \
 644   declare_function(Deoptimization::uncommon_trap)                         \
 645   declare_function(Deoptimization::unpack_frames)                         \
 646                                                                           \
 647   declare_function(JVMCIRuntime::new_instance) \
 648   declare_function(JVMCIRuntime::new_array) \
 649   declare_function(JVMCIRuntime::new_multi_array) \
 650   declare_function(JVMCIRuntime::dynamic_new_array) \
 651   declare_function(JVMCIRuntime::dynamic_new_instance) \
 652   \
 653   declare_function(JVMCIRuntime::new_instance_or_null) \
 654   declare_function(JVMCIRuntime::new_array_or_null) \
 655   declare_function(JVMCIRuntime::new_multi_array_or_null) \
 656   declare_function(JVMCIRuntime::dynamic_new_array_or_null) \
 657   declare_function(JVMCIRuntime::dynamic_new_instance_or_null) \
 658   \
 659   declare_function(JVMCIRuntime::vm_message) \
 660   declare_function(JVMCIRuntime::identity_hash_code) \
 661   declare_function(JVMCIRuntime::exception_handler_for_pc) \
 662   declare_function(JVMCIRuntime::monitorenter) \
 663   declare_function(JVMCIRuntime::monitorexit) \
 664   declare_function(JVMCIRuntime::object_notify) \
 665   declare_function(JVMCIRuntime::object_notifyAll) \
 666   declare_function(JVMCIRuntime::throw_and_post_jvmti_exception) \
 667   declare_function(JVMCIRuntime::throw_klass_external_name_exception) \
 668   declare_function(JVMCIRuntime::throw_class_cast_exception) \
 669   declare_function(JVMCIRuntime::log_primitive) \
 670   declare_function(JVMCIRuntime::log_object) \
 671   declare_function(JVMCIRuntime::log_printf) \
 672   declare_function(JVMCIRuntime::vm_error) \
 673   declare_function(JVMCIRuntime::load_and_clear_exception) \
 674   G1GC_ONLY(declare_function(JVMCIRuntime::write_barrier_pre)) \
 675   G1GC_ONLY(declare_function(JVMCIRuntime::write_barrier_post)) \
 676   declare_function(JVMCIRuntime::validate_object) \
 677   \
 678   declare_function(JVMCIRuntime::test_deoptimize_call_int)
 679 
 680 
 681 #if INCLUDE_G1GC
 682 
 683 #define VM_STRUCTS_JVMCI_G1GC(nonstatic_field, static_field) \
 684   static_field(HeapRegion, LogOfHRGrainBytes, int)
 685 
 686 #define VM_INT_CONSTANTS_JVMCI_G1GC(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
 687   declare_constant_with_value("G1CardTable::g1_young_gen", G1CardTable::g1_young_card_val()) \
 688   declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_active_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_active_offset())) \
 689   declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_index_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_index_offset())) \
 690   declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_buffer_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_buffer_offset())) \
 691   declare_constant_with_value("G1ThreadLocalData::dirty_card_queue_index_offset", in_bytes(G1ThreadLocalData::dirty_card_queue_index_offset())) \
 692   declare_constant_with_value("G1ThreadLocalData::dirty_card_queue_buffer_offset", in_bytes(G1ThreadLocalData::dirty_card_queue_buffer_offset()))
 693 
 694 #endif // INCLUDE_G1GC
 695 
 696 
 697 #ifdef LINUX
 698 
 699 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
 700   declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
 701 
 702 #endif
 703 
 704 
 705 #ifdef BSD
 706 
 707 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
 708   declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
 709 
 710 #endif
 711 
 712 #ifdef AARCH64
 713 
 714 #define VM_STRUCTS_CPU(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field, nonproduct_nonstatic_field, c2_nonstatic_field, unchecked_c1_static_field, unchecked_c2_static_field) \
 715   static_field(VM_Version, _psr_info.dczid_el0, uint32_t)               \
 716   volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*)
 717 
 718 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
 719   declare_constant(VM_Version::CPU_FP)                  \
 720   declare_constant(VM_Version::CPU_ASIMD)               \
 721   declare_constant(VM_Version::CPU_EVTSTRM)             \
 722   declare_constant(VM_Version::CPU_AES)                 \
 723   declare_constant(VM_Version::CPU_PMULL)               \
 724   declare_constant(VM_Version::CPU_SHA1)                \
 725   declare_constant(VM_Version::CPU_SHA2)                \
 726   declare_constant(VM_Version::CPU_CRC32)               \
 727   declare_constant(VM_Version::CPU_LSE)                 \
 728   declare_constant(VM_Version::CPU_STXR_PREFETCH)       \
 729   declare_constant(VM_Version::CPU_A53MAC)              \
 730   declare_constant(VM_Version::CPU_DMB_ATOMICS)
 731 
 732 #endif
 733 
 734 
 735 #ifdef X86
 736 
 737 #define VM_STRUCTS_CPU(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field, nonproduct_nonstatic_field, c2_nonstatic_field, unchecked_c1_static_field, unchecked_c2_static_field) \
 738   volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*) \
 739   static_field(VM_Version, _has_intel_jcc_erratum, bool)
 740 
 741 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
 742   LP64_ONLY(declare_constant(frame::arg_reg_save_area_bytes))       \
 743   declare_constant(frame::interpreter_frame_sender_sp_offset)       \
 744   declare_constant(frame::interpreter_frame_last_sp_offset)         \
 745   declare_constant(VM_Version::CPU_CX8)                             \
 746   declare_constant(VM_Version::CPU_CMOV)                            \
 747   declare_constant(VM_Version::CPU_FXSR)                            \
 748   declare_constant(VM_Version::CPU_HT)                              \
 749   declare_constant(VM_Version::CPU_MMX)                             \
 750   declare_constant(VM_Version::CPU_3DNOW_PREFETCH)                  \
 751   declare_constant(VM_Version::CPU_SSE)                             \
 752   declare_constant(VM_Version::CPU_SSE2)                            \
 753   declare_constant(VM_Version::CPU_SSE3)                            \
 754   declare_constant(VM_Version::CPU_SSSE3)                           \
 755   declare_constant(VM_Version::CPU_SSE4A)                           \
 756   declare_constant(VM_Version::CPU_SSE4_1)                          \
 757   declare_constant(VM_Version::CPU_SSE4_2)                          \
 758   declare_constant(VM_Version::CPU_POPCNT)                          \
 759   declare_constant(VM_Version::CPU_LZCNT)                           \
 760   declare_constant(VM_Version::CPU_TSC)                             \
 761   declare_constant(VM_Version::CPU_TSCINV)                          \
 762   declare_constant(VM_Version::CPU_AVX)                             \
 763   declare_constant(VM_Version::CPU_AVX2)                            \
 764   declare_constant(VM_Version::CPU_AES)                             \
 765   declare_constant(VM_Version::CPU_ERMS)                            \
 766   declare_constant(VM_Version::CPU_CLMUL)                           \
 767   declare_constant(VM_Version::CPU_BMI1)                            \
 768   declare_constant(VM_Version::CPU_BMI2)                            \
 769   declare_constant(VM_Version::CPU_RTM)                             \
 770   declare_constant(VM_Version::CPU_ADX)                             \
 771   declare_constant(VM_Version::CPU_AVX512F)                         \
 772   declare_constant(VM_Version::CPU_AVX512DQ)                        \
 773   declare_constant(VM_Version::CPU_AVX512PF)                        \
 774   declare_constant(VM_Version::CPU_AVX512ER)                        \
 775   declare_constant(VM_Version::CPU_AVX512CD)
 776 
 777 #define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
 778   declare_preprocessor_constant("VM_Version::CPU_AVX512BW", CPU_AVX512BW) \
 779   declare_preprocessor_constant("VM_Version::CPU_AVX512VL", CPU_AVX512VL) \
 780   declare_preprocessor_constant("VM_Version::CPU_SHA", CPU_SHA)           \
 781   declare_preprocessor_constant("VM_Version::CPU_FMA", CPU_FMA)           \
 782   declare_preprocessor_constant("VM_Version::CPU_VZEROUPPER", CPU_VZEROUPPER) \
 783   declare_preprocessor_constant("VM_Version::CPU_AVX512_VPOPCNTDQ", CPU_AVX512_VPOPCNTDQ) \
 784   declare_preprocessor_constant("VM_Version::CPU_AVX512_VPCLMULQDQ", CPU_AVX512_VPCLMULQDQ) \
 785   declare_preprocessor_constant("VM_Version::CPU_AVX512_VAES", CPU_AVX512_VAES) \
 786   declare_preprocessor_constant("VM_Version::CPU_AVX512_VNNI", CPU_AVX512_VNNI) \
 787   declare_preprocessor_constant("VM_Version::CPU_FLUSH", CPU_FLUSH) \
 788   declare_preprocessor_constant("VM_Version::CPU_FLUSHOPT", CPU_FLUSHOPT) \
 789   declare_preprocessor_constant("VM_Version::CPU_CLWB", CPU_CLWB) \
 790   declare_preprocessor_constant("VM_Version::CPU_AVX512_VBMI2", CPU_AVX512_VBMI2) \
 791   declare_preprocessor_constant("VM_Version::CPU_AVX512_VBMI", CPU_AVX512_VBMI)
 792 
 793 #endif
 794 
 795 /*
 796  * Dummy defines for architectures that don't use these.
 797  */
 798 #ifndef VM_STRUCTS_CPU
 799 #define VM_STRUCTS_CPU(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field, nonproduct_nonstatic_field, c2_nonstatic_field, unchecked_c1_static_field, unchecked_c2_static_field)
 800 #endif
 801 
 802 #ifndef VM_INT_CONSTANTS_CPU
 803 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 804 #endif
 805 
 806 #ifndef VM_LONG_CONSTANTS_CPU
 807 #define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 808 #endif
 809 
 810 #ifndef VM_ADDRESSES_OS
 811 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function)
 812 #endif
 813 
 814 
 815 //
 816 // Instantiation of VMStructEntries, VMTypeEntries and VMIntConstantEntries
 817 //
 818 
 819 // These initializers are allowed to access private fields in classes
 820 // as long as class VMStructs is a friend
 821 VMStructEntry JVMCIVMStructs::localHotSpotVMStructs[] = {
 822   VM_STRUCTS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 823              GENERATE_STATIC_VM_STRUCT_ENTRY,
 824              GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
 825              GENERATE_NONSTATIC_VM_STRUCT_ENTRY)
 826 
 827   VM_STRUCTS_CPU(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 828                  GENERATE_STATIC_VM_STRUCT_ENTRY,
 829                  GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
 830                  GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 831                  GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
 832                  GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
 833                  GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
 834                  GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
 835 
 836 #if INCLUDE_G1GC
 837   VM_STRUCTS_JVMCI_G1GC(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 838                         GENERATE_STATIC_VM_STRUCT_ENTRY)
 839 #endif
 840 
 841   GENERATE_VM_STRUCT_LAST_ENTRY()
 842 };
 843 
 844 VMTypeEntry JVMCIVMStructs::localHotSpotVMTypes[] = {
 845   VM_TYPES(GENERATE_VM_TYPE_ENTRY,
 846            GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
 847            GENERATE_INTEGER_VM_TYPE_ENTRY,
 848            GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY)
 849 
 850   GENERATE_VM_TYPE_LAST_ENTRY()
 851 };
 852 
 853 VMIntConstantEntry JVMCIVMStructs::localHotSpotVMIntConstants[] = {
 854   VM_INT_CONSTANTS(GENERATE_VM_INT_CONSTANT_ENTRY,
 855                    GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
 856                    GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 857 
 858   VM_INT_CONSTANTS_CPU(GENERATE_VM_INT_CONSTANT_ENTRY,
 859                        GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
 860                        GENERATE_C1_VM_INT_CONSTANT_ENTRY,
 861                        GENERATE_C2_VM_INT_CONSTANT_ENTRY,
 862                        GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 863 
 864 #if INCLUDE_G1GC
 865   VM_INT_CONSTANTS_JVMCI_G1GC(GENERATE_VM_INT_CONSTANT_ENTRY,
 866                               GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
 867                               GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 868 #endif
 869 
 870   GENERATE_VM_INT_CONSTANT_LAST_ENTRY()
 871 };
 872 
 873 VMLongConstantEntry JVMCIVMStructs::localHotSpotVMLongConstants[] = {
 874   VM_LONG_CONSTANTS(GENERATE_VM_LONG_CONSTANT_ENTRY,
 875                     GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
 876 
 877   VM_LONG_CONSTANTS_CPU(GENERATE_VM_LONG_CONSTANT_ENTRY,
 878                         GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
 879                         GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
 880                         GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
 881                         GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
 882 
 883   GENERATE_VM_LONG_CONSTANT_LAST_ENTRY()
 884 };
 885 
 886 VMAddressEntry JVMCIVMStructs::localHotSpotVMAddresses[] = {
 887   VM_ADDRESSES(GENERATE_VM_ADDRESS_ENTRY,
 888                GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
 889                GENERATE_VM_FUNCTION_ENTRY)
 890   VM_ADDRESSES_COMPILER_RUNTIME(GENERATE_VM_ADDRESS_ENTRY,
 891                GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
 892                GENERATE_VM_FUNCTION_ENTRY)
 893   VM_ADDRESSES_OS(GENERATE_VM_ADDRESS_ENTRY,
 894                   GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
 895                   GENERATE_VM_FUNCTION_ENTRY)
 896 
 897   GENERATE_VM_ADDRESS_LAST_ENTRY()
 898 };
 899 
 900 int JVMCIVMStructs::localHotSpotVMStructs_count() {
 901   // Ignore sentinel entry at the end
 902   return (sizeof(localHotSpotVMStructs) / sizeof(VMStructEntry)) - 1;
 903 }
 904 int JVMCIVMStructs::localHotSpotVMTypes_count() {
 905   // Ignore sentinel entry at the end
 906   return (sizeof(localHotSpotVMTypes) / sizeof(VMTypeEntry)) - 1;
 907 }
 908 int JVMCIVMStructs::localHotSpotVMIntConstants_count() {
 909   // Ignore sentinel entry at the end
 910   return (sizeof(localHotSpotVMIntConstants) / sizeof(VMIntConstantEntry)) - 1;
 911 }
 912 int JVMCIVMStructs::localHotSpotVMLongConstants_count() {
 913   // Ignore sentinel entry at the end
 914   return (sizeof(localHotSpotVMLongConstants) / sizeof(VMLongConstantEntry)) - 1;
 915 }
 916 int JVMCIVMStructs::localHotSpotVMAddresses_count() {
 917   // Ignore sentinel entry at the end
 918   return (sizeof(localHotSpotVMAddresses) / sizeof(VMAddressEntry)) - 1;
 919 }
 920 
 921 extern "C" {
 922 JNIEXPORT VMStructEntry* jvmciHotSpotVMStructs = JVMCIVMStructs::localHotSpotVMStructs;
 923 JNIEXPORT VMTypeEntry* jvmciHotSpotVMTypes = JVMCIVMStructs::localHotSpotVMTypes;
 924 JNIEXPORT VMIntConstantEntry* jvmciHotSpotVMIntConstants = JVMCIVMStructs::localHotSpotVMIntConstants;
 925 JNIEXPORT VMLongConstantEntry* jvmciHotSpotVMLongConstants = JVMCIVMStructs::localHotSpotVMLongConstants;
 926 JNIEXPORT VMAddressEntry* jvmciHotSpotVMAddresses = JVMCIVMStructs::localHotSpotVMAddresses;
 927 }
 928 
 929 #ifdef ASSERT
 930 // This is used both to check the types of referenced fields and
 931 // to ensure that all of the field types are present.
 932 void JVMCIVMStructs::init() {
 933   VM_STRUCTS(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
 934              CHECK_STATIC_VM_STRUCT_ENTRY,
 935              CHECK_NO_OP,
 936              CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY);
 937 
 938 
 939   VM_STRUCTS_CPU(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
 940                  CHECK_STATIC_VM_STRUCT_ENTRY,
 941                  CHECK_NO_OP,
 942                  CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY,
 943                  CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
 944                  CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY,
 945                  CHECK_NO_OP,
 946                  CHECK_NO_OP);
 947 
 948 #if INCLUDE_G1GC
 949   VM_STRUCTS_JVMCI_G1GC(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
 950                         CHECK_STATIC_VM_STRUCT_ENTRY)
 951 #endif
 952 
 953   VM_TYPES(CHECK_VM_TYPE_ENTRY,
 954            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
 955            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
 956            CHECK_SINGLE_ARG_VM_TYPE_NO_OP);
 957 }
 958 
 959 void jvmci_vmStructs_init() {
 960   JVMCIVMStructs::init();
 961 }
 962 #endif // ASSERT
 963