Home | History | Annotate | Download | only in heap

Lines Matching full:top_

315                            kPointerSize +  // FreeSpace* top_
322 top_(nullptr),
329 top_ = nullptr;
378 FreeSpace* top() { return top_; }
379 void set_top(FreeSpace* top) { top_ = top; }
392 // |top_|: Points to the top FreeSpace* in the free list category.
393 FreeSpace* top_;
1670 AllocationInfo() : top_(nullptr), limit_(nullptr) {}
1671 AllocationInfo(Address top, Address limit) : top_(top), limit_(limit) {}
1681 top_ = top;
1685 SLOW_DCHECK(top_ == NULL ||
1686 (reinterpret_cast<intptr_t>(top_) & kHeapObjectTagMask) == 0);
1687 return top_;
1690 Address* top_address() { return &top_; }
1704 return (Page::FromAllocationAreaAddress(top_) ==
1706 (top_ <= limit_);
1712 Address top_;