< prev index next >

test/hotspot/gtest/gc/g1/test_g1BiasedArray.cpp

Print this page
rev 60593 : 8252035: G1: Clean up G1CollectedHeap::*reserved* methods
Reviewed-by:

*** 41,52 **** // Any value that is non-zero HeapWord* fake_heap = (HeapWord*) LP64_ONLY(0xBAAA00000) NOT_LP64(0xBA000000); TestMappedArray array; ! array.initialize(fake_heap, fake_heap + REGION_SIZE_IN_WORDS * NUM_REGIONS, ! REGION_SIZE_IN_WORDS * HeapWordSize); const int DEFAULT_VALUE = array.default_value(); // Check address calculation (bounds) ASSERT_EQ(fake_heap, array.bottom_address_mapped()) << "bottom mapped address should be " --- 41,52 ---- // Any value that is non-zero HeapWord* fake_heap = (HeapWord*) LP64_ONLY(0xBAAA00000) NOT_LP64(0xBA000000); TestMappedArray array; ! MemRegion range(fake_heap, fake_heap + REGION_SIZE_IN_WORDS * NUM_REGIONS); ! array.initialize(range, REGION_SIZE_IN_WORDS * HeapWordSize); const int DEFAULT_VALUE = array.default_value(); // Check address calculation (bounds) ASSERT_EQ(fake_heap, array.bottom_address_mapped()) << "bottom mapped address should be "
< prev index next >