comparison src/share/vm/opto/callnode.cpp @ 931:72088be4b386

6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit Summary: use PcDesc to keep record of the reexecute bit instead of using DebugInfoStreams Reviewed-by: kvn, never, twisti
author cfang
date Thu, 20 Aug 2009 12:42:57 -0700
parents 15bbd3f505c0
children 873ec3787992
comparison
equal deleted inserted replaced
930:357d4e2eb4dd 931:72088be4b386
491 } 491 }
492 } 492 }
493 if (!printed) 493 if (!printed)
494 _method->print_short_name(st); 494 _method->print_short_name(st);
495 st->print(" @ bci:%d",_bci); 495 st->print(" @ bci:%d",_bci);
496 st->print(" reexecute:%s", _reexecute==Reexecute_True?"true":"false"); 496 if(_reexecute == Reexecute_True)
497 st->print(" reexecute");
497 } else { 498 } else {
498 st->print(" runtime stub"); 499 st->print(" runtime stub");
499 } 500 }
500 if (caller() != NULL) caller()->dump_spec(st); 501 if (caller() != NULL) caller()->dump_spec(st);
501 } 502 }