Searched refs:CondV (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp676 Value *CondV = SelI->getCondition(); local
685 if (!match(CondV, m_ICmp(P, m_And(m_Value(A), m_Value(B)), m_Value(C))) &&
686 !match(CondV, m_ICmp(P, m_Value(C), m_And(m_Value(A), m_Value(B)))))
791 Value *CondV = SelI->getCondition(); local
801 if (match(CondV, m_ICmp(P, m_Value(C), m_Zero())) ||
802 match(CondV, m_ICmp(P, m_Zero(), m_Value(C)))) {
808 } else if (match(CondV, m_ICmp(P, m_Value(C), m_One())) ||
809 match(CondV, m_ICmp(P, m_One(), m_Value(C)))) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp634 SDValue CondV = Op.getOperand(0); local
640 // If the result type is XLenVT and CondV is the output of a SETCC node
646 if (Op.getSimpleValueType() == XLenVT && CondV.getOpcode() == ISD::SETCC &&
647 CondV.getOperand(0).getSimpleValueType() == XLenVT) {
648 SDValue LHS = CondV.getOperand(0);
649 SDValue RHS = CondV.getOperand(1);
650 auto CC = cast<CondCodeSDNode>(CondV.getOperand(2));
668 SDValue Ops[] = {CondV, Zero, SetNE, TrueV, FalseV};
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp4280 llvm::Value *CondV = CGF.EmitScalarExpr(condExpr); local
4291 llvm::Value *TestMSB = Builder.CreateICmpSLT(CondV, zeroVec);
4321 llvm::Value *CondV = CGF.EmitScalarExpr(condExpr); local
4329 CondV = Builder.CreateICmpNE(CondV, ZeroVec, "vector_cond");
4330 return Builder.CreateSelect(CondV, LHS, RHS, "vector_select");
4338 llvm::Value *CondV = CGF.EvaluateExprAsBool(condExpr); local
4339 llvm::Value *StepV = Builder.CreateZExtOrBitCast(CondV, CGF.Int64Ty);
4350 return Builder.CreateSelect(CondV, LHS, RHS, "cond");
H A DCodeGenFunction.cpp1657 llvm::Value *CondV; local
1660 CondV = EvaluateExprAsBool(Cond);
1662 Builder.CreateCondBr(CondV, TrueBlock, FalseBlock, Weights, Unpredictable);
H A DCGStmt.cpp1646 llvm::Value *CondV = EmitScalarExpr(S.getCond()); local
1653 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp740 if (ConstantVector *CondV = dyn_cast<ConstantVector>(Cond)) {
742 Type *Ty = IntegerType::get(CondV->getContext(), 32);
749 auto *Cond = cast<Constant>(CondV->getOperand(i));
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2363 DefinedOrUnknownSVal CondV = CondV_untested.castAs<DefinedOrUnknownSVal>(); local
2389 if (Optional<NonLoc> NL = CondV.getAs<NonLoc>())

Completed in 169 milliseconds