Merge
authorysr
Wed, 20 Aug 2008 01:30:32 -0700
changeset 992 494cf8c1a5ed
parent 990 02bac3e9892a (diff)
parent 991 5b25d0a7116f (current diff)
child 997 3bdf045984c2
child 1061 31158219ee97
Merge
--- a/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/HeapSummary.java	Thu Aug 14 17:58:35 2008 -0700
+++ b/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/HeapSummary.java	Wed Aug 20 01:30:32 2008 -0700
@@ -193,8 +193,12 @@
 
    private static final double FACTOR = 1024*1024;
    private void printValMB(String title, long value) {
-      double mb = value / FACTOR;
-      System.out.println(alignment + title + value + " (" + mb + "MB)");
+      if (value < 0) {
+        System.out.println(alignment + title +   (value >>> 20)  + " MB");
+      } else {
+        double mb = value/FACTOR;
+        System.out.println(alignment + title + value + " (" + mb + "MB)");
+      }
    }
 
    private void printValue(String title, long value) {
--- a/hotspot/make/jprt.config	Thu Aug 14 17:58:35 2008 -0700
+++ b/hotspot/make/jprt.config	Wed Aug 20 01:30:32 2008 -0700
@@ -77,9 +77,7 @@
             # All jdk6 builds use SS11
             compiler_name=SS11
         else
-            # FIXUP: Change to SS12 once it has been validated.
-	    #compiler_name=SS12
-            compiler_name=SS11
+	    compiler_name=SS12
         fi
     fi
     
--- a/hotspot/make/solaris/makefiles/sparcWorks.make	Thu Aug 14 17:58:35 2008 -0700
+++ b/hotspot/make/solaris/makefiles/sparcWorks.make	Wed Aug 20 01:30:32 2008 -0700
@@ -51,12 +51,9 @@
   VALIDATED_COMPILER_REV   := 5.8
   VALIDATED_C_COMPILER_REV := 5.8
 else
-  # FIXUP: Change to SS12 (5.9) once it has been validated.
   # Validated compiler for JDK7 is SS12 (5.9)
-  #VALIDATED_COMPILER_REV   := 5.9
-  #VALIDATED_C_COMPILER_REV := 5.9
-  VALIDATED_COMPILER_REV   := 5.8
-  VALIDATED_C_COMPILER_REV := 5.8
+  VALIDATED_COMPILER_REV   := 5.9
+  VALIDATED_C_COMPILER_REV := 5.9
 endif
 
 # Warning messages about not using the above validated version
--- a/hotspot/src/share/vm/runtime/statSampler.cpp	Thu Aug 14 17:58:35 2008 -0700
+++ b/hotspot/src/share/vm/runtime/statSampler.cpp	Wed Aug 20 01:30:32 2008 -0700
@@ -217,6 +217,7 @@
   "java.class.path",
   "java.endorsed.dirs",
   "java.ext.dirs",
+  "java.version",
   "java.home",
   NULL
 };