8240831: [JVMCI] Export missing vmStructs entries used by JVMCI compilers

Reviewed-by: kvn, thartmann
This commit is contained in:
Yudi Zheng 2020-03-12 13:20:53 +01:00 committed by Doug Simon
parent d49cf17db0
commit 21d3eaf587

View file

@ -157,6 +157,7 @@
nonstatic_field(InstanceKlass, _constants, ConstantPool*) \
nonstatic_field(InstanceKlass, _source_file_name_index, u2) \
nonstatic_field(InstanceKlass, _init_state, u1) \
nonstatic_field(InstanceKlass, _init_thread, Thread*) \
nonstatic_field(InstanceKlass, _misc_flags, u4) \
nonstatic_field(InstanceKlass, _annotations, Annotations*) \
\
@ -255,6 +256,8 @@
\
nonstatic_field(ObjArrayKlass, _element_klass, Klass*) \
\
unchecked_nonstatic_field(ObjectMonitor, _owner, sizeof(void *)) /* NOTE: no type */ \
volatile_nonstatic_field(ObjectMonitor, _recursions, intptr_t) \
volatile_nonstatic_field(ObjectMonitor, _cxq, ObjectWaiter*) \
volatile_nonstatic_field(ObjectMonitor, _EntryList, ObjectWaiter*) \
volatile_nonstatic_field(ObjectMonitor, _succ, Thread*) \
@ -607,6 +610,7 @@
declare_constant(InvocationCounter::count_shift) \
\
declare_constant(markWord::hash_shift) \
declare_constant(markWord::monitor_value) \
\
declare_constant(markWord::biased_lock_mask_in_place) \
declare_constant(markWord::age_mask_in_place) \