comparison src/share/vm/oops/symbol.hpp @ 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 da91efe96a93
children 63e54c37ac64
comparison
equal deleted inserted replaced
6965:3be318ecfae5 6972:bd7a7ce2e264
187 char* as_C_string() const; 187 char* as_C_string() const;
188 char* as_C_string(char* buf, int size) const; 188 char* as_C_string(char* buf, int size) const;
189 // Use buf if needed buffer length is <= size. 189 // Use buf if needed buffer length is <= size.
190 char* as_C_string_flexible_buffer(Thread* t, char* buf, int size) const; 190 char* as_C_string_flexible_buffer(Thread* t, char* buf, int size) const;
191 191
192 // Returns an escaped form of a Java string.
193 char* as_quoted_ascii() const;
192 194
193 // Returns a null terminated utf8 string in a resource array 195 // Returns a null terminated utf8 string in a resource array
194 char* as_utf8() const { return as_C_string(); } 196 char* as_utf8() const { return as_C_string(); }
195 char* as_utf8_flexible_buffer(Thread* t, char* buf, int size) const { 197 char* as_utf8_flexible_buffer(Thread* t, char* buf, int size) const {
196 return as_C_string_flexible_buffer(t, buf, size); 198 return as_C_string_flexible_buffer(t, buf, size);