< prev index next >

src/share/vm/gc/g1/g1HeapVerifier.cpp

Print this page
rev 13288 : imported patch 8181917-refactor-ul-logstream
rev 13289 : [mq]: 8181917-refactor-ul-logstream-delta

*** 65,75 **** log.info("Root location " PTR_FORMAT " points to dead obj " PTR_FORMAT, p2i(p), p2i(obj)); if (_vo == VerifyOption_G1UseMarkWord) { log.error(" Mark word: " PTR_FORMAT, p2i(obj->mark())); } ResourceMark rm; - // Unconditional write? LogStream ls(log.error()); obj->print_on(&ls); _failures = true; } } --- 65,74 ----
*** 409,419 **** // It helps to have the per-region information in the output to // help us track down what went wrong. This is why we call // print_extended_on() instead of print_on(). Log(gc, verify) log; ResourceMark rm; - // Unconditional write? LogStream ls(log.error()); _g1h->print_extended_on(&ls); } guarantee(!failures, "there should not have been any failures"); } --- 408,417 ----
< prev index next >