Searched refs:defined_by (Results 1 – 4 of 4) sorted by relevance
50 HInstruction* defined_by = nullptr) {51 LiveInterval* interval = LiveInterval::MakeInterval(allocator, Primitive::kPrimInt, defined_by);52 if (defined_by != nullptr) {53 defined_by->SetLiveInterval(interval);
486 HInstruction* defined_by = current->GetParent()->GetDefinedBy(); in ValidateIntervals() local489 && !(defined_by != nullptr && defined_by->IsParameterValue())) { in ValidateIntervals()518 if (defined_by != nullptr) { in ValidateIntervals()519 message << "(" << defined_by->DebugName() << ")"; in ValidateIntervals()713 HInstruction* defined_by = current->GetDefinedBy(); in TryAllocateFreeReg() local714 if (defined_by != nullptr && !current->IsSplit()) { in TryAllocateFreeReg()715 LocationSummary* locations = defined_by->GetLocations(); in TryAllocateFreeReg()717 for (HInputIterator it(defined_by); !it.Done(); it.Advance()) { in TryAllocateFreeReg()728 DCHECK(interval->CoversSlow(defined_by->GetLifetimePosition())); in TryAllocateFreeReg()729 size_t position = defined_by->GetLifetimePosition() + 1; in TryAllocateFreeReg()[all …]
493 HInstruction* defined_by = GetParent()->GetDefinedBy(); in ToLocation() local494 if (defined_by->IsConstant()) { in ToLocation()495 return defined_by->GetLocations()->Out(); in ToLocation()
864 HInstruction* defined_by = nullptr,888 defined_by_(defined_by) {} in allocator_()