Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DIfConversion.cpp785 MachineBasicBlock::reverse_iterator RFIE = std::next(FIE.getReverse()); in CountDuplicatedInstructions() local
793 while (RFIE != RFIB && RFIE->isUnconditionalBranch()) in CountDuplicatedInstructions()
794 ++RFIE; in CountDuplicatedInstructions()
799 while (RTIE != RTIB && RFIE != RFIB) { in CountDuplicatedInstructions()
803 RFIE = skipDebugInstructionsForward(RFIE, RFIB, false); in CountDuplicatedInstructions()
804 if (RTIE == RTIB || RFIE == RFIB) in CountDuplicatedInstructions()
806 if (!RTIE->isIdenticalTo(*RFIE)) in CountDuplicatedInstructions()
813 ++RFIE; in CountDuplicatedInstructions()
816 FIE = std::next(RFIE.getReverse()); in CountDuplicatedInstructions()