6978533: CMS: Elide BOT update asserts until 6977974 is fixed correctly

Thu, 19 Aug 2010 12:02:10 -0700

author
ysr
date
Thu, 19 Aug 2010 12:02:10 -0700
changeset 2087
52f2bc645da5
parent 2077
effb55808a18
child 2088
66b9f90a9211

6978533: CMS: Elide BOT update asserts until 6977974 is fixed correctly
Reviewed-by: jcoomes, jmasa, tonyp

src/share/vm/memory/blockOffsetTable.hpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/memory/blockOffsetTable.hpp	Wed Aug 18 17:44:33 2010 -0400
     1.2 +++ b/src/share/vm/memory/blockOffsetTable.hpp	Thu Aug 19 12:02:10 2010 -0700
     1.3 @@ -163,7 +163,8 @@
     1.4        size_t i = index_for(left);
     1.5        const size_t end = i + num_cards;
     1.6        for (; i < end; i++) {
     1.7 -        assert(!reducing || _offset_array[i] >= offset, "Not reducing");
     1.8 +        // Elided until CR 6977974 is fixed properly.
     1.9 +        // assert(!reducing || _offset_array[i] >= offset, "Not reducing");
    1.10          _offset_array[i] = offset;
    1.11        }
    1.12      }
    1.13 @@ -184,7 +185,8 @@
    1.14        size_t i = left;
    1.15        const size_t end = i + num_cards;
    1.16        for (; i < end; i++) {
    1.17 -        assert(!reducing || _offset_array[i] >= offset, "Not reducing");
    1.18 +        // Elided until CR 6977974 is fixed properly.
    1.19 +        // assert(!reducing || _offset_array[i] >= offset, "Not reducing");
    1.20          _offset_array[i] = offset;
    1.21        }
    1.22      }

mercurial