Searched refs:CaseVal (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp597 ConstantInt *CaseVal = i.getCaseValue(); local
601 if (BranchesInfo.isUnswitched(SI, CaseVal))
604 if (Val) *Val = CaseVal;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3393 /// destionations CaseDest corresponding to value CaseVal (0 for the default
3397 ConstantInt *CaseVal,
3406 // which we can constant-propagate the CaseVal, continue to its successor.
3408 ConstantPool.insert(std::make_pair(SI->getCondition(), CaseVal));
3537 ConstantInt *CaseVal = Values[I].first; local
3541 uint64_t Idx = (CaseVal->getValue() - Offset->getValue())
3738 ConstantInt *CaseVal = CI.getCaseValue(); local
3739 if (CaseVal->getValue().slt(MinCaseVal->getValue()))
3740 MinCaseVal = CaseVal;
3741 if (CaseVal
3396 GetCaseResults(SwitchInst *SI, ConstantInt *CaseVal, BasicBlock *CaseDest, BasicBlock **CommonDest, SmallVectorImpl<std::pair<PHINode *, Constant *> > &Res, const DataLayout *DL) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1187 llvm::ConstantInt *CaseVal = local
1202 SwitchInsn->addCase(CaseVal, Block.getBlock());
1218 SwitchInsn->addCase(CaseVal, CaseDest);
1235 llvm::ConstantInt *CaseVal = local
1246 SwitchInsn->addCase(CaseVal, CaseDest);
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1665 nonloc::ConcreteInt CaseVal(getBasicVals().getValue(V1));
1667 CondV, CaseVal);
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1159 const ConstantInt* CaseVal = i.getCaseValue(); local
1162 << getOpName(CaseVal) << ", "
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1987 ConstantInt* CaseVal = i.getCaseValue(); local
1988 Constant* NewCaseVal = ConstantExpr::getSub(cast<Constant>(CaseVal),
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2719 ConstantInt *CaseVal = local
2722 if (!CaseVal || !DestBB) {
2726 SI->addCase(CaseVal, DestBB);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp902 GenericValue CaseVal = getOperandValue(i.getCaseValue(), SF);
903 if (executeICMP_EQ(CondVal, CaseVal, ElTy).IntVal != 0) {
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3746 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts(); local
3747 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))

Completed in 257 milliseconds