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

src/share/vm/ci/ciSymbol.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:

*** 121,130 **** --- 121,134 ---- // Print the value of this symbol on an outputStream void ciSymbol::print_symbol_on(outputStream *st) { GUARDED_VM_ENTRY(get_symbol()->print_symbol_on(st);) } + const char* ciSymbol::as_klass_external_name() const { + GUARDED_VM_ENTRY(return get_symbol()->as_klass_external_name();); + } + // ------------------------------------------------------------------ // ciSymbol::make_impl // // Make a ciSymbol from a C string (implementation). ciSymbol* ciSymbol::make_impl(const char* s) {
src/share/vm/ci/ciSymbol.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File