Searched refs:to_space (Results 1 - 4 of 4) sorted by relevance

/art/runtime/gc/accounting/
H A Dmod_union_table.cc281 space::ContinuousSpace* to_space = heap->FindContinuousSpaceFromObject(ref, false); local
288 LOG(INFO) << "ToSpace " << to_space->GetName() << " type "
289 << to_space->GetGcRetentionPolicy();
/art/runtime/gc/collector/
H A Dsemi_space.h83 void SetToSpace(space::ContinuousMemMapAllocSpace* to_space);
H A Dsemi_space.cc791 void SemiSpace::SetToSpace(space::ContinuousMemMapAllocSpace* to_space) { argument
792 DCHECK(to_space != nullptr);
793 to_space_ = to_space;
/art/runtime/gc/
H A Dheap.cc1927 space::MallocSpace* to_space = main_space_backup_.release(); local
1929 to_space->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1931 AddSpace(to_space);
1933 CHECK_GE(to_space->GetFootprintLimit(), from_space->GetFootprintLimit());
1934 collector = Compact(to_space, from_space, kGcCauseHomogeneousSpaceCompact);
1935 const uint64_t space_size_after_compaction = to_space->Size();
1936 main_space_ = to_space;

Completed in 424 milliseconds