File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ void CompressedKlassPointers::sanity_check_after_initialization() {
96
96
97
97
// Check that Klass range is fully engulfed in the encoding range
98
98
const address encoding_start = _base;
99
- const address encoding_end = _base + nth_bit (narrow_klass_pointer_bits () + _shift);
99
+ const address encoding_end = (address)( p2u ( _base) + ( uintptr_t ) nth_bit (narrow_klass_pointer_bits () + _shift) );
100
100
ASSERT_HERE_2 (_klass_range_start >= _base && _klass_range_end <= encoding_end,
101
101
" Resulting encoding range does not fully cover the class range" );
102
102
Original file line number Diff line number Diff line change @@ -185,6 +185,11 @@ inline intptr_t p2i(const volatile void* p) {
185
185
return (intptr_t ) p;
186
186
}
187
187
188
+ // Convert pointer to uintptr_t
189
+ inline uintptr_t p2u (const volatile void * p) {
190
+ return (uintptr_t ) p;
191
+ }
192
+
188
193
#define BOOL_TO_STR (_b_ ) ((_b_) ? " true" : " false" )
189
194
190
195
// ----------------------------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments