Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DIfConversion.cpp769 MachineBasicBlock::reverse_iterator RFIE = std::next(FIE.getReverse()); in CountDuplicatedInstructions() local
777 while (RFIE != RFIB && RFIE->isUnconditionalBranch()) in CountDuplicatedInstructions()
778 ++RFIE; in CountDuplicatedInstructions()
783 while (RTIE != RTIB && RFIE != RFIB) { in CountDuplicatedInstructions()
787 RFIE = skipDebugInstructionsForward(RFIE, RFIB, false); in CountDuplicatedInstructions()
788 if (RTIE == RTIB || RFIE == RFIB) in CountDuplicatedInstructions()
790 if (!RTIE->isIdenticalTo(*RFIE)) in CountDuplicatedInstructions()
797 ++RFIE; in CountDuplicatedInstructions()
800 FIE = std::next(RFIE.getReverse()); in CountDuplicatedInstructions()