File tree 4 files changed +7
-7
lines changed
src/hotspot/share/gc/shenandoah
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ class ShenandoahCollectionSet : public CHeapObj<mtGC> {
80
80
81
81
inline bool is_in (ShenandoahHeapRegion* r) const ;
82
82
inline bool is_in (size_t region_number) const ;
83
- inline bool is_in (HeapWord* loc) const ;
84
83
inline bool is_in (oop obj) const ;
84
+ inline bool is_in_loc (void * loc) const ;
85
85
86
86
void print_on (outputStream* out) const ;
87
87
Original file line number Diff line number Diff line change @@ -40,10 +40,11 @@ bool ShenandoahCollectionSet::is_in(ShenandoahHeapRegion* r) const {
40
40
}
41
41
42
42
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));
44
45
}
45
46
46
- bool ShenandoahCollectionSet::is_in (HeapWord * p) const {
47
+ bool ShenandoahCollectionSet::is_in_loc ( void * p) const {
47
48
assert (_heap->is_in (p), " Must be in the heap" );
48
49
uintx index = ((uintx) p) >> _region_size_bytes_shift;
49
50
// no need to subtract the bottom of the heap from p,
Original file line number Diff line number Diff line change @@ -327,14 +327,12 @@ inline bool ShenandoahHeap::requires_marking(const void* entry) const {
327
327
328
328
inline bool ShenandoahHeap::in_collection_set (oop p) const {
329
329
assert (collection_set () != NULL , " Sanity" );
330
- assert (is_in (p), " should be in heap" );
331
330
return collection_set ()->is_in (p);
332
331
}
333
332
334
333
inline bool ShenandoahHeap::in_collection_set_loc (void * p) const {
335
334
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);
338
336
}
339
337
340
338
inline bool ShenandoahHeap::is_stable () const {
Original file line number Diff line number Diff line change 25
25
#ifndef SHARE_GC_SHENANDOAH_SHENANDOAHHEAPREGIONSET_INLINE_HPP
26
26
#define SHARE_GC_SHENANDOAH_SHENANDOAHHEAPREGIONSET_INLINE_HPP
27
27
28
+ #include " gc/shenandoah/shenandoahAsserts.hpp"
28
29
#include " gc/shenandoah/shenandoahHeapRegionSet.hpp"
29
30
#include " gc/shenandoah/shenandoahHeap.hpp"
30
31
#include " gc/shenandoah/shenandoahHeap.inline.hpp"
@@ -40,7 +41,7 @@ bool ShenandoahHeapRegionSet::is_in(ShenandoahHeapRegion* r) const {
40
41
}
41
42
42
43
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 );
44
45
uintx index = (cast_from_oop<uintx>(p)) >> _region_size_bytes_shift;
45
46
// no need to subtract the bottom of the heap from p,
46
47
// _biased_set_map is biased
You can’t perform that action at this time.
0 commit comments