Lines Matching defs:hr
76 HeapRegion* hr, HeapWord* top);
97 void alloc(HeapRegion* hr, RegionType type, bool force = false) {
99 print((!force) ? Alloc : AllocForce, type, hr, NULL);
103 void alloc(RegionType type, HeapRegion* hr, HeapWord* top) {
105 print(Alloc, type, hr, top);
109 void retire(HeapRegion* hr) {
111 if (!SKIP_RETIRED_FULL_REGIONS || hr->top() < hr->end()) {
112 print(Retire, Unset, hr, hr->top());
117 void reuse(HeapRegion* hr) {
119 print(Reuse, Unset, hr, NULL);
123 void cset(HeapRegion* hr) {
125 print(CSet, Unset, hr, NULL);
129 void evac_failure(HeapRegion* hr) {
131 print(EvacFailure, Unset, hr, NULL);
135 void cleanup(HeapRegion* hr) {
137 print(Cleanup, Unset, hr, NULL);
141 void post_compaction(HeapRegion* hr, RegionType type) {
143 print(PostCompaction, type, hr, hr->top());