Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dregister_allocator.cc130 HInstruction* defined_by = current->GetParent()->GetDefinedBy(); in ValidateIntervals() local
133 && !(defined_by != nullptr && (defined_by->IsParameterValue() in ValidateIntervals()
134 || defined_by->IsCurrentMethod()))) { in ValidateIntervals()
168 if (defined_by != nullptr) { in ValidateIntervals()
169 message << "(" << defined_by->DebugName() << ")"; in ValidateIntervals()
Doptimizing_unit_test.h63 HInstruction* defined_by = nullptr) {
65 LiveInterval::MakeInterval(allocator, DataType::Type::kInt32, defined_by);
66 if (defined_by != nullptr) {
67 defined_by->SetLiveInterval(interval);
Dregister_allocation_resolver.cc437 HInstruction* defined_by = parent->GetDefinedBy(); in ConnectSplitSiblings() local
446 DCHECK(IsMaterializableEntryBlockInstructionOfGraphWithIrreducibleLoop(defined_by)) in ConnectSplitSiblings()
447 << defined_by->DebugName() << ":" << defined_by->GetId() in ConnectSplitSiblings()
464 DCHECK(IsMaterializableEntryBlockInstructionOfGraphWithIrreducibleLoop(defined_by)); in ConnectSplitSiblings()
465 if (defined_by->IsConstant()) { in ConnectSplitSiblings()
466 location_source = defined_by->GetLocations()->Out(); in ConnectSplitSiblings()
468 DCHECK(defined_by->IsCurrentMethod()); in ConnectSplitSiblings()
486 defined_by, in ConnectSplitSiblings()
492 defined_by, in ConnectSplitSiblings()
Dregister_allocator_graph_color.cc1144 HInstruction* defined_by = output_interval->GetDefinedBy(); in CheckInputOutputCanOverlap() local
1145 if (defined_by == nullptr) { in CheckInputOutputCanOverlap()
1150 LocationSummary* locations = defined_by->GetLocations(); in CheckInputOutputCanOverlap()
1158 size_t def_position = defined_by->GetLifetimePosition(); in CheckInputOutputCanOverlap()
1171 HInputsRef inputs = defined_by->GetInputs(); in CheckInputOutputCanOverlap()
1357 HInstruction* defined_by = interval->GetDefinedBy(); in FindCoalesceOpportunities() local
1358 if (defined_by != nullptr && defined_by->IsPhi()) { in FindCoalesceOpportunities()
1359 ArrayRef<HBasicBlock* const> predecessors(defined_by->GetBlock()->GetPredecessors()); in FindCoalesceOpportunities()
1360 HInputsRef inputs = defined_by->GetInputs(); in FindCoalesceOpportunities()
1376 if (defined_by != nullptr) { in FindCoalesceOpportunities()
[all …]
Dregister_allocator_linear_scan.cc634 HInstruction* defined_by = current->GetDefinedBy(); in TryAllocateFreeReg() local
635 if (defined_by != nullptr && !current->IsSplit()) { in TryAllocateFreeReg()
636 LocationSummary* locations = defined_by->GetLocations(); in TryAllocateFreeReg()
638 HInputsRef inputs = defined_by->GetInputs(); in TryAllocateFreeReg()
651 DCHECK(interval->CoversSlow(defined_by->GetLifetimePosition())); in TryAllocateFreeReg()
652 size_t position = defined_by->GetLifetimePosition() + 1; in TryAllocateFreeReg()
1095 HInstruction* defined_by = parent->GetDefinedBy(); in AllocateSpillSlotFor() local
1096 DCHECK(!defined_by->IsPhi() || !defined_by->AsPhi()->IsCatchPhi()); in AllocateSpillSlotFor()
1098 if (defined_by->IsParameterValue()) { in AllocateSpillSlotFor()
1100 parent->SetSpillSlot(codegen_->GetStackSlotOfParameter(defined_by->AsParameterValue())); in AllocateSpillSlotFor()
[all …]
Dssa_liveness_analysis.cc522 HInstruction* defined_by = GetParent()->GetDefinedBy(); in ToLocation() local
523 if (defined_by->IsConstant()) { in ToLocation()
524 return defined_by->GetLocations()->Out(); in ToLocation()
Dssa_liveness_analysis.h984 HInstruction* defined_by = nullptr,
1006 defined_by_(defined_by) {} in allocator_()