< prev index next >

src/share/vm/gc_implementation/g1/concurrentMark.inline.hpp

Print this page
rev 9597 : Revert G1 changes and bring shared BitMap

@@ -193,14 +193,14 @@
 }
 
 #define check_mark(addr)                                                       \
   assert(_bmStartWord <= (addr) && (addr) < (_bmStartWord + _bmWordSize),      \
          "outside underlying space?");                                         \
-  /* assert(G1CollectedHeap::heap()->is_in_exact(addr),                  \
+  assert(G1CollectedHeap::heap()->is_in_exact(addr),                           \
          err_msg("Trying to access not available bitmap "PTR_FORMAT            \
                  " corresponding to "PTR_FORMAT" (%u)",                        \
-                 p2i(this), p2i(addr), G1CollectedHeap::heap()->addr_to_region(addr))); */
+                 p2i(this), p2i(addr), G1CollectedHeap::heap()->addr_to_region(addr)));
 
 inline void CMBitMap::mark(HeapWord* addr) {
   check_mark(addr);
   _bm.set_bit(heapWordToOffset(addr));
 }
< prev index next >