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