vmStructs_jvmci.cpp revision 11694:20d1eb098cd0
133549Sjkh/*
233549Sjkh * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
3330449Seadler * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4330449Seadler *
5330449Seadler * This code is free software; you can redistribute it and/or modify it
62892Sdfr * under the terms of the GNU General Public License version 2 only, as
72892Sdfr * published by the Free Software Foundation.
82892Sdfr *
92892Sdfr * This code is distributed in the hope that it will be useful, but WITHOUT
102892Sdfr * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
112892Sdfr * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
122892Sdfr * version 2 for more details (a copy is included in the LICENSE file that
132892Sdfr * accompanied this code).
142892Sdfr *
152892Sdfr * You should have received a copy of the GNU General Public License version
162892Sdfr * 2 along with this work; if not, write to the Free Software Foundation,
172892Sdfr * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
182892Sdfr *
192892Sdfr * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202892Sdfr * or visit www.oracle.com if you need additional information or have any
212892Sdfr * questions.
222892Sdfr *
232892Sdfr */
242892Sdfr
252892Sdfr#include "precompiled.hpp"
262892Sdfr#include "code/codeBlob.hpp"
272892Sdfr#include "compiler/abstractCompiler.hpp"
282892Sdfr#include "compiler/compileBroker.hpp"
292892Sdfr#include "jvmci/jvmciCodeInstaller.hpp"
302892Sdfr#include "jvmci/jvmciCompilerToVM.hpp"
312892Sdfr#include "jvmci/jvmciEnv.hpp"
322892Sdfr#include "jvmci/jvmciRuntime.hpp"
332892Sdfr#include "jvmci/vmStructs_jvmci.hpp"
342892Sdfr#include "oops/oop.hpp"
352892Sdfr#include "oops/objArrayKlass.hpp"
3615771Swollman#include "runtime/globals.hpp"
3750476Speter#include "runtime/sharedRuntime.hpp"
382892Sdfr#include "runtime/thread.hpp"
392892Sdfr#include "runtime/vm_version.hpp"
402892Sdfr
412892Sdfr#if INCLUDE_ALL_GCS
422892Sdfr#include "gc/g1/g1SATBCardTableModRefBS.hpp"
43120492Sfjoe#include "gc/g1/heapRegion.hpp"
44121363Strhodes#endif
45121429Strhodes
4623335Sbde
472892Sdfr#define VM_STRUCTS(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field) \
482892Sdfr  static_field(CompilerToVM::Data,             Klass_vtable_start_offset,              int)                                          \
49340953Seugen  static_field(CompilerToVM::Data,             Klass_vtable_length_offset,             int)                                          \
502892Sdfr                                                                                                                                     \
5133761Sache  static_field(CompilerToVM::Data,             Method_extra_stack_entries,             int)                                          \
522892Sdfr                                                                                                                                     \
532892Sdfr  static_field(CompilerToVM::Data,             SharedRuntime_ic_miss_stub,             address)                                      \
5455613Sache  static_field(CompilerToVM::Data,             SharedRuntime_handle_wrong_method_stub, address)                                      \
5555613Sache  static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_unpack,        address)                                      \
562892Sdfr  static_field(CompilerToVM::Data,             SharedRuntime_deopt_blob_uncommon_trap, address)                                      \
572892Sdfr                                                                                                                                     \
5815771Swollman  static_field(CompilerToVM::Data,             ThreadLocalAllocBuffer_alignment_reserve, size_t)                                     \
592892Sdfr                                                                                                                                     \
60121429Strhodes  static_field(CompilerToVM::Data,             Universe_collectedHeap,                 CollectedHeap*)                               \
612892Sdfr  static_field(CompilerToVM::Data,             Universe_base_vtable_size,              int)                                          \
622892Sdfr  static_field(CompilerToVM::Data,             Universe_narrow_oop_base,               address)                                      \
6392882Simp  static_field(CompilerToVM::Data,             Universe_narrow_oop_shift,              int)                                          \
6492882Simp  static_field(CompilerToVM::Data,             Universe_narrow_klass_base,             address)                                      \
6592882Simp  static_field(CompilerToVM::Data,             Universe_narrow_klass_shift,            int)                                          \
6692882Simp  static_field(CompilerToVM::Data,             Universe_non_oop_bits,                  void*)                                        \
67152809Savatar  static_field(CompilerToVM::Data,             Universe_verify_oop_mask,               uintptr_t)                                    \
682892Sdfr  static_field(CompilerToVM::Data,             Universe_verify_oop_bits,               uintptr_t)                                    \
692892Sdfr                                                                                                                                     \
70121373Strhodes  static_field(CompilerToVM::Data,             _supports_inline_contig_alloc,          bool)                                         \
712892Sdfr  static_field(CompilerToVM::Data,             _heap_end_addr,                         HeapWord**)                                   \
72152416Smaxim  static_field(CompilerToVM::Data,             _heap_top_addr,                         HeapWord**)                                   \
73152416Smaxim                                                                                                                                     \
742892Sdfr  static_field(CompilerToVM::Data,             _max_oop_map_stack_offset,              int)                                          \
75247856Sjkim                                                                                                                                     \
76120492Sfjoe  static_field(CompilerToVM::Data,             cardtable_start_address,                jbyte*)                                       \
77152362Srodrigc  static_field(CompilerToVM::Data,             cardtable_shift,                        int)                                          \
78166326Srodrigc                                                                                                                                     \
79152362Srodrigc  static_field(CompilerToVM::Data,             vm_page_size,                           int)                                          \
80152362Srodrigc                                                                                                                                     \
81152362Srodrigc  static_field(CompilerToVM::Data,             dsin,                                   address)                                      \
82152362Srodrigc  static_field(CompilerToVM::Data,             dcos,                                   address)                                      \
83152362Srodrigc  static_field(CompilerToVM::Data,             dtan,                                   address)                                      \
842892Sdfr  static_field(CompilerToVM::Data,             dexp,                                   address)                                      \
85247856Sjkim  static_field(CompilerToVM::Data,             dlog,                                   address)                                      \
862892Sdfr  static_field(CompilerToVM::Data,             dlog10,                                 address)                                      \
87152731Savatar  static_field(CompilerToVM::Data,             dpow,                                   address)                                      \
882892Sdfr                                                                                                                                     \
8933549Sjkh  static_field(Abstract_VM_Version,            _features,                              uint64_t)                                     \
90152362Srodrigc                                                                                                                                     \
9133549Sjkh  nonstatic_field(Array<int>,                  _length,                                int)                                          \
9233549Sjkh  unchecked_nonstatic_field(Array<u1>,         _data,                                  sizeof(u1))                                   \
93152362Srodrigc  unchecked_nonstatic_field(Array<u2>,         _data,                                  sizeof(u2))                                   \
9433549Sjkh  nonstatic_field(Array<Klass*>,               _length,                                int)                                          \
9533549Sjkh  nonstatic_field(Array<Klass*>,               _data[0],                               Klass*)                                       \
96152731Savatar                                                                                                                                     \
9733549Sjkh  volatile_nonstatic_field(BasicLock,          _displaced_header,                      markOop)                                      \
982892Sdfr                                                                                                                                     \
99152362Srodrigc  static_field(CodeCache,                      _low_bound,                             address)                                      \
1002892Sdfr  static_field(CodeCache,                      _high_bound,                            address)                                      \
1012892Sdfr                                                                                                                                     \
1022892Sdfr  nonstatic_field(CollectedHeap,               _total_collections,                     unsigned int)                                 \
103152362Srodrigc                                                                                                                                     \
1042892Sdfr  nonstatic_field(CompileTask,                 _num_inlined_bytecodes,                 int)                                          \
1052892Sdfr                                                                                                                                     \
1062892Sdfr  nonstatic_field(ConstantPool,                _tags,                                  Array<u1>*)                                   \
107152362Srodrigc  nonstatic_field(ConstantPool,                _pool_holder,                           InstanceKlass*)                               \
1082892Sdfr  nonstatic_field(ConstantPool,                _length,                                int)                                          \
1092892Sdfr                                                                                                                                     \
110118837Strhodes  nonstatic_field(ConstMethod,                 _constants,                             ConstantPool*)                                \
111152362Srodrigc  nonstatic_field(ConstMethod,                 _flags,                                 u2)                                           \
112118837Strhodes  nonstatic_field(ConstMethod,                 _code_size,                             u2)                                           \
113118837Strhodes  nonstatic_field(ConstMethod,                 _name_index,                            u2)                                           \
114152362Srodrigc  nonstatic_field(ConstMethod,                 _signature_index,                       u2)                                           \
115152362Srodrigc  nonstatic_field(ConstMethod,                 _max_stack,                             u2)                                           \
116120492Sfjoe  nonstatic_field(ConstMethod,                 _max_locals,                            u2)                                           \
117120492Sfjoe                                                                                                                                     \
118120492Sfjoe  nonstatic_field(DataLayout,                  _header._struct._tag,                   u1)                                           \
119120492Sfjoe  nonstatic_field(DataLayout,                  _header._struct._flags,                 u1)                                           \
120120492Sfjoe  nonstatic_field(DataLayout,                  _header._struct._bci,                   u2)                                           \
121152362Srodrigc  nonstatic_field(DataLayout,                  _cells[0],                              intptr_t)                                     \
122152362Srodrigc                                                                                                                                     \
123152974Savatar  nonstatic_field(Deoptimization::UnrollBlock, _size_of_deoptimized_frame,             int)                                          \
124152362Srodrigc  nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment,                     int)                                          \
12533761Sache  nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames,                      int)                                          \
126120492Sfjoe  nonstatic_field(Deoptimization::UnrollBlock, _total_frame_sizes,                     int)                                          \
127152362Srodrigc  nonstatic_field(Deoptimization::UnrollBlock, _frame_sizes,                           intptr_t*)                                    \
128152362Srodrigc  nonstatic_field(Deoptimization::UnrollBlock, _frame_pcs,                             address*)                                     \
12933749Sache  nonstatic_field(Deoptimization::UnrollBlock, _initial_info,                          intptr_t)                                     \
130152362Srodrigc  nonstatic_field(Deoptimization::UnrollBlock, _unpack_kind,                           int)                                          \
131152362Srodrigc                                                                                                                                     \
132152362Srodrigc  nonstatic_field(ExceptionTableElement,       start_pc,                                       u2)                                   \
133152416Smaxim  nonstatic_field(ExceptionTableElement,       end_pc,                                         u2)                                   \
134152416Smaxim  nonstatic_field(ExceptionTableElement,       handler_pc,                                     u2)                                   \
135152362Srodrigc  nonstatic_field(ExceptionTableElement,       catch_type_index,                               u2)                                   \
136152362Srodrigc                                                                                                                                     \
137152362Srodrigc  nonstatic_field(Flag,                        _type,                                          const char*)                          \
138152362Srodrigc  nonstatic_field(Flag,                        _name,                                          const char*)                          \
139152362Srodrigc  unchecked_nonstatic_field(Flag,              _addr,                                          sizeof(void*))                        \
140152362Srodrigc  nonstatic_field(Flag,                        _flags,                                         Flag::Flags)                          \
1412892Sdfr  static_field(Flag,                           flags,                                          Flag*)                                \
142120492Sfjoe                                                                                                                                     \
143120492Sfjoe  nonstatic_field(InstanceKlass,               _fields,                                       Array<u2>*)                            \
144152362Srodrigc  nonstatic_field(InstanceKlass,               _constants,                                    ConstantPool*)                         \
145152362Srodrigc  nonstatic_field(InstanceKlass,               _source_file_name_index,                       u2)                                    \
146120492Sfjoe  nonstatic_field(InstanceKlass,               _init_state,                                   u1)                                    \
147152362Srodrigc                                                                                                                                     \
148152362Srodrigc  volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_sp,                                 intptr_t*)                             \
149120492Sfjoe  volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_pc,                                 address)                               \
150152362Srodrigc                                                                                                                                     \
151152362Srodrigc  nonstatic_field(JavaThread,                  _threadObj,                                    oop)                                   \
152120492Sfjoe  nonstatic_field(JavaThread,                  _anchor,                                       JavaFrameAnchor)                       \
153152362Srodrigc  nonstatic_field(JavaThread,                  _vm_result,                                    oop)                                   \
154152362Srodrigc  volatile_nonstatic_field(JavaThread,         _exception_oop,                                oop)                                   \
155120492Sfjoe  volatile_nonstatic_field(JavaThread,         _exception_pc,                                 address)                               \
156120492Sfjoe  volatile_nonstatic_field(JavaThread,         _is_method_handle_return,                      int)                                   \
157120492Sfjoe  nonstatic_field(JavaThread,                  _osthread,                                     OSThread*)                             \
158152362Srodrigc  nonstatic_field(JavaThread,                  _satb_mark_queue,                              SATBMarkQueue)                         \
159152362Srodrigc  nonstatic_field(JavaThread,                  _dirty_card_queue,                             DirtyCardQueue)                        \
160120492Sfjoe  nonstatic_field(JavaThread,                  _pending_deoptimization,                       int)                                   \
1612892Sdfr  nonstatic_field(JavaThread,                  _pending_failed_speculation,                   oop)                                   \
1622892Sdfr  nonstatic_field(JavaThread,                  _pending_transfer_to_interpreter,              bool)                                  \
1632892Sdfr  nonstatic_field(JavaThread,                  _jvmci_counters,                               jlong*)                                \
1642892Sdfr  nonstatic_field(JavaThread,                  _reserved_stack_activation,                    address)                               \
1652892Sdfr                                                                                                                                     \
1662892Sdfr  static_field(java_lang_Class,                _klass_offset,                                 int)                                   \
1672892Sdfr  static_field(java_lang_Class,                _array_klass_offset,                           int)                                   \
1682892Sdfr                                                                                                                                     \
1692892Sdfr  nonstatic_field(JVMCIEnv,                    _task,                                         CompileTask*)                          \
1702892Sdfr  nonstatic_field(JVMCIEnv,                    _jvmti_can_hotswap_or_post_breakpoint,         bool)                                  \
171118837Strhodes                                                                                                                                     \
172152362Srodrigc  nonstatic_field(Klass,                       _secondary_super_cache,                        Klass*)                                \
173118837Strhodes  nonstatic_field(Klass,                       _secondary_supers,                             Array<Klass*>*)                        \
174118837Strhodes  nonstatic_field(Klass,                       _super,                                        Klass*)                                \
175118837Strhodes  nonstatic_field(Klass,                       _super_check_offset,                           juint)                                 \
176152362Srodrigc  nonstatic_field(Klass,                       _subklass,                                     Klass*)                                \
177118837Strhodes  nonstatic_field(Klass,                       _layout_helper,                                jint)                                  \
178118837Strhodes  nonstatic_field(Klass,                       _name,                                         Symbol*)                               \
179118837Strhodes  nonstatic_field(Klass,                       _prototype_header,                             markOop)                               \
1802892Sdfr  nonstatic_field(Klass,                       _next_sibling,                                 Klass*)                                \
1812892Sdfr  nonstatic_field(Klass,                       _java_mirror,                                  oop)                                   \
1822892Sdfr  nonstatic_field(Klass,                       _modifier_flags,                               jint)                                  \
183152362Srodrigc  nonstatic_field(Klass,                       _access_flags,                                 AccessFlags)                           \
184152809Savatar                                                                                                                                     \
185120492Sfjoe  nonstatic_field(LocalVariableTableElement,   start_bci,                                     u2)                                    \
186152362Srodrigc  nonstatic_field(LocalVariableTableElement,   length,                                        u2)                                    \
187152362Srodrigc  nonstatic_field(LocalVariableTableElement,   name_cp_index,                                 u2)                                    \
188152362Srodrigc  nonstatic_field(LocalVariableTableElement,   descriptor_cp_index,                           u2)                                    \
189152809Savatar  nonstatic_field(LocalVariableTableElement,   signature_cp_index,                            u2)                                    \
190120492Sfjoe  nonstatic_field(LocalVariableTableElement,   slot,                                          u2)                                    \
191152362Srodrigc                                                                                                                                     \
192120492Sfjoe  nonstatic_field(Method,                      _constMethod,                                  ConstMethod*)                          \
193120492Sfjoe  nonstatic_field(Method,                      _method_data,                                  MethodData*)                           \
19452055Sphk  nonstatic_field(Method,                      _method_counters,                              MethodCounters*)                       \
19552055Sphk  nonstatic_field(Method,                      _access_flags,                                 AccessFlags)                           \
19652055Sphk  nonstatic_field(Method,                      _vtable_index,                                 int)                                   \
19752055Sphk  nonstatic_field(Method,                      _intrinsic_id,                                 u2)                                    \
198230226Sjh  nonstatic_field(Method,                      _flags,                                        u2)                                    \
199230226Sjh  volatile_nonstatic_field(Method,             _code,                                         CompiledMethod*)                       \
20052055Sphk  volatile_nonstatic_field(Method,             _from_compiled_entry,                          address)                               \
20152055Sphk                                                                                                                                     \
2022892Sdfr  nonstatic_field(MethodCounters,              _invocation_counter,                           InvocationCounter)                     \
20352055Sphk  nonstatic_field(MethodCounters,              _backedge_counter,                             InvocationCounter)                     \
20452055Sphk                                                                                                                                     \
2052892Sdfr  nonstatic_field(MethodData,                  _size,                                         int)                                   \
2062892Sdfr  nonstatic_field(MethodData,                  _data_size,                                    int)                                   \
207152362Srodrigc  nonstatic_field(MethodData,                  _data[0],                                      intptr_t)                              \
2082892Sdfr  nonstatic_field(MethodData,                  _trap_hist._array[0],                          u1)                                    \
209152362Srodrigc  nonstatic_field(MethodData,                  _jvmci_ir_size,                                int)                                   \
2102892Sdfr                                                                                                                                     \
211152362Srodrigc  nonstatic_field(nmethod,                     _verified_entry_point,                         address)                               \
212118837Strhodes  nonstatic_field(nmethod,                     _comp_level,                                   int)                                   \
2132892Sdfr                                                                                                                                     \
2142892Sdfr  nonstatic_field(ObjArrayKlass,               _element_klass,                                Klass*)                                \
215152362Srodrigc                                                                                                                                     \
216152362Srodrigc  volatile_nonstatic_field(oopDesc,            _mark,                                         markOop)                               \
217152362Srodrigc  volatile_nonstatic_field(oopDesc,            _metadata._klass,                              Klass*)                                \
218166326Srodrigc                                                                                                                                     \
219152362Srodrigc  static_field(os,                             _polling_page,                                 address)                               \
220152362Srodrigc                                                                                                                                     \
221152362Srodrigc  volatile_nonstatic_field(OSThread,           _interrupted,                                  jint)                                  \
222152362Srodrigc                                                                                                                                     \
2232892Sdfr  static_field(StubRoutines,                _verify_oop_count,                                jint)                                  \
224247856Sjkim                                                                                                                                     \
225185422Simp  static_field(StubRoutines,                _throw_delayed_StackOverflowError_entry,          address)                               \
226185422Simp                                                                                                                                     \
227185422Simp  static_field(StubRoutines,                _jbyte_arraycopy,                                 address)                               \
228185422Simp  static_field(StubRoutines,                _jshort_arraycopy,                                address)                               \
229185422Simp  static_field(StubRoutines,                _jint_arraycopy,                                  address)                               \
230152362Srodrigc  static_field(StubRoutines,                _jlong_arraycopy,                                 address)                               \
2312892Sdfr  static_field(StubRoutines,                _oop_arraycopy,                                   address)                               \
2322892Sdfr  static_field(StubRoutines,                _oop_arraycopy_uninit,                            address)                               \
2332892Sdfr  static_field(StubRoutines,                _jbyte_disjoint_arraycopy,                        address)                               \
2342892Sdfr  static_field(StubRoutines,                _jshort_disjoint_arraycopy,                       address)                               \
235201227Sed  static_field(StubRoutines,                _jint_disjoint_arraycopy,                         address)                               \
2362892Sdfr  static_field(StubRoutines,                _jlong_disjoint_arraycopy,                        address)                               \
2372892Sdfr  static_field(StubRoutines,                _oop_disjoint_arraycopy,                          address)                               \
2382892Sdfr  static_field(StubRoutines,                _oop_disjoint_arraycopy_uninit,                   address)                               \
2392892Sdfr  static_field(StubRoutines,                _arrayof_jbyte_arraycopy,                         address)                               \
2402892Sdfr  static_field(StubRoutines,                _arrayof_jshort_arraycopy,                        address)                               \
2412892Sdfr  static_field(StubRoutines,                _arrayof_jint_arraycopy,                          address)                               \
2422892Sdfr  static_field(StubRoutines,                _arrayof_jlong_arraycopy,                         address)                               \
2432892Sdfr  static_field(StubRoutines,                _arrayof_oop_arraycopy,                           address)                               \
2442892Sdfr  static_field(StubRoutines,                _arrayof_oop_arraycopy_uninit,                    address)                               \
2452892Sdfr  static_field(StubRoutines,                _arrayof_jbyte_disjoint_arraycopy,                address)                               \
2462892Sdfr  static_field(StubRoutines,                _arrayof_jshort_disjoint_arraycopy,               address)                               \
2472892Sdfr  static_field(StubRoutines,                _arrayof_jint_disjoint_arraycopy,                 address)                               \
24815771Swollman  static_field(StubRoutines,                _arrayof_jlong_disjoint_arraycopy,                address)                               \
2492892Sdfr  static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy,                  address)                               \
2502892Sdfr  static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy_uninit,           address)                               \
2512892Sdfr  static_field(StubRoutines,                _checkcast_arraycopy,                             address)                               \
2522892Sdfr  static_field(StubRoutines,                _checkcast_arraycopy_uninit,                      address)                               \
2532892Sdfr  static_field(StubRoutines,                _unsafe_arraycopy,                                address)                               \
254201227Sed  static_field(StubRoutines,                _generic_arraycopy,                               address)                               \
2552892Sdfr                                                                                                                                     \
2562892Sdfr  static_field(StubRoutines,                _aescrypt_encryptBlock,                           address)                               \
2572892Sdfr  static_field(StubRoutines,                _aescrypt_decryptBlock,                           address)                               \
2582892Sdfr  static_field(StubRoutines,                _cipherBlockChaining_encryptAESCrypt,             address)                               \
2592892Sdfr  static_field(StubRoutines,                _cipherBlockChaining_decryptAESCrypt,             address)                               \
2602892Sdfr  static_field(StubRoutines,                _updateBytesCRC32,                                address)                               \
2612892Sdfr  static_field(StubRoutines,                _crc_table_adr,                                   address)                               \
2622892Sdfr                                                                                                                                     \
2632892Sdfr  nonstatic_field(Thread,                   _tlab,                                            ThreadLocalAllocBuffer)                \
2642892Sdfr  nonstatic_field(Thread,                   _allocated_bytes,                                 jlong)                                 \
2652892Sdfr                                                                                                                                     \
2662892Sdfr  nonstatic_field(ThreadLocalAllocBuffer,   _start,                                           HeapWord*)                             \
26715771Swollman  nonstatic_field(ThreadLocalAllocBuffer,   _top,                                             HeapWord*)                             \
2682892Sdfr  nonstatic_field(ThreadLocalAllocBuffer,   _end,                                             HeapWord*)                             \
2692892Sdfr  nonstatic_field(ThreadLocalAllocBuffer,   _pf_top,                                          HeapWord*)                             \
2702892Sdfr  nonstatic_field(ThreadLocalAllocBuffer,   _desired_size,                                    size_t)                                \
2712892Sdfr  nonstatic_field(ThreadLocalAllocBuffer,   _refill_waste_limit,                              size_t)                                \
2722892Sdfr  nonstatic_field(ThreadLocalAllocBuffer,   _number_of_refills,                               unsigned)                              \
273201227Sed  nonstatic_field(ThreadLocalAllocBuffer,   _fast_refill_waste,                               unsigned)                              \
2742892Sdfr  nonstatic_field(ThreadLocalAllocBuffer,   _slow_allocations,                                unsigned)                              \
2752892Sdfr                                                                                                                                     \
2762892Sdfr  nonstatic_field(ThreadShadow,             _pending_exception,                               oop)                                   \
2772892Sdfr                                                                                                                                     \
2782892Sdfr  static_field(vmSymbols,                   _symbols[0],                                      Symbol*)                               \
27933549Sjkh                                                                                                                                     \
2802892Sdfr  nonstatic_field(vtableEntry,              _method,                                          Method*)                               \
2812892Sdfr
2822892Sdfr#define VM_TYPES(declare_type, declare_toplevel_type, declare_integer_type, declare_unsigned_integer_type) \
2832892Sdfr  declare_integer_type(bool)                                              \
2842892Sdfr  declare_unsigned_integer_type(size_t)                                   \
28515771Swollman  declare_integer_type(intx)                                              \
2862892Sdfr  declare_unsigned_integer_type(uintx)                                    \
2872892Sdfr                                                                          \
2882892Sdfr  declare_toplevel_type(BasicLock)                                        \
2892892Sdfr  declare_toplevel_type(CompilerToVM)                                     \
290201227Sed  declare_toplevel_type(ExceptionTableElement)                            \
2912892Sdfr  declare_toplevel_type(Flag)                                             \
292121007Sfjoe  declare_toplevel_type(Flag*)                                            \
293121429Strhodes  declare_toplevel_type(JVMCIEnv)                                         \
294121429Strhodes  declare_toplevel_type(LocalVariableTableElement)                        \
295121429Strhodes  declare_toplevel_type(narrowKlass)                                      \
29615771Swollman  declare_toplevel_type(Symbol*)                                          \
2972892Sdfr  declare_toplevel_type(vtableEntry)                                      \
29833749Sache                                                                          \
299120492Sfjoe  declare_toplevel_type(oopDesc)                                          \
300152809Savatar    declare_type(arrayOopDesc, oopDesc)                                   \
30133749Sache                                                                          \
302120492Sfjoe  declare_toplevel_type(MetaspaceObj)                                     \
30333749Sache    declare_type(Metadata, MetaspaceObj)                                  \
304120492Sfjoe    declare_type(Klass, Metadata)                                         \
305120492Sfjoe      declare_type(InstanceKlass, Klass)                                  \
306134565Strhodes    declare_type(ConstantPool, Metadata)                                  \
307120492Sfjoe
308120492Sfjoe#define VM_INT_CONSTANTS(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
309120492Sfjoe  declare_preprocessor_constant("ASSERT", DEBUG_ONLY(1) NOT_DEBUG(0))     \
310152809Savatar  declare_preprocessor_constant("FIELDINFO_TAG_SIZE", FIELDINFO_TAG_SIZE) \
311152362Srodrigc  declare_preprocessor_constant("STACK_BIAS", STACK_BIAS)                 \
312340953Seugen                                                                          \
313120492Sfjoe  declare_constant(CompLevel_none)                                        \
314152362Srodrigc  declare_constant(CompLevel_simple)                                      \
315152362Srodrigc  declare_constant(CompLevel_limited_profile)                             \
316340953Seugen  declare_constant(CompLevel_full_profile)                                \
317120492Sfjoe  declare_constant(CompLevel_full_optimization)                           \
318120492Sfjoe  declare_constant(HeapWordSize)                                          \
319152809Savatar  declare_constant(InvocationEntryBci)                                    \
320152362Srodrigc  declare_constant(LogKlassAlignmentInBytes)                              \
321120492Sfjoe                                                                          \
322340953Seugen  declare_constant(JVM_ACC_WRITTEN_FLAGS)                                 \
323120492Sfjoe  declare_constant(JVM_ACC_MONITOR_MATCH)                                 \
32433749Sache  declare_constant(JVM_ACC_HAS_MONITOR_BYTECODES)                         \
32533761Sache  declare_constant(JVM_ACC_HAS_FINALIZER)                                 \
326120492Sfjoe  declare_constant(JVM_ACC_IS_CLONEABLE_FAST)                             \
32733761Sache  declare_constant(JVM_ACC_FIELD_INTERNAL)                                \
328  declare_constant(JVM_ACC_FIELD_STABLE)                                  \
329  declare_constant(JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE)                   \
330  declare_preprocessor_constant("JVM_ACC_SYNTHETIC", JVM_ACC_SYNTHETIC)   \
331  declare_preprocessor_constant("JVM_RECOGNIZED_FIELD_MODIFIERS", JVM_RECOGNIZED_FIELD_MODIFIERS) \
332                                                                          \
333  declare_constant(JVM_CONSTANT_Utf8)                                     \
334  declare_constant(JVM_CONSTANT_Unicode)                                  \
335  declare_constant(JVM_CONSTANT_Integer)                                  \
336  declare_constant(JVM_CONSTANT_Float)                                    \
337  declare_constant(JVM_CONSTANT_Long)                                     \
338  declare_constant(JVM_CONSTANT_Double)                                   \
339  declare_constant(JVM_CONSTANT_Class)                                    \
340  declare_constant(JVM_CONSTANT_String)                                   \
341  declare_constant(JVM_CONSTANT_Fieldref)                                 \
342  declare_constant(JVM_CONSTANT_Methodref)                                \
343  declare_constant(JVM_CONSTANT_InterfaceMethodref)                       \
344  declare_constant(JVM_CONSTANT_NameAndType)                              \
345  declare_constant(JVM_CONSTANT_MethodHandle)                             \
346  declare_constant(JVM_CONSTANT_MethodType)                               \
347  declare_constant(JVM_CONSTANT_InvokeDynamic)                            \
348  declare_constant(JVM_CONSTANT_ExternalMax)                              \
349                                                                          \
350  declare_constant(JVM_CONSTANT_Invalid)                                  \
351  declare_constant(JVM_CONSTANT_InternalMin)                              \
352  declare_constant(JVM_CONSTANT_UnresolvedClass)                          \
353  declare_constant(JVM_CONSTANT_ClassIndex)                               \
354  declare_constant(JVM_CONSTANT_StringIndex)                              \
355  declare_constant(JVM_CONSTANT_UnresolvedClassInError)                   \
356  declare_constant(JVM_CONSTANT_MethodHandleInError)                      \
357  declare_constant(JVM_CONSTANT_MethodTypeInError)                        \
358  declare_constant(JVM_CONSTANT_InternalMax)                              \
359                                                                          \
360  declare_constant(ArrayData::array_len_off_set)                          \
361  declare_constant(ArrayData::array_start_off_set)                        \
362                                                                          \
363  declare_constant(BitData::exception_seen_flag)                          \
364  declare_constant(BitData::null_seen_flag)                               \
365  declare_constant(BranchData::not_taken_off_set)                         \
366                                                                          \
367  declare_constant_with_value("CardTableModRefBS::dirty_card", CardTableModRefBS::dirty_card_val()) \
368                                                                          \
369  declare_constant(CodeInstaller::VERIFIED_ENTRY)                         \
370  declare_constant(CodeInstaller::UNVERIFIED_ENTRY)                       \
371  declare_constant(CodeInstaller::OSR_ENTRY)                              \
372  declare_constant(CodeInstaller::EXCEPTION_HANDLER_ENTRY)                \
373  declare_constant(CodeInstaller::DEOPT_HANDLER_ENTRY)                    \
374  declare_constant(CodeInstaller::INVOKEINTERFACE)                        \
375  declare_constant(CodeInstaller::INVOKEVIRTUAL)                          \
376  declare_constant(CodeInstaller::INVOKESTATIC)                           \
377  declare_constant(CodeInstaller::INVOKESPECIAL)                          \
378  declare_constant(CodeInstaller::INLINE_INVOKE)                          \
379  declare_constant(CodeInstaller::POLL_NEAR)                              \
380  declare_constant(CodeInstaller::POLL_RETURN_NEAR)                       \
381  declare_constant(CodeInstaller::POLL_FAR)                               \
382  declare_constant(CodeInstaller::POLL_RETURN_FAR)                        \
383  declare_constant(CodeInstaller::CARD_TABLE_SHIFT)                       \
384  declare_constant(CodeInstaller::CARD_TABLE_ADDRESS)                     \
385  declare_constant(CodeInstaller::HEAP_TOP_ADDRESS)                       \
386  declare_constant(CodeInstaller::HEAP_END_ADDRESS)                       \
387  declare_constant(CodeInstaller::NARROW_KLASS_BASE_ADDRESS)              \
388  declare_constant(CodeInstaller::CRC_TABLE_ADDRESS)                      \
389  declare_constant(CodeInstaller::INVOKE_INVALID)                         \
390                                                                          \
391  declare_constant(ConstantPool::CPCACHE_INDEX_TAG)                       \
392                                                                          \
393  declare_constant(ConstMethod::_has_linenumber_table)                    \
394  declare_constant(ConstMethod::_has_localvariable_table)                 \
395  declare_constant(ConstMethod::_has_exception_table)                     \
396                                                                          \
397  declare_constant(CounterData::count_off)                                \
398                                                                          \
399  declare_constant(DataLayout::cell_size)                                 \
400  declare_constant(DataLayout::no_tag)                                    \
401  declare_constant(DataLayout::bit_data_tag)                              \
402  declare_constant(DataLayout::counter_data_tag)                          \
403  declare_constant(DataLayout::jump_data_tag)                             \
404  declare_constant(DataLayout::receiver_type_data_tag)                    \
405  declare_constant(DataLayout::virtual_call_data_tag)                     \
406  declare_constant(DataLayout::ret_data_tag)                              \
407  declare_constant(DataLayout::branch_data_tag)                           \
408  declare_constant(DataLayout::multi_branch_data_tag)                     \
409  declare_constant(DataLayout::arg_info_data_tag)                         \
410  declare_constant(DataLayout::call_type_data_tag)                        \
411  declare_constant(DataLayout::virtual_call_type_data_tag)                \
412  declare_constant(DataLayout::parameters_type_data_tag)                  \
413  declare_constant(DataLayout::speculative_trap_data_tag)                 \
414                                                                          \
415  declare_constant(Deoptimization::Unpack_deopt)                          \
416  declare_constant(Deoptimization::Unpack_exception)                      \
417  declare_constant(Deoptimization::Unpack_uncommon_trap)                  \
418  declare_constant(Deoptimization::Unpack_reexecute)                      \
419                                                                          \
420  declare_constant(Deoptimization::_action_bits)                          \
421  declare_constant(Deoptimization::_reason_bits)                          \
422  declare_constant(Deoptimization::_debug_id_bits)                        \
423  declare_constant(Deoptimization::_action_shift)                         \
424  declare_constant(Deoptimization::_reason_shift)                         \
425  declare_constant(Deoptimization::_debug_id_shift)                       \
426                                                                          \
427  declare_constant(Deoptimization::Action_none)                           \
428  declare_constant(Deoptimization::Action_maybe_recompile)                \
429  declare_constant(Deoptimization::Action_reinterpret)                    \
430  declare_constant(Deoptimization::Action_make_not_entrant)               \
431  declare_constant(Deoptimization::Action_make_not_compilable)            \
432                                                                          \
433  declare_constant(Deoptimization::Reason_none)                           \
434  declare_constant(Deoptimization::Reason_null_check)                     \
435  declare_constant(Deoptimization::Reason_range_check)                    \
436  declare_constant(Deoptimization::Reason_class_check)                    \
437  declare_constant(Deoptimization::Reason_array_check)                    \
438  declare_constant(Deoptimization::Reason_unreached0)                     \
439  declare_constant(Deoptimization::Reason_constraint)                     \
440  declare_constant(Deoptimization::Reason_div0_check)                     \
441  declare_constant(Deoptimization::Reason_loop_limit_check)               \
442  declare_constant(Deoptimization::Reason_type_checked_inlining)          \
443  declare_constant(Deoptimization::Reason_optimized_type_check)           \
444  declare_constant(Deoptimization::Reason_aliasing)                       \
445  declare_constant(Deoptimization::Reason_transfer_to_interpreter)        \
446  declare_constant(Deoptimization::Reason_not_compiled_exception_handler) \
447  declare_constant(Deoptimization::Reason_unresolved)                     \
448  declare_constant(Deoptimization::Reason_jsr_mismatch)                   \
449  declare_constant(Deoptimization::Reason_LIMIT)                          \
450                                                                          \
451  declare_constant_with_value("dirtyCardQueueBufferOffset", in_bytes(DirtyCardQueue::byte_offset_of_buf())) \
452  declare_constant_with_value("dirtyCardQueueIndexOffset", in_bytes(DirtyCardQueue::byte_offset_of_index())) \
453                                                                          \
454  declare_constant(FieldInfo::access_flags_offset)                        \
455  declare_constant(FieldInfo::name_index_offset)                          \
456  declare_constant(FieldInfo::signature_index_offset)                     \
457  declare_constant(FieldInfo::initval_index_offset)                       \
458  declare_constant(FieldInfo::low_packed_offset)                          \
459  declare_constant(FieldInfo::high_packed_offset)                         \
460  declare_constant(FieldInfo::field_slots)                                \
461                                                                          \
462  declare_constant(InstanceKlass::linked)                                 \
463  declare_constant(InstanceKlass::fully_initialized)                      \
464                                                                          \
465  declare_constant(JumpData::taken_off_set)                               \
466  declare_constant(JumpData::displacement_off_set)                        \
467                                                                          \
468  declare_constant(JVMCIEnv::ok)                                          \
469  declare_constant(JVMCIEnv::dependencies_failed)                         \
470  declare_constant(JVMCIEnv::dependencies_invalid)                        \
471  declare_constant(JVMCIEnv::cache_full)                                  \
472  declare_constant(JVMCIEnv::code_too_large)                              \
473  declare_constant(JVMCIRuntime::none)                                    \
474  declare_constant(JVMCIRuntime::by_holder)                               \
475  declare_constant(JVMCIRuntime::by_full_signature)                       \
476                                                                          \
477  declare_constant(Klass::_lh_neutral_value)                              \
478  declare_constant(Klass::_lh_instance_slow_path_bit)                     \
479  declare_constant(Klass::_lh_log2_element_size_shift)                    \
480  declare_constant(Klass::_lh_log2_element_size_mask)                     \
481  declare_constant(Klass::_lh_element_type_shift)                         \
482  declare_constant(Klass::_lh_element_type_mask)                          \
483  declare_constant(Klass::_lh_header_size_shift)                          \
484  declare_constant(Klass::_lh_header_size_mask)                           \
485  declare_constant(Klass::_lh_array_tag_shift)                            \
486  declare_constant(Klass::_lh_array_tag_type_value)                       \
487  declare_constant(Klass::_lh_array_tag_obj_value)                        \
488                                                                          \
489  declare_constant(markOopDesc::no_hash)                                  \
490                                                                          \
491  declare_constant(Method::_jfr_towrite)                                  \
492  declare_constant(Method::_caller_sensitive)                             \
493  declare_constant(Method::_force_inline)                                 \
494  declare_constant(Method::_dont_inline)                                  \
495  declare_constant(Method::_hidden)                                       \
496  declare_constant(Method::_reserved_stack_access)                        \
497                                                                          \
498  declare_constant(Method::nonvirtual_vtable_index)                       \
499  declare_constant(Method::invalid_vtable_index)                          \
500                                                                          \
501  declare_constant(MultiBranchData::per_case_cell_count)                  \
502                                                                          \
503  declare_constant(ReceiverTypeData::nonprofiled_count_off_set)           \
504  declare_constant(ReceiverTypeData::receiver_type_row_cell_count)        \
505  declare_constant(ReceiverTypeData::receiver0_offset)                    \
506  declare_constant(ReceiverTypeData::count0_offset)                       \
507                                                                          \
508  declare_constant_with_value("satbMarkQueueBufferOffset", in_bytes(SATBMarkQueue::byte_offset_of_buf())) \
509  declare_constant_with_value("satbMarkQueueIndexOffset", in_bytes(SATBMarkQueue::byte_offset_of_index())) \
510  declare_constant_with_value("satbMarkQueueActiveOffset", in_bytes(SATBMarkQueue::byte_offset_of_active())) \
511                                                                          \
512  declare_constant(vmIntrinsics::_invokeBasic)                            \
513  declare_constant(vmIntrinsics::_linkToVirtual)                          \
514  declare_constant(vmIntrinsics::_linkToStatic)                           \
515  declare_constant(vmIntrinsics::_linkToSpecial)                          \
516  declare_constant(vmIntrinsics::_linkToInterface)                        \
517                                                                          \
518  declare_constant(vmSymbols::FIRST_SID)                                  \
519  declare_constant(vmSymbols::SID_LIMIT)                                  \
520
521#define VM_LONG_CONSTANTS(declare_constant, declare_preprocessor_constant) \
522  declare_constant(InvocationCounter::count_increment)                    \
523  declare_constant(InvocationCounter::count_shift)                        \
524                                                                          \
525  declare_constant(markOopDesc::hash_shift)                               \
526                                                                          \
527  declare_constant(markOopDesc::biased_lock_mask_in_place)                \
528  declare_constant(markOopDesc::age_mask_in_place)                        \
529  declare_constant(markOopDesc::epoch_mask_in_place)                      \
530  declare_constant(markOopDesc::hash_mask)                                \
531  declare_constant(markOopDesc::hash_mask_in_place)                       \
532                                                                          \
533  declare_constant(markOopDesc::unlocked_value)                           \
534  declare_constant(markOopDesc::biased_lock_pattern)                      \
535                                                                          \
536  declare_constant(markOopDesc::no_hash_in_place)                         \
537  declare_constant(markOopDesc::no_lock_in_place)                         \
538
539#define VM_ADDRESSES(declare_address, declare_preprocessor_address, declare_function) \
540  declare_function(SharedRuntime::register_finalizer)                     \
541  declare_function(SharedRuntime::exception_handler_for_return_address)   \
542  declare_function(SharedRuntime::OSR_migration_end)                      \
543  declare_function(SharedRuntime::enable_stack_reserved_zone)             \
544  declare_function(SharedRuntime::frem)                                   \
545  declare_function(SharedRuntime::drem)                                   \
546                                                                          \
547  declare_function(os::dll_load)                                          \
548  declare_function(os::dll_lookup)                                        \
549  declare_function(os::javaTimeMillis)                                    \
550  declare_function(os::javaTimeNanos)                                     \
551                                                                          \
552  declare_function(Deoptimization::fetch_unroll_info)                     \
553  declare_function(Deoptimization::uncommon_trap)                         \
554  declare_function(Deoptimization::unpack_frames)                         \
555                                                                          \
556  declare_function(JVMCIRuntime::new_instance) \
557  declare_function(JVMCIRuntime::new_array) \
558  declare_function(JVMCIRuntime::new_multi_array) \
559  declare_function(JVMCIRuntime::dynamic_new_array) \
560  declare_function(JVMCIRuntime::dynamic_new_instance) \
561  \
562  declare_function(JVMCIRuntime::thread_is_interrupted) \
563  declare_function(JVMCIRuntime::vm_message) \
564  declare_function(JVMCIRuntime::identity_hash_code) \
565  declare_function(JVMCIRuntime::exception_handler_for_pc) \
566  declare_function(JVMCIRuntime::monitorenter) \
567  declare_function(JVMCIRuntime::monitorexit) \
568  declare_function(JVMCIRuntime::throw_and_post_jvmti_exception) \
569  declare_function(JVMCIRuntime::throw_klass_external_name_exception) \
570  declare_function(JVMCIRuntime::throw_class_cast_exception) \
571  declare_function(JVMCIRuntime::log_primitive) \
572  declare_function(JVMCIRuntime::log_object) \
573  declare_function(JVMCIRuntime::log_printf) \
574  declare_function(JVMCIRuntime::vm_error) \
575  declare_function(JVMCIRuntime::load_and_clear_exception) \
576  declare_function(JVMCIRuntime::write_barrier_pre) \
577  declare_function(JVMCIRuntime::write_barrier_post) \
578  declare_function(JVMCIRuntime::validate_object) \
579  \
580  declare_function(JVMCIRuntime::test_deoptimize_call_int)
581
582
583#if INCLUDE_ALL_GCS
584
585#define VM_STRUCTS_G1(nonstatic_field, static_field) \
586  static_field(HeapRegion, LogOfHRGrainBytes, int)
587
588#define VM_INT_CONSTANTS_G1(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \
589  declare_constant_with_value("G1SATBCardTableModRefBS::g1_young_gen", G1SATBCardTableModRefBS::g1_young_card_val())
590
591#endif // INCLUDE_ALL_GCS
592
593
594#ifdef TARGET_OS_FAMILY_linux
595
596#define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
597  declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
598
599#endif // TARGET_OS_FAMILY_linux
600
601
602#ifdef TARGET_OS_FAMILY_bsd
603
604#define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \
605  declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT)
606
607#endif // TARGET_OS_FAMILY_bsd
608
609
610#ifdef TARGET_ARCH_aarch64
611
612#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) \
613  volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*)
614
615#endif // TARGET_ARCH_aarch64
616
617
618#ifdef TARGET_ARCH_x86
619
620#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) \
621  volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*)
622
623#define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
624  LP64_ONLY(declare_constant(frame::arg_reg_save_area_bytes))       \
625  declare_constant(frame::interpreter_frame_sender_sp_offset)       \
626  declare_constant(frame::interpreter_frame_last_sp_offset)         \
627  declare_constant(VM_Version::CPU_CX8)                             \
628  declare_constant(VM_Version::CPU_CMOV)                            \
629  declare_constant(VM_Version::CPU_FXSR)                            \
630  declare_constant(VM_Version::CPU_HT)                              \
631  declare_constant(VM_Version::CPU_MMX)                             \
632  declare_constant(VM_Version::CPU_3DNOW_PREFETCH)                  \
633  declare_constant(VM_Version::CPU_SSE)                             \
634  declare_constant(VM_Version::CPU_SSE2)                            \
635  declare_constant(VM_Version::CPU_SSE3)                            \
636  declare_constant(VM_Version::CPU_SSSE3)                           \
637  declare_constant(VM_Version::CPU_SSE4A)                           \
638  declare_constant(VM_Version::CPU_SSE4_1)                          \
639  declare_constant(VM_Version::CPU_SSE4_2)                          \
640  declare_constant(VM_Version::CPU_POPCNT)                          \
641  declare_constant(VM_Version::CPU_LZCNT)                           \
642  declare_constant(VM_Version::CPU_TSC)                             \
643  declare_constant(VM_Version::CPU_TSCINV)                          \
644  declare_constant(VM_Version::CPU_AVX)                             \
645  declare_constant(VM_Version::CPU_AVX2)                            \
646  declare_constant(VM_Version::CPU_AES)                             \
647  declare_constant(VM_Version::CPU_ERMS)                            \
648  declare_constant(VM_Version::CPU_CLMUL)                           \
649  declare_constant(VM_Version::CPU_BMI1)                            \
650  declare_constant(VM_Version::CPU_BMI2)                            \
651  declare_constant(VM_Version::CPU_RTM)                             \
652  declare_constant(VM_Version::CPU_ADX)                             \
653  declare_constant(VM_Version::CPU_AVX512F)                         \
654  declare_constant(VM_Version::CPU_AVX512DQ)                        \
655  declare_constant(VM_Version::CPU_AVX512PF)                        \
656  declare_constant(VM_Version::CPU_AVX512ER)                        \
657  declare_constant(VM_Version::CPU_AVX512CD)
658
659#define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
660  declare_preprocessor_constant("VM_Version::CPU_AVX512BW", CPU_AVX512BW) \
661  declare_preprocessor_constant("VM_Version::CPU_AVX512VL", CPU_AVX512VL) \
662  declare_preprocessor_constant("VM_Version::CPU_SHA", CPU_SHA)
663
664#endif // TARGET_ARCH_x86
665
666
667#ifdef TARGET_ARCH_sparc
668
669#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) \
670  volatile_nonstatic_field(JavaFrameAnchor, _flags, int)
671
672#define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
673  declare_constant(VM_Version::vis1_instructions_m)                       \
674  declare_constant(VM_Version::vis2_instructions_m)                       \
675  declare_constant(VM_Version::vis3_instructions_m)                       \
676  declare_constant(VM_Version::cbcond_instructions_m)                     \
677  declare_constant(VM_Version::v8_instructions_m)                         \
678  declare_constant(VM_Version::hardware_mul32_m)                          \
679  declare_constant(VM_Version::hardware_div32_m)                          \
680  declare_constant(VM_Version::hardware_fsmuld_m)                         \
681  declare_constant(VM_Version::hardware_popc_m)                           \
682  declare_constant(VM_Version::v9_instructions_m)                         \
683  declare_constant(VM_Version::sun4v_m)                                   \
684  declare_constant(VM_Version::blk_init_instructions_m)                   \
685  declare_constant(VM_Version::fmaf_instructions_m)                       \
686  declare_constant(VM_Version::fmau_instructions_m)                       \
687  declare_constant(VM_Version::sparc64_family_m)                          \
688  declare_constant(VM_Version::M_family_m)                                \
689  declare_constant(VM_Version::T_family_m)                                \
690  declare_constant(VM_Version::T1_model_m)                                \
691  declare_constant(VM_Version::sparc5_instructions_m)                     \
692  declare_constant(VM_Version::aes_instructions_m)                        \
693  declare_constant(VM_Version::sha1_instruction_m)                        \
694  declare_constant(VM_Version::sha256_instruction_m)                      \
695  declare_constant(VM_Version::sha512_instruction_m)
696
697#endif // TARGET_ARCH_sparc
698
699
700/*
701 * Dummy defines for architectures that don't use these.
702 */
703#ifndef VM_STRUCTS_CPU
704#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)
705#endif
706
707#ifndef VM_TYPES_CPU
708#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)
709#endif
710
711#ifndef VM_INT_CONSTANTS_CPU
712#define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
713#endif
714
715#ifndef VM_LONG_CONSTANTS_CPU
716#define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
717#endif
718
719#ifndef VM_STRUCTS_OS
720#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)
721#endif
722
723#ifndef VM_TYPES_OS
724#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)
725#endif
726
727#ifndef VM_INT_CONSTANTS_OS
728#define VM_INT_CONSTANTS_OS(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
729#endif
730
731#ifndef VM_LONG_CONSTANTS_OS
732#define VM_LONG_CONSTANTS_OS(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant)
733#endif
734
735#ifndef VM_ADDRESSES_OS
736#define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function)
737#endif
738
739
740//
741// Instantiation of VMStructEntries, VMTypeEntries and VMIntConstantEntries
742//
743
744// These initializers are allowed to access private fields in classes
745// as long as class VMStructs is a friend
746VMStructEntry JVMCIVMStructs::localHotSpotVMStructs[] = {
747  VM_STRUCTS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
748             GENERATE_STATIC_VM_STRUCT_ENTRY,
749             GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
750             GENERATE_NONSTATIC_VM_STRUCT_ENTRY)
751
752  VM_STRUCTS_OS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
753                GENERATE_STATIC_VM_STRUCT_ENTRY,
754                GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
755                GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
756                GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
757                GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
758                GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
759                GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
760
761  VM_STRUCTS_CPU(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
762                 GENERATE_STATIC_VM_STRUCT_ENTRY,
763                 GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
764                 GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
765                 GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
766                 GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
767                 GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
768                 GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
769
770#if INCLUDE_ALL_GCS
771  VM_STRUCTS_G1(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
772                GENERATE_STATIC_VM_STRUCT_ENTRY)
773#endif
774
775  GENERATE_VM_STRUCT_LAST_ENTRY()
776};
777
778VMTypeEntry JVMCIVMStructs::localHotSpotVMTypes[] = {
779  VM_TYPES(GENERATE_VM_TYPE_ENTRY,
780           GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
781           GENERATE_INTEGER_VM_TYPE_ENTRY,
782           GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY)
783
784  VM_TYPES_OS(GENERATE_VM_TYPE_ENTRY,
785              GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
786              GENERATE_OOP_VM_TYPE_ENTRY,
787              GENERATE_INTEGER_VM_TYPE_ENTRY,
788              GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
789              GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
790              GENERATE_C2_VM_TYPE_ENTRY,
791              GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
792
793  VM_TYPES_CPU(GENERATE_VM_TYPE_ENTRY,
794               GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
795               GENERATE_OOP_VM_TYPE_ENTRY,
796               GENERATE_INTEGER_VM_TYPE_ENTRY,
797               GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
798               GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
799               GENERATE_C2_VM_TYPE_ENTRY,
800               GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
801
802  GENERATE_VM_TYPE_LAST_ENTRY()
803};
804
805VMIntConstantEntry JVMCIVMStructs::localHotSpotVMIntConstants[] = {
806  VM_INT_CONSTANTS(GENERATE_VM_INT_CONSTANT_ENTRY,
807                   GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
808                   GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
809
810  VM_INT_CONSTANTS_OS(GENERATE_VM_INT_CONSTANT_ENTRY,
811                      GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
812                      GENERATE_C1_VM_INT_CONSTANT_ENTRY,
813                      GENERATE_C2_VM_INT_CONSTANT_ENTRY,
814                      GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
815
816  VM_INT_CONSTANTS_CPU(GENERATE_VM_INT_CONSTANT_ENTRY,
817                       GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
818                       GENERATE_C1_VM_INT_CONSTANT_ENTRY,
819                       GENERATE_C2_VM_INT_CONSTANT_ENTRY,
820                       GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
821
822#if INCLUDE_ALL_GCS
823  VM_INT_CONSTANTS_G1(GENERATE_VM_INT_CONSTANT_ENTRY,
824                      GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
825                      GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
826#endif
827
828  GENERATE_VM_INT_CONSTANT_LAST_ENTRY()
829};
830
831VMLongConstantEntry JVMCIVMStructs::localHotSpotVMLongConstants[] = {
832  VM_LONG_CONSTANTS(GENERATE_VM_LONG_CONSTANT_ENTRY,
833                    GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
834
835  VM_LONG_CONSTANTS_OS(GENERATE_VM_LONG_CONSTANT_ENTRY,
836                       GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
837                       GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
838                       GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
839                       GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
840
841  VM_LONG_CONSTANTS_CPU(GENERATE_VM_LONG_CONSTANT_ENTRY,
842                        GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
843                        GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
844                        GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
845                        GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
846
847  GENERATE_VM_LONG_CONSTANT_LAST_ENTRY()
848};
849
850VMAddressEntry JVMCIVMStructs::localHotSpotVMAddresses[] = {
851  VM_ADDRESSES(GENERATE_VM_ADDRESS_ENTRY,
852               GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
853               GENERATE_VM_FUNCTION_ENTRY)
854
855  VM_ADDRESSES_OS(GENERATE_VM_ADDRESS_ENTRY,
856                  GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY,
857                  GENERATE_VM_FUNCTION_ENTRY)
858
859  GENERATE_VM_ADDRESS_LAST_ENTRY()
860};
861
862int JVMCIVMStructs::localHotSpotVMStructs_count() {
863  // Ignore sentinel entry at the end
864  return (sizeof(localHotSpotVMStructs) / sizeof(VMStructEntry)) - 1;
865}
866int JVMCIVMStructs::localHotSpotVMTypes_count() {
867  // Ignore sentinel entry at the end
868  return (sizeof(localHotSpotVMTypes) / sizeof(VMTypeEntry)) - 1;
869}
870int JVMCIVMStructs::localHotSpotVMIntConstants_count() {
871  // Ignore sentinel entry at the end
872  return (sizeof(localHotSpotVMIntConstants) / sizeof(VMIntConstantEntry)) - 1;
873}
874int JVMCIVMStructs::localHotSpotVMLongConstants_count() {
875  // Ignore sentinel entry at the end
876  return (sizeof(localHotSpotVMLongConstants) / sizeof(VMLongConstantEntry)) - 1;
877}
878int JVMCIVMStructs::localHotSpotVMAddresses_count() {
879  // Ignore sentinel entry at the end
880  return (sizeof(localHotSpotVMAddresses) / sizeof(VMAddressEntry)) - 1;
881}
882
883extern "C" {
884JNIEXPORT VMStructEntry* jvmciHotSpotVMStructs = JVMCIVMStructs::localHotSpotVMStructs;
885JNIEXPORT VMTypeEntry* jvmciHotSpotVMTypes = JVMCIVMStructs::localHotSpotVMTypes;
886JNIEXPORT VMIntConstantEntry* jvmciHotSpotVMIntConstants = JVMCIVMStructs::localHotSpotVMIntConstants;
887JNIEXPORT VMLongConstantEntry* jvmciHotSpotVMLongConstants = JVMCIVMStructs::localHotSpotVMLongConstants;
888JNIEXPORT VMAddressEntry* jvmciHotSpotVMAddresses = JVMCIVMStructs::localHotSpotVMAddresses;
889}
890