< prev index next >

src/share/vm/gc/g1/heapRegionType.hpp

Print this page

        

*** 23,32 **** --- 23,33 ---- */ #ifndef SHARE_VM_GC_G1_HEAPREGIONTYPE_HPP #define SHARE_VM_GC_G1_HEAPREGIONTYPE_HPP + #include "gc/g1/g1HeapRegionTraceType.hpp" #include "memory/allocation.hpp" #define hrt_assert_is_valid(tag) \ assert(is_valid((tag)), "invalid HR type: %u", (uint) (tag))
*** 139,148 **** --- 140,150 ---- // Misc const char* get_str() const; const char* get_short_str() const; + G1HeapRegionTraceType::Type get_trace_type(); HeapRegionType() : _tag(FreeTag) { hrt_assert_is_valid(_tag); } }; #endif // SHARE_VM_GC_G1_HEAPREGIONTYPE_HPP
< prev index next >