Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dscheduler.cc174 const HInstruction* other_instruction) const { in HasImmediateDataDependency()
176 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateDataDependency()
193 const HInstruction* other_instruction) const { in HasImmediateOtherDependency()
195 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateOtherDependency()
Dcode_generator.h847 InstructionType* other_instruction = it.first; in NewSlowPath() local
850 if (HaveSameLiveRegisters(instruction, other_instruction) && in NewSlowPath()
851 HaveSameStackMap(instruction, other_instruction)) { in NewSlowPath()
Dnodes.cc1034 bool HInstruction::StrictlyDominates(HInstruction* other_instruction) const { in StrictlyDominates()
1035 if (other_instruction == this) { in StrictlyDominates()
1040 HBasicBlock* other_block = other_instruction->GetBlock(); in StrictlyDominates()
1042 return GetBlock()->Dominates(other_instruction->GetBlock()); in StrictlyDominates()
1047 if (!other_instruction->IsPhi()) { in StrictlyDominates()
1058 if (other_instruction->IsPhi()) { in StrictlyDominates()
1065 return block->GetInstructions().FoundBefore(this, other_instruction); in StrictlyDominates()
Dnodes.h2051 bool StrictlyDominates(HInstruction* other_instruction) const;