changeset in /hg/icedtea6: 2009-05-22 Gary Benson <gbenson at red...

Gary Benson gbenson at redhat.com
Fri May 22 06:55:49 PDT 2009


changeset f0c97fcc519f in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=f0c97fcc519f
description:
	2009-05-22  Gary Benson  <gbenson at redhat.com>

		* patches/icedtea-zero.patch
		(vmError.cpp): Don't include interpreterRuntime.hpp here.
		* ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp
		Include interpreterRuntime.hpp and scopeDesc.hpp.
		(ZeroStackPrinter::print_word): Decode pc to get bci.

diffstat:

3 files changed, 25 insertions(+), 4 deletions(-)
ChangeLog                                           |    8 ++++++++
patches/icedtea-zero.patch                          |    5 ++---
ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp |   16 +++++++++++++++-

diffs (76 lines):

diff -r 12f2a25cb831 -r f0c97fcc519f ChangeLog
--- a/ChangeLog	Thu May 21 14:26:47 2009 +0100
+++ b/ChangeLog	Fri May 22 14:56:54 2009 +0100
@@ -1,3 +1,11 @@ 2009-05-21  Gary Benson  <gbenson at redhat
+2009-05-22  Gary Benson  <gbenson at redhat.com>
+
+	* patches/icedtea-zero.patch
+	(vmError.cpp): Don't include interpreterRuntime.hpp here.
+	* ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp
+	Include interpreterRuntime.hpp and scopeDesc.hpp.
+	(ZeroStackPrinter::print_word): Decode pc to get bci.
+
 2009-05-21  Gary Benson  <gbenson at redhat.com>
 
 	* ports/hotspot/src/share/vm/shark/sharkCompiler.cpp:
diff -r 12f2a25cb831 -r f0c97fcc519f patches/icedtea-zero.patch
--- a/patches/icedtea-zero.patch	Thu May 21 14:26:47 2009 +0100
+++ b/patches/icedtea-zero.patch	Fri May 22 14:56:54 2009 +0100
@@ -162,14 +162,13 @@
  
 --- openjdk/hotspot/src/share/vm/utilities/vmError.cpp.orig	2008-07-27 08:37:02.000000000 +0000
 +++ openjdk/hotspot/src/share/vm/utilities/vmError.cpp	2008-07-27 08:38:13.000000000 +0000
-@@ -25,6 +25,11 @@
+@@ -25,6 +25,10 @@
  # include "incls/_precompiled.incl"
  # include "incls/_vmError.cpp.incl"
  
 +# ifdef ZERO
-+# include <interpreterRuntime.hpp>
 +# include <stackPrinter_zero.hpp>
-+# endif //
++# endif // ZERO
 +
  // List of environment variables that should be reported in error log file.
  const char *env_list[] = {
diff -r 12f2a25cb831 -r f0c97fcc519f ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp	Thu May 21 14:26:47 2009 +0100
+++ b/ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp	Fri May 22 14:56:54 2009 +0100
@@ -22,6 +22,9 @@
  * have any questions.
  *
  */
+
+#include <interpreterRuntime.hpp>
+#include <scopeDesc.hpp>
 
 class ZeroStackPrinter {
  private:
@@ -190,15 +193,26 @@ class ZeroStackPrinter {
         }
       }
       if (frame->is_shark_frame()) {
+        SharkFrame *sf = frame->as_shark_frame();
+        methodOop method = sf->method();
+          
         if (word == SharkFrame::pc_off) {
           field = "pc";
+          if (method->is_oop()) {
+            nmethod *code = method->code();
+            address pc = sf->pc();
+            if (code->pc_desc_at(pc)) {
+              SimpleScopeDesc ssd(code, pc);
+              snprintf(_buf, _buflen, PTR_FORMAT " (bci %d)", pc, ssd.bci());
+              value = _buf;
+            }
+          }
         }
         else if (word == SharkFrame::unextended_sp_off) {
           field = "unextended_sp";
         }
         else if (word == SharkFrame::method_off) {
           field = "method";
-          methodOop method = ((SharkFrame *) frame)->method();
           if (method->is_oop())
             value = method->name_and_sig_as_C_string(_buf, _buflen);
         }



More information about the distro-pkg-dev mailing list