Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DLazyValueInfo.cpp915 Optional<ConstantRange> LHSRes = getRangeFor(CI->getOperand(0), CI, BB); in solveBlockValueCast() local
916 if (!LHSRes.hasValue()) in solveBlockValueCast()
919 const ConstantRange &LHSRange = LHSRes.getValue(); in solveBlockValueCast()
938 Optional<ConstantRange> LHSRes = getRangeFor(I->getOperand(0), I, BB); in solveBlockValueBinaryOpImpl() local
940 if (!LHSRes.hasValue() || !RHSRes.hasValue()) in solveBlockValueBinaryOpImpl()
944 const ConstantRange &LHSRange = LHSRes.getValue(); in solveBlockValueBinaryOpImpl()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaExprCXX.cpp5977 ExprResult LHSRes = Self.PerformImplicitConversion( in FindConditionalOverload() local
5980 if (LHSRes.isInvalid()) in FindConditionalOverload()
5982 LHS = LHSRes; in FindConditionalOverload()
DSemaExpr.cpp12672 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); in CheckLogicalOperands() local
12673 if (LHSRes.isInvalid()) in CheckLogicalOperands()
12675 LHS = LHSRes; in CheckLogicalOperands()