hotspot/src/share/vm/compiler/disassembler.cpp
changeset 7439 572e3f624901
parent 7405 e6fc8d3926f8
parent 7433 b418028612ad
child 8107 78e5bd944384
--- a/hotspot/src/share/vm/compiler/disassembler.cpp	Wed Dec 08 04:50:35 2010 -0800
+++ b/hotspot/src/share/vm/compiler/disassembler.cpp	Wed Dec 08 17:50:49 2010 -0800
@@ -466,5 +466,18 @@
     env.set_total_ticks(total_bucket_count);
   }
 
+  // Print constant table.
+  if (nm->consts_size() > 0) {
+    nm->print_nmethod_labels(env.output(), nm->consts_begin());
+    int offset = 0;
+    for (address p = nm->consts_begin(); p < nm->consts_end(); p += 4, offset += 4) {
+      if ((offset % 8) == 0) {
+        env.output()->print_cr("  " INTPTR_FORMAT " (offset: %4d): " PTR32_FORMAT "   " PTR64_FORMAT, (intptr_t) p, offset, *((int32_t*) p), *((int64_t*) p));
+      } else {
+        env.output()->print_cr("  " INTPTR_FORMAT " (offset: %4d): " PTR32_FORMAT,                    (intptr_t) p, offset, *((int32_t*) p));
+      }
+    }
+  }
+
   env.decode_instructions(p, end);
 }