--- old/src/hotspot/share/gc/shared/collectedHeap.cpp 2019-09-16 12:03:46.871444882 +0200 +++ new/src/hotspot/share/gc/shared/collectedHeap.cpp 2019-09-16 12:03:46.614436497 +0200 @@ -174,7 +174,7 @@ } bool CollectedHeap::is_oop(oop object) const { - if (!check_obj_alignment(object)) { + if (!is_object_aligned(object)) { return false; } @@ -344,7 +344,7 @@ #endif // PRODUCT void CollectedHeap::check_oop_location(void* addr) const { - assert(check_obj_alignment(addr), "address is not aligned"); + assert(is_object_aligned(addr), "address is not aligned"); assert(_reserved.contains(addr), "address is not in reserved heap"); }