/external/llvm/lib/Transforms/Scalar/ |
H A D | LowerExpectIntrinsic.cpp | 58 SwitchInst::CaseIt Case = SI.findCaseValue(ExpectedValue);
|
H A D | LoopUnswitch.cpp | 565 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); 918 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); 1208 SwitchInst::CaseIt DeadCase = SI->findCaseValue(cast<ConstantInt>(Val));
|
H A D | CorrelatedValuePropagation.cpp | 244 for (SwitchInst::CaseIt CI = SI->case_end(), CE = SI->case_begin(); CI-- != CE;
|
H A D | GVN.cpp | 2368 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
|
/external/llvm/include/llvm/IR/ |
H A D | Instructions.h | 3054 class CaseIt : public CaseIteratorT<SwitchInst, ConstantInt, BasicBlock> { class in class:llvm::SwitchInst 3059 CaseIt(const ParentTy &Src) : ParentTy(Src) {} function in class:llvm::SwitchInst::CaseIt 3060 CaseIt(SwitchInst *SI, unsigned CaseNum) : ParentTy(SI, CaseNum) {} function in class:llvm::SwitchInst::CaseIt 3107 CaseIt case_begin() { 3108 return CaseIt(this, 0); 3118 CaseIt case_end() { 3119 return CaseIt(this, getNumCases()); 3128 iterator_range<CaseIt> cases() { 3142 CaseIt case_default() { 3143 return CaseIt(thi [all...] |
/external/llvm/tools/llvm-diff/ |
H A D | DifferenceEngine.cpp | 319 for (SwitchInst::CaseIt I = LI->case_begin(), E = LI->case_end(); 323 for (SwitchInst::CaseIt I = RI->case_begin(), E = RI->case_end();
|
/external/llvm/lib/Analysis/ |
H A D | SparsePropagation.cpp | 198 SwitchInst::CaseIt Case = SI.findCaseValue(cast<ConstantInt>(C));
|
H A D | LazyValueInfo.cpp | 978 for (SwitchInst::CaseIt i : SI->cases()) {
|
/external/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 583 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); i != e; ++i) 716 for (SwitchInst::CaseIt i = SI->case_end(), e = SI->case_begin(); i != e;) { 3506 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); 3564 for (SwitchInst::CaseIt I : SI->cases()) { 3671 for (SwitchInst::CaseIt I = SI->case_begin(), E = SI->case_end(); I != E; ++I) { 3712 SwitchInst::CaseIt Case = SI->findCaseValue(DeadCases[I]); 3776 for (SwitchInst::CaseIt I = SI->case_begin(), E = SI->case_end(); I != E; ++I) { 4499 SwitchInst::CaseIt CI = SI->case_begin(); 4510 for (SwitchInst::CaseIt E = SI->case_end(); CI != E; ++CI) {
|
H A D | LowerSwitch.cpp | 365 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); i != e; ++i)
|
H A D | Local.cpp | 130 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); 211 SwitchInst::CaseIt FirstCase = SI->case_begin();
|
H A D | CodeExtractor.cpp | 670 TheSwitch->removeCase(SwitchInst::CaseIt(TheSwitch, NumExitBlocks-1));
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 2171 static_cast<SwitchInst::CaseIt *>(&C)->setValue(ConstantInt::get( 2180 for (SwitchInst::CaseIt i = SI.case_begin(), e = SI.case_end(); 2964 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
|
/external/llvm/lib/IR/ |
H A D | Instructions.cpp | 3642 CaseIt Case(this, NewCaseIdx); 3649 void SwitchInst::removeCase(CaseIt i) {
|
H A D | Verifier.cpp | 1986 for (SwitchInst::CaseIt i = SI.case_begin(), e = SI.case_end(); i != e; ++i) {
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 902 for (SwitchInst::CaseIt i = I.case_begin(), e = I.case_end(); i != e; ++i) {
|
/external/llvm/lib/CodeGen/ |
H A D | CodeGenPrepare.cpp | 4720 for (SwitchInst::CaseIt Case : SI->cases()) {
|