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

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:

*** 235,239 **** --- 235,245 ---- // // Print the name of this klass void ciKlass::print_name_on(outputStream* st) { name()->print_symbol_on(st); } + + const char* ciKlass::external_name() const { + GUARDED_VM_ENTRY( + return get_Klass()->external_name(); + ) + }
src/share/vm/ci/ciKlass.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File