Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp344 for (auto CI = SI->case_begin(), CE = SI->case_end(); CI != CE;) { in processSwitch()
355 CE = SI->case_end(); in processSwitch()
H A DSCCP.cpp392 for (auto CI = SI->case_begin(); CI != SI->case_end();) { in removeNonFeasibleEdges()
H A DSimpleLoopUnswitch.cpp840 auto LastCaseI = std::prev(SI.case_end()); in unswitchTrivialSwitch()
H A DGVN.cpp2379 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); in processInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h3401 CaseIt case_end() {
3407 ConstCaseIt case_end() const {
3413 return make_range(case_begin(), case_end());
3418 return make_range(case_begin(), case_end());
3440 if (I != case_end())
3449 if (I != case_end())
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dparse.c1611 #define case_end case ST_END_BLOCK_DATA: case ST_END_FUNCTION: \ macro
4792 case_end: in parse_associate()
5887 case_end: in parse_progunit()
5914 case_end: in parse_progunit()
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dparse.cc1741 #define case_end case ST_END_BLOCK_DATA: case ST_END_FUNCTION: \ macro
5042 case_end: in parse_associate()
6229 case_end: in parse_progunit()
6256 case_end: in parse_progunit()
H A DChangeLog-2009951 (case_end): Add ST_END_BLOCK.
H A DChangeLog-20103457 (case_exec_markers, case_end): Add ASSOCIATE statement.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp916 for (SwitchInst::CaseIt i = SI->case_end(), e = SI->case_begin(); i != e;) { in SimplifyEqualityComparisonWithOnlyPredecessor()
4748 for (auto i = SU->case_begin(), e = SU->case_end(); i != e;) { in simplifyUnreachable()
4755 e = SU->case_end(); in simplifyUnreachable()
5919 for (SwitchInst::CaseIt E = SI->case_end(); CI != E; ++CI) { in SwitchToLookupTable()
H A DLocal.cpp206 for (auto i = SI->case_begin(), e = SI->case_end(); i != e;) { in ConstantFoldTerminator()
242 e = SI->case_end(); in ConstantFoldTerminator()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp439 auto FinalCaseIt = std::prev(Switch->case_end()); in handleFinalSuspend()