Lines Matching refs:top
19 // start <= top <= limit
23 LinearAllocationArea(Address top, Address limit)
24 : start_(top), top_(top), limit_(limit) {
28 void Reset(Address top, Address limit) {
29 start_ = top;
30 top_ = top;
84 V8_INLINE Address top() const {
108 // The start of the LAB. Initially coincides with `top_`. As top is moved
112 // The top of the LAB that is used for allocation.