6978533: CMS: Elide BOT update asserts until 6977974 is fixed correctly
authorysr
Thu, 19 Aug 2010 12:02:10 -0700
changeset 6274 a4a2e26fe2d0
parent 6264 20cc1d0ca19b
child 6275 3d7dee90a261
6978533: CMS: Elide BOT update asserts until 6977974 is fixed correctly Reviewed-by: jcoomes, jmasa, tonyp
hotspot/src/share/vm/memory/blockOffsetTable.hpp
--- a/hotspot/src/share/vm/memory/blockOffsetTable.hpp	Wed Aug 18 17:44:33 2010 -0400
+++ b/hotspot/src/share/vm/memory/blockOffsetTable.hpp	Thu Aug 19 12:02:10 2010 -0700
@@ -163,7 +163,8 @@
       size_t i = index_for(left);
       const size_t end = i + num_cards;
       for (; i < end; i++) {
-        assert(!reducing || _offset_array[i] >= offset, "Not reducing");
+        // Elided until CR 6977974 is fixed properly.
+        // assert(!reducing || _offset_array[i] >= offset, "Not reducing");
         _offset_array[i] = offset;
       }
     }
@@ -184,7 +185,8 @@
       size_t i = left;
       const size_t end = i + num_cards;
       for (; i < end; i++) {
-        assert(!reducing || _offset_array[i] >= offset, "Not reducing");
+        // Elided until CR 6977974 is fixed properly.
+        // assert(!reducing || _offset_array[i] >= offset, "Not reducing");
         _offset_array[i] = offset;
       }
     }