Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DInstruction.h1901 CaseIt case_end() { return CaseIt(this, getNumCases()); } in case_end() function
1902 ConstCaseIt case_end() const { return ConstCaseIt(this, getNumCases()); } in case_end() function
1905 return make_range(case_begin(), case_end()); in cases()
1908 return make_range(case_begin(), case_end()); in cases()
1923 if (I != case_end()) in findCaseValue()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp377 for (auto CI = SI->case_begin(), CE = SI->case_end(); CI != CE;) { in processSwitch()
401 CE = SI->case_end(); in processSwitch()
H A DSimpleLoopUnswitch.cpp996 auto LastCaseI = std::prev(SI.case_end()); in unswitchTrivialSwitch()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h3426 CaseIt case_end() {
3432 ConstCaseIt case_end() const {
3438 return make_range(case_begin(), case_end());
3443 return make_range(case_begin(), case_end());
3471 if (I != case_end())
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVStructurizer.cpp976 while (It != SI->case_end()) { in splitSwitchCases()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp987 for (SwitchInst::CaseIt i = SI->case_end(), e = SI->case_begin(); i != e;) { in simplifyEqualityComparisonWithOnlyPredecessor()
5531 for (auto i = SU->case_begin(), e = SU->case_end(); i != e;) { in simplifyUnreachable()
5538 e = SU->case_end(); in simplifyUnreachable()
6861 for (SwitchInst::CaseIt E = SI->case_end(); CI != E; ++CI) { in switchToLookupTable()
H A DLocal.cpp210 for (auto It = SI->case_begin(), End = SI->case_end(); It != End;) { in ConstantFoldTerminator()
242 End = SI->case_end(); in ConstantFoldTerminator()
H A DSCCPSolver.cpp362 for (auto CI = SI->case_begin(); CI != SI->case_end();) { in removeNonFeasibleEdges()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp415 auto FinalCaseIt = std::prev(Switch->case_end()); in handleFinalSuspend()