< prev index next >

src/share/vm/gc/cms/concurrentMarkSweepGeneration.inline.hpp

Print this page




  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_CMS_CONCURRENTMARKSWEEPGENERATION_INLINE_HPP
  26 #define SHARE_VM_GC_CMS_CONCURRENTMARKSWEEPGENERATION_INLINE_HPP
  27 
  28 #include "gc/cms/cmsLockVerifier.hpp"
  29 #include "gc/cms/compactibleFreeListSpace.hpp"
  30 #include "gc/cms/concurrentMarkSweepGeneration.hpp"
  31 #include "gc/cms/concurrentMarkSweepThread.hpp"
  32 #include "gc/cms/parNewGeneration.hpp"
  33 #include "gc/shared/gcUtil.hpp"
  34 #include "gc/shared/genCollectedHeap.hpp"

  35 #include "utilities/bitMap.inline.hpp"
  36 
  37 inline void CMSBitMap::clear_all() {
  38   assert_locked();
  39   // CMS bitmaps are usually cover large memory regions
  40   _bm.clear_large();
  41   return;
  42 }
  43 
  44 inline size_t CMSBitMap::heapWordToOffset(HeapWord* addr) const {
  45   return (pointer_delta(addr, _bmStartWord)) >> _shifter;
  46 }
  47 
  48 inline HeapWord* CMSBitMap::offsetToHeapWord(size_t offset) const {
  49   return _bmStartWord + (offset << _shifter);
  50 }
  51 
  52 inline size_t CMSBitMap::heapWordDiffToOffsetDiff(size_t diff) const {
  53   assert((diff & ((1 << _shifter) - 1)) == 0, "argument check");
  54   return diff >> _shifter;




  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_CMS_CONCURRENTMARKSWEEPGENERATION_INLINE_HPP
  26 #define SHARE_VM_GC_CMS_CONCURRENTMARKSWEEPGENERATION_INLINE_HPP
  27 
  28 #include "gc/cms/cmsLockVerifier.hpp"
  29 #include "gc/cms/compactibleFreeListSpace.hpp"
  30 #include "gc/cms/concurrentMarkSweepGeneration.hpp"
  31 #include "gc/cms/concurrentMarkSweepThread.hpp"
  32 #include "gc/cms/parNewGeneration.hpp"
  33 #include "gc/shared/gcUtil.hpp"
  34 #include "gc/shared/genCollectedHeap.hpp"
  35 #include "utilities/align.hpp"
  36 #include "utilities/bitMap.inline.hpp"
  37 
  38 inline void CMSBitMap::clear_all() {
  39   assert_locked();
  40   // CMS bitmaps are usually cover large memory regions
  41   _bm.clear_large();
  42   return;
  43 }
  44 
  45 inline size_t CMSBitMap::heapWordToOffset(HeapWord* addr) const {
  46   return (pointer_delta(addr, _bmStartWord)) >> _shifter;
  47 }
  48 
  49 inline HeapWord* CMSBitMap::offsetToHeapWord(size_t offset) const {
  50   return _bmStartWord + (offset << _shifter);
  51 }
  52 
  53 inline size_t CMSBitMap::heapWordDiffToOffsetDiff(size_t diff) const {
  54   assert((diff & ((1 << _shifter) - 1)) == 0, "argument check");
  55   return diff >> _shifter;


< prev index next >