Lines Matching refs:st

113 void RegisterMap::print_on(outputStream* st) const {
114 st->print_cr("Register map");
121 r->print_on(st);
122 st->print(" [" INTPTR_FORMAT "] = ", src);
124 st->print_cr("<misaligned>");
126 st->print_cr(INTPTR_FORMAT, *src);
545 void frame::print_value_on(outputStream* st, JavaThread *thread) const {
549 st->print("%s frame (sp=" INTPTR_FORMAT " unextended sp=" INTPTR_FORMAT, print_name(), sp(), unextended_sp());
551 st->print(", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT, fp(), pc());
554 st->print_cr(")");
555 st->print("(");
557 st->print("~Stub::%s", desc->name());
560 st->print_cr(")");
561 st->print("(");
564 st->print("~");
565 desc->print_on(st);
568 st->print("~interpreter");
571 st->print_cr(")");
574 st->print(" ");
575 _cb->print_value_on(st);
576 st->cr();
588 void frame::print_on(outputStream* st) const {
589 print_value_on(st,NULL);
591 interpreter_frame_print_on(st);
596 void frame::interpreter_frame_print_on(outputStream* st) const {
602 st->print(" - local [" INTPTR_FORMAT "]", x);
603 st->fill_to(23);
604 st->print_cr("; #%d", i);
608 st->print(" - stack [" INTPTR_FORMAT "]", x);
609 st->fill_to(23);
610 st->print_cr("; #%d", i);
616 st->print(" - obj [");
617 current->obj()->print_value_on(st);
618 st->print_cr("]");
619 st->print(" - lock [");
620 current->lock()->print_on(st);
621 st->print_cr("]");
624 st->print_cr(" - monitor[" INTPTR_FORMAT "]", interpreter_frame_monitor_begin());
626 st->print(" - bcp [" INTPTR_FORMAT "]", interpreter_frame_bcp());
627 st->fill_to(23);
628 st->print_cr("; @%d", interpreter_frame_bci());
630 st->print_cr(" - locals [" INTPTR_FORMAT "]", interpreter_frame_local_at(0));
632 st->print(" - method [" INTPTR_FORMAT "]", (address)interpreter_frame_method());
633 st->fill_to(23);
634 st->print("; ");
635 interpreter_frame_method()->print_name(st);
636 st->cr();
643 static void print_C_frame(outputStream* st, char* buf, int buflen, address pc) {
646 st->print(in_vm ? "V" : "C");
659 st->print(" [%s+0x%x]", p1, offset);
661 st->print(" " PTR_FORMAT, pc);
672 st->print(" %s+0x%x", buf, offset);
691 void frame::print_on_error(outputStream* st, char* buf, int buflen, bool verbose) const {
697 st->print("j %s", buf);
698 st->print("+%d", this->interpreter_frame_bci());
700 st->print("j " PTR_FORMAT, pc());
705 st->print("v ~StubRoutines::%s", desc->name());
707 st->print("v ~StubRoutines::" PTR_FORMAT, pc());
710 st->print("v ~BufferBlob::%s", ((BufferBlob *)_cb)->name());
715 st->print("J %s", buf);
717 st->print("J " PTR_FORMAT, pc());
720 st->print("v ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());
722 st->print("v ~DeoptimizationBlob");
724 st->print("v ~ExceptionBlob");
726 st->print("v ~SafepointBlob");
728 st->print("v blob " PTR_FORMAT, pc());
731 print_C_frame(st, buf, buflen, pc());