Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DExprConstant.cpp12784 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHSTy)); in EvaluateComparisonBinaryOperator() local
12791 if (LHSFX < RHSFX) in EvaluateComparisonBinaryOperator()
12793 if (LHSFX > RHSFX) in EvaluateComparisonBinaryOperator()
13732 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHS->getType())); in VisitBinaryOperator() local
13733 if (!EvaluateFixedPointOrInteger(RHS, RHSFX, Info)) in VisitBinaryOperator()
13740 Result = LHSFX.add(RHSFX, &OpOverflow) in VisitBinaryOperator()
13745 Result = LHSFX.sub(RHSFX, &OpOverflow) in VisitBinaryOperator()
13750 Result = LHSFX.mul(RHSFX, &OpOverflow) in VisitBinaryOperator()
13755 if (RHSFX.getValue() == 0) { in VisitBinaryOperator()
13759 Result = LHSFX.div(RHSFX, &OpOverflow) in VisitBinaryOperator()
[all …]