1 /*
   2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "code/codeBlob.hpp"
  27 #include "compiler/abstractCompiler.hpp"
  28 #include "compiler/compileBroker.hpp"
  29 #include "jvmci/jvmciCodeInstaller.hpp"
  30 #include "jvmci/jvmciCompilerToVM.hpp"
  31 #include "jvmci/jvmciEnv.hpp"
  32 #include "jvmci/jvmciRuntime.hpp"
  33 #include "jvmci/vmStructs_jvmci.hpp"
  34 #include "oops/oop.hpp"
  35 #include "oops/objArrayKlass.hpp"
  36 #include "runtime/globals.hpp"
  37 #include "runtime/sharedRuntime.hpp"
  38 #include "runtime/thread.hpp"
  39 #include "runtime/vm_version.hpp"
  40 
  41 #if INCLUDE_ALL_GCS
  42 #include "gc/g1/g1SATBCardTableModRefBS.hpp"
  43 #include "gc/g1/heapRegion.hpp"
  44 #endif
  45 
  46 
  47 #define VM_STRUCTS(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field) \
  48   static_field(CompilerToVM::Data,             Klass_vtable_start_offset,              int)                                          \
  49   static_field(CompilerToVM::Data,             Klass_vtable_length_offset,             int)                                          \
  50                                                                                                                                      \
  51   static_field(CompilerToVM::Data,             Method_extra_stack_entries,             int)                                          \
  52                                                                                                                                      \
  53   static_field(CompilerToVM::Data,             SharedRuntime_ic_miss_stub,             address)                                      \
  54   static_field(CompilerToVM::Data,             SharedRuntime_handle_wrong_method_stub, address)                                      \
  55   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_unpack,        address)                                      \
  56   static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_uncommon_trap, address)                                      \
  57                                                                                                                                      \
  58   static_field(CompilerToVM::Data,             ThreadLocalAllocBuffer_alignment_reserve, size_t)                                     \
  59                                                                                                                                      \
  60   static_field(CompilerToVM::Data,             Universe_collectedHeap,                 CollectedHeap*)                               \
  61   static_field(CompilerToVM::Data,             Universe_base_vtable_size,              int)                                          \
  62   static_field(CompilerToVM::Data,             Universe_narrow_oop_base,               address)                                      \
  63   static_field(CompilerToVM::Data,             Universe_narrow_oop_shift,              int)                                          \
  64   static_field(CompilerToVM::Data,             Universe_narrow_klass_base,             address)                                      \
  65   static_field(CompilerToVM::Data,             Universe_narrow_klass_shift,            int)                                          \
  66   static_field(CompilerToVM::Data,             Universe_non_oop_bits,                  void*)                                        \
  67   static_field(CompilerToVM::Data,             Universe_verify_oop_mask,               uintptr_t)                                    \
  68   static_field(CompilerToVM::Data,             Universe_verify_oop_bits,               uintptr_t)                                    \
  69                                                                                                                                      \
  70   static_field(CompilerToVM::Data,             _supports_inline_contig_alloc,          bool)                                         \
  71   static_field(CompilerToVM::Data,             _heap_end_addr,                         HeapWord**)                                   \
  72   static_field(CompilerToVM::Data,             _heap_top_addr,                         HeapWord**)                                   \
  73                                                                                                                                      \
  74   static_field(CompilerToVM::Data,             cardtable_start_address,                jbyte*)                                       \
  75   static_field(CompilerToVM::Data,             cardtable_shift,                        int)                                          \
  76                                                                                                                                      \
  77   static_field(CompilerToVM::Data,             vm_page_size,                           int)                                          \
  78                                                                                                                                      \
  79   static_field(Abstract_VM_Version,            _features,                              uint64_t)                                     \
  80                                                                                                                                      \
  81   nonstatic_field(Array<int>,                  _length,                                int)                                          \
  82   unchecked_nonstatic_field(Array<u1>,         _data,                                  sizeof(u1))                                   \
  83   unchecked_nonstatic_field(Array<u2>,         _data,                                  sizeof(u2))                                   \
  84   nonstatic_field(Array<Klass*>,               _length,                                int)                                          \
  85   nonstatic_field(Array<Klass*>,               _data[0],                               Klass*)                                       \
  86                                                                                                                                      \
  87   volatile_nonstatic_field(BasicLock,          _displaced_header,                      markOop)                                      \
  88                                                                                                                                      \
  89   static_field(CodeCache,                      _low_bound,                             address)                                      \
  90   static_field(CodeCache,                      _high_bound,                            address)                                      \
  91                                                                                                                                      \
  92   nonstatic_field(CollectedHeap,               _total_collections,                     unsigned int)                                 \
  93                                                                                                                                      \
  94   nonstatic_field(CompileTask,                 _num_inlined_bytecodes,                 int)                                          \
  95                                                                                                                                      \
  96   nonstatic_field(ConstantPool,                _tags,                                  Array<u1>*)                                   \
  97   nonstatic_field(ConstantPool,                _pool_holder,                           InstanceKlass*)                               \
  98   nonstatic_field(ConstantPool,                _length,                                int)                                          \
  99                                                                                                                                      \
 100   nonstatic_field(ConstMethod,                 _constants,                             ConstantPool*)                                \
 101   nonstatic_field(ConstMethod,                 _flags,                                 u2)                                           \
 102   nonstatic_field(ConstMethod,                 _code_size,                             u2)                                           \
 103   nonstatic_field(ConstMethod,                 _name_index,                            u2)                                           \
 104   nonstatic_field(ConstMethod,                 _signature_index,                       u2)                                           \
 105   nonstatic_field(ConstMethod,                 _max_stack,                             u2)                                           \
 106   nonstatic_field(ConstMethod,                 _max_locals,                            u2)                                           \
 107                                                                                                                                      \
 108   nonstatic_field(DataLayout,                  _header._struct._tag,                   u1)                                           \
 109   nonstatic_field(DataLayout,                  _header._struct._flags,                 u1)                                           \
 110   nonstatic_field(DataLayout,                  _header._struct._bci,                   u2)                                           \
 111   nonstatic_field(DataLayout,                  _cells[0],                              intptr_t)                                     \
 112                                                                                                                                      \
 113   nonstatic_field(Deoptimization::UnrollBlock, _size_of_deoptimized_frame,             int)                                          \
 114   nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment,                     int)                                          \
 115   nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames,                      int)                                          \
 116   nonstatic_field(Deoptimization::UnrollBlock, _total_frame_sizes,                     int)                                          \
 117   nonstatic_field(Deoptimization::UnrollBlock, _frame_sizes,                           intptr_t*)                                    \
 118   nonstatic_field(Deoptimization::UnrollBlock, _frame_pcs,                             address*)                                     \
 119   nonstatic_field(Deoptimization::UnrollBlock, _initial_info,                          intptr_t)                                     \
 120   nonstatic_field(Deoptimization::UnrollBlock, _unpack_kind,                           int)                                          \
 121                                                                                                                                      \
 122   nonstatic_field(ExceptionTableElement,       start_pc,                                       u2)                                   \
 123   nonstatic_field(ExceptionTableElement,       end_pc,                                         u2)                                   \
 124   nonstatic_field(ExceptionTableElement,       handler_pc,                                     u2)                                   \
 125   nonstatic_field(ExceptionTableElement,       catch_type_index,                               u2)                                   \
 126                                                                                                                                      \
 127   nonstatic_field(Flag,                        _type,                                          const char*)                          \
 128   nonstatic_field(Flag,                        _name,                                          const char*)                          \
 129   unchecked_nonstatic_field(Flag,              _addr,                                          sizeof(void*))                        \
 130   nonstatic_field(Flag,                        _flags,                                         Flag::Flags)                          \
 131   static_field(Flag,                           flags,                                          Flag*)                                \
 132                                                                                                                                      \
 133   nonstatic_field(InstanceKlass,               _fields,                                       Array<u2>*)                            \
 134   nonstatic_field(InstanceKlass,               _constants,                                    ConstantPool*)                         \
 135   nonstatic_field(InstanceKlass,               _source_file_name_index,                       u2)                                    \
 136   nonstatic_field(InstanceKlass,               _init_state,                                   u1)                                    \
 137                                                                                                                                      \
 138   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_sp,                                 intptr_t*)                             \
 139   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_pc,                                 address)                               \
 140                                                                                                                                      \
 141   nonstatic_field(JavaThread,                  _threadObj,                                    oop)                                   \
 142   nonstatic_field(JavaThread,                  _anchor,                                       JavaFrameAnchor)                       \
 143   nonstatic_field(JavaThread,                  _vm_result,                                    oop)                                   \
 144   volatile_nonstatic_field(JavaThread,         _exception_oop,                                oop)                                   \
 145   volatile_nonstatic_field(JavaThread,         _exception_pc,                                 address)                               \
 146   volatile_nonstatic_field(JavaThread,         _is_method_handle_return,                      int)                                   \
 147   nonstatic_field(JavaThread,                  _osthread,                                     OSThread*)                             \
 148   nonstatic_field(JavaThread,                  _satb_mark_queue,                              SATBMarkQueue)                         \
 149   nonstatic_field(JavaThread,                  _dirty_card_queue,                             DirtyCardQueue)                        \
 150   nonstatic_field(JavaThread,                  _pending_deoptimization,                       int)                                   \
 151   nonstatic_field(JavaThread,                  _pending_failed_speculation,                   oop)                                   \
 152   nonstatic_field(JavaThread,                  _pending_transfer_to_interpreter,              bool)                                  \
 153   nonstatic_field(JavaThread,                  _jvmci_counters,                               jlong*)                                \
 154   nonstatic_field(JavaThread,                  _reserved_stack_activation,                    address)                               \
 155                                                                                                                                      \
 156   static_field(java_lang_Class,                _klass_offset,                                 int)                                   \
 157   static_field(java_lang_Class,                _array_klass_offset,                           int)                                   \
 158                                                                                                                                      \
 159   nonstatic_field(JVMCIEnv,                    _task,                                         CompileTask*)                          \
 160   nonstatic_field(JVMCIEnv,                    _jvmti_can_hotswap_or_post_breakpoint,         bool)                                  \
 161                                                                                                                                      \
 162   nonstatic_field(Klass,                       _secondary_super_cache,                        Klass*)                                \
 163   nonstatic_field(Klass,                       _secondary_supers,                             Array<Klass*>*)                        \
 164   nonstatic_field(Klass,                       _super,                                        Klass*)                                \
 165   nonstatic_field(Klass,                       _super_check_offset,                           juint)                                 \
 166   nonstatic_field(Klass,                       _subklass,                                     Klass*)                                \
 167   nonstatic_field(Klass,                       _layout_helper,                                jint)                                  \
 168   nonstatic_field(Klass,                       _prototype_header,                             markOop)                               \
 169   nonstatic_field(Klass,                       _next_sibling,                                 Klass*)                                \
 170   nonstatic_field(Klass,                       _java_mirror,                                  oop)                                   \
 171   nonstatic_field(Klass,                       _modifier_flags,                               jint)                                  \
 172   nonstatic_field(Klass,                       _access_flags,                                 AccessFlags)                           \
 173                                                                                                                                      \
 174   nonstatic_field(LocalVariableTableElement,   start_bci,                                     u2)                                    \
 175   nonstatic_field(LocalVariableTableElement,   length,                                        u2)                                    \
 176   nonstatic_field(LocalVariableTableElement,   name_cp_index,                                 u2)                                    \
 177   nonstatic_field(LocalVariableTableElement,   descriptor_cp_index,                           u2)                                    \
 178   nonstatic_field(LocalVariableTableElement,   signature_cp_index,                            u2)                                    \
 179   nonstatic_field(LocalVariableTableElement,   slot,                                          u2)                                    \
 180                                                                                                                                      \
 181   nonstatic_field(Method,                      _constMethod,                                  ConstMethod*)                          \
 182   nonstatic_field(Method,                      _method_data,                                  MethodData*)                           \
 183   nonstatic_field(Method,                      _method_counters,                              MethodCounters*)                       \
 184   nonstatic_field(Method,                      _access_flags,                                 AccessFlags)                           \
 185   nonstatic_field(Method,                      _vtable_index,                                 int)                                   \
 186   nonstatic_field(Method,                      _intrinsic_id,                                 u2)                                    \
 187   nonstatic_field(Method,                      _flags,                                        u2)                                    \
 188   volatile_nonstatic_field(Method,             _code,                                         nmethod*)                              \
 189   volatile_nonstatic_field(Method,             _from_compiled_entry,                          address)                               \
 190                                                                                                                                      \
 191   nonstatic_field(MethodCounters,              _invocation_counter,                           InvocationCounter)                     \
 192   nonstatic_field(MethodCounters,              _backedge_counter,                             InvocationCounter)                     \
 193                                                                                                                                      \
 194   nonstatic_field(MethodData,                  _size,                                         int)                                   \
 195   nonstatic_field(MethodData,                  _data_size,                                    int)                                   \
 196   nonstatic_field(MethodData,                  _data[0],                                      intptr_t)                              \
 197   nonstatic_field(MethodData,                  _trap_hist._array[0],                          u1)                                    \
 198   nonstatic_field(MethodData,                  _jvmci_ir_size,                                int)                                   \
 199                                                                                                                                      \
 200   nonstatic_field(nmethod,                     _verified_entry_point,                         address)                               \
 201   nonstatic_field(nmethod,                     _comp_level,                                   int)                                   \
 202                                                                                                                                      \
 203   nonstatic_field(ObjArrayKlass,               _element_klass,                                Klass*)                                \
 204                                                                                                                                      \
 205   volatile_nonstatic_field(oopDesc,            _mark,                                         markOop)                               \
 206   volatile_nonstatic_field(oopDesc,            _metadata._klass,                              Klass*)                                \
 207                                                                                                                                      \
 208   static_field(os,                             _polling_page,                                 address)                               \
 209                                                                                                                                      \
 210   volatile_nonstatic_field(OSThread,           _interrupted,                                  jint)                                  \
 211                                                                                                                                      \
 212   static_field(StubRoutines,                _verify_oop_count,                                jint)                                  \
 213                                                                                                                                      \
 214   static_field(StubRoutines,                _throw_delayed_StackOverflowError_entry,          address)                               \
 215                                                                                                                                      \
 216   static_field(StubRoutines,                _jbyte_arraycopy,                                 address)                               \
 217   static_field(StubRoutines,                _jshort_arraycopy,                                address)                               \
 218   static_field(StubRoutines,                _jint_arraycopy,                                  address)                               \
 219   static_field(StubRoutines,                _jlong_arraycopy,                                 address)                               \
 220   static_field(StubRoutines,                _oop_arraycopy,                                   address)                               \
 221   static_field(StubRoutines,                _oop_arraycopy_uninit,                            address)                               \
 222   static_field(StubRoutines,                _jbyte_disjoint_arraycopy,                        address)                               \
 223   static_field(StubRoutines,                _jshort_disjoint_arraycopy,                       address)                               \
 224   static_field(StubRoutines,                _jint_disjoint_arraycopy,                         address)                               \
 225   static_field(StubRoutines,                _jlong_disjoint_arraycopy,                        address)                               \
 226   static_field(StubRoutines,                _oop_disjoint_arraycopy,                          address)                               \
 227   static_field(StubRoutines,                _oop_disjoint_arraycopy_uninit,                   address)                               \
 228   static_field(StubRoutines,                _arrayof_jbyte_arraycopy,                         address)                               \
 229   static_field(StubRoutines,                _arrayof_jshort_arraycopy,                        address)                               \
 230   static_field(StubRoutines,                _arrayof_jint_arraycopy,                          address)                               \
 231   static_field(StubRoutines,                _arrayof_jlong_arraycopy,                         address)                               \
 232   static_field(StubRoutines,                _arrayof_oop_arraycopy,                           address)                               \
 233   static_field(StubRoutines,                _arrayof_oop_arraycopy_uninit,                    address)                               \
 234   static_field(StubRoutines,                _arrayof_jbyte_disjoint_arraycopy,                address)                               \
 235   static_field(StubRoutines,                _arrayof_jshort_disjoint_arraycopy,               address)                               \
 236   static_field(StubRoutines,                _arrayof_jint_disjoint_arraycopy,                 address)                               \
 237   static_field(StubRoutines,                _arrayof_jlong_disjoint_arraycopy,                address)                               \
 238   static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy,                  address)                               \
 239   static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy_uninit,           address)                               \
 240   static_field(StubRoutines,                _checkcast_arraycopy,                             address)                               \
 241   static_field(StubRoutines,                _checkcast_arraycopy_uninit,                      address)                               \
 242   static_field(StubRoutines,                _unsafe_arraycopy,                                address)                               \
 243   static_field(StubRoutines,                _generic_arraycopy,                               address)                               \
 244                                                                                                                                      \
 245   static_field(StubRoutines,                _aescrypt_encryptBlock,                           address)                               \
 246   static_field(StubRoutines,                _aescrypt_decryptBlock,                           address)                               \
 247   static_field(StubRoutines,                _cipherBlockChaining_encryptAESCrypt,             address)                               \
 248   static_field(StubRoutines,                _cipherBlockChaining_decryptAESCrypt,             address)                               \
 249   static_field(StubRoutines,                _updateBytesCRC32,                                address)                               \
 250   static_field(StubRoutines,                _crc_table_adr,                                   address)                               \
 251                                                                                                                                      \
 252   nonstatic_field(Thread,                   _tlab,                                            ThreadLocalAllocBuffer)                \
 253   nonstatic_field(Thread,                   _allocated_bytes,                                 jlong)                                 \
 254                                                                                                                                      \
 255   nonstatic_field(ThreadLocalAllocBuffer,   _start,                                           HeapWord*)                             \
 256   nonstatic_field(ThreadLocalAllocBuffer,   _top,                                             HeapWord*)                             \
 257   nonstatic_field(ThreadLocalAllocBuffer,   _end,                                             HeapWord*)                             \
 258   nonstatic_field(ThreadLocalAllocBuffer,   _pf_top,                                          HeapWord*)                             \
 259   nonstatic_field(ThreadLocalAllocBuffer,   _desired_size,                                    size_t)                                \
 260   nonstatic_field(ThreadLocalAllocBuffer,   _refill_waste_limit,                              size_t)                                \
 261   nonstatic_field(ThreadLocalAllocBuffer,   _number_of_refills,                               unsigned)                              \
 262   nonstatic_field(ThreadLocalAllocBuffer,   _fast_refill_waste,                               unsigned)                              \
 263   nonstatic_field(ThreadLocalAllocBuffer,   _slow_allocations,                                unsigned)                              \
 264                                                                                                                                      \
 265   nonstatic_field(ThreadShadow,             _pending_exception,                               oop)                                   \
 266                                                                                                                                      \
 267   static_field(vmSymbols,                   _symbols[0],                                      Symbol*)                               \
 268                                                                                                                                      \
 269   nonstatic_field(vtableEntry,              _method,                                          Method*)                               \
 270 
 271 #define VM_TYPES(declare_type, declare_toplevel_type, declare_integer_type, declare_unsigned_integer_type) \
 272   declare_integer_type(bool)                                              \
 273   declare_unsigned_integer_type(size_t)                                   \
 274   declare_integer_type(intx)                                              \
 275   declare_unsigned_integer_type(uintx)                                    \
 276                                                                           \
 277   declare_toplevel_type(BasicLock)                                        \
 278   declare_toplevel_type(CompilerToVM)                                     \
 279   declare_toplevel_type(ExceptionTableElement)                            \
 280   declare_toplevel_type(Flag)                                             \
 281   declare_toplevel_type(Flag*)                                            \
 282   declare_toplevel_type(JVMCIEnv)                                         \
 283   declare_toplevel_type(LocalVariableTableElement)                        \
 284   declare_toplevel_type(narrowKlass)                                      \
 285   declare_toplevel_type(Symbol*)                                          \
 286   declare_toplevel_type(vtableEntry)                                      \
 287                                                                           \
 288   declare_toplevel_type(oopDesc)                                          \
 289     declare_type(arrayOopDesc, oopDesc)                                   \
 290                                                                           \
 291   declare_toplevel_type(MetaspaceObj)                                     \
 292     declare_type(Metadata, MetaspaceObj)                                  \
 293     declare_type(Klass, Metadata)                                         \
 294       declare_type(InstanceKlass, Klass)                                  \
 295     declare_type(ConstantPool, Metadata)                                  \
 296 
 297 #define VM_INT_CONSTANTS(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
 298   declare_preprocessor_constant("ASSERT", DEBUG_ONLY(1) NOT_DEBUG(0))     \
 299   declare_preprocessor_constant("FIELDINFO_TAG_SIZE", FIELDINFO_TAG_SIZE) \
 300   declare_preprocessor_constant("STACK_BIAS", STACK_BIAS)                 \
 301                                                                           \
 302   declare_constant(CompLevel_full_optimization)                           \
 303   declare_constant(HeapWordSize)                                          \
 304   declare_constant(InvocationEntryBci)                                    \
 305   declare_constant(LogKlassAlignmentInBytes)                              \
 306                                                                           \
 307   declare_constant(JVM_ACC_WRITTEN_FLAGS)                                 \
 308   declare_constant(JVM_ACC_MONITOR_MATCH)                                 \
 309   declare_constant(JVM_ACC_HAS_MONITOR_BYTECODES)                         \
 310   declare_constant(JVM_ACC_HAS_FINALIZER)                                 \
 311   declare_constant(JVM_ACC_FIELD_INTERNAL)                                \
 312   declare_constant(JVM_ACC_FIELD_STABLE)                                  \
 313   declare_constant(JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE)                   \
 314   declare_preprocessor_constant("JVM_ACC_SYNTHETIC", JVM_ACC_SYNTHETIC)   \
 315   declare_preprocessor_constant("JVM_RECOGNIZED_FIELD_MODIFIERS", JVM_RECOGNIZED_FIELD_MODIFIERS) \
 316                                                                           \
 317   declare_constant(JVM_CONSTANT_Utf8)                                     \
 318   declare_constant(JVM_CONSTANT_Unicode)                                  \
 319   declare_constant(JVM_CONSTANT_Integer)                                  \
 320   declare_constant(JVM_CONSTANT_Float)                                    \
 321   declare_constant(JVM_CONSTANT_Long)                                     \
 322   declare_constant(JVM_CONSTANT_Double)                                   \
 323   declare_constant(JVM_CONSTANT_Class)                                    \
 324   declare_constant(JVM_CONSTANT_String)                                   \
 325   declare_constant(JVM_CONSTANT_Fieldref)                                 \
 326   declare_constant(JVM_CONSTANT_Methodref)                                \
 327   declare_constant(JVM_CONSTANT_InterfaceMethodref)                       \
 328   declare_constant(JVM_CONSTANT_NameAndType)                              \
 329   declare_constant(JVM_CONSTANT_MethodHandle)                             \
 330   declare_constant(JVM_CONSTANT_MethodType)                               \
 331   declare_constant(JVM_CONSTANT_InvokeDynamic)                            \
 332   declare_constant(JVM_CONSTANT_ExternalMax)                              \
 333                                                                           \
 334   declare_constant(JVM_CONSTANT_Invalid)                                  \
 335   declare_constant(JVM_CONSTANT_InternalMin)                              \
 336   declare_constant(JVM_CONSTANT_UnresolvedClass)                          \
 337   declare_constant(JVM_CONSTANT_ClassIndex)                               \
 338   declare_constant(JVM_CONSTANT_StringIndex)                              \
 339   declare_constant(JVM_CONSTANT_UnresolvedClassInError)                   \
 340   declare_constant(JVM_CONSTANT_MethodHandleInError)                      \
 341   declare_constant(JVM_CONSTANT_MethodTypeInError)                        \
 342   declare_constant(JVM_CONSTANT_InternalMax)                              \
 343                                                                           \
 344   declare_constant(ArrayData::array_len_off_set)                          \
 345   declare_constant(ArrayData::array_start_off_set)                        \
 346                                                                           \
 347   declare_constant(BitData::exception_seen_flag)                          \
 348   declare_constant(BitData::null_seen_flag)                               \
 349   declare_constant(BranchData::not_taken_off_set)                         \
 350                                                                           \
 351   declare_constant_with_value("CardTableModRefBS::dirty_card", CardTableModRefBS::dirty_card_val()) \
 352                                                                           \
 353   declare_constant(CodeInstaller::VERIFIED_ENTRY)                         \
 354   declare_constant(CodeInstaller::UNVERIFIED_ENTRY)                       \
 355   declare_constant(CodeInstaller::OSR_ENTRY)                              \
 356   declare_constant(CodeInstaller::EXCEPTION_HANDLER_ENTRY)                \
 357   declare_constant(CodeInstaller::DEOPT_HANDLER_ENTRY)                    \
 358   declare_constant(CodeInstaller::INVOKEINTERFACE)                        \
 359   declare_constant(CodeInstaller::INVOKEVIRTUAL)                          \
 360   declare_constant(CodeInstaller::INVOKESTATIC)                           \
 361   declare_constant(CodeInstaller::INVOKESPECIAL)                          \
 362   declare_constant(CodeInstaller::INLINE_INVOKE)                          \
 363   declare_constant(CodeInstaller::POLL_NEAR)                              \
 364   declare_constant(CodeInstaller::POLL_RETURN_NEAR)                       \
 365   declare_constant(CodeInstaller::POLL_FAR)                               \
 366   declare_constant(CodeInstaller::POLL_RETURN_FAR)                        \
 367   declare_constant(CodeInstaller::CARD_TABLE_SHIFT)                       \
 368   declare_constant(CodeInstaller::CARD_TABLE_ADDRESS)                     \
 369   declare_constant(CodeInstaller::HEAP_TOP_ADDRESS)                       \
 370   declare_constant(CodeInstaller::HEAP_END_ADDRESS)                       \
 371   declare_constant(CodeInstaller::NARROW_KLASS_BASE_ADDRESS)              \
 372   declare_constant(CodeInstaller::CRC_TABLE_ADDRESS)                      \
 373   declare_constant(CodeInstaller::INVOKE_INVALID)                         \
 374                                                                           \
 375   declare_constant(ConstantPool::CPCACHE_INDEX_TAG)                       \
 376                                                                           \
 377   declare_constant(ConstMethod::_has_linenumber_table)                    \
 378   declare_constant(ConstMethod::_has_localvariable_table)                 \
 379   declare_constant(ConstMethod::_has_exception_table)                     \
 380                                                                           \
 381   declare_constant(CounterData::count_off)                                \
 382                                                                           \
 383   declare_constant(DataLayout::cell_size)                                 \
 384   declare_constant(DataLayout::no_tag)                                    \
 385   declare_constant(DataLayout::bit_data_tag)                              \
 386   declare_constant(DataLayout::counter_data_tag)                          \
 387   declare_constant(DataLayout::jump_data_tag)                             \
 388   declare_constant(DataLayout::receiver_type_data_tag)                    \
 389   declare_constant(DataLayout::virtual_call_data_tag)                     \
 390   declare_constant(DataLayout::ret_data_tag)                              \
 391   declare_constant(DataLayout::branch_data_tag)                           \
 392   declare_constant(DataLayout::multi_branch_data_tag)                     \
 393   declare_constant(DataLayout::arg_info_data_tag)                         \
 394   declare_constant(DataLayout::call_type_data_tag)                        \
 395   declare_constant(DataLayout::virtual_call_type_data_tag)                \
 396   declare_constant(DataLayout::parameters_type_data_tag)                  \
 397   declare_constant(DataLayout::speculative_trap_data_tag)                 \
 398                                                                           \
 399   declare_constant(Deoptimization::Unpack_deopt)                          \
 400   declare_constant(Deoptimization::Unpack_exception)                      \
 401   declare_constant(Deoptimization::Unpack_uncommon_trap)                  \
 402   declare_constant(Deoptimization::Unpack_reexecute)                      \
 403                                                                           \
 404   declare_constant(Deoptimization::_action_bits)                          \
 405   declare_constant(Deoptimization::_reason_bits)                          \
 406   declare_constant(Deoptimization::_debug_id_bits)                        \
 407   declare_constant(Deoptimization::_action_shift)                         \
 408   declare_constant(Deoptimization::_reason_shift)                         \
 409   declare_constant(Deoptimization::_debug_id_shift)                       \
 410                                                                           \
 411   declare_constant(Deoptimization::Action_none)                           \
 412   declare_constant(Deoptimization::Action_maybe_recompile)                \
 413   declare_constant(Deoptimization::Action_reinterpret)                    \
 414   declare_constant(Deoptimization::Action_make_not_entrant)               \
 415   declare_constant(Deoptimization::Action_make_not_compilable)            \
 416                                                                           \
 417   declare_constant(Deoptimization::Reason_none)                           \
 418   declare_constant(Deoptimization::Reason_null_check)                     \
 419   declare_constant(Deoptimization::Reason_range_check)                    \
 420   declare_constant(Deoptimization::Reason_class_check)                    \
 421   declare_constant(Deoptimization::Reason_array_check)                    \
 422   declare_constant(Deoptimization::Reason_unreached0)                     \
 423   declare_constant(Deoptimization::Reason_constraint)                     \
 424   declare_constant(Deoptimization::Reason_div0_check)                     \
 425   declare_constant(Deoptimization::Reason_loop_limit_check)               \
 426   declare_constant(Deoptimization::Reason_type_checked_inlining)          \
 427   declare_constant(Deoptimization::Reason_optimized_type_check)           \
 428   declare_constant(Deoptimization::Reason_aliasing)                       \
 429   declare_constant(Deoptimization::Reason_transfer_to_interpreter)        \
 430   declare_constant(Deoptimization::Reason_not_compiled_exception_handler) \
 431   declare_constant(Deoptimization::Reason_unresolved)                     \
 432   declare_constant(Deoptimization::Reason_jsr_mismatch)                   \
 433   declare_constant(Deoptimization::Reason_LIMIT)                          \
 434                                                                           \
 435   declare_constant_with_value("dirtyCardQueueBufferOffset", in_bytes(DirtyCardQueue::byte_offset_of_buf())) \
 436   declare_constant_with_value("dirtyCardQueueIndexOffset", in_bytes(DirtyCardQueue::byte_offset_of_index())) \
 437                                                                           \
 438   declare_constant(FieldInfo::access_flags_offset)                        \
 439   declare_constant(FieldInfo::name_index_offset)                          \
 440   declare_constant(FieldInfo::signature_index_offset)                     \
 441   declare_constant(FieldInfo::initval_index_offset)                       \
 442   declare_constant(FieldInfo::low_packed_offset)                          \
 443   declare_constant(FieldInfo::high_packed_offset)                         \
 444   declare_constant(FieldInfo::field_slots)                                \
 445                                                                           \
 446   declare_constant(InstanceKlass::linked)                                 \
 447   declare_constant(InstanceKlass::fully_initialized)                      \
 448                                                                           \
 449   declare_constant(JumpData::taken_off_set)                               \
 450   declare_constant(JumpData::displacement_off_set)                        \
 451                                                                           \
 452   declare_constant(JVMCIEnv::ok)                                          \
 453   declare_constant(JVMCIEnv::dependencies_failed)                         \
 454   declare_constant(JVMCIEnv::dependencies_invalid)                        \
 455   declare_constant(JVMCIEnv::cache_full)                                  \
 456   declare_constant(JVMCIEnv::code_too_large)                              \
 457                                                                           \
 458   declare_constant(Klass::_lh_neutral_value)                              \
 459   declare_constant(Klass::_lh_instance_slow_path_bit)                     \
 460   declare_constant(Klass::_lh_log2_element_size_shift)                    \
 461   declare_constant(Klass::_lh_log2_element_size_mask)                     \
 462   declare_constant(Klass::_lh_element_type_shift)                         \
 463   declare_constant(Klass::_lh_element_type_mask)                          \
 464   declare_constant(Klass::_lh_header_size_shift)                          \
 465   declare_constant(Klass::_lh_header_size_mask)                           \
 466   declare_constant(Klass::_lh_array_tag_shift)                            \
 467   declare_constant(Klass::_lh_array_tag_type_value)                       \
 468   declare_constant(Klass::_lh_array_tag_obj_value)                        \
 469                                                                           \
 470   declare_constant(markOopDesc::no_hash)                                  \
 471                                                                           \
 472   declare_constant(Method::_jfr_towrite)                                  \
 473   declare_constant(Method::_caller_sensitive)                             \
 474   declare_constant(Method::_force_inline)                                 \
 475   declare_constant(Method::_dont_inline)                                  \
 476   declare_constant(Method::_hidden)                                       \
 477   declare_constant(Method::_reserved_stack_access)                        \
 478                                                                           \
 479   declare_constant(Method::nonvirtual_vtable_index)                       \
 480   declare_constant(Method::invalid_vtable_index)                          \
 481                                                                           \
 482   declare_constant(MultiBranchData::per_case_cell_count)                  \
 483                                                                           \
 484   declare_constant(ReceiverTypeData::nonprofiled_count_off_set)           \
 485   declare_constant(ReceiverTypeData::receiver_type_row_cell_count)        \
 486   declare_constant(ReceiverTypeData::receiver0_offset)                    \
 487   declare_constant(ReceiverTypeData::count0_offset)                       \
 488                                                                           \
 489   declare_constant_with_value("satbMarkQueueBufferOffset", in_bytes(SATBMarkQueue::byte_offset_of_buf())) \
 490   declare_constant_with_value("satbMarkQueueIndexOffset", in_bytes(SATBMarkQueue::byte_offset_of_index())) \
 491   declare_constant_with_value("satbMarkQueueActiveOffset", in_bytes(SATBMarkQueue::byte_offset_of_active())) \
 492                                                                           \
 493   declare_constant(vmIntrinsics::_invokeBasic)                            \
 494   declare_constant(vmIntrinsics::_linkToVirtual)                          \
 495   declare_constant(vmIntrinsics::_linkToStatic)                           \
 496   declare_constant(vmIntrinsics::_linkToSpecial)                          \
 497   declare_constant(vmIntrinsics::_linkToInterface)                        \
 498                                                                           \
 499   declare_constant(vmSymbols::FIRST_SID)                                  \
 500   declare_constant(vmSymbols::SID_LIMIT)                                  \
 501 
 502 #define VM_LONG_CONSTANTS(declare_constant, declare_preprocessor_constant) \
 503   declare_constant(InvocationCounter::count_increment)                    \
 504   declare_constant(InvocationCounter::count_shift)                        \
 505                                                                           \
 506   declare_constant(markOopDesc::hash_shift)                               \
 507                                                                           \
 508   declare_constant(markOopDesc::biased_lock_mask_in_place)                \
 509   declare_constant(markOopDesc::age_mask_in_place)                        \
 510   declare_constant(markOopDesc::epoch_mask_in_place)                      \
 511   declare_constant(markOopDesc::hash_mask)                                \
 512   declare_constant(markOopDesc::hash_mask_in_place)                       \
 513                                                                           \
 514   declare_constant(markOopDesc::unlocked_value)                           \
 515   declare_constant(markOopDesc::biased_lock_pattern)                      \
 516                                                                           \
 517   declare_constant(markOopDesc::no_hash_in_place)                         \
 518   declare_constant(markOopDesc::no_lock_in_place)                         \
 519 
 520 #define VM_ADDRESSES(declare_address, declare_preprocessor_address, declare_function) \
 521   declare_function(SharedRuntime::register_finalizer)                     \
 522   declare_function(SharedRuntime::exception_handler_for_return_address)   \
 523   declare_function(SharedRuntime::OSR_migration_end)                      \
 524   declare_function(SharedRuntime::enable_stack_reserved_zone)             \
 525   declare_function(SharedRuntime::dsin)                                   \
 526   declare_function(SharedRuntime::dcos)                                   \
 527   declare_function(SharedRuntime::dtan)                                   \
 528   declare_function(SharedRuntime::dexp)                                   \
 529   declare_function(SharedRuntime::dlog)                                   \
 530   declare_function(SharedRuntime::dlog10)                                 \
 531   declare_function(SharedRuntime::dpow)                                   \
 532                                                                           \
 533   declare_function(os::dll_load)                                          \
 534   declare_function(os::dll_lookup)                                        \
 535   declare_function(os::javaTimeMillis)                                    \
 536   declare_function(os::javaTimeNanos)                                     \
 537                                                                           \
 538   declare_function(Deoptimization::fetch_unroll_info)                     \
 539   COMPILER2_PRESENT(declare_function(Deoptimization::uncommon_trap))      \
 540   declare_function(Deoptimization::unpack_frames)                         \
 541                                                                           \
 542   declare_function(JVMCIRuntime::new_instance) \
 543   declare_function(JVMCIRuntime::new_array) \
 544   declare_function(JVMCIRuntime::new_multi_array) \
 545   declare_function(JVMCIRuntime::dynamic_new_array) \
 546   declare_function(JVMCIRuntime::dynamic_new_instance) \
 547   \
 548   declare_function(JVMCIRuntime::thread_is_interrupted) \
 549   declare_function(JVMCIRuntime::vm_message) \
 550   declare_function(JVMCIRuntime::identity_hash_code) \
 551   declare_function(JVMCIRuntime::exception_handler_for_pc) \
 552   declare_function(JVMCIRuntime::monitorenter) \
 553   declare_function(JVMCIRuntime::monitorexit) \
 554   declare_function(JVMCIRuntime::create_null_exception) \
 555   declare_function(JVMCIRuntime::create_out_of_bounds_exception) \
 556   declare_function(JVMCIRuntime::log_primitive) \
 557   declare_function(JVMCIRuntime::log_object) \
 558   declare_function(JVMCIRuntime::log_printf) \
 559   declare_function(JVMCIRuntime::vm_error) \
 560   declare_function(JVMCIRuntime::load_and_clear_exception) \
 561   declare_function(JVMCIRuntime::write_barrier_pre) \
 562   declare_function(JVMCIRuntime::write_barrier_post) \
 563   declare_function(JVMCIRuntime::validate_object) \
 564   \
 565   declare_function(JVMCIRuntime::test_deoptimize_call_int)
 566 
 567 
 568 #if INCLUDE_ALL_GCS
 569 
 570 #define VM_STRUCTS_G1(nonstatic_field, static_field) \
 571   static_field(HeapRegion, LogOfHRGrainBytes, int)
 572 
 573 #define VM_INT_CONSTANTS_G1(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
 574   declare_constant_with_value("G1SATBCardTableModRefBS::g1_young_gen", G1SATBCardTableModRefBS::g1_young_card_val())
 575 
 576 #endif // INCLUDE_ALL_GCS
 577 
 578 
 579 #ifdef TARGET_OS_FAMILY_linux
 580 
 581 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
 582   declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
 583 
 584 #endif // TARGET_OS_FAMILY_linux
 585 
 586 
 587 #ifdef TARGET_OS_FAMILY_bsd
 588 
 589 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
 590   declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
 591 
 592 #endif // TARGET_OS_FAMILY_bsd
 593 
 594 
 595 #ifdef TARGET_ARCH_x86
 596 
 597 #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) \
 598   volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*)
 599 
 600 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
 601   LP64_ONLY(declare_constant(frame::arg_reg_save_area_bytes))       \
 602   declare_constant(frame::interpreter_frame_sender_sp_offset)       \
 603   declare_constant(frame::interpreter_frame_last_sp_offset)         \
 604   declare_constant(VM_Version::CPU_CX8)                             \
 605   declare_constant(VM_Version::CPU_CMOV)                            \
 606   declare_constant(VM_Version::CPU_FXSR)                            \
 607   declare_constant(VM_Version::CPU_HT)                              \
 608   declare_constant(VM_Version::CPU_MMX)                             \
 609   declare_constant(VM_Version::CPU_3DNOW_PREFETCH)                  \
 610   declare_constant(VM_Version::CPU_SSE)                             \
 611   declare_constant(VM_Version::CPU_SSE2)                            \
 612   declare_constant(VM_Version::CPU_SSE3)                            \
 613   declare_constant(VM_Version::CPU_SSSE3)                           \
 614   declare_constant(VM_Version::CPU_SSE4A)                           \
 615   declare_constant(VM_Version::CPU_SSE4_1)                          \
 616   declare_constant(VM_Version::CPU_SSE4_2)                          \
 617   declare_constant(VM_Version::CPU_POPCNT)                          \
 618   declare_constant(VM_Version::CPU_LZCNT)                           \
 619   declare_constant(VM_Version::CPU_TSC)                             \
 620   declare_constant(VM_Version::CPU_TSCINV)                          \
 621   declare_constant(VM_Version::CPU_AVX)                             \
 622   declare_constant(VM_Version::CPU_AVX2)                            \
 623   declare_constant(VM_Version::CPU_AES)                             \
 624   declare_constant(VM_Version::CPU_ERMS)                            \
 625   declare_constant(VM_Version::CPU_CLMUL)                           \
 626   declare_constant(VM_Version::CPU_BMI1)                            \
 627   declare_constant(VM_Version::CPU_BMI2)                            \
 628   declare_constant(VM_Version::CPU_RTM)                             \
 629   declare_constant(VM_Version::CPU_ADX)                             \
 630   declare_constant(VM_Version::CPU_AVX512F)                         \
 631   declare_constant(VM_Version::CPU_AVX512DQ)                        \
 632   declare_constant(VM_Version::CPU_AVX512PF)                        \
 633   declare_constant(VM_Version::CPU_AVX512ER)                        \
 634   declare_constant(VM_Version::CPU_AVX512CD)                        \
 635   declare_constant(VM_Version::CPU_AVX512BW)
 636 
 637 #define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
 638   declare_preprocessor_constant("VM_Version::CPU_AVX512VL", CPU_AVX512VL)
 639 
 640 #endif // TARGET_ARCH_x86
 641 
 642 
 643 #ifdef TARGET_ARCH_sparc
 644 
 645 #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) \
 646   volatile_nonstatic_field(JavaFrameAnchor, _flags, int)
 647 
 648 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
 649   declare_constant(VM_Version::vis1_instructions_m)                       \
 650   declare_constant(VM_Version::vis2_instructions_m)                       \
 651   declare_constant(VM_Version::vis3_instructions_m)                       \
 652   declare_constant(VM_Version::cbcond_instructions_m)                     \
 653   declare_constant(VM_Version::v8_instructions_m)                         \
 654   declare_constant(VM_Version::hardware_mul32_m)                          \
 655   declare_constant(VM_Version::hardware_div32_m)                          \
 656   declare_constant(VM_Version::hardware_fsmuld_m)                         \
 657   declare_constant(VM_Version::hardware_popc_m)                           \
 658   declare_constant(VM_Version::v9_instructions_m)                         \
 659   declare_constant(VM_Version::sun4v_m)                                   \
 660   declare_constant(VM_Version::blk_init_instructions_m)                   \
 661   declare_constant(VM_Version::fmaf_instructions_m)                       \
 662   declare_constant(VM_Version::fmau_instructions_m)                       \
 663   declare_constant(VM_Version::sparc64_family_m)                          \
 664   declare_constant(VM_Version::M_family_m)                                \
 665   declare_constant(VM_Version::T_family_m)                                \
 666   declare_constant(VM_Version::T1_model_m)                                \
 667   declare_constant(VM_Version::sparc5_instructions_m)                     \
 668   declare_constant(VM_Version::aes_instructions_m)                        \
 669   declare_constant(VM_Version::sha1_instruction_m)                        \
 670   declare_constant(VM_Version::sha256_instruction_m)                      \
 671   declare_constant(VM_Version::sha512_instruction_m)
 672 
 673 #endif // TARGET_ARCH_sparc
 674 
 675 
 676 /*
 677  * Dummy defines for architectures that don't use these.
 678  */
 679 #ifndef VM_STRUCTS_CPU
 680 #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)
 681 #endif
 682 
 683 #ifndef VM_TYPES_CPU
 684 #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)
 685 #endif
 686 
 687 #ifndef VM_INT_CONSTANTS_CPU
 688 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 689 #endif
 690 
 691 #ifndef VM_LONG_CONSTANTS_CPU
 692 #define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 693 #endif
 694 
 695 #ifndef VM_STRUCTS_OS
 696 #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)
 697 #endif
 698 
 699 #ifndef VM_TYPES_OS
 700 #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)
 701 #endif
 702 
 703 #ifndef VM_INT_CONSTANTS_OS
 704 #define VM_INT_CONSTANTS_OS(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 705 #endif
 706 
 707 #ifndef VM_LONG_CONSTANTS_OS
 708 #define VM_LONG_CONSTANTS_OS(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
 709 #endif
 710 
 711 #ifndef VM_ADDRESSES_OS
 712 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function)
 713 #endif
 714 
 715 
 716 // whole purpose of this function is to work around bug c++/27724 in gcc 4.1.1
 717 // with optimization turned on it doesn't affect produced code
 718 static inline uint64_t cast_uint64_t(size_t x)
 719 {
 720   return x;
 721 }
 722 
 723 #define ASSIGN_CONST_TO_64BIT_VAR(var, expr) \
 724   JNIEXPORT uint64_t var = cast_uint64_t(expr);
 725 
 726 #define ASSIGN_OFFSET_TO_64BIT_VAR(var, type, field)   \
 727   ASSIGN_CONST_TO_64BIT_VAR(var, offset_of(type, field))
 728 
 729 #define ASSIGN_STRIDE_TO_64BIT_VAR(var, array) \
 730   ASSIGN_CONST_TO_64BIT_VAR(var, (char*)&array[1] - (char*)&array[0])
 731 
 732 //
 733 // Instantiation of VMStructEntries, VMTypeEntries and VMIntConstantEntries
 734 //
 735 
 736 // These initializers are allowed to access private fields in classes
 737 // as long as class VMStructs is a friend
 738 VMStructEntry JVMCIVMStructs::localHotSpotVMStructs[] = {
 739   VM_STRUCTS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 740              GENERATE_STATIC_VM_STRUCT_ENTRY,
 741              GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
 742              GENERATE_NONSTATIC_VM_STRUCT_ENTRY)
 743 
 744   VM_STRUCTS_OS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 745                 GENERATE_STATIC_VM_STRUCT_ENTRY,
 746                 GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
 747                 GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 748                 GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
 749                 GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
 750                 GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
 751                 GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
 752 
 753   VM_STRUCTS_CPU(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 754                  GENERATE_STATIC_VM_STRUCT_ENTRY,
 755                  GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
 756                  GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 757                  GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
 758                  GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
 759                  GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
 760                  GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
 761 
 762 #if INCLUDE_ALL_GCS
 763   VM_STRUCTS_G1(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
 764                 GENERATE_STATIC_VM_STRUCT_ENTRY)
 765 #endif
 766 
 767   GENERATE_VM_STRUCT_LAST_ENTRY()
 768 };
 769 
 770 VMTypeEntry JVMCIVMStructs::localHotSpotVMTypes[] = {
 771   VM_TYPES(GENERATE_VM_TYPE_ENTRY,
 772            GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
 773            GENERATE_INTEGER_VM_TYPE_ENTRY,
 774            GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY)
 775 
 776   VM_TYPES_OS(GENERATE_VM_TYPE_ENTRY,
 777               GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
 778               GENERATE_OOP_VM_TYPE_ENTRY,
 779               GENERATE_INTEGER_VM_TYPE_ENTRY,
 780               GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
 781               GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
 782               GENERATE_C2_VM_TYPE_ENTRY,
 783               GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
 784 
 785   VM_TYPES_CPU(GENERATE_VM_TYPE_ENTRY,
 786                GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
 787                GENERATE_OOP_VM_TYPE_ENTRY,
 788                GENERATE_INTEGER_VM_TYPE_ENTRY,
 789                GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
 790                GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
 791                GENERATE_C2_VM_TYPE_ENTRY,
 792                GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
 793 
 794   GENERATE_VM_TYPE_LAST_ENTRY()
 795 };
 796 
 797 VMIntConstantEntry JVMCIVMStructs::localHotSpotVMIntConstants[] = {
 798   VM_INT_CONSTANTS(GENERATE_VM_INT_CONSTANT_ENTRY,
 799                    GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
 800                    GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 801 
 802   VM_INT_CONSTANTS_OS(GENERATE_VM_INT_CONSTANT_ENTRY,
 803                       GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
 804                       GENERATE_C1_VM_INT_CONSTANT_ENTRY,
 805                       GENERATE_C2_VM_INT_CONSTANT_ENTRY,
 806                       GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 807 
 808   VM_INT_CONSTANTS_CPU(GENERATE_VM_INT_CONSTANT_ENTRY,
 809                        GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
 810                        GENERATE_C1_VM_INT_CONSTANT_ENTRY,
 811                        GENERATE_C2_VM_INT_CONSTANT_ENTRY,
 812                        GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 813 
 814 #if INCLUDE_ALL_GCS
 815   VM_INT_CONSTANTS_G1(GENERATE_VM_INT_CONSTANT_ENTRY,
 816                       GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
 817                       GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
 818 #endif
 819 
 820   GENERATE_VM_INT_CONSTANT_LAST_ENTRY()
 821 };
 822 
 823 VMLongConstantEntry JVMCIVMStructs::localHotSpotVMLongConstants[] = {
 824   VM_LONG_CONSTANTS(GENERATE_VM_LONG_CONSTANT_ENTRY,
 825                     GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
 826 
 827   VM_LONG_CONSTANTS_OS(GENERATE_VM_LONG_CONSTANT_ENTRY,
 828                        GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
 829                        GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
 830                        GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
 831                        GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
 832 
 833   VM_LONG_CONSTANTS_CPU(GENERATE_VM_LONG_CONSTANT_ENTRY,
 834                         GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
 835                         GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
 836                         GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
 837                         GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
 838 
 839   GENERATE_VM_LONG_CONSTANT_LAST_ENTRY()
 840 };
 841 
 842 VMAddressEntry JVMCIVMStructs::localHotSpotVMAddresses[] = {
 843   VM_ADDRESSES(GENERATE_VM_ADDRESS_ENTRY,
 844                GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
 845                GENERATE_VM_FUNCTION_ENTRY)
 846 
 847   VM_ADDRESSES_OS(GENERATE_VM_ADDRESS_ENTRY,
 848                   GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
 849                   GENERATE_VM_FUNCTION_ENTRY)
 850 
 851   GENERATE_VM_ADDRESS_LAST_ENTRY()
 852 };
 853 
 854 extern "C" {
 855 JNIEXPORT VMStructEntry* jvmciHotSpotVMStructs = JVMCIVMStructs::localHotSpotVMStructs;
 856 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMStructEntryTypeNameOffset,   VMStructEntry, typeName);
 857 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMStructEntryFieldNameOffset,  VMStructEntry, fieldName);
 858 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMStructEntryTypeStringOffset, VMStructEntry, typeString);
 859 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMStructEntryIsStaticOffset,   VMStructEntry, isStatic);
 860 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMStructEntryOffsetOffset,     VMStructEntry, offset);
 861 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMStructEntryAddressOffset,    VMStructEntry, address);
 862 ASSIGN_STRIDE_TO_64BIT_VAR(jvmciHotSpotVMStructEntryArrayStride, jvmciHotSpotVMStructs);
 863 
 864 JNIEXPORT VMTypeEntry* jvmciHotSpotVMTypes = JVMCIVMStructs::localHotSpotVMTypes;
 865 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMTypeEntryTypeNameOffset,       VMTypeEntry, typeName);
 866 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMTypeEntrySuperclassNameOffset, VMTypeEntry, superclassName);
 867 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMTypeEntryIsOopTypeOffset,      VMTypeEntry, isOopType);
 868 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMTypeEntryIsIntegerTypeOffset,  VMTypeEntry, isIntegerType);
 869 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMTypeEntryIsUnsignedOffset,     VMTypeEntry, isUnsigned);
 870 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMTypeEntrySizeOffset,           VMTypeEntry, size);
 871 ASSIGN_STRIDE_TO_64BIT_VAR(jvmciHotSpotVMTypeEntryArrayStride, jvmciHotSpotVMTypes);
 872 
 873 JNIEXPORT VMIntConstantEntry* jvmciHotSpotVMIntConstants = JVMCIVMStructs::localHotSpotVMIntConstants;
 874 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMIntConstantEntryNameOffset,  VMIntConstantEntry, name);
 875 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMIntConstantEntryValueOffset, VMIntConstantEntry, value);
 876 ASSIGN_STRIDE_TO_64BIT_VAR(jvmciHotSpotVMIntConstantEntryArrayStride, jvmciHotSpotVMIntConstants);
 877 
 878 JNIEXPORT VMLongConstantEntry* jvmciHotSpotVMLongConstants = JVMCIVMStructs::localHotSpotVMLongConstants;
 879 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMLongConstantEntryNameOffset,  VMLongConstantEntry, name);
 880 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMLongConstantEntryValueOffset, VMLongConstantEntry, value);
 881 ASSIGN_STRIDE_TO_64BIT_VAR(jvmciHotSpotVMLongConstantEntryArrayStride, jvmciHotSpotVMLongConstants);
 882 
 883 JNIEXPORT VMAddressEntry* jvmciHotSpotVMAddresses = JVMCIVMStructs::localHotSpotVMAddresses;
 884 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMAddressEntryNameOffset,  VMAddressEntry, name);
 885 ASSIGN_OFFSET_TO_64BIT_VAR(jvmciHotSpotVMAddressEntryValueOffset, VMAddressEntry, value);
 886 ASSIGN_STRIDE_TO_64BIT_VAR(jvmciHotSpotVMAddressEntryArrayStride, jvmciHotSpotVMAddresses);
 887 }