Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h3352 using CaseIt = CaseIteratorImpl<CaseHandle>;
3389 CaseIt case_begin() {
3390 return CaseIt(this, 0);
3401 CaseIt case_end() {
3402 return CaseIt(this, getNumCases());
3412 iterator_range<CaseIt> cases() {
3426 CaseIt case_default() {
3427 return CaseIt(this, DefaultPseudoIndex);
3437 CaseIt findCaseValue(const ConstantInt *C) {
3438 CaseIt I = llvm::find_if(
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstructions.cpp4069 SwitchInst::CaseIt SwitchInst::removeCase(CaseIt I) { in removeCase()
4088 return CaseIt(this, idx); in removeCase()
4148 SwitchInst::CaseIt
4149 SwitchInstProfUpdateWrapper::removeCase(SwitchInst::CaseIt I) { in removeCase()
/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()
5061 SwitchInst::CaseIt CaseI = SI->findCaseValue(DeadCase); in eliminateDeadSwitchCases()
5906 SwitchInst::CaseIt CI = SI->case_begin(); in SwitchToLookupTable()
5919 for (SwitchInst::CaseIt E = SI->case_end(); CI != E; ++CI) { in SwitchToLookupTable()
H A DCodeExtractor.cpp1373 TheSwitch->removeCase(SwitchInst::CaseIt(TheSwitch, NumExitBlocks-1)); in emitCallAndSwitchStatement()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp3331 for (auto &CaseIt : SI.cases()) { in identifyAliveSuccessors() local
3332 if (CaseIt.getCaseValue() == CI.getValue()) { in identifyAliveSuccessors()
3333 AliveSuccessors.push_back(&CaseIt.getCaseSuccessor()->front()); in identifyAliveSuccessors()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVN.cpp2379 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); in processInstruction()