comparison agent/src/share/classes/sun/jvm/hotspot/CommandProcessor.java @ 1748:3e8fbc61cee8

6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
author twisti
date Wed, 25 Aug 2010 05:27:54 -0700
parents c18cbe5936b8
children 3582bf76420e
comparison
equal deleted inserted replaced
1747:53dbe853fb3a 1748:3e8fbc61cee8
1035 final HTMLGenerator gen = new HTMLGenerator(false); 1035 final HTMLGenerator gen = new HTMLGenerator(false);
1036 CodeCacheVisitor v = new CodeCacheVisitor() { 1036 CodeCacheVisitor v = new CodeCacheVisitor() {
1037 public void prologue(Address start, Address end) { 1037 public void prologue(Address start, Address end) {
1038 } 1038 }
1039 public void visit(CodeBlob blob) { 1039 public void visit(CodeBlob blob) {
1040 fout.println(gen.genHTML(blob.instructionsBegin())); 1040 fout.println(gen.genHTML(blob.contentBegin()));
1041 } 1041 }
1042 public void epilogue() { 1042 public void epilogue() {
1043 } 1043 }
1044 1044
1045 1045