@@ -99,29 +99,29 @@ inline oop ShenandoahBarrierSet::load_reference_barrier(oop obj) {
99
99
return obj;
100
100
}
101
101
102
- template <DecoratorSet decorators, class T >
103
- inline oop ShenandoahBarrierSet::load_reference_barrier (oop obj, T* load_addr) {
102
+ template <class T >
103
+ inline oop ShenandoahBarrierSet::load_reference_barrier (DecoratorSet decorators, oop obj, T* load_addr) {
104
104
if (obj == NULL ) {
105
105
return NULL ;
106
106
}
107
107
108
108
// Prevent resurrection of unreachable phantom (i.e. weak-native) references.
109
- if (HasDecorator< decorators, ON_PHANTOM_OOP_REF>::value &&
109
+ if (( decorators & ON_PHANTOM_OOP_REF) != 0 &&
110
110
_heap->is_concurrent_weak_root_in_progress () &&
111
111
!_heap->marking_context ()->is_marked (obj)) {
112
112
return NULL ;
113
113
}
114
114
115
115
// Prevent resurrection of unreachable weak references.
116
- if ((HasDecorator< decorators, ON_WEAK_OOP_REF>::value || HasDecorator<decorators, ON_UNKNOWN_OOP_REF>::value) &&
116
+ if ((decorators & ON_WEAK_OOP_REF) != 0 &&
117
117
_heap->is_concurrent_weak_root_in_progress () &&
118
118
!_heap->marking_context ()->is_marked_strong (obj)) {
119
119
return NULL ;
120
120
}
121
121
122
122
// Prevent resurrection of unreachable objects that are visited during
123
123
// concurrent class-unloading.
124
- if (HasDecorator< decorators, AS_NO_KEEPALIVE>::value &&
124
+ if (( decorators & AS_NO_KEEPALIVE) != 0 &&
125
125
_heap->is_evacuation_in_progress () &&
126
126
!_heap->marking_context ()->is_marked (obj)) {
127
127
return obj;
@@ -184,45 +184,64 @@ inline void ShenandoahBarrierSet::keep_alive_if_weak(DecoratorSet decorators, oo
184
184
}
185
185
}
186
186
187
- template <DecoratorSet decorators>
188
- inline void ShenandoahBarrierSet::keep_alive_if_weak (oop value) {
189
- assert ((decorators & ON_UNKNOWN_OOP_REF) == 0 , " Reference strength must be known" );
190
- if (!HasDecorator<decorators, ON_STRONG_OOP_REF>::value &&
191
- !HasDecorator<decorators, AS_NO_KEEPALIVE>::value) {
192
- satb_enqueue (value);
193
- }
187
+ template <typename T>
188
+ inline oop ShenandoahBarrierSet::oop_load (DecoratorSet decorators, T* addr) {
189
+ oop value = RawAccess<>::oop_load (addr);
190
+ value = load_reference_barrier (decorators, value, addr);
191
+ keep_alive_if_weak (decorators, value);
192
+ return value;
193
+ }
194
+
195
+ template <typename T>
196
+ inline oop ShenandoahBarrierSet::oop_cmpxchg (DecoratorSet decorators, T* addr, oop compare_value, oop new_value) {
197
+ iu_barrier (new_value);
198
+ oop res;
199
+ oop expected = compare_value;
200
+ do {
201
+ compare_value = expected;
202
+ res = RawAccess<>::oop_atomic_cmpxchg (addr, compare_value, new_value);
203
+ expected = res;
204
+ } while ((compare_value != expected) && (resolve_forwarded (compare_value) == resolve_forwarded (expected)));
205
+
206
+ // Note: We don't need a keep-alive-barrier here. We already enqueue any loaded reference for SATB anyway,
207
+ // because it must be the previous value.
208
+ res = load_reference_barrier (decorators, res, reinterpret_cast <T*>(NULL ));
209
+ satb_enqueue (res);
210
+ return res;
211
+ }
212
+
213
+ template <typename T>
214
+ inline oop ShenandoahBarrierSet::oop_xchg (DecoratorSet decorators, T* addr, oop new_value) {
215
+ iu_barrier (new_value);
216
+ oop previous = RawAccess<>::oop_atomic_xchg (addr, new_value);
217
+ // Note: We don't need a keep-alive-barrier here. We already enqueue any loaded reference for SATB anyway,
218
+ // because it must be the previous value.
219
+ previous = load_reference_barrier<T>(decorators, previous, reinterpret_cast <T*>(NULL ));
220
+ satb_enqueue (previous);
221
+ return previous;
194
222
}
195
223
196
224
template <DecoratorSet decorators, typename BarrierSetT>
197
225
template <typename T>
198
226
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_load_not_in_heap(T* addr) {
199
- oop value = Raw::oop_load_not_in_heap (addr);
200
- if (value != NULL ) {
201
- ShenandoahBarrierSet *const bs = ShenandoahBarrierSet::barrier_set ();
202
- value = bs->load_reference_barrier <decorators, T>(value, addr);
203
- bs->keep_alive_if_weak <decorators>(value);
204
- }
205
- return value;
227
+ assert ((decorators & ON_UNKNOWN_OOP_REF) == 0 , " must be absent" );
228
+ ShenandoahBarrierSet* const bs = ShenandoahBarrierSet::barrier_set ();
229
+ return bs->oop_load (decorators, addr);
206
230
}
207
231
208
232
template <DecoratorSet decorators, typename BarrierSetT>
209
233
template <typename T>
210
234
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_load_in_heap(T* addr) {
211
- oop value = Raw::oop_load_in_heap (addr);
212
- ShenandoahBarrierSet *const bs = ShenandoahBarrierSet::barrier_set ();
213
- value = bs->load_reference_barrier <decorators, T>(value, addr);
214
- bs->keep_alive_if_weak <decorators>(value);
215
- return value;
235
+ assert ((decorators & ON_UNKNOWN_OOP_REF) == 0 , " must be absent" );
236
+ ShenandoahBarrierSet* const bs = ShenandoahBarrierSet::barrier_set ();
237
+ return bs->oop_load (decorators, addr);
216
238
}
217
239
218
240
template <DecoratorSet decorators, typename BarrierSetT>
219
241
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_load_in_heap_at(oop base, ptrdiff_t offset) {
220
- oop value = Raw::oop_load_in_heap_at (base, offset);
221
- ShenandoahBarrierSet *const bs = ShenandoahBarrierSet::barrier_set ();
242
+ ShenandoahBarrierSet* const bs = ShenandoahBarrierSet::barrier_set ();
222
243
DecoratorSet resolved_decorators = AccessBarrierSupport::resolve_possibly_unknown_oop_ref_strength<decorators>(base, offset);
223
- value = bs->load_reference_barrier <decorators>(value, AccessInternal::oop_field_addr<decorators>(base, offset));
224
- bs->keep_alive_if_weak (resolved_decorators, value);
225
- return value;
244
+ return bs->oop_load (resolved_decorators, AccessInternal::oop_field_addr<decorators>(base, offset));
226
245
}
227
246
228
247
template <DecoratorSet decorators, typename BarrierSetT>
@@ -254,59 +273,49 @@ inline void ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_st
254
273
template <DecoratorSet decorators, typename BarrierSetT>
255
274
template <typename T>
256
275
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_atomic_cmpxchg_not_in_heap(T* addr, oop compare_value, oop new_value) {
276
+ assert ((decorators & (AS_NO_KEEPALIVE | ON_UNKNOWN_OOP_REF)) == 0 , " must be absent" );
257
277
ShenandoahBarrierSet* bs = ShenandoahBarrierSet::barrier_set ();
258
- bs->iu_barrier (new_value);
259
-
260
- oop res;
261
- oop expected = compare_value;
262
- do {
263
- compare_value = expected;
264
- res = Raw::oop_atomic_cmpxchg (addr, compare_value, new_value);
265
- expected = res;
266
- } while ((compare_value != expected) && (resolve_forwarded (compare_value) == resolve_forwarded (expected)));
267
-
268
- // Note: We don't need a keep-alive-barrier here. We already enqueue any loaded reference for SATB anyway,
269
- // because it must be the previous value.
270
- res = ShenandoahBarrierSet::barrier_set ()->load_reference_barrier <decorators, T>(res, NULL );
271
- bs->satb_enqueue (res);
272
- return res;
278
+ return bs->oop_cmpxchg (decorators, addr, compare_value, new_value);
273
279
}
274
280
275
281
template <DecoratorSet decorators, typename BarrierSetT>
276
282
template <typename T>
277
283
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_atomic_cmpxchg_in_heap(T* addr, oop compare_value, oop new_value) {
278
- return oop_atomic_cmpxchg_not_in_heap (addr, compare_value, new_value);
284
+ assert ((decorators & (AS_NO_KEEPALIVE | ON_UNKNOWN_OOP_REF)) == 0 , " must be absent" );
285
+ ShenandoahBarrierSet* bs = ShenandoahBarrierSet::barrier_set ();
286
+ return bs->oop_cmpxchg (decorators, addr, compare_value, new_value);
279
287
}
280
288
281
289
template <DecoratorSet decorators, typename BarrierSetT>
282
290
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_atomic_cmpxchg_in_heap_at(oop base, ptrdiff_t offset, oop compare_value, oop new_value) {
283
- return oop_atomic_cmpxchg_in_heap (AccessInternal::oop_field_addr<decorators>(base, offset), compare_value, new_value);
291
+ assert ((decorators & AS_NO_KEEPALIVE) == 0 , " must be absent" );
292
+ ShenandoahBarrierSet* bs = ShenandoahBarrierSet::barrier_set ();
293
+ DecoratorSet resolved_decorators = AccessBarrierSupport::resolve_possibly_unknown_oop_ref_strength<decorators>(base, offset);
294
+ return bs->oop_cmpxchg (resolved_decorators, AccessInternal::oop_field_addr<decorators>(base, offset), compare_value, new_value);
284
295
}
285
296
286
297
template <DecoratorSet decorators, typename BarrierSetT>
287
298
template <typename T>
288
299
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_atomic_xchg_not_in_heap(T* addr, oop new_value) {
300
+ assert ((decorators & (AS_NO_KEEPALIVE | ON_UNKNOWN_OOP_REF)) == 0 , " must be absent" );
289
301
ShenandoahBarrierSet* bs = ShenandoahBarrierSet::barrier_set ();
290
- bs->iu_barrier (new_value);
291
-
292
- oop previous = Raw::oop_atomic_xchg (addr, new_value);
293
-
294
- // Note: We don't need a keep-alive-barrier here. We already enqueue any loaded reference for SATB anyway,
295
- // because it must be the previous value.
296
- previous = ShenandoahBarrierSet::barrier_set ()->load_reference_barrier <decorators, T>(previous, NULL );
297
- bs->satb_enqueue (previous);
298
- return previous;
302
+ return bs->oop_xchg (decorators, addr, new_value);
299
303
}
300
304
301
305
template <DecoratorSet decorators, typename BarrierSetT>
302
306
template <typename T>
303
307
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_atomic_xchg_in_heap(T* addr, oop new_value) {
304
- return oop_atomic_xchg_not_in_heap (addr, new_value);
308
+ assert ((decorators & (AS_NO_KEEPALIVE | ON_UNKNOWN_OOP_REF)) == 0 , " must be absent" );
309
+ ShenandoahBarrierSet* bs = ShenandoahBarrierSet::barrier_set ();
310
+ return bs->oop_xchg (decorators, addr, new_value);
305
311
}
306
312
307
313
template <DecoratorSet decorators, typename BarrierSetT>
308
314
inline oop ShenandoahBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_atomic_xchg_in_heap_at(oop base, ptrdiff_t offset, oop new_value) {
309
- return oop_atomic_xchg_in_heap (AccessInternal::oop_field_addr<decorators>(base, offset), new_value);
315
+ assert ((decorators & AS_NO_KEEPALIVE) == 0 , " must be absent" );
316
+ ShenandoahBarrierSet* bs = ShenandoahBarrierSet::barrier_set ();
317
+ DecoratorSet resolved_decorators = AccessBarrierSupport::resolve_possibly_unknown_oop_ref_strength<decorators>(base, offset);
318
+ return bs->oop_xchg (resolved_decorators, AccessInternal::oop_field_addr<decorators>(base, offset), new_value);
310
319
}
311
320
312
321
// Clone barrier support
0 commit comments