src/share/vm/memory/allocation.hpp

Print this page
rev 3953 : JDK-8005012: Add WB APIs to better support NMT testing
Summary:

*** 143,155 **** mtSymbol = 0x0900, // symbol mtNMT = 0x0A00, // memory used by native memory tracking mtChunk = 0x0B00, // chunk that holds content of arenas mtJavaHeap = 0x0C00, // Java heap mtClassShared = 0x0D00, // class data sharing ! mt_number_of_types = 0x000D, // number of memory types (mtDontTrack // is not included as validate type) ! mtDontTrack = 0x0E00, // memory we do not or cannot track mt_masks = 0x7F00, // object type mask otArena = 0x0010, // an arena object otNMTRecorder = 0x0020, // memory recorder object --- 143,156 ---- mtSymbol = 0x0900, // symbol mtNMT = 0x0A00, // memory used by native memory tracking mtChunk = 0x0B00, // chunk that holds content of arenas mtJavaHeap = 0x0C00, // Java heap mtClassShared = 0x0D00, // class data sharing ! mtTest = 0x0E00, // Test type for verifying NMT ! mt_number_of_types = 0x000E, // number of memory types (mtDontTrack // is not included as validate type) ! mtDontTrack = 0x0F00, // memory we do not or cannot track mt_masks = 0x7F00, // object type mask otArena = 0x0010, // an arena object otNMTRecorder = 0x0020, // memory recorder object