comparison src/share/vm/utilities/globalDefinitions.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 610be0309a79
children 8a9bb7821e28
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
147 const int LogHeapWordsPerLong = LogBytesPerLong - LogHeapWordSize; 147 const int LogHeapWordsPerLong = LogBytesPerLong - LogHeapWordSize;
148 148
149 // The larger HeapWordSize for 64bit requires larger heaps 149 // The larger HeapWordSize for 64bit requires larger heaps
150 // for the same application running in 64bit. See bug 4967770. 150 // for the same application running in 64bit. See bug 4967770.
151 // The minimum alignment to a heap word size is done. Other 151 // The minimum alignment to a heap word size is done. Other
152 // parts of the memory system may required additional alignment 152 // parts of the memory system may require additional alignment
153 // and are responsible for those alignments. 153 // and are responsible for those alignments.
154 #ifdef _LP64 154 #ifdef _LP64
155 #define ScaleForWordSize(x) align_size_down_((x) * 13 / 10, HeapWordSize) 155 #define ScaleForWordSize(x) align_size_down_((x) * 13 / 10, HeapWordSize)
156 #else 156 #else
157 #define ScaleForWordSize(x) (x) 157 #define ScaleForWordSize(x) (x)