Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DIfConversion.cpp768 MachineBasicBlock::reverse_iterator RTIE = std::next(TIE.getReverse()); in CountDuplicatedInstructions() local
775 while (RTIE != RTIB && RTIE->isUnconditionalBranch()) in CountDuplicatedInstructions()
776 ++RTIE; in CountDuplicatedInstructions()
783 while (RTIE != RTIB && RFIE != RFIB) { in CountDuplicatedInstructions()
786 RTIE = skipDebugInstructionsForward(RTIE, RTIB, false); in CountDuplicatedInstructions()
788 if (RTIE == RTIB || RFIE == RFIB) in CountDuplicatedInstructions()
790 if (!RTIE->isIdenticalTo(*RFIE)) in CountDuplicatedInstructions()
794 if (!RTIE->isBranch()) in CountDuplicatedInstructions()
796 ++RTIE; in CountDuplicatedInstructions()
799 TIE = std::next(RTIE.getReverse()); in CountDuplicatedInstructions()