Skip to content

Commit bffa77b

Browse files
author
SendaoYan
committedDec 23, 2024
8346714: [ASAN] compressedKlass.cpp reported applying non-zero offset to null pointer
Reviewed-by: mdoerr, coleenp
1 parent c1b868d commit bffa77b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎src/hotspot/share/oops/compressedKlass.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void CompressedKlassPointers::sanity_check_after_initialization() {
9696

9797
// Check that Klass range is fully engulfed in the encoding range
9898
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));
100100
ASSERT_HERE_2(_klass_range_start >= _base && _klass_range_end <= encoding_end,
101101
"Resulting encoding range does not fully cover the class range");
102102

‎src/hotspot/share/utilities/globalDefinitions.hpp

+5
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,11 @@ inline intptr_t p2i(const volatile void* p) {
185185
return (intptr_t) p;
186186
}
187187

188+
// Convert pointer to uintptr_t
189+
inline uintptr_t p2u(const volatile void* p) {
190+
return (uintptr_t) p;
191+
}
192+
188193
#define BOOL_TO_STR(_b_) ((_b_) ? "true" : "false")
189194

190195
//----------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.