src/share/vm/interpreter/bytecodeTracer.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 7089790_shared Cdiff src/share/vm/interpreter/bytecodeTracer.cpp

src/share/vm/interpreter/bytecodeTracer.cpp

Print this page
rev 2695 : shared changes

*** 90,100 **** // It is possible for this block to be skipped, if a garbage // _current_method pointer happens to have the same bits as // the incoming method. We could lose a line of trace output. // This is acceptable in a debug-only feature. st->cr(); ! st->print("[%d] ", (int) Thread::current()->osthread()->thread_id()); method->print_name(st); st->cr(); _current_method = method(); } Bytecodes::Code code; --- 90,100 ---- // It is possible for this block to be skipped, if a garbage // _current_method pointer happens to have the same bits as // the incoming method. We could lose a line of trace output. // This is acceptable in a debug-only feature. st->cr(); ! st->print("[%ld] ", (long) Thread::current()->osthread()->thread_id()); method->print_name(st); st->cr(); _current_method = method(); } Bytecodes::Code code;
*** 104,114 **** } else { code = Bytecodes::code_at(method(), bcp); } _code = code; int bci = bcp - method->code_base(); ! st->print("[%d] ", (int) Thread::current()->osthread()->thread_id()); if (Verbose) { st->print("%8d %4d " INTPTR_FORMAT " " INTPTR_FORMAT " %s", BytecodeCounter::counter_value(), bci, tos, tos2, Bytecodes::name(code)); } else { st->print("%8d %4d %s", --- 104,114 ---- } else { code = Bytecodes::code_at(method(), bcp); } _code = code; int bci = bcp - method->code_base(); ! st->print("[%ld] ", (long) Thread::current()->osthread()->thread_id()); if (Verbose) { st->print("%8d %4d " INTPTR_FORMAT " " INTPTR_FORMAT " %s", BytecodeCounter::counter_value(), bci, tos, tos2, Bytecodes::name(code)); } else { st->print("%8d %4d %s",
src/share/vm/interpreter/bytecodeTracer.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File