• Home
  • Raw
  • Download

Lines Matching refs:to_space_

1506   to_space_.SetUp(initial_semispace_capacity, maximum_semispace_capacity);  in AllocateChunk()
1508 if (!to_space_.Commit()) { in AllocateChunk()
1539 to_space_.TearDown(); in AllocateChunk()
1543 void NewSpace::Flip() { SemiSpace::Swap(&from_space_, &to_space_); } in AllocateChunk()
1552 if (to_space_.GrowTo(new_capacity)) { in AllocateChunk()
1557 if (!to_space_.ShrinkTo(from_space_.current_capacity())) { in AllocateChunk()
1564 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1572 to_space_.ShrinkTo(rounded_new_capacity)) { in AllocateChunk()
1578 if (!to_space_.GrowTo(from_space_.current_capacity())) { in AllocateChunk()
1585 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1591 return to_space_.EnsureCurrentCapacity() && in AllocateChunk()
1680 allocation_info_.Reset(to_space_.page_low(), to_space_.page_high()); in AllocateChunk()
1682 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1688 to_space_.Reset(); in AllocateChunk()
1691 for (Page* p : to_space_) { in AllocateChunk()
1701 Address high = to_space_.page_high(); in AllocateChunk()
1706 allocation_info_.set_limit(to_space_.page_high()); in AllocateChunk()
1709 Address high = to_space_.page_high(); in AllocateChunk()
1714 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1721 if (!to_space_.AdvancePage()) { in AllocateChunk()
1749 Address high = to_space_.page_high(); in AllocateChunk()
1762 high = to_space_.page_high(); in AllocateChunk()
1848 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1852 Address current = to_space_.first_page()->area_start(); in AllocateChunk()
1853 CHECK_EQ(current, to_space_.space_start()); in AllocateChunk()
1893 CHECK_EQ(to_space_.id(), kToSpace); in AllocateChunk()
1895 to_space_.Verify(); in AllocateChunk()
2347 size_t size = to_space_.CommittedPhysicalMemory(); in AllocateChunk()