Skip to content

Commit e63b90c

Browse files
Aditya Mandaleekashipilev
Aditya Mandaleeka
authored andcommittedSep 29, 2020
8251358: Clean up Access configuration after Shenandoah barrier change
Reviewed-by: eosterlund, rkennke, shade
1 parent 9c17a35 commit e63b90c

38 files changed

+110
-202
lines changed
 

‎src/hotspot/share/classfile/javaClasses.inline.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void java_lang_ref_Reference::set_referent_raw(oop ref, oop value) {
113113
}
114114

115115
HeapWord* java_lang_ref_Reference::referent_addr_raw(oop ref) {
116-
return ref->obj_field_addr_raw<HeapWord>(_referent_offset);
116+
return ref->obj_field_addr<HeapWord>(_referent_offset);
117117
}
118118

119119
oop java_lang_ref_Reference::next(oop ref) {
@@ -129,7 +129,7 @@ void java_lang_ref_Reference::set_next_raw(oop ref, oop value) {
129129
}
130130

131131
HeapWord* java_lang_ref_Reference::next_addr_raw(oop ref) {
132-
return ref->obj_field_addr_raw<HeapWord>(_next_offset);
132+
return ref->obj_field_addr<HeapWord>(_next_offset);
133133
}
134134

135135
oop java_lang_ref_Reference::discovered(oop ref) {
@@ -145,7 +145,7 @@ void java_lang_ref_Reference::set_discovered_raw(oop ref, oop value) {
145145
}
146146

147147
HeapWord* java_lang_ref_Reference::discovered_addr_raw(oop ref) {
148-
return ref->obj_field_addr_raw<HeapWord>(_discovered_offset);
148+
return ref->obj_field_addr<HeapWord>(_discovered_offset);
149149
}
150150

151151
bool java_lang_ref_Reference::is_final(oop ref) {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class G1ResetHumongousClosure : public HeapRegionClosure {
4848
if (_bitmap->is_marked(obj)) {
4949
// Clear bitmap and fix mark word.
5050
_bitmap->clear(obj);
51-
obj->init_mark_raw();
51+
obj->init_mark();
5252
} else {
5353
assert(current->is_empty(), "Should have been cleared in phase 2.");
5454
}
@@ -71,7 +71,7 @@ size_t G1FullGCCompactTask::G1CompactRegionClosure::apply(oop obj) {
7171
HeapWord* obj_addr = cast_from_oop<HeapWord*>(obj);
7272
assert(obj_addr != destination, "everything in this pass should be moving");
7373
Copy::aligned_conjoint_words(obj_addr, destination, size);
74-
oop(destination)->init_mark_raw();
74+
oop(destination)->init_mark();
7575
assert(oop(destination)->klass() != NULL, "should have a class");
7676

7777
return size;

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,15 @@ void G1FullGCCompactionPoint::forward(oop object, size_t size) {
112112
// with BiasedLocking, in this case forwardee() will return NULL
113113
// even if the mark-word is used. This is no problem since
114114
// forwardee() will return NULL in the compaction phase as well.
115-
object->init_mark_raw();
115+
object->init_mark();
116116
} else {
117117
// Make sure object has the correct mark-word set or that it will be
118118
// fixed when restoring the preserved marks.
119-
assert(object->mark_raw() == markWord::prototype_for_klass(object->klass()) || // Correct mark
119+
assert(object->mark() == markWord::prototype_for_klass(object->klass()) || // Correct mark
120120
object->mark_must_be_preserved() || // Will be restored by PreservedMarksSet
121-
(UseBiasedLocking && object->has_bias_pattern_raw()), // Will be restored by BiasedLocking
121+
(UseBiasedLocking && object->has_bias_pattern()), // Will be restored by BiasedLocking
122122
"should have correct prototype obj: " PTR_FORMAT " mark: " PTR_FORMAT " prototype: " PTR_FORMAT,
123-
p2i(object), object->mark_raw().value(), markWord::prototype_for_klass(object->klass()).value());
123+
p2i(object), object->mark().value(), markWord::prototype_for_klass(object->klass()).value());
124124
}
125125
assert(object->forwardee() == NULL, "should be forwarded to NULL");
126126
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ inline bool G1FullGCMarker::mark_object(oop obj) {
5050
}
5151

5252
// Marked by us, preserve if needed.
53-
markWord mark = obj->mark_raw();
53+
markWord mark = obj->mark();
5454
if (obj->mark_must_be_preserved(mark) &&
5555
!G1ArchiveAllocator::is_open_archive_object(obj)) {
5656
preserved_stack()->push(obj, mark);

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ template <class T> inline void G1AdjustClosure::adjust_pointer(T* p) {
7777
oop forwardee = obj->forwardee();
7878
if (forwardee == NULL) {
7979
// Not forwarded, return current reference.
80-
assert(obj->mark_raw() == markWord::prototype_for_klass(obj->klass()) || // Correct mark
80+
assert(obj->mark() == markWord::prototype_for_klass(obj->klass()) || // Correct mark
8181
obj->mark_must_be_preserved() || // Will be restored by PreservedMarksSet
82-
(UseBiasedLocking && obj->has_bias_pattern_raw()), // Will be restored by BiasedLocking
82+
(UseBiasedLocking && obj->has_bias_pattern()), // Will be restored by BiasedLocking
8383
"Must have correct prototype or be preserved, obj: " PTR_FORMAT ", mark: " PTR_FORMAT ", prototype: " PTR_FORMAT,
84-
p2i(obj), obj->mark_raw().value(), markWord::prototype_for_klass(obj->klass()).value());
84+
p2i(obj), obj->mark().value(), markWord::prototype_for_klass(obj->klass()).value());
8585
return;
8686
}
8787

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ inline void G1ScanClosureBase::prefetch_and_push(T* p, const oop obj) {
4747
// stall. We'll try to prefetch the object (for write, given that
4848
// we might need to install the forwarding reference) and we'll
4949
// get back to it when pop it from the queue
50-
Prefetch::write(obj->mark_addr_raw(), 0);
51-
Prefetch::read(obj->mark_addr_raw(), (HeapWordSize*2));
50+
Prefetch::write(obj->mark_addr(), 0);
51+
Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
5252

5353
// slightly paranoid test; I'm trying to catch potential
5454
// problems before we go into push_on_queue to know where the
@@ -231,7 +231,7 @@ void G1ParCopyClosure<barrier, do_mark_object>::do_oop_work(T* p) {
231231
const G1HeapRegionAttr state = _g1h->region_attr(obj);
232232
if (state.is_in_cset()) {
233233
oop forwardee;
234-
markWord m = obj->mark_raw();
234+
markWord m = obj->mark();
235235
if (m.is_marked()) {
236236
forwardee = (oop) m.decode_pointer();
237237
} else {

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ void G1ParScanThreadState::do_oop_evac(T* p) {
193193
return;
194194
}
195195

196-
markWord m = obj->mark_raw();
196+
markWord m = obj->mark();
197197
if (m.is_marked()) {
198198
obj = (oop) m.decode_pointer();
199199
} else {
@@ -485,15 +485,15 @@ oop G1ParScanThreadState::do_copy_to_survivor_space(G1HeapRegionAttr const regio
485485
// In this case, we have to install the mark word first,
486486
// otherwise obj looks to be forwarded (the old mark word,
487487
// which contains the forward pointer, was copied)
488-
obj->set_mark_raw(old_mark);
488+
obj->set_mark(old_mark);
489489
markWord new_mark = old_mark.displaced_mark_helper().set_age(age);
490490
old_mark.set_displaced_mark_helper(new_mark);
491491
} else {
492-
obj->set_mark_raw(old_mark.set_age(age));
492+
obj->set_mark(old_mark.set_age(age));
493493
}
494494
_age_table.add(age, word_sz);
495495
} else {
496-
obj->set_mark_raw(old_mark);
496+
obj->set_mark(old_mark);
497497
}
498498

499499
// Most objects are not arrays, so do one array check rather than

‎src/hotspot/share/gc/parallel/psCompactionManager.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ inline void follow_array_specialized(objArrayOop obj, int index, ParCompactionMa
133133

134134
const size_t stride = MIN2(len - beg_index, (size_t)ObjArrayMarkingStride);
135135
const size_t end_index = beg_index + stride;
136-
T* const base = (T*)obj->base_raw();
136+
T* const base = (T*)obj->base();
137137
T* const beg = base + beg_index;
138138
T* const end = base + end_index;
139139

‎src/hotspot/share/gc/parallel/psPromotionLAB.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void PSPromotionLAB::flush() {
8383
// so they can always fill with an array.
8484
HeapWord* tlab_end = end() + filler_header_size;
8585
typeArrayOop filler_oop = (typeArrayOop) top();
86-
filler_oop->set_mark_raw(markWord::prototype());
86+
filler_oop->set_mark(markWord::prototype());
8787
filler_oop->set_klass(Universe::intArrayKlassObj());
8888
const size_t array_length =
8989
pointer_delta(tlab_end, top()) - typeArrayOopDesc::header_size(T_INT);

‎src/hotspot/share/gc/parallel/psPromotionManager.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ inline void PSPromotionManager::claim_or_forward_depth(T* p) {
5353
assert(should_scavenge(p, true), "revisiting object?");
5454
assert(ParallelScavengeHeap::heap()->is_in(p), "pointer outside heap");
5555
oop obj = RawAccess<IS_NOT_NULL>::oop_load(p);
56-
Prefetch::write(obj->mark_addr_raw(), 0);
56+
Prefetch::write(obj->mark_addr(), 0);
5757
push_depth(ScannerTask(p));
5858
}
5959

@@ -141,7 +141,7 @@ inline oop PSPromotionManager::copy_to_survivor_space(oop o) {
141141
// NOTE! We must be very careful with any methods that access the mark
142142
// in o. There may be multiple threads racing on it, and it may be forwarded
143143
// at any time. Do not use oop methods for accessing the mark!
144-
markWord test_mark = o->mark_raw();
144+
markWord test_mark = o->mark();
145145

146146
// The same test as "o->is_forwarded()"
147147
if (!test_mark.is_marked()) {

‎src/hotspot/share/gc/serial/defNewGeneration.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ void DefNewGeneration::handle_promotion_failure(oop old) {
693693

694694
_promotion_failed = true;
695695
_promotion_failed_info.register_copy_failure(old->size());
696-
_preserved_marks_set.get()->push_if_necessary(old, old->mark_raw());
696+
_preserved_marks_set.get()->push_if_necessary(old, old->mark());
697697
// forward to self
698698
old->forward_to(old);
699699

‎src/hotspot/share/gc/serial/markSweep.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ template <class T> inline void MarkSweep::follow_root(T* p) {
132132
T heap_oop = RawAccess<>::oop_load(p);
133133
if (!CompressedOops::is_null(heap_oop)) {
134134
oop obj = CompressedOops::decode_not_null(heap_oop);
135-
if (!obj->mark_raw().is_marked()) {
135+
if (!obj->mark().is_marked()) {
136136
mark_object(obj);
137137
follow_object(obj);
138138
}
@@ -148,7 +148,7 @@ void PreservedMark::adjust_pointer() {
148148
}
149149

150150
void PreservedMark::restore() {
151-
_obj->set_mark_raw(_mark);
151+
_obj->set_mark(_mark);
152152
}
153153

154154
// We preserve the mark which should be replaced at the end and the location
@@ -205,7 +205,7 @@ void MarkSweep::restore_marks() {
205205
while (!_preserved_oop_stack.is_empty()) {
206206
oop obj = _preserved_oop_stack.pop();
207207
markWord mark = _preserved_mark_stack.pop();
208-
obj->set_mark_raw(mark);
208+
obj->set_mark(mark);
209209
}
210210
}
211211

‎src/hotspot/share/gc/serial/markSweep.inline.hpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
inline void MarkSweep::mark_object(oop obj) {
3939
// some marks may contain information we need to preserve so we store them away
4040
// and overwrite the mark. We'll restore it at the end of markSweep.
41-
markWord mark = obj->mark_raw();
42-
obj->set_mark_raw(markWord::prototype().set_marked());
41+
markWord mark = obj->mark();
42+
obj->set_mark(markWord::prototype().set_marked());
4343

4444
if (obj->mark_must_be_preserved(mark)) {
4545
preserve_mark(obj, mark);
@@ -50,7 +50,7 @@ template <class T> inline void MarkSweep::mark_and_push(T* p) {
5050
T heap_oop = RawAccess<>::oop_load(p);
5151
if (!CompressedOops::is_null(heap_oop)) {
5252
oop obj = CompressedOops::decode_not_null(heap_oop);
53-
if (!obj->mark_raw().is_marked()) {
53+
if (!obj->mark().is_marked()) {
5454
mark_object(obj);
5555
_marking_stack.push(obj);
5656
}
@@ -79,11 +79,11 @@ template <class T> inline void MarkSweep::adjust_pointer(T* p) {
7979
oop obj = CompressedOops::decode_not_null(heap_oop);
8080
assert(Universe::heap()->is_in(obj), "should be in heap");
8181

82-
oop new_obj = oop(obj->mark_raw().decode_pointer());
82+
oop new_obj = oop(obj->mark().decode_pointer());
8383

84-
assert(new_obj != NULL || // is forwarding ptr?
85-
obj->mark_raw() == markWord::prototype() || // not gc marked?
86-
(UseBiasedLocking && obj->mark_raw().has_bias_pattern()),
84+
assert(new_obj != NULL || // is forwarding ptr?
85+
obj->mark() == markWord::prototype() || // not gc marked?
86+
(UseBiasedLocking && obj->mark().has_bias_pattern()),
8787
// not gc marked?
8888
"should be forwarded");
8989

‎src/hotspot/share/gc/shared/barrierSetConfig.hpp

-16
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,4 @@
4343
FOR_EACH_ABSTRACT_BARRIER_SET_DO(f) \
4444
FOR_EACH_CONCRETE_BARRIER_SET_DO(f)
4545

46-
// To enable runtime-resolution of GC barriers on primitives, please
47-
// define SUPPORT_BARRIER_ON_PRIMITIVES.
48-
#ifdef SUPPORT_BARRIER_ON_PRIMITIVES
49-
#define ACCESS_PRIMITIVE_SUPPORT INTERNAL_BT_BARRIER_ON_PRIMITIVES
50-
#else
51-
#define ACCESS_PRIMITIVE_SUPPORT DECORATORS_NONE
52-
#endif
53-
54-
#ifdef SUPPORT_NOT_TO_SPACE_INVARIANT
55-
#define ACCESS_TO_SPACE_INVARIANT_SUPPORT DECORATORS_NONE
56-
#else
57-
#define ACCESS_TO_SPACE_INVARIANT_SUPPORT INTERNAL_BT_TO_SPACE_INVARIANT
58-
#endif
59-
60-
#define BT_BUILDTIME_DECORATORS (ACCESS_PRIMITIVE_SUPPORT | ACCESS_TO_SPACE_INVARIANT_SUPPORT)
61-
6246
#endif // SHARE_GC_SHARED_BARRIERSETCONFIG_HPP

‎src/hotspot/share/gc/shared/memAllocator.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,10 @@ void MemAllocator::mem_clear(HeapWord* mem) const {
383383
oop MemAllocator::finish(HeapWord* mem) const {
384384
assert(mem != NULL, "NULL object pointer");
385385
if (UseBiasedLocking) {
386-
oopDesc::set_mark_raw(mem, _klass->prototype_header());
386+
oopDesc::set_mark(mem, _klass->prototype_header());
387387
} else {
388388
// May be bootstrapping
389-
oopDesc::set_mark_raw(mem, markWord::prototype());
389+
oopDesc::set_mark(mem, markWord::prototype());
390390
}
391391
// Need a release store to ensure array/class length, mark word, and
392392
// object zeroing are visible before setting the klass non-NULL, for

‎src/hotspot/share/gc/shared/preservedMarks.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ inline void PreservedMarks::push_if_necessary(oop obj, markWord m) {
4747
}
4848

4949
inline void PreservedMarks::init_forwarded_mark(oop obj) {
50-
obj->init_mark_raw();
50+
obj->init_mark();
5151
}
5252

5353
inline PreservedMarks::PreservedMarks()
@@ -59,7 +59,7 @@ inline PreservedMarks::PreservedMarks()
5959
0 /* max_cache_size */) { }
6060

6161
void PreservedMarks::OopAndMarkWord::set_mark() const {
62-
_o->set_mark_raw(_m);
62+
_o->set_mark(_m);
6363
}
6464

6565
#endif // SHARE_GC_SHARED_PRESERVEDMARKS_INLINE_HPP

‎src/hotspot/share/gc/shared/space.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ HeapWord* CompactibleSpace::forward(oop q, size_t size,
379379
} else {
380380
// if the object isn't moving we can just set the mark to the default
381381
// mark and handle it specially later on.
382-
q->init_mark_raw();
382+
q->init_mark();
383383
assert(q->forwardee() == NULL, "should be forwarded to NULL");
384384
}
385385

@@ -617,14 +617,14 @@ void ContiguousSpace::allocate_temporary_filler(int factor) {
617617
// allocate uninitialized int array
618618
typeArrayOop t = (typeArrayOop) allocate(size);
619619
assert(t != NULL, "allocation should succeed");
620-
t->set_mark_raw(markWord::prototype());
620+
t->set_mark(markWord::prototype());
621621
t->set_klass(Universe::intArrayKlassObj());
622622
t->set_length((int)length);
623623
} else {
624624
assert(size == CollectedHeap::min_fill_size(),
625625
"size for smallest fake object doesn't match");
626626
instanceOop obj = (instanceOop) allocate(size);
627-
obj->set_mark_raw(markWord::prototype());
627+
obj->set_mark(markWord::prototype());
628628
obj->set_klass_gap(0);
629629
obj->set_klass(SystemDictionary::Object_klass());
630630
}

‎src/hotspot/share/gc/shared/space.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class DeadSpacer : StackObj {
117117
_allowed_deadspace_words -= dead_length;
118118
CollectedHeap::fill_with_object(dead_start, dead_length);
119119
oop obj = oop(dead_start);
120-
obj->set_mark_raw(obj->mark_raw().set_marked());
120+
obj->set_mark(obj->mark().set_marked());
121121

122122
assert(dead_length == (size_t)obj->size(), "bad filler object size");
123123
log_develop_trace(gc, compaction)("Inserting object to dead space: " PTR_FORMAT ", " PTR_FORMAT ", " SIZE_FORMAT "b",
@@ -336,7 +336,7 @@ inline void CompactibleSpace::scan_and_compact(SpaceType* space) {
336336
// copy object and reinit its mark
337337
assert(cur_obj != compaction_top, "everything in this pass should be moving");
338338
Copy::aligned_conjoint_words(cur_obj, compaction_top, size);
339-
oop(compaction_top)->init_mark_raw();
339+
oop(compaction_top)->init_mark();
340340
assert(oop(compaction_top)->klass() != NULL, "should have a class");
341341

342342
debug_only(prev_obj = cur_obj);

‎src/hotspot/share/gc/shenandoah/shenandoahForwarding.inline.hpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ inline HeapWord* ShenandoahForwarding::get_forwardee_raw_unchecked(oop obj) {
4040
// On this path, we can encounter the "marked" object, but with NULL
4141
// fwdptr. That object is still not forwarded, and we need to return
4242
// the object itself.
43-
markWord mark = obj->mark_raw();
43+
markWord mark = obj->mark();
4444
if (mark.is_marked()) {
4545
HeapWord* fwdptr = (HeapWord*) mark.clear_lock_bits().to_pointer();
4646
if (fwdptr != NULL) {
@@ -55,7 +55,7 @@ inline oop ShenandoahForwarding::get_forwardee_mutator(oop obj) {
5555
shenandoah_assert_correct(NULL, obj);
5656
assert(Thread::current()->is_Java_thread(), "Must be a mutator thread");
5757

58-
markWord mark = obj->mark_raw();
58+
markWord mark = obj->mark();
5959
if (mark.is_marked()) {
6060
HeapWord* fwdptr = (HeapWord*) mark.clear_lock_bits().to_pointer();
6161
assert(fwdptr != NULL, "Forwarding pointer is never null here");
@@ -71,17 +71,17 @@ inline oop ShenandoahForwarding::get_forwardee(oop obj) {
7171
}
7272

7373
inline bool ShenandoahForwarding::is_forwarded(oop obj) {
74-
return obj->mark_raw().is_marked();
74+
return obj->mark().is_marked();
7575
}
7676

7777
inline oop ShenandoahForwarding::try_update_forwardee(oop obj, oop update) {
78-
markWord old_mark = obj->mark_raw();
78+
markWord old_mark = obj->mark();
7979
if (old_mark.is_marked()) {
8080
return oop(old_mark.clear_lock_bits().to_pointer());
8181
}
8282

8383
markWord new_mark = markWord::encode_pointer_as_mark(update);
84-
markWord prev_mark = obj->cas_set_mark_raw(new_mark, old_mark);
84+
markWord prev_mark = obj->cas_set_mark(new_mark, old_mark, memory_order_conservative);
8585
if (prev_mark == old_mark) {
8686
return update;
8787
} else {

1 commit comments

Comments
 (1)

bridgekeeper[bot] commented on Sep 29, 2020

@bridgekeeper[bot]
Please sign in to comment.