Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DOptimizePHIs.cpp60 InstrSet &PHIsInCycle);
61 bool IsDeadPHICycle(MachineInstr *MI, InstrSet &PHIsInCycle);
99 InstrSet &PHIsInCycle) { in IsSingleValuePHICycle() argument
104 if (!PHIsInCycle.insert(MI).second) in IsSingleValuePHICycle()
108 if (PHIsInCycle.size() == 16) in IsSingleValuePHICycle()
129 if (!IsSingleValuePHICycle(SrcMI, SingleValReg, PHIsInCycle)) in IsSingleValuePHICycle()
143 bool OptimizePHIs::IsDeadPHICycle(MachineInstr *MI, InstrSet &PHIsInCycle) { in IsDeadPHICycle() argument
150 if (!PHIsInCycle.insert(MI).second) in IsDeadPHICycle()
154 if (PHIsInCycle.size() == 16) in IsDeadPHICycle()
158 if (!UseMI.isPHI() || !IsDeadPHICycle(&UseMI, PHIsInCycle)) in IsDeadPHICycle()
[all …]