Home
last modified time | relevance | path

Searched refs:Cond2 (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp139 const Expr *Cond2 = I2->getCond(); in VisitIfStmt() local
140 if (isIdenticalStmt(AC->getASTContext(), Cond1, Cond2, false)) { in VisitIfStmt()
142 PathDiagnosticLocation ELoc(Cond2, BR.getSourceManager(), AC); in VisitIfStmt()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLibCallsShrinkWrap.cpp108 auto Cond2 = createCond(BBBuilder, Arg, Cmp2, Val2); in createOrCond() local
110 return BBBuilder.CreateOr(Cond1, Cond2); in createOrCond()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h1558 Value *CreateLogicalAnd(Value *Cond1, Value *Cond2, const Twine &Name = "") {
1559 assert(Cond2->getType()->isIntOrIntVectorTy(1));
1560 return CreateSelect(Cond1, Cond2,
1561 ConstantInt::getNullValue(Cond2->getType()), Name);
1564 Value *CreateLogicalOr(Value *Cond1, Value *Cond2, const Twine &Name = "") {
1565 assert(Cond2->getType()->isIntOrIntVectorTy(1));
1566 return CreateSelect(Cond1, ConstantInt::getAllOnesValue(Cond2->getType()),
1567 Cond2, Name);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DIfConversion.cpp1801 SmallVector<MachineOperand, 4> *Cond2 = &RevCond; in IfConvertDiamondCommon() local
1814 std::swap(Cond1, Cond2); in IfConvertDiamondCommon()
1999 PredicateBlock(*BBI2, DI2, *Cond2); in IfConvertDiamondCommon()
H A DCodeGenPrepare.cpp8167 Value *Cond1, *Cond2; in splitBranchCondition() local
8169 m_LogicalAnd(m_OneUse(m_Value(Cond1)), m_OneUse(m_Value(Cond2))))) in splitBranchCondition()
8172 m_OneUse(m_Value(Cond2))))) in splitBranchCondition()
8183 if (!IsGoodCond(Cond1) || !IsGoodCond(Cond2)) in splitBranchCondition()
8206 auto *Br2 = IRBuilder<>(TmpBB).CreateCondBr(Cond2, TBB, FBB); in splitBranchCondition()
8207 if (auto *I = dyn_cast<Instruction>(Cond2)) { in splitBranchCondition()