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