src/share/vm/gc_implementation/g1/concurrentMark.cpp

changeset 5784
190899198332
parent 5697
ff218fdb30ba
child 6168
1de8e5356754
equal deleted inserted replaced
5783:c1fbf21c7397 5784:190899198332
2692 bool marked = _g1h->is_marked(o, _vo); 2692 bool marked = _g1h->is_marked(o, _vo);
2693 bool print_it = _all || over_tams || marked; 2693 bool print_it = _all || over_tams || marked;
2694 2694
2695 if (print_it) { 2695 if (print_it) {
2696 _out->print_cr(" "PTR_FORMAT"%s", 2696 _out->print_cr(" "PTR_FORMAT"%s",
2697 o, (over_tams) ? " >" : (marked) ? " M" : ""); 2697 (void *)o, (over_tams) ? " >" : (marked) ? " M" : "");
2698 PrintReachableOopClosure oopCl(_out, _vo, _all); 2698 PrintReachableOopClosure oopCl(_out, _vo, _all);
2699 o->oop_iterate_no_header(&oopCl); 2699 o->oop_iterate_no_header(&oopCl);
2700 } 2700 }
2701 } 2701 }
2702 }; 2702 };

mercurial