Skip to content

Commit 6ebf845

Browse files
committedMar 31, 2022
8283566: G1: Improve G1BarrierSet::enqueue performance
Reviewed-by: tschatzl, ayang
1 parent d276da5 commit 6ebf845

File tree

4 files changed

+36
-20
lines changed

4 files changed

+36
-20
lines changed
 

‎src/hotspot/share/gc/g1/g1BarrierSet.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,6 @@ G1BarrierSet::G1BarrierSet(G1CardTable* card_table) :
6161
_dirty_card_queue_set(&_dirty_card_queue_buffer_allocator)
6262
{}
6363

64-
void G1BarrierSet::enqueue(oop pre_val) {
65-
// Nulls should have been already filtered.
66-
assert(oopDesc::is_oop(pre_val, true), "Error");
67-
SATBMarkQueue& queue = G1ThreadLocalData::satb_mark_queue(Thread::current());
68-
G1BarrierSet::satb_mark_queue_set().enqueue(queue, pre_val);
69-
}
70-
7164
template <class T> void
7265
G1BarrierSet::write_ref_array_pre_work(T* dst, size_t count) {
7366
G1SATBMarkQueueSet& queue_set = G1BarrierSet::satb_mark_queue_set();

‎src/hotspot/share/gc/g1/g1BarrierSet.hpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,12 @@ class G1BarrierSet: public CardTableBarrierSet {
5656
}
5757

5858
// Add "pre_val" to a set of objects that may have been disconnected from the
59-
// pre-marking object graph.
60-
static void enqueue(oop pre_val);
59+
// pre-marking object graph. Prefer the version that takes location, as it
60+
// can avoid touching the heap unnecessarily.
61+
template <class T> static void enqueue(T* dst);
62+
static void enqueue_preloaded(oop pre_val);
6163

62-
static void enqueue_if_weak(DecoratorSet decorators, oop value);
64+
static void enqueue_preloaded_if_weak(DecoratorSet decorators, oop value);
6365

6466
template <class T> void write_ref_array_pre_work(T* dst, size_t count);
6567
virtual void write_ref_array_pre(oop* dst, size_t count, bool dest_uninitialized);

‎src/hotspot/share/gc/g1/g1BarrierSet.inline.hpp

+30-9
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,43 @@
2828
#include "gc/g1/g1BarrierSet.hpp"
2929

3030
#include "gc/g1/g1CardTable.hpp"
31+
#include "gc/g1/g1ThreadLocalData.hpp"
3132
#include "gc/shared/accessBarrierSupport.inline.hpp"
3233
#include "oops/access.inline.hpp"
3334
#include "oops/compressedOops.inline.hpp"
3435
#include "oops/oop.hpp"
3536

37+
inline void G1BarrierSet::enqueue_preloaded(oop pre_val) {
38+
// Nulls should have been already filtered.
39+
assert(oopDesc::is_oop(pre_val, true), "Error");
40+
41+
G1SATBMarkQueueSet& queue_set = G1BarrierSet::satb_mark_queue_set();
42+
if (!queue_set.is_active()) return;
43+
44+
SATBMarkQueue& queue = G1ThreadLocalData::satb_mark_queue(Thread::current());
45+
queue_set.enqueue_known_active(queue, pre_val);
46+
}
47+
48+
template <class T>
49+
inline void G1BarrierSet::enqueue(T* dst) {
50+
G1SATBMarkQueueSet& queue_set = G1BarrierSet::satb_mark_queue_set();
51+
if (!queue_set.is_active()) return;
52+
53+
T heap_oop = RawAccess<MO_RELAXED>::oop_load(dst);
54+
if (!CompressedOops::is_null(heap_oop)) {
55+
SATBMarkQueue& queue = G1ThreadLocalData::satb_mark_queue(Thread::current());
56+
queue_set.enqueue_known_active(queue, CompressedOops::decode_not_null(heap_oop));
57+
}
58+
}
59+
3660
template <DecoratorSet decorators, typename T>
3761
inline void G1BarrierSet::write_ref_field_pre(T* field) {
3862
if (HasDecorator<decorators, IS_DEST_UNINITIALIZED>::value ||
3963
HasDecorator<decorators, AS_NO_KEEPALIVE>::value) {
4064
return;
4165
}
4266

43-
T heap_oop = RawAccess<MO_RELAXED>::oop_load(field);
44-
if (!CompressedOops::is_null(heap_oop)) {
45-
enqueue(CompressedOops::decode_not_null(heap_oop));
46-
}
67+
enqueue(field);
4768
}
4869

4970
template <DecoratorSet decorators, typename T>
@@ -55,7 +76,7 @@ inline void G1BarrierSet::write_ref_field_post(T* field, oop new_val) {
5576
}
5677
}
5778

58-
inline void G1BarrierSet::enqueue_if_weak(DecoratorSet decorators, oop value) {
79+
inline void G1BarrierSet::enqueue_preloaded_if_weak(DecoratorSet decorators, oop value) {
5980
assert((decorators & ON_UNKNOWN_OOP_REF) == 0, "Reference strength must be known");
6081
// Loading from a weak or phantom reference needs enqueueing, as
6182
// the object may not have been reachable (part of the snapshot)
@@ -65,7 +86,7 @@ inline void G1BarrierSet::enqueue_if_weak(DecoratorSet decorators, oop value) {
6586
const bool needs_enqueue = (!peek && !on_strong_oop_ref);
6687

6788
if (needs_enqueue && value != NULL) {
68-
enqueue(value);
89+
enqueue_preloaded(value);
6990
}
7091
}
7192

@@ -74,7 +95,7 @@ template <typename T>
7495
inline oop G1BarrierSet::AccessBarrier<decorators, BarrierSetT>::
7596
oop_load_not_in_heap(T* addr) {
7697
oop value = ModRef::oop_load_not_in_heap(addr);
77-
enqueue_if_weak(decorators, value);
98+
enqueue_preloaded_if_weak(decorators, value);
7899
return value;
79100
}
80101

@@ -83,15 +104,15 @@ template <typename T>
83104
inline oop G1BarrierSet::AccessBarrier<decorators, BarrierSetT>::
84105
oop_load_in_heap(T* addr) {
85106
oop value = ModRef::oop_load_in_heap(addr);
86-
enqueue_if_weak(decorators, value);
107+
enqueue_preloaded_if_weak(decorators, value);
87108
return value;
88109
}
89110

90111
template <DecoratorSet decorators, typename BarrierSetT>
91112
inline oop G1BarrierSet::AccessBarrier<decorators, BarrierSetT>::
92113
oop_load_in_heap_at(oop base, ptrdiff_t offset) {
93114
oop value = ModRef::oop_load_in_heap_at(base, offset);
94-
enqueue_if_weak(AccessBarrierSupport::resolve_possibly_unknown_oop_ref_strength<decorators>(base, offset), value);
115+
enqueue_preloaded_if_weak(AccessBarrierSupport::resolve_possibly_unknown_oop_ref_strength<decorators>(base, offset), value);
95116
return value;
96117
}
97118

‎src/hotspot/share/gc/g1/g1CollectedHeap.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2279,7 +2279,7 @@ void G1CollectedHeap::object_iterate_parallel(ObjectClosure* cl, uint worker_id,
22792279
}
22802280

22812281
void G1CollectedHeap::keep_alive(oop obj) {
2282-
G1BarrierSet::enqueue(obj);
2282+
G1BarrierSet::enqueue_preloaded(obj);
22832283
}
22842284

22852285
void G1CollectedHeap::heap_region_iterate(HeapRegionClosure* cl) const {

0 commit comments

Comments
 (0)
Please sign in to comment.