Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DOptimizePHIs.cpp59 InstrSet &PHIsInCycle);
60 bool IsDeadPHICycle(MachineInstr *MI, InstrSet &PHIsInCycle);
98 InstrSet &PHIsInCycle) { in IsSingleValuePHICycle() argument
103 if (!PHIsInCycle.insert(MI).second) in IsSingleValuePHICycle()
107 if (PHIsInCycle.size() == 16) in IsSingleValuePHICycle()
128 if (!IsSingleValuePHICycle(SrcMI, SingleValReg, PHIsInCycle)) in IsSingleValuePHICycle()
142 bool OptimizePHIs::IsDeadPHICycle(MachineInstr *MI, InstrSet &PHIsInCycle) { in IsDeadPHICycle() argument
148 if (!PHIsInCycle.insert(MI).second) in IsDeadPHICycle()
152 if (PHIsInCycle.size() == 16) in IsDeadPHICycle()
156 if (!UseMI.isPHI() || !IsDeadPHICycle(&UseMI, PHIsInCycle)) in IsDeadPHICycle()
[all …]