Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp195 ExprResult LHSRes = in calculateConstraintSatisfaction() local
198 if (LHSRes.isInvalid()) in calculateConstraintSatisfaction()
211 return LHSRes; in calculateConstraintSatisfaction()
221 return LHSRes; 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.cpp6564 ExprResult LHSRes = Self.PerformImplicitConversion( in FindConditionalOverload() local
6567 if (LHSRes.isInvalid()) in FindConditionalOverload()
6569 LHS = LHSRes; in FindConditionalOverload()
H A DSemaExpr.cpp13089 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); in CheckLogicalOperands() local
13090 if (LHSRes.isInvalid()) in CheckLogicalOperands()
13092 LHS = LHSRes; in CheckLogicalOperands()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp959 std::optional<ConstantRange> LHSRes = getRangeFor(CI->getOperand(0), CI, BB); in solveBlockValueCast() local
960 if (!LHSRes) in solveBlockValueCast()
963 const ConstantRange &LHSRange = *LHSRes; in solveBlockValueCast()
983 std::optional<ConstantRange> LHSRes = getRangeFor(I->getOperand(0), I, BB); in solveBlockValueBinaryOpImpl() local
984 if (!LHSRes) in solveBlockValueBinaryOpImpl()
991 const ConstantRange &LHSRange = *LHSRes; in solveBlockValueBinaryOpImpl()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp2879 Constant *LHSRes = in tryToUnfoldSelect() local
2885 if ((LHSRes || RHSRes) && LHSRes != RHSRes) { in tryToUnfoldSelect()