Home
last modified time | relevance | path

Searched refs:from_objects (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/collector/
Dsemi_space.cc249 const uint64_t from_objects = from_space_->GetObjectsAllocated(); in MarkingPhase() local
251 CHECK_LE(to_objects, from_objects); in MarkingPhase()
254 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
Dconcurrent_copying.cc895 uint64_t from_objects = region_space_->GetObjectsAllocatedInFromSpace(); in ReclaimPhase() local
901 CHECK_EQ(from_space_num_objects_at_first_pause_, from_objects + unevac_from_objects); in ReclaimPhase()
904 CHECK_LE(to_objects, from_objects); in ReclaimPhase()
907 int64_t freed_objects = from_objects - to_objects; in ReclaimPhase()
910 << " from_bytes=" << from_bytes << " from_objects=" << from_objects in ReclaimPhase()