src/share/vm/ci/ciField.cpp

changeset 4357
ad5dd04754ee
parent 4037
da91efe96a93
child 5658
edb5ab0f3fe5
equal deleted inserted replaced
4356:18d56ca3e901 4357:ad5dd04754ee
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()) {

mercurial