Lines Matching full:address
115 uintptr_t address = 0; in EvacuateRegion() local
119 address = allocator->Allocate(size, OLD_SPACE); in EvacuateRegion()
123 address = allocator->Allocate(size, OLD_SPACE); in EvacuateRegion()
126 address = allocator->Allocate(size, SEMI_SPACE); in EvacuateRegion()
127 if (address == 0) { in EvacuateRegion()
128 address = allocator->Allocate(size, OLD_SPACE); in EvacuateRegion()
133 LOG_ECMA_IF(address == 0, FATAL) << "Evacuate object failed:" << size; in EvacuateRegion()
135 if (memcpy_s(ToVoidPtr(address), size, ToVoidPtr(ToUintPtr(mem)), size) != EOK) { in EvacuateRegion()
138 …p_->OnMoveEvent(reinterpret_cast<uintptr_t>(mem), reinterpret_cast<TaggedObject *>(address), size); in EvacuateRegion()
139 Barriers::SetPrimitive(header, 0, MarkWord::FromForwardingAddress(address)); in EvacuateRegion()
141 VerifyHeapObject(reinterpret_cast<TaggedObject *>(address)); in EvacuateRegion()
144 SetObjectFieldRSet(reinterpret_cast<TaggedObject *>(address), klass); in EvacuateRegion()
167 << ", body address:" << slot.SlotAddress() in VerifyHeapObject()
168 << ", header address:" << object; in VerifyHeapObject()