Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DIfConversion.cpp784 MachineBasicBlock::reverse_iterator RTIE = std::next(TIE.getReverse()); in CountDuplicatedInstructions() local
791 while (RTIE != RTIB && RTIE->isUnconditionalBranch()) in CountDuplicatedInstructions()
792 ++RTIE; in CountDuplicatedInstructions()
799 while (RTIE != RTIB && RFIE != RFIB) { in CountDuplicatedInstructions()
802 RTIE = skipDebugInstructionsForward(RTIE, RTIB, false); in CountDuplicatedInstructions()
804 if (RTIE == RTIB || RFIE == RFIB) in CountDuplicatedInstructions()
806 if (!RTIE->isIdenticalTo(*RFIE)) in CountDuplicatedInstructions()
810 if (!RTIE->isBranch()) in CountDuplicatedInstructions()
812 ++RTIE; in CountDuplicatedInstructions()
815 TIE = std::next(RTIE.getReverse()); in CountDuplicatedInstructions()