Home | History | Annotate | Download | only in heap

Lines Matching defs:to_space_

2388         to_space_(heap, kToSpace),
2407 return to_space_.HasBeenSetUp() && from_space_.HasBeenSetUp();
2422 DCHECK_GE(top(), to_space_.page_low());
2423 return to_space_.pages_used() * Page::kAllocatableMemory +
2424 static_cast<size_t>(top() - to_space_.page_low());
2431 SLOW_DCHECK(to_space_.current_capacity() == from_space_.current_capacity());
2432 return (to_space_.current_capacity() / Page::kPageSize) *
2439 DCHECK(to_space_.current_capacity() == from_space_.current_capacity());
2440 return to_space_.current_capacity();
2446 return from_space_.CommittedMemory() + to_space_.CommittedMemory();
2451 to_space_.MaximumCommittedMemory();
2464 const Address age_mark = to_space_.age_mark();
2494 to_space_.PrependPage(page);
2501 DCHECK(to_space_.maximum_capacity() == from_space_.maximum_capacity());
2502 return to_space_.maximum_capacity();
2509 DCHECK(to_space_.minimum_capacity() == from_space_.minimum_capacity());
2510 return to_space_.minimum_capacity();
2515 DCHECK(to_space_.current_page()->ContainsLimit(allocation_info_.top()));
2521 DCHECK(to_space_.current_page()->ContainsLimit(allocation_info_.limit()));
2526 Address bottom() { return to_space_.space_start(); }
2531 void set_age_mark(Address mark) { to_space_.set_age_mark(mark); }
2585 Address ToSpaceStart() { return to_space_.space_start(); }
2586 Address ToSpaceEnd() { return to_space_.space_end(); }
2607 void Print() override { to_space_.Print(); }
2636 SemiSpace* active_space() { return &to_space_; }
2641 iterator begin() { return to_space_.begin(); }
2642 iterator end() { return to_space_.end(); }
2653 SemiSpace to_space_;