hotspot/agent/src/share/classes/sun/jvm/hotspot/CommandProcessor.java
changeset 6418 6671edbd230e
parent 5547 f4b087cbb361
child 8076 96d498ec7ae1
equal deleted inserted replaced
6417:82e8f98f22d8 6418:6671edbd230e
  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