| Index: src/objects.h
|
| ===================================================================
|
| --- src/objects.h (revision 2321)
|
| +++ src/objects.h (working copy)
|
| @@ -980,14 +980,6 @@
|
|
|
| inline Address ToEncodedAddress();
|
|
|
| - private:
|
| - // HeapObject calls the private constructor and directly reads the value.
|
| - friend class HeapObject;
|
| -
|
| - explicit MapWord(uintptr_t value) : value_(value) {}
|
| -
|
| - uintptr_t value_;
|
| -
|
| // Bits used by the marking phase of the garbage collector.
|
| //
|
| // The first word of a heap object is normally a map pointer. The last two
|
| @@ -1029,6 +1021,14 @@
|
| // 0xFFE00000
|
| static const uint32_t kForwardingOffsetMask =
|
| ~(kMapPageIndexMask | kMapPageOffsetMask);
|
| +
|
| + private:
|
| + // HeapObject calls the private constructor and directly reads the value.
|
| + friend class HeapObject;
|
| +
|
| + explicit MapWord(uintptr_t value) : value_(value) {}
|
| +
|
| + uintptr_t value_;
|
| };
|
|
|
|
|
|
|