Searched refs:CaseIt (Results 1 - 17 of 17) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp58 SwitchInst::CaseIt Case = SI.findCaseValue(ExpectedValue);
H A DLoopUnswitch.cpp565 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 DCorrelatedValuePropagation.cpp244 for (SwitchInst::CaseIt CI = SI->case_end(), CE = SI->case_begin(); CI-- != CE;
H A DGVN.cpp2368 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
/external/llvm/include/llvm/IR/
H A DInstructions.h3054 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 DDifferenceEngine.cpp319 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 DSparsePropagation.cpp198 SwitchInst::CaseIt Case = SI.findCaseValue(cast<ConstantInt>(C));
H A DLazyValueInfo.cpp978 for (SwitchInst::CaseIt i : SI->cases()) {
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp583 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 DLowerSwitch.cpp365 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); i != e; ++i)
H A DLocal.cpp130 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
211 SwitchInst::CaseIt FirstCase = SI->case_begin();
H A DCodeExtractor.cpp670 TheSwitch->removeCase(SwitchInst::CaseIt(TheSwitch, NumExitBlocks-1));
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2171 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 DInstructions.cpp3642 CaseIt Case(this, NewCaseIdx);
3649 void SwitchInst::removeCase(CaseIt i) {
H A DVerifier.cpp1986 for (SwitchInst::CaseIt i = SI.case_begin(), e = SI.case_end(); i != e; ++i) {
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp902 for (SwitchInst::CaseIt i = I.case_begin(), e = I.case_end(); i != e; ++i) {
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4720 for (SwitchInst::CaseIt Case : SI->cases()) {

Completed in 250 milliseconds