1 /*
   2  * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "code/codeCache.hpp"
  27 #include "compiler/compileBroker.hpp"
  28 #include "gc/shared/collectedHeap.hpp"
  29 #include "jvmci/jvmciCodeInstaller.hpp"
  30 #include "jvmci/jvmciCompilerToVM.hpp"
  31 #include "jvmci/jvmciRuntime.hpp"
  32 #include "jvmci/vmStructs_jvmci.hpp"
  33 #include "oops/klassVtable.hpp"
  34 #include "oops/objArrayKlass.hpp"
  35 #include "prims/jvmtiThreadState.hpp"
  36 #include "runtime/deoptimization.hpp"
  37 #include "runtime/flags/jvmFlag.hpp"
  38 #include "runtime/osThread.hpp"
  39 #include "runtime/sharedRuntime.hpp"
  40 #include "runtime/stubRoutines.hpp"
  41 #include "runtime/vm_version.hpp"
  42 #if INCLUDE_G1GC
  43 #include "gc/g1/g1CardTable.hpp"
  44 #include "gc/g1/heapRegion.hpp"
  45 #include "gc/g1/g1ThreadLocalData.hpp"
  46 #endif
  47 
  48 #define VM_STRUCTS(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field) \
  49   static_field(CompilerToVM::Data,             Klass_vtable_start_offset,              int)                                          \
  50   static_field(CompilerToVM::Data,             Klass_vtable_length_offset,             int)                                          \
  51                                                                                                                                      \
  52   static_field(CompilerToVM::Data,             Method_extra_stack_entries,             int)                                          \
  53                                                                                                                                      \
  54   static_field(CompilerToVM::Data,             SharedRuntime_ic_miss_stub,             address)                                      \
  55   static_field(CompilerToVM::Data,             SharedRuntime_handle_wrong_method_stub, address)                                      \
  56   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_unpack,        address)                                      \
  57   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_unpack_with_exception_in_tls,                                \
  58                                                                                        address)                                      \
  59   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_uncommon_trap, address)                                      \
  60   static_field(CompilerToVM::Data,             SharedRuntime_polling_page_return_handler,                                            \
  61                                                                                        address)                                      \
  62                                                                                                                                      \
  63   static_field(CompilerToVM::Data,             nmethod_entry_barrier, address)                                                       \
  64   static_field(CompilerToVM::Data,             thread_disarmed_guard_value_offset, int)                                              \
  65   static_field(CompilerToVM::Data,             thread_address_bad_mask_offset, int)                                                  \
  66   AARCH64_ONLY(static_field(CompilerToVM::Data, BarrierSetAssembler_nmethod_patching_type, int))                                     \
  67                                                                                                                                      \
  68   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_load_barrier_on_oop_field_preloaded, address)                      \
  69   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_load_barrier_on_weak_oop_field_preloaded, address)                 \
  70   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_load_barrier_on_phantom_oop_field_preloaded, address)              \
  71   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_weak_load_barrier_on_oop_field_preloaded, address)                 \
  72   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_weak_load_barrier_on_weak_oop_field_preloaded, address)            \
  73   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_weak_load_barrier_on_phantom_oop_field_preloaded, address)         \
  74   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_load_barrier_on_oop_array, address)                                \
  75   static_field(CompilerToVM::Data,             ZBarrierSetRuntime_clone, address)                                                    \
  76                                                                                                                                      \
  77   static_field(CompilerToVM::Data,             continuations_enabled, bool)                                                          \
  78                                                                                                                                      \
  79   static_field(CompilerToVM::Data,             ThreadLocalAllocBuffer_alignment_reserve, size_t)                                     \
  80                                                                                                                                      \
  81   static_field(CompilerToVM::Data,             Universe_collectedHeap,                 CollectedHeap*)                               \
  82   static_field(CompilerToVM::Data,             Universe_base_vtable_size,              int)                                          \
  83   static_field(CompilerToVM::Data,             Universe_narrow_oop_base,               address)                                      \
  84   static_field(CompilerToVM::Data,             Universe_narrow_oop_shift,              int)                                          \
  85   static_field(CompilerToVM::Data,             Universe_narrow_klass_base,             address)                                      \
  86   static_field(CompilerToVM::Data,             Universe_narrow_klass_shift,            int)                                          \
  87   static_field(CompilerToVM::Data,             Universe_non_oop_bits,                  void*)                                        \
  88   static_field(CompilerToVM::Data,             Universe_verify_oop_mask,               uintptr_t)                                    \
  89   static_field(CompilerToVM::Data,             Universe_verify_oop_bits,               uintptr_t)                                    \
  90                                                                                                                                      \
  91   static_field(CompilerToVM::Data,             _supports_inline_contig_alloc,          bool)                                         \
  92   static_field(CompilerToVM::Data,             _heap_end_addr,                         HeapWord**)                                   \
  93   static_field(CompilerToVM::Data,             _heap_top_addr,                         HeapWord* volatile*)                          \
  94                                                                                                                                      \
  95   static_field(CompilerToVM::Data,             _max_oop_map_stack_offset,              int)                                          \
  96   static_field(CompilerToVM::Data,             _fields_annotations_base_offset,        int)                                          \
  97                                                                                                                                      \
  98   static_field(CompilerToVM::Data,             cardtable_start_address,                CardTable::CardValue*)                        \
  99   static_field(CompilerToVM::Data,             cardtable_shift,                        int)                                          \
 100                                                                                                                                      \
 101   static_field(CompilerToVM::Data,             vm_page_size,                           size_t)                                       \
 102                                                                                                                                      \
 103   static_field(CompilerToVM::Data,             sizeof_vtableEntry,                     int)                                          \
 104   static_field(CompilerToVM::Data,             sizeof_ExceptionTableElement,           int)                                          \
 105   static_field(CompilerToVM::Data,             sizeof_LocalVariableTableElement,       int)                                          \
 106   static_field(CompilerToVM::Data,             sizeof_ConstantPool,                    int)                                          \
 107   static_field(CompilerToVM::Data,             sizeof_narrowKlass,                     int)                                          \
 108   static_field(CompilerToVM::Data,             sizeof_arrayOopDesc,                    int)                                          \
 109   static_field(CompilerToVM::Data,             sizeof_BasicLock,                       int)                                          \
 110                                                                                                                                      \
 111   static_field(CompilerToVM::Data,             dsin,                                   address)                                      \
 112   static_field(CompilerToVM::Data,             dcos,                                   address)                                      \
 113   static_field(CompilerToVM::Data,             dtan,                                   address)                                      \
 114   static_field(CompilerToVM::Data,             dexp,                                   address)                                      \
 115   static_field(CompilerToVM::Data,             dlog,                                   address)                                      \
 116   static_field(CompilerToVM::Data,             dlog10,                                 address)                                      \
 117   static_field(CompilerToVM::Data,             dpow,                                   address)                                      \
 118                                                                                                                                      \
 119   static_field(CompilerToVM::Data,             symbol_init,                            address)                                      \
 120   static_field(CompilerToVM::Data,             symbol_clinit,                          address)                                      \
 121                                                                                                                                      \
 122   static_field(CompilerToVM::Data,             data_section_item_alignment,            int)                                          \
 123                                                                                                                                      \
 124   static_field(Abstract_VM_Version,            _features,                              uint64_t)                                     \
 125                                                                                                                                      \
 126   nonstatic_field(Annotations,                 _class_annotations,                     AnnotationArray*)                             \
 127   nonstatic_field(Annotations,                 _fields_annotations,                    Array<AnnotationArray*>*)                     \
 128                                                                                                                                      \
 129   nonstatic_field(Array<int>,                  _length,                                int)                                          \
 130   unchecked_nonstatic_field(Array<u1>,         _data,                                  sizeof(u1))                                   \
 131   unchecked_nonstatic_field(Array<u2>,         _data,                                  sizeof(u2))                                   \
 132   nonstatic_field(Array<Klass*>,               _length,                                int)                                          \
 133   nonstatic_field(Array<Klass*>,               _data[0],                               Klass*)                                       \
 134                                                                                                                                      \
 135   volatile_nonstatic_field(BasicLock,          _displaced_header,                      markWord)                                     \
 136                                                                                                                                      \
 137   static_field(CodeCache,                      _low_bound,                             address)                                      \
 138   static_field(CodeCache,                      _high_bound,                            address)                                      \
 139                                                                                                                                      \
 140   nonstatic_field(CollectedHeap,               _total_collections,                     unsigned int)                                 \
 141                                                                                                                                      \
 142   nonstatic_field(CompileTask,                 _num_inlined_bytecodes,                 int)                                          \
 143                                                                                                                                      \
 144   nonstatic_field(ConstantPool,                _tags,                                  Array<u1>*)                                   \
 145   nonstatic_field(ConstantPool,                _pool_holder,                           InstanceKlass*)                               \
 146   nonstatic_field(ConstantPool,                _length,                                int)                                          \
 147   nonstatic_field(ConstantPool,                _flags,                                 u2)                                           \
 148   nonstatic_field(ConstantPool,                _source_file_name_index,                u2)                                           \
 149                                                                                                                                      \
 150   nonstatic_field(ConstMethod,                 _constants,                             ConstantPool*)                                \
 151   nonstatic_field(ConstMethod,                 _flags._flags,                          u4)                                           \
 152   nonstatic_field(ConstMethod,                 _code_size,                             u2)                                           \
 153   nonstatic_field(ConstMethod,                 _name_index,                            u2)                                           \
 154   nonstatic_field(ConstMethod,                 _signature_index,                       u2)                                           \
 155   nonstatic_field(ConstMethod,                 _method_idnum,                          u2)                                           \
 156   nonstatic_field(ConstMethod,                 _max_stack,                             u2)                                           \
 157   nonstatic_field(ConstMethod,                 _max_locals,                            u2)                                           \
 158                                                                                                                                      \
 159   nonstatic_field(DataLayout,                  _header._struct._tag,                   u1)                                           \
 160   nonstatic_field(DataLayout,                  _header._struct._flags,                 u1)                                           \
 161   nonstatic_field(DataLayout,                  _header._struct._bci,                   u2)                                           \
 162   nonstatic_field(DataLayout,                  _header._struct._traps,                 u4)                                           \
 163   nonstatic_field(DataLayout,                  _cells[0],                              intptr_t)                                     \
 164                                                                                                                                      \
 165   nonstatic_field(Deoptimization::UnrollBlock, _size_of_deoptimized_frame,             int)                                          \
 166   nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment,                     int)                                          \
 167   nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames,                      int)                                          \
 168   nonstatic_field(Deoptimization::UnrollBlock, _total_frame_sizes,                     int)                                          \
 169   nonstatic_field(Deoptimization::UnrollBlock, _frame_sizes,                           intptr_t*)                                    \
 170   nonstatic_field(Deoptimization::UnrollBlock, _frame_pcs,                             address*)                                     \
 171   nonstatic_field(Deoptimization::UnrollBlock, _initial_info,                          intptr_t)                                     \
 172   nonstatic_field(Deoptimization::UnrollBlock, _unpack_kind,                           int)                                          \
 173                                                                                                                                      \
 174   nonstatic_field(ExceptionTableElement,       start_pc,                                      u2)                                    \
 175   nonstatic_field(ExceptionTableElement,       end_pc,                                        u2)                                    \
 176   nonstatic_field(ExceptionTableElement,       handler_pc,                                    u2)                                    \
 177   nonstatic_field(ExceptionTableElement,       catch_type_index,                              u2)                                    \
 178                                                                                                                                      \
 179   nonstatic_field(InstanceKlass,               _fieldinfo_stream,                             Array<u1>*)                            \
 180   nonstatic_field(InstanceKlass,               _constants,                                    ConstantPool*)                         \
 181   volatile_nonstatic_field(InstanceKlass,      _init_state,                                   InstanceKlass::ClassState)             \
 182   volatile_nonstatic_field(InstanceKlass,      _init_thread,                                  JavaThread*)                           \
 183   nonstatic_field(InstanceKlass,               _misc_flags._flags,                            u2)                                    \
 184   nonstatic_field(InstanceKlass,               _annotations,                                  Annotations*)                          \
 185                                                                                                                                      \
 186   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_sp,                                 intptr_t*)                             \
 187   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_pc,                                 address)                               \
 188                                                                                                                                      \
 189   nonstatic_field(JVMCICompileState,           _jvmti_can_hotswap_or_post_breakpoint,         jbyte)                                 \
 190   nonstatic_field(JVMCICompileState,           _jvmti_can_access_local_variables,             jbyte)                                 \
 191   nonstatic_field(JVMCICompileState,           _jvmti_can_post_on_exceptions,                 jbyte)                                 \
 192   nonstatic_field(JVMCICompileState,           _jvmti_can_pop_frame,                          jbyte)                                 \
 193   nonstatic_field(JVMCICompileState,           _compilation_ticks,                            jint)                                  \
 194                                                                                                                                      \
 195   nonstatic_field(JavaThread,                  _threadObj,                                    OopHandle)                             \
 196   nonstatic_field(JavaThread,                  _vthread,                                      OopHandle)                             \
 197   nonstatic_field(JavaThread,                  _scopedValueCache,                             OopHandle)                             \
 198   nonstatic_field(JavaThread,                  _anchor,                                       JavaFrameAnchor)                       \
 199   nonstatic_field(JavaThread,                  _vm_result,                                    oop)                                   \
 200   nonstatic_field(JavaThread,                  _stack_overflow_state._stack_overflow_limit,   address)                               \
 201   volatile_nonstatic_field(JavaThread,         _exception_oop,                                oop)                                   \
 202   volatile_nonstatic_field(JavaThread,         _exception_pc,                                 address)                               \
 203   volatile_nonstatic_field(JavaThread,         _is_method_handle_return,                      int)                                   \
 204   volatile_nonstatic_field(JavaThread,         _doing_unsafe_access,                          bool)                                  \
 205   nonstatic_field(JavaThread,                  _osthread,                                     OSThread*)                             \
 206   nonstatic_field(JavaThread,                  _saved_exception_pc,                           address)                               \
 207   nonstatic_field(JavaThread,                  _pending_deoptimization,                       int)                                   \
 208   nonstatic_field(JavaThread,                  _pending_failed_speculation,                   jlong)                                 \
 209   nonstatic_field(JavaThread,                  _pending_transfer_to_interpreter,              bool)                                  \
 210   nonstatic_field(JavaThread,                  _jvmci_counters,                               jlong*)                                \
 211   nonstatic_field(JavaThread,                  _jvmci_reserved0,                              jlong)                                 \
 212   nonstatic_field(JavaThread,                  _jvmci_reserved1,                              jlong)                                 \
 213   nonstatic_field(JavaThread,                  _jvmci_reserved_oop0,                          oop)                                   \
 214   nonstatic_field(JavaThread,                  _should_post_on_exceptions_flag,               int)                                   \
 215   nonstatic_field(JavaThread,                  _jni_environment,                              JNIEnv)                                \
 216   nonstatic_field(JavaThread,                  _poll_data,                                    SafepointMechanism::ThreadData)        \
 217   nonstatic_field(JavaThread,                  _stack_overflow_state._reserved_stack_activation, address)                            \
 218   nonstatic_field(JavaThread,                  _held_monitor_count,                           int64_t)                               \
 219   JVMTI_ONLY(nonstatic_field(JavaThread,       _is_in_VTMS_transition,                        bool))                                 \
 220   JVMTI_ONLY(nonstatic_field(JavaThread,       _is_in_tmp_VTMS_transition,                    bool))                                 \
 221                                                                                                                                      \
 222   JVMTI_ONLY(static_field(JvmtiVTMSTransitionDisabler, _VTMS_notify_jvmti_events,             bool))                                 \
 223                                                                                                                                      \
 224   static_field(java_lang_Class,                _klass_offset,                                 int)                                   \
 225   static_field(java_lang_Class,                _array_klass_offset,                           int)                                   \
 226                                                                                                                                      \
 227   nonstatic_field(InvocationCounter,           _counter,                                      unsigned int)                          \
 228                                                                                                                                      \
 229   nonstatic_field(Klass,                       _secondary_super_cache,                        Klass*)                                \
 230   nonstatic_field(Klass,                       _secondary_supers,                             Array<Klass*>*)                        \
 231   nonstatic_field(Klass,                       _super,                                        Klass*)                                \
 232   nonstatic_field(Klass,                       _super_check_offset,                           juint)                                 \
 233   volatile_nonstatic_field(Klass,              _subklass,                                     Klass*)                                \
 234   nonstatic_field(Klass,                       _layout_helper,                                jint)                                  \
 235   nonstatic_field(Klass,                       _name,                                         Symbol*)                               \
 236   volatile_nonstatic_field(Klass,              _next_sibling,                                 Klass*)                                \
 237   nonstatic_field(Klass,                       _java_mirror,                                  OopHandle)                             \
 238   nonstatic_field(Klass,                       _modifier_flags,                               jint)                                  \
 239   nonstatic_field(Klass,                       _access_flags,                                 AccessFlags)                           \
 240   nonstatic_field(Klass,                       _class_loader_data,                            ClassLoaderData*)                      \
 241                                                                                                                                      \
 242   nonstatic_field(LocalVariableTableElement,   start_bci,                                     u2)                                    \
 243   nonstatic_field(LocalVariableTableElement,   length,                                        u2)                                    \
 244   nonstatic_field(LocalVariableTableElement,   name_cp_index,                                 u2)                                    \
 245   nonstatic_field(LocalVariableTableElement,   descriptor_cp_index,                           u2)                                    \
 246   nonstatic_field(LocalVariableTableElement,   signature_cp_index,                            u2)                                    \
 247   nonstatic_field(LocalVariableTableElement,   slot,                                          u2)                                    \
 248                                                                                                                                      \
 249   nonstatic_field(Method,                      _constMethod,                                  ConstMethod*)                          \
 250   nonstatic_field(Method,                      _method_data,                                  MethodData*)                           \
 251   nonstatic_field(Method,                      _method_counters,                              MethodCounters*)                       \
 252   nonstatic_field(Method,                      _access_flags,                                 AccessFlags)                           \
 253   nonstatic_field(Method,                      _vtable_index,                                 int)                                   \
 254   nonstatic_field(Method,                      _intrinsic_id,                                 u2)                                    \
 255   nonstatic_field(Method,                      _flags._status,                                u4)                                    \
 256   volatile_nonstatic_field(Method,             _code,                                         CompiledMethod*)                       \
 257   volatile_nonstatic_field(Method,             _from_compiled_entry,                          address)                               \
 258                                                                                                                                      \
 259   nonstatic_field(MethodCounters,              _invoke_mask,                                  int)                                   \
 260   nonstatic_field(MethodCounters,              _backedge_mask,                                int)                                   \
 261   nonstatic_field(MethodCounters,              _interpreter_throwout_count,                   u2)                                    \
 262   JVMTI_ONLY(nonstatic_field(MethodCounters,   _number_of_breakpoints,                        u2))                                   \
 263   nonstatic_field(MethodCounters,              _invocation_counter,                           InvocationCounter)                     \
 264   nonstatic_field(MethodCounters,              _backedge_counter,                             InvocationCounter)                     \
 265                                                                                                                                      \
 266   nonstatic_field(MethodData,                  _size,                                         int)                                   \
 267   nonstatic_field(MethodData,                  _method,                                       Method*)                               \
 268   nonstatic_field(MethodData,                  _data_size,                                    int)                                   \
 269   nonstatic_field(MethodData,                  _data[0],                                      intptr_t)                              \
 270   nonstatic_field(MethodData,                  _parameters_type_data_di,                      int)                                   \
 271   nonstatic_field(MethodData,                  _compiler_counters._nof_decompiles,            uint)                                  \
 272   nonstatic_field(MethodData,                  _compiler_counters._nof_overflow_recompiles,   uint)                                  \
 273   nonstatic_field(MethodData,                  _compiler_counters._nof_overflow_traps,        uint)                                  \
 274   nonstatic_field(MethodData,                  _compiler_counters._trap_hist._array[0],       u1)                                    \
 275   nonstatic_field(MethodData,                  _eflags,                                       intx)                                  \
 276   nonstatic_field(MethodData,                  _arg_local,                                    intx)                                  \
 277   nonstatic_field(MethodData,                  _arg_stack,                                    intx)                                  \
 278   nonstatic_field(MethodData,                  _arg_returned,                                 intx)                                  \
 279   nonstatic_field(MethodData,                  _tenure_traps,                                 uint)                                  \
 280   nonstatic_field(MethodData,                  _invoke_mask,                                  int)                                   \
 281   nonstatic_field(MethodData,                  _backedge_mask,                                int)                                   \
 282   nonstatic_field(MethodData,                  _jvmci_ir_size,                                int)                                   \
 283                                                                                                                                      \
 284   nonstatic_field(nmethod,                     _verified_entry_point,                         address)                               \
 285   nonstatic_field(nmethod,                     _comp_level,                                   CompLevel)                             \
 286                                                                                                                                      \
 287   nonstatic_field(ObjArrayKlass,               _element_klass,                                Klass*)                                \
 288                                                                                                                                      \
 289   unchecked_nonstatic_field(ObjectMonitor,     _owner,                                        sizeof(void *)) /* NOTE: no type */    \
 290   volatile_nonstatic_field(ObjectMonitor,      _recursions,                                   intptr_t)                              \
 291   volatile_nonstatic_field(ObjectMonitor,      _cxq,                                          ObjectWaiter*)                         \
 292   volatile_nonstatic_field(ObjectMonitor,      _EntryList,                                    ObjectWaiter*)                         \
 293   volatile_nonstatic_field(ObjectMonitor,      _succ,                                         JavaThread*)                           \
 294                                                                                                                                      \
 295   volatile_nonstatic_field(oopDesc,            _mark,                                         markWord)                              \
 296   volatile_nonstatic_field(oopDesc,            _metadata._klass,                              Klass*)                                \
 297                                                                                                                                      \
 298   static_field(StubRoutines,                _verify_oop_count,                                jint)                                  \
 299                                                                                                                                      \
 300   static_field(StubRoutines,                _throw_delayed_StackOverflowError_entry,          address)                               \
 301                                                                                                                                      \
 302   static_field(StubRoutines,                _jbyte_arraycopy,                                 address)                               \
 303   static_field(StubRoutines,                _jshort_arraycopy,                                address)                               \
 304   static_field(StubRoutines,                _jint_arraycopy,                                  address)                               \
 305   static_field(StubRoutines,                _jlong_arraycopy,                                 address)                               \
 306   static_field(StubRoutines,                _oop_arraycopy,                                   address)                               \
 307   static_field(StubRoutines,                _oop_arraycopy_uninit,                            address)                               \
 308   static_field(StubRoutines,                _jbyte_disjoint_arraycopy,                        address)                               \
 309   static_field(StubRoutines,                _jshort_disjoint_arraycopy,                       address)                               \
 310   static_field(StubRoutines,                _jint_disjoint_arraycopy,                         address)                               \
 311   static_field(StubRoutines,                _jlong_disjoint_arraycopy,                        address)                               \
 312   static_field(StubRoutines,                _oop_disjoint_arraycopy,                          address)                               \
 313   static_field(StubRoutines,                _oop_disjoint_arraycopy_uninit,                   address)                               \
 314   static_field(StubRoutines,                _arrayof_jbyte_arraycopy,                         address)                               \
 315   static_field(StubRoutines,                _arrayof_jshort_arraycopy,                        address)                               \
 316   static_field(StubRoutines,                _arrayof_jint_arraycopy,                          address)                               \
 317   static_field(StubRoutines,                _arrayof_jlong_arraycopy,                         address)                               \
 318   static_field(StubRoutines,                _arrayof_oop_arraycopy,                           address)                               \
 319   static_field(StubRoutines,                _arrayof_oop_arraycopy_uninit,                    address)                               \
 320   static_field(StubRoutines,                _arrayof_jbyte_disjoint_arraycopy,                address)                               \
 321   static_field(StubRoutines,                _arrayof_jshort_disjoint_arraycopy,               address)                               \
 322   static_field(StubRoutines,                _arrayof_jint_disjoint_arraycopy,                 address)                               \
 323   static_field(StubRoutines,                _arrayof_jlong_disjoint_arraycopy,                address)                               \
 324   static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy,                  address)                               \
 325   static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy_uninit,           address)                               \
 326   static_field(StubRoutines,                _checkcast_arraycopy,                             address)                               \
 327   static_field(StubRoutines,                _checkcast_arraycopy_uninit,                      address)                               \
 328   static_field(StubRoutines,                _unsafe_arraycopy,                                address)                               \
 329   static_field(StubRoutines,                _generic_arraycopy,                               address)                               \
 330                                                                                                                                      \
 331   static_field(StubRoutines,                _aescrypt_encryptBlock,                           address)                               \
 332   static_field(StubRoutines,                _aescrypt_decryptBlock,                           address)                               \
 333   static_field(StubRoutines,                _cipherBlockChaining_encryptAESCrypt,             address)                               \
 334   static_field(StubRoutines,                _cipherBlockChaining_decryptAESCrypt,             address)                               \
 335   static_field(StubRoutines,                _electronicCodeBook_encryptAESCrypt,              address)                               \
 336   static_field(StubRoutines,                _electronicCodeBook_decryptAESCrypt,              address)                               \
 337   static_field(StubRoutines,                _counterMode_AESCrypt,                            address)                               \
 338   static_field(StubRoutines,                _galoisCounterMode_AESCrypt,                      address)                               \
 339   static_field(StubRoutines,                _base64_encodeBlock,                              address)                               \
 340   static_field(StubRoutines,                _base64_decodeBlock,                              address)                               \
 341   static_field(StubRoutines,                _ghash_processBlocks,                             address)                               \
 342   static_field(StubRoutines,                _md5_implCompress,                                address)                               \
 343   static_field(StubRoutines,                _md5_implCompressMB,                              address)                               \
 344   static_field(StubRoutines,                _chacha20Block,                                   address)                               \
 345   static_field(StubRoutines,                _poly1305_processBlocks,                          address)                               \
 346   static_field(StubRoutines,                _sha1_implCompress,                               address)                               \
 347   static_field(StubRoutines,                _sha1_implCompressMB,                             address)                               \
 348   static_field(StubRoutines,                _sha256_implCompress,                             address)                               \
 349   static_field(StubRoutines,                _sha256_implCompressMB,                           address)                               \
 350   static_field(StubRoutines,                _sha512_implCompress,                             address)                               \
 351   static_field(StubRoutines,                _sha512_implCompressMB,                           address)                               \
 352   static_field(StubRoutines,                _sha3_implCompress,                               address)                               \
 353   static_field(StubRoutines,                _sha3_implCompressMB,                             address)                               \
 354   static_field(StubRoutines,                _updateBytesCRC32,                                address)                               \
 355   static_field(StubRoutines,                _crc_table_adr,                                   address)                               \
 356   static_field(StubRoutines,                _crc32c_table_addr,                               address)                               \
 357   static_field(StubRoutines,                _updateBytesCRC32C,                               address)                               \
 358   static_field(StubRoutines,                _updateBytesAdler32,                              address)                               \
 359   static_field(StubRoutines,                _multiplyToLen,                                   address)                               \
 360   static_field(StubRoutines,                _squareToLen,                                     address)                               \
 361   static_field(StubRoutines,                _mulAdd,                                          address)                               \
 362   static_field(StubRoutines,                _montgomeryMultiply,                              address)                               \
 363   static_field(StubRoutines,                _montgomerySquare,                                address)                               \
 364   static_field(StubRoutines,                _vectorizedMismatch,                              address)                               \
 365   static_field(StubRoutines,                _bigIntegerRightShiftWorker,                      address)                               \
 366   static_field(StubRoutines,                _bigIntegerLeftShiftWorker,                       address)                               \
 367   static_field(StubRoutines,                _cont_thaw,                                       address)                               \
 368                                                                                                                                      \
 369   nonstatic_field(Thread,                   _tlab,                                            ThreadLocalAllocBuffer)                \
 370   nonstatic_field(Thread,                   _allocated_bytes,                                 jlong)                                 \
 371   JFR_ONLY(nonstatic_field(Thread,          _jfr_thread_local,                                JfrThreadLocal))                       \
 372                                                                                                                                      \
 373   static_field(java_lang_Thread,            _tid_offset,                                      int)                                   \
 374   static_field(java_lang_Thread,            _jvmti_is_in_VTMS_transition_offset,              int)                                   \
 375   JFR_ONLY(static_field(java_lang_Thread,   _jfr_epoch_offset,                                int))                                  \
 376                                                                                                                                      \
 377   JFR_ONLY(nonstatic_field(JfrThreadLocal,  _vthread_id,                                      traceid))                              \
 378   JFR_ONLY(nonstatic_field(JfrThreadLocal,  _vthread_epoch,                                   u2))                                   \
 379   JFR_ONLY(nonstatic_field(JfrThreadLocal,  _vthread_excluded,                                bool))                                 \
 380   JFR_ONLY(nonstatic_field(JfrThreadLocal,  _vthread,                                         bool))                                 \
 381                                                                                                                                      \
 382   nonstatic_field(ThreadLocalAllocBuffer,   _start,                                           HeapWord*)                             \
 383   nonstatic_field(ThreadLocalAllocBuffer,   _top,                                             HeapWord*)                             \
 384   nonstatic_field(ThreadLocalAllocBuffer,   _end,                                             HeapWord*)                             \
 385   nonstatic_field(ThreadLocalAllocBuffer,   _pf_top,                                          HeapWord*)                             \
 386   nonstatic_field(ThreadLocalAllocBuffer,   _desired_size,                                    size_t)                                \
 387   nonstatic_field(ThreadLocalAllocBuffer,   _refill_waste_limit,                              size_t)                                \
 388   nonstatic_field(ThreadLocalAllocBuffer,   _number_of_refills,                               unsigned)                              \
 389   nonstatic_field(ThreadLocalAllocBuffer,   _slow_allocations,                                unsigned)                              \
 390                                                                                                                                      \
 391   nonstatic_field(SafepointMechanism::ThreadData, _polling_word,                              volatile uintptr_t)                    \
 392   nonstatic_field(SafepointMechanism::ThreadData, _polling_page,                              volatile uintptr_t)                    \
 393                                                                                                                                      \
 394   nonstatic_field(ThreadShadow,             _pending_exception,                               oop)                                   \
 395                                                                                                                                      \
 396   static_field(Symbol,                      _vm_symbols[0],                                   Symbol*)                               \
 397                                                                                                                                      \
 398   nonstatic_field(vtableEntry,              _method,                                          Method*)                               \
 399 
 400 #define VM_TYPES(declare_type, declare_toplevel_type, declare_integer_type, declare_unsigned_integer_type) \
 401   declare_integer_type(bool)                                              \
 402   declare_unsigned_integer_type(size_t)                                   \
 403   declare_integer_type(intx)                                              \
 404   declare_unsigned_integer_type(uintx)                                    \
 405   declare_integer_type(CompLevel)                                         \
 406                                                                           \
 407   declare_toplevel_type(BasicLock)                                        \
 408   declare_toplevel_type(CompilerToVM)                                     \
 409   declare_toplevel_type(ExceptionTableElement)                            \
 410   declare_toplevel_type(JVMFlag)                                          \
 411   declare_toplevel_type(JVMFlag*)                                         \
 412   declare_toplevel_type(InvocationCounter)                                \
 413   declare_toplevel_type(JVMCICompileState)                                \
 414   declare_toplevel_type(JVMCIEnv)                                         \
 415   declare_toplevel_type(LocalVariableTableElement)                        \
 416   declare_toplevel_type(narrowKlass)                                      \
 417   declare_toplevel_type(ObjectWaiter)                                     \
 418   declare_toplevel_type(Symbol*)                                          \
 419   declare_toplevel_type(vtableEntry)                                      \
 420                                                                           \
 421   declare_toplevel_type(oopDesc)                                          \
 422     declare_type(arrayOopDesc, oopDesc)                                   \
 423                                                                           \
 424   declare_toplevel_type(MetaspaceObj)                                     \
 425     declare_type(Metadata, MetaspaceObj)                                  \
 426     declare_type(Klass, Metadata)                                         \
 427       declare_type(InstanceKlass, Klass)                                  \
 428     declare_type(ConstantPool, Metadata)                                  \
 429 
 430 #define VM_INT_CONSTANTS(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
 431   declare_preprocessor_constant("ASSERT", DEBUG_ONLY(1) NOT_DEBUG(0))     \
 432                                                                           \
 433   declare_constant(CompLevel_none)                                        \
 434   declare_constant(CompLevel_simple)                                      \
 435   declare_constant(CompLevel_limited_profile)                             \
 436   declare_constant(CompLevel_full_profile)                                \
 437   declare_constant(CompLevel_full_optimization)                           \
 438   declare_constant(HeapWordSize)                                          \
 439   declare_constant(InvocationEntryBci)                                    \
 440   declare_constant(LogKlassAlignmentInBytes)                              \
 441   declare_constant(JVMCINMethodData::SPECULATION_LENGTH_BITS)             \
 442                                                                           \
 443   declare_constant(JVM_ACC_WRITTEN_FLAGS)                                 \
 444   declare_constant(JVM_ACC_HAS_FINALIZER)                                 \
 445   declare_constant(JVM_ACC_IS_CLONEABLE_FAST)                             \
 446   declare_constant(JVM_ACC_IS_HIDDEN_CLASS)                               \
 447   declare_constant(JVM_ACC_IS_VALUE_BASED_CLASS)                          \
 448   declare_constant(FieldInfo::FieldFlags::_ff_injected)                   \
 449   declare_constant(FieldInfo::FieldFlags::_ff_stable)                     \
 450   declare_preprocessor_constant("JVM_ACC_VARARGS", JVM_ACC_VARARGS)       \
 451   declare_preprocessor_constant("JVM_ACC_BRIDGE", JVM_ACC_BRIDGE)         \
 452   declare_preprocessor_constant("JVM_ACC_ANNOTATION", JVM_ACC_ANNOTATION) \
 453   declare_preprocessor_constant("JVM_ACC_ENUM", JVM_ACC_ENUM)             \
 454   declare_preprocessor_constant("JVM_ACC_SYNTHETIC", JVM_ACC_SYNTHETIC)   \
 455   declare_preprocessor_constant("JVM_ACC_INTERFACE", JVM_ACC_INTERFACE)   \
 456                                                                           \
 457   declare_constant(JVM_CONSTANT_Utf8)                                     \
 458   declare_constant(JVM_CONSTANT_Unicode)                                  \
 459   declare_constant(JVM_CONSTANT_Integer)                                  \
 460   declare_constant(JVM_CONSTANT_Float)                                    \
 461   declare_constant(JVM_CONSTANT_Long)                                     \
 462   declare_constant(JVM_CONSTANT_Double)                                   \
 463   declare_constant(JVM_CONSTANT_Class)                                    \
 464   declare_constant(JVM_CONSTANT_String)                                   \
 465   declare_constant(JVM_CONSTANT_Fieldref)                                 \
 466   declare_constant(JVM_CONSTANT_Methodref)                                \
 467   declare_constant(JVM_CONSTANT_InterfaceMethodref)                       \
 468   declare_constant(JVM_CONSTANT_NameAndType)                              \
 469   declare_constant(JVM_CONSTANT_MethodHandle)                             \
 470   declare_constant(JVM_CONSTANT_MethodType)                               \
 471   declare_constant(JVM_CONSTANT_InvokeDynamic)                            \
 472   declare_constant(JVM_CONSTANT_Dynamic)                                  \
 473   declare_constant(JVM_CONSTANT_Module)                                   \
 474   declare_constant(JVM_CONSTANT_Package)                                  \
 475   declare_constant(JVM_CONSTANT_ExternalMax)                              \
 476                                                                           \
 477   declare_constant(JVM_CONSTANT_Invalid)                                  \
 478   declare_constant(JVM_CONSTANT_InternalMin)                              \
 479   declare_constant(JVM_CONSTANT_UnresolvedClass)                          \
 480   declare_constant(JVM_CONSTANT_ClassIndex)                               \
 481   declare_constant(JVM_CONSTANT_StringIndex)                              \
 482   declare_constant(JVM_CONSTANT_UnresolvedClassInError)                   \
 483   declare_constant(JVM_CONSTANT_MethodHandleInError)                      \
 484   declare_constant(JVM_CONSTANT_MethodTypeInError)                        \
 485   declare_constant(JVM_CONSTANT_DynamicInError)                           \
 486   declare_constant(JVM_CONSTANT_InternalMax)                              \
 487                                                                           \
 488   declare_constant(ArrayData::array_len_off_set)                          \
 489   declare_constant(ArrayData::array_start_off_set)                        \
 490                                                                           \
 491   declare_constant(BitData::exception_seen_flag)                          \
 492   declare_constant(BitData::null_seen_flag)                               \
 493   declare_constant(BranchData::not_taken_off_set)                         \
 494                                                                           \
 495   declare_constant_with_value("CardTable::dirty_card", CardTable::dirty_card_val()) \
 496                                                                           \
 497   declare_constant(CodeInstaller::VERIFIED_ENTRY)                         \
 498   declare_constant(CodeInstaller::UNVERIFIED_ENTRY)                       \
 499   declare_constant(CodeInstaller::OSR_ENTRY)                              \
 500   declare_constant(CodeInstaller::EXCEPTION_HANDLER_ENTRY)                \
 501   declare_constant(CodeInstaller::DEOPT_HANDLER_ENTRY)                    \
 502   declare_constant(CodeInstaller::FRAME_COMPLETE)                         \
 503   declare_constant(CodeInstaller::ENTRY_BARRIER_PATCH)                    \
 504   declare_constant(CodeInstaller::INVOKEINTERFACE)                        \
 505   declare_constant(CodeInstaller::INVOKEVIRTUAL)                          \
 506   declare_constant(CodeInstaller::INVOKESTATIC)                           \
 507   declare_constant(CodeInstaller::INVOKESPECIAL)                          \
 508   declare_constant(CodeInstaller::INLINE_INVOKE)                          \
 509   declare_constant(CodeInstaller::POLL_NEAR)                              \
 510   declare_constant(CodeInstaller::POLL_RETURN_NEAR)                       \
 511   declare_constant(CodeInstaller::POLL_FAR)                               \
 512   declare_constant(CodeInstaller::POLL_RETURN_FAR)                        \
 513   declare_constant(CodeInstaller::CARD_TABLE_SHIFT)                       \
 514   declare_constant(CodeInstaller::CARD_TABLE_ADDRESS)                     \
 515   declare_constant(CodeInstaller::HEAP_TOP_ADDRESS)                       \
 516   declare_constant(CodeInstaller::HEAP_END_ADDRESS)                       \
 517   declare_constant(CodeInstaller::NARROW_KLASS_BASE_ADDRESS)              \
 518   declare_constant(CodeInstaller::NARROW_OOP_BASE_ADDRESS)                \
 519   declare_constant(CodeInstaller::CRC_TABLE_ADDRESS)                      \
 520   declare_constant(CodeInstaller::LOG_OF_HEAP_REGION_GRAIN_BYTES)         \
 521   declare_constant(CodeInstaller::INLINE_CONTIGUOUS_ALLOCATION_SUPPORTED) \
 522   declare_constant(CodeInstaller::DEOPT_MH_HANDLER_ENTRY)                 \
 523   declare_constant(CodeInstaller::VERIFY_OOP_COUNT_ADDRESS)               \
 524   declare_constant(CodeInstaller::VERIFY_OOPS)                            \
 525   declare_constant(CodeInstaller::VERIFY_OOP_BITS)                        \
 526   declare_constant(CodeInstaller::VERIFY_OOP_MASK)                        \
 527   declare_constant(CodeInstaller::INVOKE_INVALID)                         \
 528                                                                           \
 529   declare_constant(CodeInstaller::ILLEGAL)                                \
 530   declare_constant(CodeInstaller::REGISTER_PRIMITIVE)                     \
 531   declare_constant(CodeInstaller::REGISTER_OOP)                           \
 532   declare_constant(CodeInstaller::REGISTER_NARROW_OOP)                    \
 533   declare_constant(CodeInstaller::STACK_SLOT_PRIMITIVE)                   \
 534   declare_constant(CodeInstaller::STACK_SLOT_OOP)                         \
 535   declare_constant(CodeInstaller::STACK_SLOT_NARROW_OOP)                  \
 536   declare_constant(CodeInstaller::VIRTUAL_OBJECT_ID)                      \
 537   declare_constant(CodeInstaller::VIRTUAL_OBJECT_ID2)                     \
 538   declare_constant(CodeInstaller::NULL_CONSTANT)                          \
 539   declare_constant(CodeInstaller::RAW_CONSTANT)                           \
 540   declare_constant(CodeInstaller::PRIMITIVE_0)                            \
 541   declare_constant(CodeInstaller::PRIMITIVE4)                             \
 542   declare_constant(CodeInstaller::PRIMITIVE8)                             \
 543   declare_constant(CodeInstaller::JOBJECT)                                \
 544   declare_constant(CodeInstaller::OBJECT_ID)                              \
 545   declare_constant(CodeInstaller::OBJECT_ID2)                             \
 546                                                                           \
 547   declare_constant(CodeInstaller::NO_FINALIZABLE_SUBCLASS)                \
 548   declare_constant(CodeInstaller::CONCRETE_SUBTYPE)                       \
 549   declare_constant(CodeInstaller::LEAF_TYPE)                              \
 550   declare_constant(CodeInstaller::CONCRETE_METHOD)                        \
 551   declare_constant(CodeInstaller::CALLSITE_TARGET_VALUE)                  \
 552                                                                           \
 553   declare_constant(CodeInstaller::PATCH_OBJECT_ID)                        \
 554   declare_constant(CodeInstaller::PATCH_OBJECT_ID2)                       \
 555   declare_constant(CodeInstaller::PATCH_NARROW_OBJECT_ID)                 \
 556   declare_constant(CodeInstaller::PATCH_NARROW_OBJECT_ID2)                \
 557   declare_constant(CodeInstaller::PATCH_JOBJECT)                          \
 558   declare_constant(CodeInstaller::PATCH_NARROW_JOBJECT)                   \
 559   declare_constant(CodeInstaller::PATCH_KLASS)                            \
 560   declare_constant(CodeInstaller::PATCH_NARROW_KLASS)                     \
 561   declare_constant(CodeInstaller::PATCH_METHOD)                           \
 562   declare_constant(CodeInstaller::PATCH_DATA_SECTION_REFERENCE)           \
 563                                                                           \
 564   declare_constant(CodeInstaller::SITE_CALL)                              \
 565   declare_constant(CodeInstaller::SITE_FOREIGN_CALL)                      \
 566   declare_constant(CodeInstaller::SITE_FOREIGN_CALL_NO_DEBUG_INFO)        \
 567   declare_constant(CodeInstaller::SITE_SAFEPOINT)                         \
 568   declare_constant(CodeInstaller::SITE_INFOPOINT)                         \
 569   declare_constant(CodeInstaller::SITE_IMPLICIT_EXCEPTION)                \
 570   declare_constant(CodeInstaller::SITE_IMPLICIT_EXCEPTION_DISPATCH)       \
 571   declare_constant(CodeInstaller::SITE_MARK)                              \
 572   declare_constant(CodeInstaller::SITE_DATA_PATCH)                        \
 573   declare_constant(CodeInstaller::SITE_EXCEPTION_HANDLER)                 \
 574                                                                           \
 575   declare_constant(CodeInstaller::DI_HAS_REFERENCE_MAP)                   \
 576   declare_constant(CodeInstaller::DI_HAS_CALLEE_SAVE_INFO)                \
 577   declare_constant(CodeInstaller::DI_HAS_FRAMES)                          \
 578                                                                           \
 579   declare_constant(CodeInstaller::DIF_HAS_LOCALS)                         \
 580   declare_constant(CodeInstaller::DIF_HAS_STACK)                          \
 581   declare_constant(CodeInstaller::DIF_HAS_LOCKS)                          \
 582   declare_constant(CodeInstaller::DIF_DURING_CALL)                        \
 583   declare_constant(CodeInstaller::DIF_RETHROW_EXCEPTION)                  \
 584                                                                           \
 585   declare_constant(CodeInstaller::HCC_IS_NMETHOD)                         \
 586   declare_constant(CodeInstaller::HCC_HAS_ASSUMPTIONS)                    \
 587   declare_constant(CodeInstaller::HCC_HAS_METHODS)                        \
 588   declare_constant(CodeInstaller::HCC_HAS_DEOPT_RESCUE_SLOT)              \
 589   declare_constant(CodeInstaller::HCC_HAS_COMMENTS)                       \
 590                                                                           \
 591   declare_constant(CodeInstaller::NO_REGISTER)                            \
 592                                                                           \
 593   declare_constant(CollectedHeap::None)                                   \
 594   declare_constant(CollectedHeap::Serial)                                 \
 595   declare_constant(CollectedHeap::Parallel)                               \
 596   declare_constant(CollectedHeap::G1)                                     \
 597   declare_constant(CollectedHeap::Epsilon)                                \
 598   declare_constant(CollectedHeap::Z)                                      \
 599   declare_constant(CollectedHeap::Shenandoah)                             \
 600                                                                           \
 601   declare_constant(vmIntrinsics::FIRST_MH_SIG_POLY)                       \
 602   declare_constant(vmIntrinsics::LAST_MH_SIG_POLY)                        \
 603   declare_constant(vmIntrinsics::_invokeGeneric)                          \
 604   declare_constant(vmIntrinsics::_compiledLambdaForm)                     \
 605                                                                           \
 606   declare_constant(ConstantPool::CPCACHE_INDEX_TAG)                       \
 607   declare_constant(ConstantPool::_has_dynamic_constant)                   \
 608                                                                           \
 609   declare_constant(ConstMethodFlags::_misc_has_linenumber_table)          \
 610   declare_constant(ConstMethodFlags::_misc_has_localvariable_table)       \
 611   declare_constant(ConstMethodFlags::_misc_has_exception_table)           \
 612   declare_constant(ConstMethodFlags::_misc_has_method_annotations)        \
 613   declare_constant(ConstMethodFlags::_misc_has_parameter_annotations)     \
 614   declare_constant(ConstMethodFlags::_misc_caller_sensitive)              \
 615   declare_constant(ConstMethodFlags::_misc_is_hidden)                     \
 616   declare_constant(ConstMethodFlags::_misc_intrinsic_candidate)           \
 617   declare_constant(ConstMethodFlags::_misc_reserved_stack_access)         \
 618   declare_constant(ConstMethodFlags::_misc_changes_current_thread)        \
 619                                                                           \
 620   declare_constant(CounterData::count_off)                                \
 621                                                                           \
 622   declare_constant(DataLayout::cell_size)                                 \
 623   declare_constant(DataLayout::no_tag)                                    \
 624   declare_constant(DataLayout::bit_data_tag)                              \
 625   declare_constant(DataLayout::counter_data_tag)                          \
 626   declare_constant(DataLayout::jump_data_tag)                             \
 627   declare_constant(DataLayout::receiver_type_data_tag)                    \
 628   declare_constant(DataLayout::virtual_call_data_tag)                     \
 629   declare_constant(DataLayout::ret_data_tag)                              \
 630   declare_constant(DataLayout::branch_data_tag)                           \
 631   declare_constant(DataLayout::multi_branch_data_tag)                     \
 632   declare_constant(DataLayout::arg_info_data_tag)                         \
 633   declare_constant(DataLayout::call_type_data_tag)                        \
 634   declare_constant(DataLayout::virtual_call_type_data_tag)                \
 635   declare_constant(DataLayout::parameters_type_data_tag)                  \
 636   declare_constant(DataLayout::speculative_trap_data_tag)                 \
 637                                                                           \
 638   declare_constant(Deoptimization::Unpack_deopt)                          \
 639   declare_constant(Deoptimization::Unpack_exception)                      \
 640   declare_constant(Deoptimization::Unpack_uncommon_trap)                  \
 641   declare_constant(Deoptimization::Unpack_reexecute)                      \
 642                                                                           \
 643   declare_constant(Deoptimization::_action_bits)                          \
 644   declare_constant(Deoptimization::_reason_bits)                          \
 645   declare_constant(Deoptimization::_debug_id_bits)                        \
 646   declare_constant(Deoptimization::_action_shift)                         \
 647   declare_constant(Deoptimization::_reason_shift)                         \
 648   declare_constant(Deoptimization::_debug_id_shift)                       \
 649                                                                           \
 650   declare_constant(Deoptimization::Action_none)                           \
 651   declare_constant(Deoptimization::Action_maybe_recompile)                \
 652   declare_constant(Deoptimization::Action_reinterpret)                    \
 653   declare_constant(Deoptimization::Action_make_not_entrant)               \
 654   declare_constant(Deoptimization::Action_make_not_compilable)            \
 655                                                                           \
 656   declare_constant(Deoptimization::Reason_none)                           \
 657   declare_constant(Deoptimization::Reason_null_check)                     \
 658   declare_constant(Deoptimization::Reason_range_check)                    \
 659   declare_constant(Deoptimization::Reason_class_check)                    \
 660   declare_constant(Deoptimization::Reason_array_check)                    \
 661   declare_constant(Deoptimization::Reason_unreached0)                     \
 662   declare_constant(Deoptimization::Reason_constraint)                     \
 663   declare_constant(Deoptimization::Reason_div0_check)                     \
 664   declare_constant(Deoptimization::Reason_loop_limit_check)               \
 665   declare_constant(Deoptimization::Reason_type_checked_inlining)          \
 666   declare_constant(Deoptimization::Reason_optimized_type_check)           \
 667   declare_constant(Deoptimization::Reason_aliasing)                       \
 668   declare_constant(Deoptimization::Reason_transfer_to_interpreter)        \
 669   declare_constant(Deoptimization::Reason_not_compiled_exception_handler) \
 670   declare_constant(Deoptimization::Reason_unresolved)                     \
 671   declare_constant(Deoptimization::Reason_jsr_mismatch)                   \
 672   declare_constant(Deoptimization::Reason_TRAP_HISTORY_LENGTH)            \
 673   declare_constant(Deoptimization::_support_large_access_byte_array_virtualization) \
 674                                                                           \
 675                                                                           \
 676   declare_constant(InstanceKlass::linked)                                 \
 677   declare_constant(InstanceKlass::being_initialized)                      \
 678   declare_constant(InstanceKlass::fully_initialized)                      \
 679                                                                           \
 680   /*********************************/                                     \
 681   /* InstanceKlass _misc_flags */                                         \
 682   /*********************************/                                     \
 683                                                                           \
 684   declare_constant(InstanceKlassFlags::_misc_has_nonstatic_concrete_methods)   \
 685   declare_constant(InstanceKlassFlags::_misc_declares_nonstatic_concrete_methods) \
 686                                                                           \
 687   declare_constant(JumpData::taken_off_set)                               \
 688   declare_constant(JumpData::displacement_off_set)                        \
 689                                                                           \
 690   declare_preprocessor_constant("JVMCI::ok",                      JVMCI::ok)                      \
 691   declare_preprocessor_constant("JVMCI::dependencies_failed",     JVMCI::dependencies_failed)     \
 692   declare_preprocessor_constant("JVMCI::cache_full",              JVMCI::cache_full)              \
 693   declare_preprocessor_constant("JVMCI::code_too_large",          JVMCI::code_too_large)          \
 694   declare_preprocessor_constant("JVMCI::nmethod_reclaimed",       JVMCI::nmethod_reclaimed)       \
 695   declare_preprocessor_constant("JVMCI::first_permanent_bailout", JVMCI::first_permanent_bailout) \
 696                                                                           \
 697   declare_constant(JVMCIRuntime::none)                                    \
 698   declare_constant(JVMCIRuntime::by_holder)                               \
 699   declare_constant(JVMCIRuntime::by_full_signature)                       \
 700                                                                           \
 701   declare_constant(Klass::_lh_neutral_value)                              \
 702   declare_constant(Klass::_lh_instance_slow_path_bit)                     \
 703   declare_constant(Klass::_lh_log2_element_size_shift)                    \
 704   declare_constant(Klass::_lh_log2_element_size_mask)                     \
 705   declare_constant(Klass::_lh_element_type_shift)                         \
 706   declare_constant(Klass::_lh_element_type_mask)                          \
 707   declare_constant(Klass::_lh_header_size_shift)                          \
 708   declare_constant(Klass::_lh_header_size_mask)                           \
 709   declare_constant(Klass::_lh_array_tag_shift)                            \
 710   declare_constant(Klass::_lh_array_tag_type_value)                       \
 711   declare_constant(Klass::_lh_array_tag_obj_value)                        \
 712                                                                           \
 713   declare_constant(markWord::no_hash)                                     \
 714                                                                           \
 715   declare_constant(MethodFlags::_misc_force_inline)                       \
 716   declare_constant(MethodFlags::_misc_dont_inline)                        \
 717                                                                           \
 718   declare_constant(Method::nonvirtual_vtable_index)                       \
 719   declare_constant(Method::invalid_vtable_index)                          \
 720                                                                           \
 721   declare_constant(MultiBranchData::per_case_cell_count)                  \
 722                                                                           \
 723   AARCH64_ONLY(declare_constant(NMethodPatchingType::stw_instruction_and_data_patch))  \
 724   AARCH64_ONLY(declare_constant(NMethodPatchingType::conc_instruction_and_data_patch)) \
 725   AARCH64_ONLY(declare_constant(NMethodPatchingType::conc_data_patch))                 \
 726                                                                           \
 727   declare_constant(ReceiverTypeData::nonprofiled_count_off_set)           \
 728   declare_constant(ReceiverTypeData::receiver_type_row_cell_count)        \
 729   declare_constant(ReceiverTypeData::receiver0_offset)                    \
 730   declare_constant(ReceiverTypeData::count0_offset)                       \
 731                                                                           \
 732   declare_constant(vmIntrinsics::_invokeBasic)                            \
 733   declare_constant(vmIntrinsics::_linkToVirtual)                          \
 734   declare_constant(vmIntrinsics::_linkToStatic)                           \
 735   declare_constant(vmIntrinsics::_linkToSpecial)                          \
 736   declare_constant(vmIntrinsics::_linkToInterface)                        \
 737                                                                           \
 738   declare_constant(vmSymbols::FIRST_SID)                                  \
 739   declare_constant(vmSymbols::SID_LIMIT)                                  \
 740 
 741 #define VM_LONG_CONSTANTS(declare_constant, declare_preprocessor_constant) \
 742   declare_constant(InvocationCounter::count_increment)                    \
 743   declare_constant(InvocationCounter::count_shift)                        \
 744                                                                           \
 745   declare_constant(markWord::hash_shift)                                  \
 746   declare_constant(markWord::monitor_value)                               \
 747                                                                           \
 748   declare_constant(markWord::lock_mask_in_place)                          \
 749   declare_constant(markWord::age_mask_in_place)                           \
 750   declare_constant(markWord::hash_mask)                                   \
 751   declare_constant(markWord::hash_mask_in_place)                          \
 752                                                                           \
 753   declare_constant(markWord::unlocked_value)                              \
 754                                                                           \
 755   declare_constant(markWord::no_hash_in_place)                            \
 756   declare_constant(markWord::no_lock_in_place)                            \
 757 
 758 #define VM_ADDRESSES(declare_address, declare_preprocessor_address, declare_function) \
 759   declare_function(SharedRuntime::register_finalizer)                     \
 760   declare_function(SharedRuntime::exception_handler_for_return_address)   \
 761   declare_function(SharedRuntime::OSR_migration_end)                      \
 762   declare_function(SharedRuntime::enable_stack_reserved_zone)             \
 763   declare_function(SharedRuntime::frem)                                   \
 764   declare_function(SharedRuntime::drem)                                   \
 765   JVMTI_ONLY(declare_function(SharedRuntime::notify_jvmti_vthread_start)) \
 766   JVMTI_ONLY(declare_function(SharedRuntime::notify_jvmti_vthread_end))   \
 767   JVMTI_ONLY(declare_function(SharedRuntime::notify_jvmti_vthread_mount)) \
 768   JVMTI_ONLY(declare_function(SharedRuntime::notify_jvmti_vthread_unmount)) \
 769                                                                           \
 770   declare_function(os::dll_load)                                          \
 771   declare_function(os::dll_lookup)                                        \
 772   declare_function(os::javaTimeMillis)                                    \
 773   declare_function(os::javaTimeNanos)                                     \
 774                                                                           \
 775   declare_function(Deoptimization::fetch_unroll_info)                     \
 776   declare_function(Deoptimization::uncommon_trap)                         \
 777   declare_function(Deoptimization::unpack_frames)                         \
 778                                                                           \
 779   declare_function(JVMCIRuntime::new_instance) \
 780   declare_function(JVMCIRuntime::new_array) \
 781   declare_function(JVMCIRuntime::new_multi_array) \
 782   declare_function(JVMCIRuntime::dynamic_new_array) \
 783   declare_function(JVMCIRuntime::dynamic_new_instance) \
 784   \
 785   declare_function(JVMCIRuntime::new_instance_or_null) \
 786   declare_function(JVMCIRuntime::new_array_or_null) \
 787   declare_function(JVMCIRuntime::new_multi_array_or_null) \
 788   declare_function(JVMCIRuntime::dynamic_new_array_or_null) \
 789   declare_function(JVMCIRuntime::dynamic_new_instance_or_null) \
 790   \
 791   declare_function(JVMCIRuntime::invoke_static_method_one_arg) \
 792   \
 793   declare_function(JVMCIRuntime::vm_message) \
 794   declare_function(JVMCIRuntime::identity_hash_code) \
 795   declare_function(JVMCIRuntime::exception_handler_for_pc) \
 796   declare_function(JVMCIRuntime::monitorenter) \
 797   declare_function(JVMCIRuntime::monitorexit) \
 798   declare_function(JVMCIRuntime::object_notify) \
 799   declare_function(JVMCIRuntime::object_notifyAll) \
 800   declare_function(JVMCIRuntime::throw_and_post_jvmti_exception) \
 801   declare_function(JVMCIRuntime::throw_klass_external_name_exception) \
 802   declare_function(JVMCIRuntime::throw_class_cast_exception) \
 803   declare_function(JVMCIRuntime::log_primitive) \
 804   declare_function(JVMCIRuntime::log_object) \
 805   declare_function(JVMCIRuntime::log_printf) \
 806   declare_function(JVMCIRuntime::vm_error) \
 807   declare_function(JVMCIRuntime::load_and_clear_exception) \
 808   G1GC_ONLY(declare_function(JVMCIRuntime::write_barrier_pre)) \
 809   G1GC_ONLY(declare_function(JVMCIRuntime::write_barrier_post)) \
 810   declare_function(JVMCIRuntime::validate_object) \
 811   \
 812   declare_function(JVMCIRuntime::test_deoptimize_call_int)
 813 
 814 
 815 #if INCLUDE_G1GC
 816 
 817 #define VM_STRUCTS_JVMCI_G1GC(nonstatic_field, static_field) \
 818   static_field(HeapRegion, LogOfHRGrainBytes, int)
 819 
 820 #define VM_INT_CONSTANTS_JVMCI_G1GC(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
 821   declare_constant_with_value("G1CardTable::g1_young_gen", G1CardTable::g1_young_card_val()) \
 822   declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_active_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_active_offset())) \
 823   declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_index_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_index_offset())) \
 824   declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_buffer_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_buffer_offset())) \
 825   declare_constant_with_value("G1ThreadLocalData::dirty_card_queue_index_offset", in_bytes(G1ThreadLocalData::dirty_card_queue_index_offset())) \
 826   declare_constant_with_value("G1ThreadLocalData::dirty_card_queue_buffer_offset", in_bytes(G1ThreadLocalData::dirty_card_queue_buffer_offset()))
 827 
 828 #endif // INCLUDE_G1GC
 829 
 830 
 831 #ifdef LINUX
 832 
 833 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
 834   declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
 835 
 836 #endif
 837 
 838 
 839 #ifdef BSD
 840 
 841 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
 842   declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
 843 
 844 #endif
 845 
 846 #ifdef AARCH64
 847 
 848 #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) \
 849   static_field(VM_Version, _zva_length, int)                            \
 850   static_field(StubRoutines::aarch64, _count_positives, address)        \
 851   static_field(StubRoutines::aarch64, _count_positives_long, address)   \
 852   static_field(VM_Version, _rop_protection, bool)                       \
 853   volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*)
 854 
 855 #define DECLARE_INT_CPU_FEATURE_CONSTANT(id, name, bit) GENERATE_VM_INT_CONSTANT_ENTRY(VM_Version::CPU_##id)
 856 #define VM_INT_CPU_FEATURE_CONSTANTS CPU_FEATURE_FLAGS(DECLARE_INT_CPU_FEATURE_CONSTANT)
 857 
 858 #endif
 859 
 860 #ifdef X86
 861 
 862 #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) \
 863   volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*) \
 864   static_field(VM_Version, _has_intel_jcc_erratum, bool)
 865 
 866 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
 867   LP64_ONLY(declare_constant(frame::arg_reg_save_area_bytes))       \
 868   declare_constant(frame::interpreter_frame_sender_sp_offset)       \
 869   declare_constant(frame::interpreter_frame_last_sp_offset)
 870 
 871 #define DECLARE_LONG_CPU_FEATURE_CONSTANT(id, name, bit) GENERATE_VM_LONG_CONSTANT_ENTRY(VM_Version::CPU_##id)
 872 #define VM_LONG_CPU_FEATURE_CONSTANTS CPU_FEATURE_FLAGS(DECLARE_LONG_CPU_FEATURE_CONSTANT)
 873 
 874 #endif
 875 
 876 /*
 877  * Dummy defines for architectures that don't use these.
 878  */
 879 #ifndef VM_STRUCTS_CPU
 880 #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)
 881 #endif
 882 
 883 #ifndef VM_INT_CONSTANTS_CPU
 884 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 885 #endif
 886 
 887 #ifndef VM_LONG_CONSTANTS_CPU
 888 #define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 889 #endif
 890 
 891 #ifndef VM_ADDRESSES_OS
 892 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function)
 893 #endif
 894 
 895 //
 896 // Instantiation of VMStructEntries, VMTypeEntries and VMIntConstantEntries
 897 //
 898 
 899 // These initializers are allowed to access private fields in classes
 900 // as long as class VMStructs is a friend
 901 VMStructEntry JVMCIVMStructs::localHotSpotVMStructs[] = {
 902   VM_STRUCTS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 903              GENERATE_STATIC_VM_STRUCT_ENTRY,
 904              GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
 905              GENERATE_NONSTATIC_VM_STRUCT_ENTRY)
 906 
 907   VM_STRUCTS_CPU(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 908                  GENERATE_STATIC_VM_STRUCT_ENTRY,
 909                  GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
 910                  GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 911                  GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
 912                  GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
 913                  GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
 914                  GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
 915 
 916 #if INCLUDE_G1GC
 917   VM_STRUCTS_JVMCI_G1GC(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 918                         GENERATE_STATIC_VM_STRUCT_ENTRY)
 919 #endif
 920 
 921   GENERATE_VM_STRUCT_LAST_ENTRY()
 922 };
 923 
 924 VMTypeEntry JVMCIVMStructs::localHotSpotVMTypes[] = {
 925   VM_TYPES(GENERATE_VM_TYPE_ENTRY,
 926            GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
 927            GENERATE_INTEGER_VM_TYPE_ENTRY,
 928            GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY)
 929 
 930   GENERATE_VM_TYPE_LAST_ENTRY()
 931 };
 932 
 933 VMIntConstantEntry JVMCIVMStructs::localHotSpotVMIntConstants[] = {
 934   VM_INT_CONSTANTS(GENERATE_VM_INT_CONSTANT_ENTRY,
 935                    GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
 936                    GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 937 
 938   VM_INT_CONSTANTS_CPU(GENERATE_VM_INT_CONSTANT_ENTRY,
 939                        GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
 940                        GENERATE_C1_VM_INT_CONSTANT_ENTRY,
 941                        GENERATE_C2_VM_INT_CONSTANT_ENTRY,
 942                        GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 943 
 944 #if INCLUDE_G1GC
 945   VM_INT_CONSTANTS_JVMCI_G1GC(GENERATE_VM_INT_CONSTANT_ENTRY,
 946                               GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
 947                               GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 948 #endif
 949 #ifdef VM_INT_CPU_FEATURE_CONSTANTS
 950   VM_INT_CPU_FEATURE_CONSTANTS
 951 #endif
 952   GENERATE_VM_INT_CONSTANT_LAST_ENTRY()
 953 };
 954 
 955 VMLongConstantEntry JVMCIVMStructs::localHotSpotVMLongConstants[] = {
 956   VM_LONG_CONSTANTS(GENERATE_VM_LONG_CONSTANT_ENTRY,
 957                     GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
 958 
 959   VM_LONG_CONSTANTS_CPU(GENERATE_VM_LONG_CONSTANT_ENTRY,
 960                         GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
 961                         GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
 962                         GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
 963                         GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
 964 #ifdef VM_LONG_CPU_FEATURE_CONSTANTS
 965   VM_LONG_CPU_FEATURE_CONSTANTS
 966 #endif
 967   GENERATE_VM_LONG_CONSTANT_LAST_ENTRY()
 968 };
 969 #undef DECLARE_CPU_FEATURE_FLAG
 970 
 971 VMAddressEntry JVMCIVMStructs::localHotSpotVMAddresses[] = {
 972   VM_ADDRESSES(GENERATE_VM_ADDRESS_ENTRY,
 973                GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
 974                GENERATE_VM_FUNCTION_ENTRY)
 975   VM_ADDRESSES_OS(GENERATE_VM_ADDRESS_ENTRY,
 976                   GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
 977                   GENERATE_VM_FUNCTION_ENTRY)
 978 
 979   GENERATE_VM_ADDRESS_LAST_ENTRY()
 980 };
 981 
 982 int JVMCIVMStructs::localHotSpotVMStructs_count() {
 983   // Ignore sentinel entry at the end
 984   return (sizeof(localHotSpotVMStructs) / sizeof(VMStructEntry)) - 1;
 985 }
 986 int JVMCIVMStructs::localHotSpotVMTypes_count() {
 987   // Ignore sentinel entry at the end
 988   return (sizeof(localHotSpotVMTypes) / sizeof(VMTypeEntry)) - 1;
 989 }
 990 int JVMCIVMStructs::localHotSpotVMIntConstants_count() {
 991   // Ignore sentinel entry at the end
 992   return (sizeof(localHotSpotVMIntConstants) / sizeof(VMIntConstantEntry)) - 1;
 993 }
 994 int JVMCIVMStructs::localHotSpotVMLongConstants_count() {
 995   // Ignore sentinel entry at the end
 996   return (sizeof(localHotSpotVMLongConstants) / sizeof(VMLongConstantEntry)) - 1;
 997 }
 998 int JVMCIVMStructs::localHotSpotVMAddresses_count() {
 999   // Ignore sentinel entry at the end
1000   return (sizeof(localHotSpotVMAddresses) / sizeof(VMAddressEntry)) - 1;
1001 }
1002 
1003 extern "C" {
1004 JNIEXPORT VMStructEntry* jvmciHotSpotVMStructs = JVMCIVMStructs::localHotSpotVMStructs;
1005 JNIEXPORT VMTypeEntry* jvmciHotSpotVMTypes = JVMCIVMStructs::localHotSpotVMTypes;
1006 JNIEXPORT VMIntConstantEntry* jvmciHotSpotVMIntConstants = JVMCIVMStructs::localHotSpotVMIntConstants;
1007 JNIEXPORT VMLongConstantEntry* jvmciHotSpotVMLongConstants = JVMCIVMStructs::localHotSpotVMLongConstants;
1008 JNIEXPORT VMAddressEntry* jvmciHotSpotVMAddresses = JVMCIVMStructs::localHotSpotVMAddresses;
1009 }
1010 
1011 #ifdef ASSERT
1012 // This is used both to check the types of referenced fields and
1013 // to ensure that all of the field types are present.
1014 void JVMCIVMStructs::init() {
1015   VM_STRUCTS(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
1016              CHECK_STATIC_VM_STRUCT_ENTRY,
1017              CHECK_NO_OP,
1018              CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY);
1019 
1020 
1021   VM_STRUCTS_CPU(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
1022                  CHECK_STATIC_VM_STRUCT_ENTRY,
1023                  CHECK_NO_OP,
1024                  CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY,
1025                  CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
1026                  CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY,
1027                  CHECK_NO_OP,
1028                  CHECK_NO_OP);
1029 
1030 #if INCLUDE_G1GC
1031   VM_STRUCTS_JVMCI_G1GC(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
1032                         CHECK_STATIC_VM_STRUCT_ENTRY)
1033 #endif
1034 
1035   VM_TYPES(CHECK_VM_TYPE_ENTRY,
1036            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
1037            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
1038            CHECK_SINGLE_ARG_VM_TYPE_NO_OP);
1039 }
1040 
1041 void jvmci_vmStructs_init() {
1042   JVMCIVMStructs::init();
1043 }
1044 #endif // ASSERT