src/share/vm/gc_implementation/shared/mutableSpace.cpp

changeset 625
d1635bf93939
parent 435
a61af66fc99e
child 631
d1605aabd0a1
child 698
12eea04c8b06
equal deleted inserted replaced
624:0b27f3512f9e 625:d1635bf93939
116 MutableSpace::print_short_on(st); 116 MutableSpace::print_short_on(st);
117 st->print_cr(" [" INTPTR_FORMAT "," INTPTR_FORMAT "," INTPTR_FORMAT ")", 117 st->print_cr(" [" INTPTR_FORMAT "," INTPTR_FORMAT "," INTPTR_FORMAT ")",
118 bottom(), top(), end()); 118 bottom(), top(), end());
119 } 119 }
120 120
121 void MutableSpace::verify(bool allow_dirty) const { 121 void MutableSpace::verify(bool allow_dirty) {
122 HeapWord* p = bottom(); 122 HeapWord* p = bottom();
123 HeapWord* t = top(); 123 HeapWord* t = top();
124 HeapWord* prev_p = NULL; 124 HeapWord* prev_p = NULL;
125 while (p < t) { 125 while (p < t) {
126 oop(p)->verify(); 126 oop(p)->verify();

mercurial