comparison agent/src/share/classes/sun/jvm/hotspot/oops/Metadata.java @ 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 d8ce2825b193
children
comparison
equal deleted inserted replaced
6965:3be318ecfae5 6972:bd7a7ce2e264
77 77
78 void iterateFields(MetadataVisitor visitor) { 78 void iterateFields(MetadataVisitor visitor) {
79 } 79 }
80 80
81 abstract public void printValueOn(PrintStream tty); 81 abstract public void printValueOn(PrintStream tty);
82 public void dumpReplayData(PrintStream out) {
83 out.println("# Unknown Metadata");
84 }
82 } 85 }