hotspot/src/share/vm/ci/ciField.cpp
changeset 14828 bb9dffedf46c
parent 13728 882756847a04
child 19770 7cb9f982ea81
equal deleted inserted replaced
14827:8aa0a51a7137 14828:bb9dffedf46c
   364 }
   364 }
   365 
   365 
   366 // ------------------------------------------------------------------
   366 // ------------------------------------------------------------------
   367 // ciField::print
   367 // ciField::print
   368 void ciField::print() {
   368 void ciField::print() {
   369   tty->print("<ciField ");
   369   tty->print("<ciField name=");
   370   _holder->print_name();
   370   _holder->print_name();
   371   tty->print(".");
   371   tty->print(".");
   372   _name->print_symbol();
   372   _name->print_symbol();
       
   373   tty->print(" signature=");
       
   374   _signature->print_symbol();
   373   tty->print(" offset=%d type=", _offset);
   375   tty->print(" offset=%d type=", _offset);
   374   if (_type != NULL) _type->print_name();
   376   if (_type != NULL) _type->print_name();
   375   else               tty->print("(reference)");
   377   else               tty->print("(reference)");
   376   tty->print(" is_constant=%s", bool_to_str(_is_constant));
   378   tty->print(" is_constant=%s", bool_to_str(_is_constant));
   377   if (_is_constant && is_static()) {
   379   if (_is_constant && is_static()) {