Index: src/spaces.h |
=================================================================== |
--- src/spaces.h (revision 10402) |
+++ src/spaces.h (working copy) |
@@ -295,7 +295,7 @@ |
// MemoryChunk represents a memory region owned by a specific space. |
// It is divided into the header and the body. Chunk start is always |
-// 1MB aligned. Start of the body is aligned so it can accomodate |
+// 1MB aligned. Start of the body is aligned so it can accommodate |
// any heap object. |
class MemoryChunk { |
public: |
@@ -1181,11 +1181,11 @@ |
// An abstraction of the accounting statistics of a page-structured space. |
-// The 'capacity' of a space is the number of object-area bytes (ie, not |
+// The 'capacity' of a space is the number of object-area bytes (i.e., not |
// including page bookkeeping structures) currently in the space. The 'size' |
// of a space is the number of allocated bytes, the 'waste' in the space is |
// the number of bytes that are not allocated and not available to |
-// allocation without reorganizing the space via a GC (eg, small blocks due |
+// allocation without reorganizing the space via a GC (e.g. small blocks due |
// to internal fragmentation, top of page areas in map space), and the bytes |
// 'available' is the number of unallocated bytes that are not waste. The |
// capacity is the sum of size, waste, and available. |
@@ -1198,7 +1198,7 @@ |
public: |
AllocationStats() { Clear(); } |
- // Zero out all the allocation statistics (ie, no capacity). |
+ // Zero out all the allocation statistics (i.e., no capacity). |
void Clear() { |
capacity_ = 0; |
size_ = 0; |
@@ -1210,7 +1210,7 @@ |
waste_ = 0; |
} |
- // Reset the allocation statistics (ie, available = capacity with no |
+ // Reset the allocation statistics (i.e., available = capacity with no |
// wasted or allocated bytes). |
void Reset() { |
size_ = 0; |
@@ -1341,7 +1341,7 @@ |
// starting at 'start' is placed on the free list. The return value is the |
// number of bytes that have been lost due to internal fragmentation by |
// freeing the block. Bookkeeping information will be written to the block, |
- // ie, its contents will be destroyed. The start address should be word |
+ // i.e., its contents will be destroyed. The start address should be word |
// aligned, and the size should be a non-zero multiple of the word size. |
int Free(Address start, int size_in_bytes); |