8005055: pass outputStream to more opto debug routines

Pass the output stream to node->dump() and everything reachable from there

Reviewed-by: kvn
This commit is contained in:
Goetz Lindenmaier 2013-01-22 11:31:25 -08:00 committed by Vladimir Kozlov
parent 1c9730cfb8
commit 44cdae9a57
10 changed files with 137 additions and 134 deletions

View file

@ -542,17 +542,17 @@ void print_register_type(OopMapValue::oop_types x, VMReg optional,
st->print("Oop");
break;
case OopMapValue::value_value:
st->print("Value" );
st->print("Value");
break;
case OopMapValue::narrowoop_value:
tty->print("NarrowOop" );
st->print("NarrowOop");
break;
case OopMapValue::callee_saved_value:
st->print("Callers_" );
st->print("Callers_");
optional->print_on(st);
break;
case OopMapValue::derived_oop_value:
st->print("Derived_oop_" );
st->print("Derived_oop_");
optional->print_on(st);
break;
default: