< prev index next >

src/share/vm/oops/markOop.cpp

Print this page
rev 9019 : [mq]: format.patch

*** 25,48 **** #include "precompiled.hpp" #include "oops/markOop.hpp" #include "runtime/thread.inline.hpp" #include "runtime/objectMonitor.inline.hpp" - PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC - void markOopDesc::print_on(outputStream* st) const { if (is_marked()) { st->print(" marked(" INTPTR_FORMAT ")", value()); } else if (has_monitor()) { // have to check has_monitor() before is_locked() st->print(" monitor(" INTPTR_FORMAT ")=", value()); ObjectMonitor* mon = monitor(); if (mon == NULL) { st->print("NULL (this should never be seen!)"); } else { ! st->print("{count=" INTPTR_FORMAT ",waiters=" INTPTR_FORMAT ! ",recursions=" INTPTR_FORMAT ",owner=" INTPTR_FORMAT "}", mon->count(), mon->waiters(), mon->recursions(), p2i(mon->owner())); } } else if (is_locked()) { st->print(" locked(" INTPTR_FORMAT ")->", value()); --- 25,46 ---- #include "precompiled.hpp" #include "oops/markOop.hpp" #include "runtime/thread.inline.hpp" #include "runtime/objectMonitor.inline.hpp" void markOopDesc::print_on(outputStream* st) const { if (is_marked()) { st->print(" marked(" INTPTR_FORMAT ")", value()); } else if (has_monitor()) { // have to check has_monitor() before is_locked() st->print(" monitor(" INTPTR_FORMAT ")=", value()); ObjectMonitor* mon = monitor(); if (mon == NULL) { st->print("NULL (this should never be seen!)"); } else { ! st->print("{count=0x%x,waiters=0x%x,recursions=" ! INTPTR_FORMAT ",owner=" INTPTR_FORMAT "}", mon->count(), mon->waiters(), mon->recursions(), p2i(mon->owner())); } } else if (is_locked()) { st->print(" locked(" INTPTR_FORMAT ")->", value());
*** 63,71 **** } } else { assert(is_unlocked() || has_bias_pattern(), "just checking"); st->print("mark("); if (has_bias_pattern()) st->print("biased,"); ! st->print("hash %#lx,", hash()); st->print("age %d)", age()); } } --- 61,69 ---- } } else { assert(is_unlocked() || has_bias_pattern(), "just checking"); st->print("mark("); if (has_bias_pattern()) st->print("biased,"); ! st->print("hash " INTPTR_FORMAT ",", hash()); st->print("age %d)", age()); } }
< prev index next >