Searched refs:RHSFX (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 13558 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHSTy)); in EvaluateComparisonBinaryOperator() local 13563 if (!EvaluateFixedPointOrInteger(E->getRHS(), RHSFX, Info) || !LHSOK) in EvaluateComparisonBinaryOperator() 13565 if (LHSFX < RHSFX) in EvaluateComparisonBinaryOperator() 13567 if (LHSFX > RHSFX) in EvaluateComparisonBinaryOperator() 14627 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHS->getType())); in VisitBinaryOperator() local 14628 if (!EvaluateFixedPointOrInteger(RHS, RHSFX, Info)) in VisitBinaryOperator() 14635 Result = LHSFX.add(RHSFX, &OpOverflow) in VisitBinaryOperator() 14640 Result = LHSFX.sub(RHSFX, &OpOverflow) in VisitBinaryOperator() 14645 Result = LHSFX.mul(RHSFX, &OpOverflow) in VisitBinaryOperator() 14650 if (RHSFX.getValue() == 0) { in VisitBinaryOperator() [all …]
|
H A D | ASTContext.cpp | 10863 FunctionEffectsRef RHSFX = rproto->getFunctionEffects(); in mergeFunctionTypes() local 10864 if (LHSFX != RHSFX) { in mergeFunctionTypes() 10866 MergedFX = FunctionEffectSet::getIntersection(LHSFX, RHSFX); in mergeFunctionTypes() 10869 MergedFX = FunctionEffectSet::getUnion(LHSFX, RHSFX, Errs); in mergeFunctionTypes() 10876 if (*MergedFX != RHSFX) in mergeFunctionTypes()
|