forked from OSchip/llvm-project
[AST] Fix handling of some edge cases in fixed-point division.
Division by zero was not being handled, and division of -EPSILON / MAX did not perform rounding correctly.
This commit is contained in:
parent
80eb42281f
commit
33bae9c265
|
@ -12954,6 +12954,10 @@ bool FixedPointExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
|
|||
break;
|
||||
}
|
||||
case BO_Div: {
|
||||
if (RHSFX.getValue() == 0) {
|
||||
Info.FFDiag(E, diag::note_expr_divide_by_zero);
|
||||
return false;
|
||||
}
|
||||
Result = LHSFX.div(RHSFX, &OpOverflow)
|
||||
.convert(ResultFXSema, &ConversionOverflow);
|
||||
break;
|
||||
|
|
|
@ -282,7 +282,7 @@ APFixedPoint APFixedPoint::div(const APFixedPoint &Other,
|
|||
llvm::APInt::sdivrem(ThisVal, OtherVal, Result, Rem);
|
||||
// If the quotient is negative and the remainder is nonzero, round
|
||||
// towards negative infinity by subtracting epsilon from the result.
|
||||
if (Result.isNegative() && !Rem.isNullValue())
|
||||
if (ThisVal.isNegative() != OtherVal.isNegative() && !Rem.isNullValue())
|
||||
Result = Result - 1;
|
||||
} else
|
||||
Result = ThisVal.udiv(OtherVal);
|
||||
|
|
|
@ -64,6 +64,8 @@ short _Accum sa_const13 = 0.0234375hk / 2.0hk;
|
|||
// CHECK-DAG: @sa_const13 = {{.*}}global i16 1, align 2
|
||||
short _Accum sa_const14 = -0.0234375hk / 2.0hk;
|
||||
// CHECK-DAG: @sa_const14 = {{.*}}global i16 -2, align 2
|
||||
short _Accum sa_const15 = -0.0078125hk / 255.28125hk;
|
||||
// CHECK-DAG: @sa_const15 = {{.*}}global i16 -1, align 2
|
||||
|
||||
void SignedDivision() {
|
||||
// CHECK-LABEL: SignedDivision
|
||||
|
|
|
@ -264,3 +264,6 @@ short _Fract add_sat = (_Sat short _Fract)0.5hr + 0.5hr;
|
|||
short _Accum sub_sat = (_Sat short _Accum)-200.0hk - 80.0hk;
|
||||
short _Accum mul_sat = (_Sat short _Accum)80.0hk * 10.0hk;
|
||||
short _Fract div_sat = (_Sat short _Fract)0.9hr / 0.1hr;
|
||||
|
||||
// Division by zero
|
||||
short _Accum div_zero = 4.5k / 0.0lr; // expected-error {{initializer element is not a compile-time constant}}
|
||||
|
|
Loading…
Reference in New Issue