diff src/share/vm/ci/ciField.cpp @ 7421:ad5dd04754ee

8005031: Some cleanup in c2 to prepare for incremental inlining support Summary: collection of small changes to prepare for incremental inlining. Reviewed-by: twisti, kvn
author roland
date Tue, 18 Dec 2012 14:55:25 +0100
parents da91efe96a93
children 989155e2d07a edb5ab0f3fe5
line wrap: on
line diff
--- a/src/share/vm/ci/ciField.cpp	Mon Dec 17 11:00:22 2012 -0800
+++ b/src/share/vm/ci/ciField.cpp	Tue Dec 18 14:55:25 2012 +0100
@@ -366,10 +366,12 @@
 // ------------------------------------------------------------------
 // ciField::print
 void ciField::print() {
-  tty->print("<ciField ");
+  tty->print("<ciField name=");
   _holder->print_name();
   tty->print(".");
   _name->print_symbol();
+  tty->print(" signature=");
+  _signature->print_symbol();
   tty->print(" offset=%d type=", _offset);
   if (_type != NULL) _type->print_name();
   else               tty->print("(reference)");