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

/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp479 const ConstantInt *CaseVal = CC.Low; local
483 (CaseVal->getValue() - Clusters[DstIndex - 1].High->getValue()) == 1) {
486 Clusters[DstIndex - 1].High = CaseVal;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5029 const APInt &CaseVal = Case.getCaseValue()->getValue(); local
5030 if (Known.Zero.intersects(CaseVal) || !Known.One.isSubsetOf(CaseVal) ||
5031 (CaseVal.getMinSignedBits() > MaxSignificantBitsInCond)) {
5035 LLVM_DEBUG(dbgs() << "SimplifyCFG: switch case " << CaseVal
5243 /// destionations CaseDest corresponding to value CaseVal (0 for the default
5246 GetCaseResults(SwitchInst *SI, ConstantInt *CaseVal, BasicBlock *CaseDest, argument
5254 // which we can constant-propagate the CaseVal, continue to its successor.
5256 ConstantPool.insert(std::make_pair(SI->getCondition(), CaseVal));
5315 // Helper function used to add CaseVal t
5317 MapCaseToResult(ConstantInt *CaseVal, SwitchCaseResultVectorTy &UniqueResults, Constant *Result) argument
5342 ConstantInt *CaseVal = I.getCaseValue(); local
5578 ConstantInt *CaseVal = Values[I].first; local
5920 ConstantInt *CaseVal = CI->getCaseValue(); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp1280 ConstantInt *CaseVal = Case.getCaseValue(); local
1284 if (BranchesInfo.isUnswitched(SI, CaseVal))
1287 CondVal = CaseVal;
H A DSimpleLoopUnswitch.cpp780 ConstantInt *CaseVal = std::get<0>(ExitCase); local
783 NewSIW.addCase(CaseVal, UnswitchedBB, std::get<2>(ExitCase));
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h395 const APInt &CaseVal = CI.getCaseValue()->getValue(); local
396 if (CaseVal.sgt(MaxCaseVal))
397 MaxCaseVal = CaseVal;
398 if (CaseVal.slt(MinCaseVal))
399 MinCaseVal = CaseVal;
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp1411 llvm::ConstantInt *CaseVal = local
1428 SwitchInsn->addCase(CaseVal, Block.getBlock());
1444 SwitchInsn->addCase(CaseVal, CaseDest);
1465 llvm::ConstantInt *CaseVal = local
1479 SwitchInsn->addCase(CaseVal, CaseDest);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp683 const ConstantInt *CaseVal = I.getCaseValue(); local
687 Clusters.push_back(CaseCluster::range(CaseVal, CaseVal, Succ, Prob));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp958 GenericValue CaseVal = getOperandValue(Case.getCaseValue(), SF);
959 if (executeICMP_EQ(CondVal, CaseVal, ElTy).IntVal != 0) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4631 ConstantInt *CaseVal = local
4634 if (!CaseVal || !DestBB) {
4638 SI->addCase(CaseVal, DestBB);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCodeComplete.cpp5598 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts(); local
5599 if (auto *DRE = dyn_cast<DeclRefExpr>(CaseVal))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp10940 const ConstantInt *CaseVal = I.getCaseValue(); local
10944 Clusters.push_back(CaseCluster::range(CaseVal, CaseVal, Succ, Prob));

Completed in 311 milliseconds