Home
last modified time | relevance | path

Searched refs:defined_by (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Doptimizing_unit_test.h50 HInstruction* defined_by = nullptr) {
51 LiveInterval* interval = LiveInterval::MakeInterval(allocator, Primitive::kPrimInt, defined_by);
52 if (defined_by != nullptr) {
53 defined_by->SetLiveInterval(interval);
Dregister_allocator.cc486 HInstruction* defined_by = current->GetParent()->GetDefinedBy(); in ValidateIntervals() local
489 && !(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() local
714 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 …]
Dssa_liveness_analysis.cc493 HInstruction* defined_by = GetParent()->GetDefinedBy(); in ToLocation() local
494 if (defined_by->IsConstant()) { in ToLocation()
495 return defined_by->GetLocations()->Out(); in ToLocation()
Dssa_liveness_analysis.h864 HInstruction* defined_by = nullptr,
888 defined_by_(defined_by) {} in allocator_()