Home
last modified time | relevance | path

Searched refs:from_space_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/heap/
Dspaces.h2389 from_space_(heap, kFromSpace), in NewSpace()
2407 return to_space_.HasBeenSetUp() && from_space_.HasBeenSetUp(); in HasBeenSetUp()
2431 SLOW_DCHECK(to_space_.current_capacity() == from_space_.current_capacity()); in Capacity()
2439 DCHECK(to_space_.current_capacity() == from_space_.current_capacity()); in TotalCapacity()
2446 return from_space_.CommittedMemory() + to_space_.CommittedMemory(); in CommittedMemory()
2450 return from_space_.MaximumCommittedMemory() + in MaximumCommittedMemory()
2493 from_space_.RemovePage(page); in MovePageFromSpaceToSpace()
2501 DCHECK(to_space_.maximum_capacity() == from_space_.maximum_capacity()); in MaximumCapacity()
2509 DCHECK(to_space_.minimum_capacity() == from_space_.minimum_capacity()); in InitialTotalCapacity()
2529 Address age_mark() { return from_space_.age_mark(); } in age_mark()
[all …]
Dspaces.cc1507 from_space_.SetUp(initial_semispace_capacity, maximum_semispace_capacity); in AllocateChunk()
1511 DCHECK(!from_space_.is_committed()); // No need to use memory yet. in AllocateChunk()
1540 from_space_.TearDown(); in AllocateChunk()
1543 void NewSpace::Flip() { SemiSpace::Swap(&from_space_, &to_space_); } in AllocateChunk()
1554 if (!from_space_.GrowTo(new_capacity)) { in AllocateChunk()
1557 if (!to_space_.ShrinkTo(from_space_.current_capacity())) { in AllocateChunk()
1574 from_space_.Reset(); in AllocateChunk()
1575 if (!from_space_.ShrinkTo(rounded_new_capacity)) { in AllocateChunk()
1578 if (!to_space_.GrowTo(from_space_.current_capacity())) { in AllocateChunk()
1592 from_space_.EnsureCurrentCapacity(); in AllocateChunk()
[all …]
Dspaces-inl.h158 return from_space_.ContainsSlow(a) || to_space_.ContainsSlow(a); in ContainsSlow()
166 return from_space_.ContainsSlow(a); in FromSpaceContainsSlow()
170 bool NewSpace::FromSpaceContains(Object* o) { return from_space_.Contains(o); } in FromSpaceContains()