Skip to content

Commit d112950

Browse files
adityamandaleekashipilev
authored andcommittedMar 9, 2020
8230853: Shenandoah: replace leftover assert(is_in(...)) with rich asserts
Reviewed-by: shade
1 parent 9722dfc commit d112950

4 files changed

+7
-7
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahCollectionSet.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ class ShenandoahCollectionSet : public CHeapObj<mtGC> {
8080

8181
inline bool is_in(ShenandoahHeapRegion* r) const;
8282
inline bool is_in(size_t region_number) const;
83-
inline bool is_in(HeapWord* loc) const;
8483
inline bool is_in(oop obj) const;
84+
inline bool is_in_loc(void* loc) const;
8585

8686
void print_on(outputStream* out) const;
8787

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@ bool ShenandoahCollectionSet::is_in(ShenandoahHeapRegion* r) const {
4040
}
4141

4242
bool ShenandoahCollectionSet::is_in(oop p) const {
43-
return is_in(cast_from_oop<HeapWord*>(p));
43+
shenandoah_assert_in_heap(NULL, p);
44+
return is_in_loc(cast_from_oop<void*>(p));
4445
}
4546

46-
bool ShenandoahCollectionSet::is_in(HeapWord* p) const {
47+
bool ShenandoahCollectionSet::is_in_loc(void* p) const {
4748
assert(_heap->is_in(p), "Must be in the heap");
4849
uintx index = ((uintx) p) >> _region_size_bytes_shift;
4950
// no need to subtract the bottom of the heap from p,

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -327,14 +327,12 @@ inline bool ShenandoahHeap::requires_marking(const void* entry) const {
327327

328328
inline bool ShenandoahHeap::in_collection_set(oop p) const {
329329
assert(collection_set() != NULL, "Sanity");
330-
assert(is_in(p), "should be in heap");
331330
return collection_set()->is_in(p);
332331
}
333332

334333
inline bool ShenandoahHeap::in_collection_set_loc(void* p) const {
335334
assert(collection_set() != NULL, "Sanity");
336-
assert(is_in(p), "should be in heap");
337-
return collection_set()->is_in((HeapWord*)p);
335+
return collection_set()->is_in_loc(p);
338336
}
339337

340338
inline bool ShenandoahHeap::is_stable() const {

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#ifndef SHARE_GC_SHENANDOAH_SHENANDOAHHEAPREGIONSET_INLINE_HPP
2626
#define SHARE_GC_SHENANDOAH_SHENANDOAHHEAPREGIONSET_INLINE_HPP
2727

28+
#include "gc/shenandoah/shenandoahAsserts.hpp"
2829
#include "gc/shenandoah/shenandoahHeapRegionSet.hpp"
2930
#include "gc/shenandoah/shenandoahHeap.hpp"
3031
#include "gc/shenandoah/shenandoahHeap.inline.hpp"
@@ -40,7 +41,7 @@ bool ShenandoahHeapRegionSet::is_in(ShenandoahHeapRegion* r) const {
4041
}
4142

4243
bool ShenandoahHeapRegionSet::is_in(oop p) const {
43-
assert(_heap->is_in(p), "Must be in the heap");
44+
shenandoah_assert_in_heap(NULL, p);
4445
uintx index = (cast_from_oop<uintx>(p)) >> _region_size_bytes_shift;
4546
// no need to subtract the bottom of the heap from p,
4647
// _biased_set_map is biased

0 commit comments

Comments
 (0)
Please sign in to comment.