Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Doptimizing_unit_test.h52 HInstruction* defined_by = nullptr) {
53 LiveInterval* interval = LiveInterval::MakeInterval(allocator, Primitive::kPrimInt, defined_by);
54 if (defined_by != nullptr) {
55 defined_by->SetLiveInterval(interval);
Dregister_allocator.cc506 HInstruction* defined_by = current->GetParent()->GetDefinedBy(); in ValidateIntervals() local
509 && !(defined_by != nullptr && (defined_by->IsParameterValue() in ValidateIntervals()
510 || defined_by->IsCurrentMethod()))) { in ValidateIntervals()
544 if (defined_by != nullptr) { in ValidateIntervals()
545 message << "(" << defined_by->DebugName() << ")"; in ValidateIntervals()
752 HInstruction* defined_by = current->GetDefinedBy(); in TryAllocateFreeReg() local
753 if (defined_by != nullptr && !current->IsSplit()) { in TryAllocateFreeReg()
754 LocationSummary* locations = defined_by->GetLocations(); in TryAllocateFreeReg()
756 for (size_t i = 0, e = defined_by->InputCount(); i < e; ++i) { in TryAllocateFreeReg()
759 LiveInterval* interval = defined_by->InputAt(i)->GetLiveInterval()->GetLastSibling(); in TryAllocateFreeReg()
[all …]
Dssa_liveness_analysis.cc546 HInstruction* defined_by = GetParent()->GetDefinedBy(); in ToLocation() local
547 if (defined_by->IsConstant()) { in ToLocation()
548 return defined_by->GetLocations()->Out(); in ToLocation()
Dssa_liveness_analysis.h877 HInstruction* defined_by = nullptr,
901 defined_by_(defined_by) {} in allocator_()