Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dregister_allocator.cc247 HInstruction* defined_by = current->GetParent()->GetDefinedBy(); in ValidateIntervals() local
250 && !(defined_by != nullptr && defined_by->IsParameterValue())) { in ValidateIntervals()
575 HInstruction* defined_by = parent->GetDefinedBy(); in AllocateSpillSlotFor() local
576 if (defined_by->IsParameterValue()) { in AllocateSpillSlotFor()
578 parent->SetSpillSlot(codegen_->GetStackSlotOfParameter(defined_by->AsParameterValue())); in AllocateSpillSlotFor()
582 if (defined_by->IsConstant()) { in AllocateSpillSlotFor()
652 HInstruction* defined_by = interval->GetParent()->GetDefinedBy(); in ConvertToLocation() local
653 if (defined_by->IsConstant()) { in ConvertToLocation()
654 return defined_by->GetLocations()->Out(); in ConvertToLocation()
Dssa_liveness_analysis.h136 LiveInterval(ArenaAllocator* allocator, Primitive::Type type, HInstruction* defined_by = nullptr)
147 defined_by_(defined_by) {} in allocator_()