Lines Matching refs:st

51 void StartNode::dump_spec(outputStream *st) const { st->print(" #"); _domain->dump_on(st);}
112 void ParmNode::dump_spec(outputStream *st) const {
114 st->print(names[_con]);
116 st->print("Parm%d: ",_con-TypeFunc::Parms);
118 if( !Verbose && !WizardMode ) bottom_type()->dump_on(st);
168 void ReturnNode::dump_req(outputStream *st) const {
172 if (i == TypeFunc::Parms) st->print("returns");
173 if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
174 else st->print("_ ");
211 void RethrowNode::dump_req(outputStream *st) const {
215 if (i == TypeFunc::Parms) st->print("exception");
216 if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
217 else st->print("_ ");
322 static void format_helper( PhaseRegAlloc *regalloc, outputStream* st, Node *n, const char *msg, uint i, GrowableArray<SafePointScalarObjectNode*> *scobjs ) {
323 if (n == NULL) { st->print(" NULL"); return; }
330 st->print(" %s%d]=#ScObj" INT32_FORMAT, msg, i, sco_n);
337 st->print(" %s%d]=%s",msg,i,buf);
342 st->print(" %s%d]=#"INT32_FORMAT,msg,i,t->is_int()->get_con());
346 st->print(" %s%d]=#NULL",msg,i);
351 st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,t->isa_oopptr()->const_oop());
354 st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,t->make_ptr()->isa_oopptr()->const_oop());
357 st->print(" %s%d]=#Raw" INTPTR_FORMAT,msg,i,t->is_rawptr());
360 st->print(" %s%d]=#%fD",msg,i,t->is_double_constant()->_d);
363 st->print(" %s%d]=#%fF",msg,i,t->is_float_constant()->_f);
366 st->print(" %s%d]=#"INT64_FORMAT,msg,i,t->is_long()->get_con());
370 st->print(" %s%d]=_",msg,i);
378 void JVMState::format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const {
379 st->print(" #");
381 _method->print_short_name(st);
382 st->print(" @ bci:%d ",_bci);
384 st->print_cr(" runtime stub ");
393 format_helper(regalloc, st, mcall->local(this, i), "L[", i, &scobjs);
397 st->print(" oob ");
399 format_helper(regalloc, st, mcall->stack(this, i), "STK[", i, &scobjs);
407 format_helper(regalloc, st, box, "MON-BOX[", i, &scobjs);
410 st->print(" MON-BOX%d=%s+%d",
420 format_helper(regalloc, st, obj, obj_msg, i, &scobjs);
425 st->print_cr("");
426 st->print(" # ScObj" INT32_FORMAT " ", i);
433 cik->print_name_on(st);
436 cik->as_array_klass()->base_element_type()->print_name_on(st);
437 st->print("[%d]", spobj->n_fields());
441 cie->print_name_on(st);
443 cie->as_array_klass()->base_element_type()->print_name_on(st);
447 st->print("[%d]", spobj->n_fields());
450 st->print("[]");
453 st->print("={");
460 st->print(" [");
462 cifield->print_name_on(st);
463 format_helper(regalloc, st, fld_node, ":", 0, &scobjs);
465 format_helper(regalloc, st, fld_node, "[", 0, &scobjs);
470 st->print(", [");
472 cifield->print_name_on(st);
473 format_helper(regalloc, st, fld_node, ":", j, &scobjs);
475 format_helper(regalloc, st, fld_node, ", [", j, &scobjs);
479 st->print(" }");
482 st->print_cr("");
483 if (caller() != NULL) caller()->format(regalloc, n, st);
487 void JVMState::dump_spec(outputStream *st) const {
504 st->print(" %s", endcn);
509 _method->print_short_name(st);
510 st->print(" @ bci:%d",_bci);
512 st->print(" reexecute");
514 st->print(" runtime stub");
516 if (caller() != NULL) caller()->dump_spec(st);
520 void JVMState::dump_on(outputStream* st) const {
532 st->print("JVMS depth=%d loc=%d stk=%d arg=%d mon=%d scalar=%d end=%d mondepth=%d sp=%d bci=%d reexecute=%s method=",
535 st->print_cr("(none)");
537 _method->print_name(st);
538 st->cr();
540 st->print(" bc: ");
541 _method->print_codes_on(bci(), bci()+1, st);
545 caller()->dump_on(st);
586 void CallNode::dump_req(outputStream *st) const {
590 if (i == TypeFunc::Parms) st->print("(");
591 if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
592 else st->print("_ ");
594 st->print(")");
597 void CallNode::dump_spec(outputStream *st) const {
598 st->print(" ");
599 tf()->dump_on(st);
600 if (_cnt != COUNT_UNKNOWN) st->print(" C=%f",_cnt);
601 if (jvms() != NULL) jvms()->dump_spec(st);
816 void CallJavaNode::dump_spec(outputStream *st) const {
817 if( _method ) _method->print_short_name(st);
818 CallNode::dump_spec(st);
851 void CallStaticJavaNode::dump_spec(outputStream *st) const {
852 st->print("# Static ");
854 st->print("%s", _name);
858 st->print("(%s)",
862 st->print(" ");
864 CallJavaNode::dump_spec(st);
875 void CallDynamicJavaNode::dump_spec(outputStream *st) const {
876 st->print("# Dynamic ");
877 CallJavaNode::dump_spec(st);
888 void CallRuntimeNode::dump_spec(outputStream *st) const {
889 st->print("# ");
890 st->print(_name);
891 CallNode::dump_spec(st);
906 void CallLeafNode::dump_spec(outputStream *st) const {
907 st->print("# ");
908 st->print(_name);
909 CallNode::dump_spec(st);
997 void SafePointNode::dump_spec(outputStream *st) const {
998 st->print(" SafePoint ");
1134 void SafePointScalarObjectNode::dump_spec(outputStream *st) const {
1135 st->print(" # fields@[%d..%d]", first_index(),