comparison src/share/vm/ci/ciSymbol.cpp @ 6972:bd7a7ce2e264

6830717: replay of compilations would help with debugging Summary: When java process crashed in compiler thread, repeat the compilation process will help finding root cause. This is done with using SA dump application class data and replay data from core dump, then use debug version of jvm to recompile the problematic java method. Reviewed-by: kvn, twisti, sspitsyn Contributed-by: yumin.qi@oracle.com
author minqi
date Mon, 12 Nov 2012 14:03:53 -0800
parents b9a9ed0f8eeb
children
comparison
equal deleted inserted replaced
6965:3be318ecfae5 6972:bd7a7ce2e264
59 // The text of the symbol as a null-terminated C string. 59 // The text of the symbol as a null-terminated C string.
60 const char* ciSymbol::as_utf8() { 60 const char* ciSymbol::as_utf8() {
61 VM_QUICK_ENTRY_MARK; 61 VM_QUICK_ENTRY_MARK;
62 Symbol* s = get_symbol(); 62 Symbol* s = get_symbol();
63 return s->as_utf8(); 63 return s->as_utf8();
64 }
65
66 // The text of the symbol as a null-terminated C string.
67 const char* ciSymbol::as_quoted_ascii() {
68 GUARDED_VM_QUICK_ENTRY(return get_symbol()->as_quoted_ascii();)
64 } 69 }
65 70
66 // ------------------------------------------------------------------ 71 // ------------------------------------------------------------------
67 // ciSymbol::base 72 // ciSymbol::base
68 const jbyte* ciSymbol::base() { 73 const jbyte* ciSymbol::base() {