comparison src/share/vm/ci/ciField.cpp @ 7482:989155e2d07a

Merge with hs25-b15.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Jan 2013 01:34:24 +0100
parents e522a00b91aa ad5dd04754ee
children cefad50507d8
comparison
equal deleted inserted replaced
7381:6761a8f854a4 7482:989155e2d07a
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()) {