src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp
changeset 58868 f547a06da806
parent 58543 a7a606f6311c
child 59247 56bf71d64d51
equal deleted inserted replaced
58867:0c671290204c 58868:f547a06da806
   693 
   693 
   694     size_t heap_committed = _heap->committed();
   694     size_t heap_committed = _heap->committed();
   695     guarantee(cl.committed() == heap_committed,
   695     guarantee(cl.committed() == heap_committed,
   696               "%s: heap committed size must be consistent: heap-committed = " SIZE_FORMAT "%s, regions-committed = " SIZE_FORMAT "%s",
   696               "%s: heap committed size must be consistent: heap-committed = " SIZE_FORMAT "%s, regions-committed = " SIZE_FORMAT "%s",
   697               label,
   697               label,
   698               byte_size_in_exact_unit(heap_committed), proper_unit_for_byte_size(heap_committed),
   698               byte_size_in_proper_unit(heap_committed), proper_unit_for_byte_size(heap_committed),
   699               byte_size_in_exact_unit(cl.committed()), proper_unit_for_byte_size(cl.committed()));
   699               byte_size_in_proper_unit(cl.committed()), proper_unit_for_byte_size(cl.committed()));
   700   }
   700   }
   701 
   701 
   702   // Internal heap region checks
   702   // Internal heap region checks
   703   if (ShenandoahVerifyLevel >= 1) {
   703   if (ShenandoahVerifyLevel >= 1) {
   704     ShenandoahVerifyHeapRegionClosure cl(label, regions);
   704     ShenandoahVerifyHeapRegionClosure cl(label, regions);