comparison src/share/vm/gc_implementation/g1/concurrentMark.cpp @ 645:c3a720eefe82

6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003 Summary: Allow Hotspot builds with latest Windows SDK 6.1 on 64bit Windows 2003 Reviewed-by: ohair, tbell, jcoomes
author kvn
date Mon, 16 Mar 2009 15:06:33 -0700
parents 7ea5ca260b28
children bd441136a5ce
comparison
equal deleted inserted replaced
644:c517646eef23 645:c3a720eefe82
105 } 105 }
106 106
107 #ifndef PRODUCT 107 #ifndef PRODUCT
108 bool CMBitMapRO::covers(ReservedSpace rs) const { 108 bool CMBitMapRO::covers(ReservedSpace rs) const {
109 // assert(_bm.map() == _virtual_space.low(), "map inconsistency"); 109 // assert(_bm.map() == _virtual_space.low(), "map inconsistency");
110 assert(((size_t)_bm.size() * (1 << _shifter)) == _bmWordSize, 110 assert(((size_t)_bm.size() * (size_t)(1 << _shifter)) == _bmWordSize,
111 "size inconsistency"); 111 "size inconsistency");
112 return _bmStartWord == (HeapWord*)(rs.base()) && 112 return _bmStartWord == (HeapWord*)(rs.base()) &&
113 _bmWordSize == rs.size()>>LogHeapWordSize; 113 _bmWordSize == rs.size()>>LogHeapWordSize;
114 } 114 }
115 #endif 115 #endif