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

src/share/vm/ci/ciKlass.cpp

Print this page
rev 6133 : 8005079: fix LogCompilation for incremental inlining
Summary: report late inlining as part of the rest of the inlining output
Reviewed-by:


 220     return get_Klass()->access_flags().as_int();
 221   )
 222 }
 223 
 224 // ------------------------------------------------------------------
 225 // ciKlass::print_impl
 226 //
 227 // Implementation of the print method
 228 void ciKlass::print_impl(outputStream* st) {
 229   st->print(" name=");
 230   print_name_on(st);
 231 }
 232 
 233 // ------------------------------------------------------------------
 234 // ciKlass::print_name
 235 //
 236 // Print the name of this klass
 237 void ciKlass::print_name_on(outputStream* st) {
 238   name()->print_symbol_on(st);
 239 }








 220     return get_Klass()->access_flags().as_int();
 221   )
 222 }
 223 
 224 // ------------------------------------------------------------------
 225 // ciKlass::print_impl
 226 //
 227 // Implementation of the print method
 228 void ciKlass::print_impl(outputStream* st) {
 229   st->print(" name=");
 230   print_name_on(st);
 231 }
 232 
 233 // ------------------------------------------------------------------
 234 // ciKlass::print_name
 235 //
 236 // Print the name of this klass
 237 void ciKlass::print_name_on(outputStream* st) {
 238   name()->print_symbol_on(st);
 239 }
 240 
 241 const char* ciKlass::external_name() const {
 242   GUARDED_VM_ENTRY(
 243     return get_Klass()->external_name();
 244   )
 245 }
src/share/vm/ci/ciKlass.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File