Searched refs:LHSRes (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LazyValueInfo.cpp | 919 std::optional<ConstantRange> LHSRes = getRangeFor(CI->getOperand(0), CI, BB); in solveBlockValueCast() local 920 if (!LHSRes) in solveBlockValueCast() 923 const ConstantRange &LHSRange = *LHSRes; in solveBlockValueCast() 978 std::optional<ConstantRange> LHSRes = getRangeFor(LHS, I, BB); in solveBlockValueBinaryOpImpl() local 979 if (!LHSRes) in solveBlockValueBinaryOpImpl() 984 if (auto Res = ThreadBinOpOverSelect(LHS, *LHSRes, SI, /*XIsLHS=*/true)) in solveBlockValueBinaryOpImpl() 998 const ConstantRange &LHSRange = *LHSRes; in solveBlockValueBinaryOpImpl()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaConcept.cpp | 337 ExprResult LHSRes = calculateConstraintSatisfaction( in calculateConstraintSatisfaction() local 340 if (LHSRes.isInvalid()) in calculateConstraintSatisfaction() 353 return LHSRes; in calculateConstraintSatisfaction() 363 return LHSRes; in calculateConstraintSatisfaction() 385 if (!LHSRes.isUsable() || !RHSRes.isUsable()) in calculateConstraintSatisfaction() 388 return BinaryOperator::Create(S.Context, LHSRes.get(), RHSRes.get(), in calculateConstraintSatisfaction()
|
| H A D | SemaExprCXX.cpp | 5570 ExprResult LHSRes = Self.PerformImplicitConversion( in FindConditionalOverload() local 5573 if (LHSRes.isInvalid()) in FindConditionalOverload() 5575 LHS = LHSRes; in FindConditionalOverload()
|
| H A D | SemaExpr.cpp | 1584 Expr::EvalResult LHSRes, RHSRes; in CheckUnicodeArithmeticConversions() local 1585 bool LHSSuccess = LHS->EvaluateAsInt(LHSRes, SemaRef.getASTContext(), in CheckUnicodeArithmeticConversions() 1595 Expr::EvalResult &Res = LHSSuccess ? LHSRes : RHSRes; in CheckUnicodeArithmeticConversions() 1609 LHSValue = LHSRes.Val.getInt(); in CheckUnicodeArithmeticConversions() 13456 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); in CheckLogicalOperands() local 13457 if (LHSRes.isInvalid()) in CheckLogicalOperands() 13459 LHS = LHSRes; in CheckLogicalOperands()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | JumpThreading.cpp | 2916 Constant *LHSRes = in tryToUnfoldSelect() local 2922 if ((LHSRes || RHSRes) && LHSRes != RHSRes) { in tryToUnfoldSelect()
|