Lines Matching refs:st

948 void nmethod::print_on(outputStream* st, const char* msg) const {
949 if (st != NULL) {
952 CompileTask::print_compilation(st, this, msg, /*short_form:*/ true);
953 st->print_cr(" (" INTPTR_FORMAT ")", this);
955 CompileTask::print_compilation(st, this, msg, /*short_form:*/ false);
2525 stringStream st;
2528 st.print("oop(");
2529 if (obj == NULL) st.print("NULL");
2530 else obj->print_value_on(&st);
2531 st.print(")");
2532 return st.as_string();
2668 void nmethod::print_code_comment_on(outputStream* st, int column, u_char* begin, u_char* end) {
2680 st->move_to(column);
2681 st->print("; ");
2682 om->print_on(st);
2692 st->move_to(column);
2694 st->print(";*synchronization entry");
2697 st->print("method is NULL");
2699 st->print("method is native");
2702 st->print(";*%s", Bytecodes::name(bc));
2710 st->print(" ");
2712 invoke.name()->print_symbol_on(st);
2714 st->print("<UNKNOWN>");
2723 st->print(" ");
2725 field.name()->print_symbol_on(st);
2727 st->print("<UNKNOWN>");
2735 st->move_to(column);
2736 st->print("; -");
2738 st->print("method is NULL");
2740 sd->method()->print_short_name(st);
2744 st->print("@%d (line %d)", sd->bci(), lineno);
2746 st->print("@%d", sd->bci());
2748 st->cr();
2755 if (sd != NULL) st->cr();
2756 st->move_to(column);
2757 st->print("; {%s}", str);
2761 st->move_to(column);
2762 st->print("; implicit exception: dispatches to " INTPTR_FORMAT, code_begin() + cont_offset);
2769 void nmethod::print_value_on(outputStream* st) const {
2770 st->print("nmethod");
2771 print_on(st, NULL);
2774 void nmethod::print_calls(outputStream* st) {
2785 st->print_cr("Static call at " INTPTR_FORMAT, iter.reloc()->addr());