mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8253180: ZGC: Implementation of JEP 376: ZGC: Concurrent Thread-Stack Processing
Reviewed-by: stefank, pliden, rehn, neliasso, coleenp, smonteith
This commit is contained in:
parent
a2f651904d
commit
b9873e1833
131 changed files with 2428 additions and 572 deletions
|
@ -328,7 +328,7 @@
|
|||
\
|
||||
nonstatic_field(Thread, _tlab, ThreadLocalAllocBuffer) \
|
||||
nonstatic_field(Thread, _allocated_bytes, jlong) \
|
||||
nonstatic_field(Thread, _polling_page, volatile void*) \
|
||||
nonstatic_field(Thread, _poll_data, SafepointMechanism::ThreadData) \
|
||||
\
|
||||
nonstatic_field(ThreadLocalAllocBuffer, _start, HeapWord*) \
|
||||
nonstatic_field(ThreadLocalAllocBuffer, _top, HeapWord*) \
|
||||
|
@ -340,6 +340,9 @@
|
|||
nonstatic_field(ThreadLocalAllocBuffer, _fast_refill_waste, unsigned) \
|
||||
nonstatic_field(ThreadLocalAllocBuffer, _slow_allocations, unsigned) \
|
||||
\
|
||||
nonstatic_field(SafepointMechanism::ThreadData, _polling_word, volatile uintptr_t) \
|
||||
nonstatic_field(SafepointMechanism::ThreadData, _polling_page, volatile uintptr_t) \
|
||||
\
|
||||
nonstatic_field(ThreadShadow, _pending_exception, oop) \
|
||||
\
|
||||
static_field(vmSymbols, _symbols[0], Symbol*) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue