comparison src/share/vm/gc_implementation/g1/concurrentMark.cpp @ 12316:190899198332

7195622: CheckUnhandledOops has limited usefulness now Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms. Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin Contributed-by: lois.foltan@oracle.com
author hseigel
date Thu, 26 Sep 2013 10:25:02 -0400
parents ff218fdb30ba
children 1de8e5356754
comparison
equal deleted inserted replaced
12315:c1fbf21c7397 12316: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 };