Home | History | Annotate | Download | only in gc

Lines Matching refs:forward_address

2224     mirror::Object* forward_address;
2231 forward_address = to_space_->Alloc(self_, alloc_size, &bytes_allocated, nullptr, &dummy);
2233 to_space_live_bitmap_->Set(forward_address);
2235 GetHeap()->GetNonMovingSpace()->GetLiveBitmap()->Set(forward_address);
2236 GetHeap()->GetNonMovingSpace()->GetMarkBitmap()->Set(forward_address);
2242 forward_address = reinterpret_cast<mirror::Object*>(pos);
2244 bin_live_bitmap_->Set(forward_address);
2245 bin_mark_bitmap_->Set(forward_address);
2251 memcpy(reinterpret_cast<void*>(forward_address), obj, obj_size);
2254 forward_address->AssertReadBarrierState();
2256 return forward_address;