1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_divdf3
10 COMPILER_RT_ABI
double __divdf3(double a
, double b
);
12 int test__divdf3(double a
, double b
, uint64_t expected
)
14 double x
= __divdf3(a
, b
);
15 int ret
= compareResultD(x
, expected
);
18 printf("error in test__divdf3(%.20e, %.20e) = %.20e, "
19 "expected %.20e\n", a
, b
, x
,
27 // Returned NaNs are assumed to be qNaN by default
30 if (test__divdf3(makeQNaN64(), 3., UINT64_C(0x7ff8000000000000)))
33 if (test__divdf3(makeNaN64(UINT64_C(0x123)), 3., UINT64_C(0x7ff8000000000000)))
36 if (test__divdf3(3., makeQNaN64(), UINT64_C(0x7ff8000000000000)))
39 if (test__divdf3(3., makeNaN64(UINT64_C(0x123)), UINT64_C(0x7ff8000000000000)))
42 // +Inf / positive = +Inf
43 if (test__divdf3(makeInf64(), 3., UINT64_C(0x7ff0000000000000)))
45 // +Inf / negative = -Inf
46 if (test__divdf3(makeInf64(), -3., UINT64_C(0xfff0000000000000)))
48 // -Inf / positive = -Inf
49 if (test__divdf3(makeNegativeInf64(), 3., UINT64_C(0xfff0000000000000)))
51 // -Inf / negative = +Inf
52 if (test__divdf3(makeNegativeInf64(), -3., UINT64_C(0x7ff0000000000000)))
56 if (test__divdf3(makeInf64(), makeInf64(), UINT64_C(0x7ff8000000000000)))
59 if (test__divdf3(+0x0.0p
+0, +0x0.0p
+0, UINT64_C(0x7ff8000000000000)))
62 if (test__divdf3(+0x0.0p
+0, makeInf64(), UINT64_C(0x0)))
65 if (test__divdf3(makeInf64(), +0x0.0p
+0, UINT64_C(0x7ff0000000000000)))
68 // positive / +0.0 = +Inf
69 if (test__divdf3(+1.0, +0x0.0p
+0, UINT64_C(0x7ff0000000000000)))
71 // positive / -0.0 = -Inf
72 if (test__divdf3(+1.0, -0x0.0p
+0, UINT64_C(0xfff0000000000000)))
74 // negative / +0.0 = -Inf
75 if (test__divdf3(-1.0, +0x0.0p
+0, UINT64_C(0xfff0000000000000)))
77 // negative / -0.0 = +Inf
78 if (test__divdf3(-1.0, -0x0.0p
+0, UINT64_C(0x7ff0000000000000)))
82 if (test__divdf3(1., 3., UINT64_C(0x3fd5555555555555)))
84 // smallest normal result
85 if (test__divdf3(0x1.0p
-1021, 2., UINT64_C(0x10000000000000)))
88 // divisor is exactly 1.0
89 if (test__divdf3(0x1.0p
+0, 0x1.0p
+0, UINT64_C(0x3ff0000000000000)))
91 // divisor is truncated to exactly 1.0 in UQ1.31
92 if (test__divdf3(0x1.0p
+0, 0x1.00000001p
+0, UINT64_C(0x3fefffffffe00000)))
95 // smallest normal value divided by 2.0
96 if (test__divdf3(0x1.0p
-1022, 2., UINT64_C(0x0008000000000000)))
98 // smallest subnormal result
99 if (test__divdf3(0x1.0p
-1022, 0x1.0p
+52, UINT64_C(0x0000000000000001)))
102 // some misc test cases obtained by fuzzing against h/w implementation
103 if (test__divdf3(0x1.fdc239dd64735p
-658, -0x1.fff9364c0843fp
-948, UINT64_C(0xd20fdc8fc0ceffb1)))
105 if (test__divdf3(-0x1.78abb261d47c8p
+794, 0x1.fb01d537cc5aep
+266, UINT64_C(0xe0e7c6148ffc23e3)))
107 if (test__divdf3(-0x1.da7dfe6048b8bp
-875, 0x1.ffc7ea3ff60a4p
-610, UINT64_C(0xaf5dab1fe0269e2a)))
109 if (test__divdf3(0x1.0p
-1022, 0x1.9p
+5, UINT64_C(0x000051eb851eb852)))
111 if (test__divdf3(0x1.0p
-1022, 0x1.0028p
+41, UINT64_C(0x00000000000007ff)))
113 if (test__divdf3(0x1.0p
-1022, 0x1.0028p
+52, UINT64_C(0x1)))
116 // test 1 / (1 - eps(0.5)) = 1 + eps(1)
117 if (test__divdf3(1.0, 0x1.fffffffffffffp
-1, UINT64_C(0x3ff0000000000001)))