comparison 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
comparison
equal deleted inserted replaced
7420:18d56ca3e901 7421: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()) {