src/share/vm/ci/ciSignature.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/ci

src/share/vm/ci/ciSignature.cpp

Print this page




 131     if (this->type_at(i) != that->type_at(i))         return false;
 132   }
 133   // Compare the return type
 134   if (this->return_type() != that->return_type())     return false;
 135   return true;
 136 }
 137 
 138 // ------------------------------------------------------------------
 139 // ciSignature::print_signature
 140 void ciSignature::print_signature() {
 141   _symbol->print_symbol();
 142 }
 143 
 144 // ------------------------------------------------------------------
 145 // ciSignature::print
 146 void ciSignature::print() {
 147   tty->print("<ciSignature symbol=");
 148   print_signature();
 149  tty->print(" accessing_klass=");
 150   _accessing_klass->print();
 151   tty->print(" address=0x%x>", (address)this);
 152 }


 131     if (this->type_at(i) != that->type_at(i))         return false;
 132   }
 133   // Compare the return type
 134   if (this->return_type() != that->return_type())     return false;
 135   return true;
 136 }
 137 
 138 // ------------------------------------------------------------------
 139 // ciSignature::print_signature
 140 void ciSignature::print_signature() {
 141   _symbol->print_symbol();
 142 }
 143 
 144 // ------------------------------------------------------------------
 145 // ciSignature::print
 146 void ciSignature::print() {
 147   tty->print("<ciSignature symbol=");
 148   print_signature();
 149  tty->print(" accessing_klass=");
 150   _accessing_klass->print();
 151   tty->print(" address=0x%" PRIxPTR ">", p2i((address)this));
 152 }
src/share/vm/ci/ciSignature.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File