Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dregister_allocator.cc212 HInstruction* defined_by = current->GetParent()->GetDefinedBy(); in ValidateIntervals() local
215 && !(defined_by != nullptr && (defined_by->IsParameterValue() in ValidateIntervals()
216 || defined_by->IsCurrentMethod()))) { in ValidateIntervals()
250 if (defined_by != nullptr) { in ValidateIntervals()
251 message << "(" << defined_by->DebugName() << ")"; in ValidateIntervals()
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_linear_scan.cc725 HInstruction* defined_by = current->GetDefinedBy(); in TryAllocateFreeReg() local
726 if (defined_by != nullptr && !current->IsSplit()) { in TryAllocateFreeReg()
727 LocationSummary* locations = defined_by->GetLocations(); in TryAllocateFreeReg()
729 HInputsRef inputs = defined_by->GetInputs(); in TryAllocateFreeReg()
742 DCHECK(interval->CoversSlow(defined_by->GetLifetimePosition())); in TryAllocateFreeReg()
743 size_t position = defined_by->GetLifetimePosition() + 1; in TryAllocateFreeReg()
1205 HInstruction* defined_by = parent->GetDefinedBy(); in AllocateSpillSlotFor() local
1206 DCHECK_IMPLIES(defined_by->IsPhi(), !defined_by->AsPhi()->IsCatchPhi()); in AllocateSpillSlotFor()
1208 if (defined_by->IsParameterValue()) { in AllocateSpillSlotFor()
1210 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()
Doptimizing_unit_test.h97 HInstruction* defined_by = nullptr) {
99 LiveInterval::MakeInterval(allocator, DataType::Type::kInt32, defined_by);
100 if (defined_by != nullptr) {
101 defined_by->SetLiveInterval(interval);
Dssa_liveness_analysis.h982 HInstruction* defined_by = nullptr,
1004 defined_by_(defined_by) {} in allocator_()