Searched refs:getCondition (Results 76 - 100 of 121) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DIVDescriptors.cpp525 CmpInst *CI = dyn_cast<CmpInst>(SI->getCondition());
H A DScalarEvolution.cpp4128 BECond = BI->getCondition();
4148 compareWithBackedgeCondition(SI->getCondition());
5041 C = BI->getCondition();
6927 if (auto *CI = dyn_cast<ConstantInt>(BI->getCondition())) {
7003 L, BI->getCondition(), ExitIfTrue,
7332 const SCEV *LHS = getSCEVAtScope(Switch->getCondition(), L);
9343 LoopContinuePredicate->getCondition(),
9407 Value *Condition = ContinuePredicate->getCondition();
9520 if (ProveViaCond(LoopEntryPredicate->getCondition(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp141 if (dependsOnLocalPhi(L, Br->getCondition())) {
H A DAMDGPUCodeGenPrepare.cpp633 Value *NewSelect = Builder.CreateSelect(Sel->getCondition(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp1628 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
1700 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1734 } else if (foldX86XALUIntrinsic(CC, BI, BI->getCondition())) {
1737 Register TmpReg = getRegForValue(BI->getCondition());
1750 Register OpReg = getRegForValue(BI->getCondition());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1768 auto *ICmp = cast<Instruction>(Br->getCondition());
3404 NewI = B.CreateSelect(SI->getCondition(),
6361 const SCEV *CondSCEV = SE->getSCEV(SI->getCondition());
6363 Type *CondTy = SI->getCondition()->getType();
6803 VPValue *EdgeMask = Plan->getVPValue(BI->getCondition());
7182 NeedDef.insert(Branch->getCondition());
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1499 Node->getCondition()->printPretty(OS, nullptr, Policy, 0);
1505 Node->getCondition()->printPretty(OS, nullptr, Policy, 0);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1377 return SelectInst::Create(SI->getCondition(), N, A);
1381 return SelectInst::Create(SI->getCondition(), A, N);
H A DInstCombineMulDivRem.cpp670 Value *SelectCond = SI->getCondition();
1094 Inst = SelectInst::Create(cast<SelectInst>(ActionOp1)->getCondition(),
H A DInstCombineLoadStoreAlloca.cpp1003 return SelectInst::Create(SI->getCondition(), V1, V2);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1024 return SelectInst::Create(SI->getCondition(), Undef, Undef, Name, SI);
2644 return dyn_cast<Instruction>(BI->getCondition());
H A DLoopInterchange.cpp1295 ->getCondition());
H A DSROA.cpp616 if (ConstantInt *CI = dyn_cast<ConstantInt>(SI.getCondition()))
1367 Value *V = IRB.CreateSelect(SI.getCondition(), TL, FL,
3476 Value *NSel = Builder.CreateSelect(Sel->getCondition(), NTrue, NFalse,
H A DInductiveRangeCheckElimination.cpp792 ICmpInst *ICI = dyn_cast<ICmpInst>(LatchBr->getCondition());
H A DLoopStrengthReduce.cpp2388 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2393 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
3276 if (SaveCmp && CI == dyn_cast<ICmpInst>(ExitBranch->getCondition()))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp777 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
805 dyn_cast<ConstantInt>(BI->getCondition())) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h1559 if (BI->isConditional() && Cond.match(BI->getCondition()))
1597 auto *Cmp = dyn_cast<CmpInst_t>(SI->getCondition());
H A DInstructions.h1737 const Value *getCondition() const { return Op<0>(); } function in class:llvm::CallInst::SelectInst
1740 Value *getCondition() { return Op<0>(); } function in class:llvm::CallInst::SelectInst
3040 Value *getCondition() const { function in class:llvm::CallInst::ShuffleVectorInst::BranchInst
3308 Value *getCondition() const { return getOperand(0); } function in class:llvm::CallInst::ShuffleVectorInst::SwitchInst
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.cpp623 llvm::LoadInst *condition = cast<llvm::LoadInst>(si->getCondition());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp801 Value *Cond = SI->getCondition();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp904 Value *condition = br_inst->getCondition();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DRecursiveASTVisitor.h2987 TRY_TO(TraverseStmt(C->getCondition()));
2994 TRY_TO(TraverseStmt(C->getCondition()));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp942 Value *Cond = I.getCondition();
951 Value* Cond = I.getCondition();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp379 Register Tst = getOrCreateVReg(*BrInst.getCondition());
491 if (!lowerSwitchWorkItem(W, SI.getCondition(), SwitchMBB, DefaultMBB, MIB))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp2549 Assert(BI.getCondition()->getType()->isIntegerTy(1),
2550 "Branch condition is not 'i1' type!", &BI, BI.getCondition());
2577 Type *SwitchTy = SI.getCondition()->getType();

Completed in 323 milliseconds

12345