mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 12:34:32 +02:00
Merge
This commit is contained in:
commit
9e317be494
659 changed files with 33327 additions and 9045 deletions
|
@ -343,10 +343,6 @@ typedef CompactHashtable<Symbol*, char> SymbolCompactHashTable;
|
|||
nonstatic_field(InstanceKlass, _methods_jmethod_ids, jmethodID*) \
|
||||
volatile_nonstatic_field(InstanceKlass, _idnum_allocated_count, u2) \
|
||||
nonstatic_field(InstanceKlass, _annotations, Annotations*) \
|
||||
nonstatic_field(InstanceKlass, _dependencies, nmethodBucket*) \
|
||||
nonstatic_field(nmethodBucket, _nmethod, nmethod*) \
|
||||
nonstatic_field(nmethodBucket, _count, int) \
|
||||
nonstatic_field(nmethodBucket, _next, nmethodBucket*) \
|
||||
nonstatic_field(InstanceKlass, _method_ordering, Array<int>*) \
|
||||
nonstatic_field(InstanceKlass, _default_vtable_indices, Array<int>*) \
|
||||
nonstatic_field(Klass, _super_check_offset, juint) \
|
||||
|
@ -969,6 +965,7 @@ typedef CompactHashtable<Symbol*, char> SymbolCompactHashTable;
|
|||
nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment, int) \
|
||||
nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames, int) \
|
||||
nonstatic_field(Deoptimization::UnrollBlock, _total_frame_sizes, int) \
|
||||
nonstatic_field(Deoptimization::UnrollBlock, _unpack_kind, int) \
|
||||
nonstatic_field(Deoptimization::UnrollBlock, _frame_sizes, intptr_t*) \
|
||||
nonstatic_field(Deoptimization::UnrollBlock, _frame_pcs, address*) \
|
||||
nonstatic_field(Deoptimization::UnrollBlock, _register_block, intptr_t*) \
|
||||
|
@ -1377,10 +1374,6 @@ typedef CompactHashtable<Symbol*, char> SymbolCompactHashTable;
|
|||
nonstatic_field(vframeArrayElement, _bci, int) \
|
||||
nonstatic_field(vframeArrayElement, _method, Method*) \
|
||||
\
|
||||
nonstatic_field(PtrQueue, _active, bool) \
|
||||
nonstatic_field(PtrQueue, _buf, void**) \
|
||||
nonstatic_field(PtrQueue, _index, size_t) \
|
||||
\
|
||||
nonstatic_field(AccessFlags, _flags, jint) \
|
||||
nonstatic_field(elapsedTimer, _counter, jlong) \
|
||||
nonstatic_field(elapsedTimer, _active, bool) \
|
||||
|
@ -1553,7 +1546,6 @@ typedef CompactHashtable<Symbol*, char> SymbolCompactHashTable;
|
|||
declare_toplevel_type(volatile Metadata*) \
|
||||
\
|
||||
declare_toplevel_type(DataLayout) \
|
||||
declare_toplevel_type(nmethodBucket) \
|
||||
\
|
||||
/********/ \
|
||||
/* Oops */ \
|
||||
|
@ -2272,8 +2264,6 @@ typedef CompactHashtable<Symbol*, char> SymbolCompactHashTable;
|
|||
/* Miscellaneous types */ \
|
||||
/***************/ \
|
||||
\
|
||||
declare_toplevel_type(PtrQueue) \
|
||||
\
|
||||
/* freelist */ \
|
||||
declare_toplevel_type(FreeChunk*) \
|
||||
declare_toplevel_type(AdaptiveFreeList<FreeChunk>*) \
|
||||
|
@ -3065,6 +3055,9 @@ typedef CompactHashtable<Symbol*, char> SymbolCompactHashTable;
|
|||
#define GENERATE_VM_INT_CONSTANT_ENTRY(name) \
|
||||
{ QUOTE(name), (int32_t) name },
|
||||
|
||||
#define GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY(name, value) \
|
||||
{ (name), (int32_t)(value) },
|
||||
|
||||
#define GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY(name, value) \
|
||||
{ name, (int32_t) value },
|
||||
|
||||
|
@ -3295,6 +3288,9 @@ VMIntConstantEntry VMStructs::localHotSpotVMIntConstants[] = {
|
|||
VM_INT_CONSTANTS_CMS(GENERATE_VM_INT_CONSTANT_ENTRY)
|
||||
|
||||
VM_INT_CONSTANTS_PARNEW(GENERATE_VM_INT_CONSTANT_ENTRY)
|
||||
|
||||
VM_INT_CONSTANTS_G1(GENERATE_VM_INT_CONSTANT_ENTRY,
|
||||
GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY)
|
||||
#endif // INCLUDE_ALL_GCS
|
||||
|
||||
#if INCLUDE_TRACE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue