comparison src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.inline.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents da91efe96a93
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
195 isMarked(nextAddr), "get_next_one postcondition"); 195 isMarked(nextAddr), "get_next_one postcondition");
196 return nextAddr; 196 return nextAddr;
197 } 197 }
198 198
199 199
200 // Return the HeapWord address corrsponding to the next "0" bit 200 // Return the HeapWord address corresponding to the next "0" bit
201 // (inclusive). 201 // (inclusive).
202 inline HeapWord* CMSBitMap::getNextUnmarkedWordAddress(HeapWord* addr) const { 202 inline HeapWord* CMSBitMap::getNextUnmarkedWordAddress(HeapWord* addr) const {
203 return getNextUnmarkedWordAddress(addr, endWord()); 203 return getNextUnmarkedWordAddress(addr, endWord());
204 } 204 }
205 205
206 // Return the HeapWord address corrsponding to the next "0" bit 206 // Return the HeapWord address corresponding to the next "0" bit
207 // (inclusive). 207 // (inclusive).
208 inline HeapWord* CMSBitMap::getNextUnmarkedWordAddress( 208 inline HeapWord* CMSBitMap::getNextUnmarkedWordAddress(
209 HeapWord* start_addr, HeapWord* end_addr) const { 209 HeapWord* start_addr, HeapWord* end_addr) const {
210 assert_locked(); 210 assert_locked();
211 size_t nextOffset = _bm.get_next_zero_offset( 211 size_t nextOffset = _bm.get_next_zero_offset(