Searched defs:CaseVal (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp924 ConstantInt *CaseVal = i.getCaseValue(); local
928 if (BranchesInfo.isUnswitched(SI, CaseVal))
931 CondVal = CaseVal;
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1144 llvm::ConstantInt *CaseVal = local
1159 SwitchInsn->addCase(CaseVal, Block.getBlock());
1175 SwitchInsn->addCase(CaseVal, CaseDest);
1192 llvm::ConstantInt *CaseVal = local
1202 SwitchInsn->addCase(CaseVal, CaseDest);
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1161 const ConstantInt* CaseVal = i.getCaseValue(); local
1164 << getOpName(CaseVal) << ", "
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2182 ConstantInt* CaseVal = i.getCaseValue(); local
2183 Constant *LHS = CaseVal;
2186 ? ConstantExpr::getZExt(CaseVal, Cond->getType())
2187 : ConstantExpr::getSExt(CaseVal, Cond->getType());
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4612 ConstantInt *CaseVal = local
4615 if (!CaseVal || !DestBB) {
4619 SI->addCase(CaseVal, DestBB);
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3855 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts(); local
3856 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3868 /// destionations CaseDest corresponding to value CaseVal (0 for the default
3871 GetCaseResults(SwitchInst *SI, ConstantInt *CaseVal, BasicBlock *CaseDest, argument
3879 // which we can constant-propagate the CaseVal, continue to its successor.
3881 ConstantPool.insert(std::make_pair(SI->getCondition(), CaseVal));
3945 // Helper function used to add CaseVal to the list of cases that generate
3947 static void MapCaseToResult(ConstantInt *CaseVal, argument
3952 I.second.push_back(CaseVal);
3957 SmallVector<ConstantInt*, 4>(1, CaseVal)));
3970 ConstantInt *CaseVal = I.getCaseValue(); local
3974 if (!GetCaseResults(SI, CaseVal,
4176 ConstantInt *CaseVal = Values[I].first; local
4511 ConstantInt *CaseVal = CI.getCaseValue(); local
[all...]

Completed in 472 milliseconds