Home
last modified time | relevance | path

Searched refs:RHSRes (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp223 ExprResult RHSRes = in calculateConstraintSatisfaction() local
225 if (RHSRes.isInvalid()) in calculateConstraintSatisfaction()
243 if (!LHSRes.isUsable() || !RHSRes.isUsable()) in calculateConstraintSatisfaction()
246 return BinaryOperator::Create(S.Context, LHSRes.get(), RHSRes.get(), in calculateConstraintSatisfaction()
H A DSemaExprCXX.cpp6571 ExprResult RHSRes = Self.PerformImplicitConversion( in FindConditionalOverload() local
6574 if (RHSRes.isInvalid()) in FindConditionalOverload()
6576 RHS = RHSRes; in FindConditionalOverload()
H A DSemaExpr.cpp13094 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); in CheckLogicalOperands() local
13095 if (RHSRes.isInvalid()) in CheckLogicalOperands()
13097 RHS = RHSRes; in CheckLogicalOperands()
H A DSemaOpenMP.cpp19767 ExprResult RHSRes = in ProcessOpenMPDoacrossClauseCommon() local
19770 if (RHSRes.isInvalid()) in ProcessOpenMPDoacrossClauseCommon()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp987 std::optional<ConstantRange> RHSRes = getRangeFor(I->getOperand(1), I, BB); in solveBlockValueBinaryOpImpl() local
988 if (!RHSRes) in solveBlockValueBinaryOpImpl()
992 const ConstantRange &RHSRange = *RHSRes; in solveBlockValueBinaryOpImpl()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp2882 Constant *RHSRes = in tryToUnfoldSelect() local
2885 if ((LHSRes || RHSRes) && LHSRes != RHSRes) { in tryToUnfoldSelect()