--- old/src/share/vm/gc/shenandoah/shenandoahPrinter.cpp 2017-10-05 21:08:06.456156104 +0200 +++ new/src/share/vm/gc/shenandoah/shenandoahPrinter.cpp 2017-10-05 21:08:06.341155824 +0200 @@ -46,7 +46,7 @@ tty->print_cr("%s "INT32_FORMAT" ("PTR_FORMAT")-> "PTR_FORMAT" (marked: %s) (%s "PTR_FORMAT")", _prefix, _index, p2i(p), p2i(o), - BOOL_TO_STR(ShenandoahHeap::heap()->is_marked_complete(o)), + BOOL_TO_STR(ShenandoahHeap::heap()->is_marked(o)), o->klass()->internal_name(), p2i(o->klass())); } else { tty->print_cr("%s "INT32_FORMAT" ("PTR_FORMAT" dirty -> "PTR_FORMAT" (not in heap, possibly corrupted or dirty)", @@ -79,7 +79,7 @@ if (ShenandoahHeap::heap()->is_in(p)) { tty->print_cr("%s object "PTR_FORMAT" (marked: %s) (%s "PTR_FORMAT") refers to:", _prefix, p2i(p), - BOOL_TO_STR(ShenandoahHeap::heap()->is_marked_complete(p)), + BOOL_TO_STR(ShenandoahHeap::heap()->is_marked(p)), p->klass()->internal_name(), p2i(p->klass())); ShenandoahPrintAllRefsOopClosure cl(_prefix); p->oop_iterate(&cl);