mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
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:
parent
1c9730cfb8
commit
44cdae9a57
10 changed files with 137 additions and 134 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue