1*7c3d14c8STreehugger Robot /*===-- divtc3.c - Implement __divtc3 -------------------------------------===
2*7c3d14c8STreehugger Robot *
3*7c3d14c8STreehugger Robot * The LLVM Compiler Infrastructure
4*7c3d14c8STreehugger Robot *
5*7c3d14c8STreehugger Robot * This file is dual licensed under the MIT and the University of Illinois Open
6*7c3d14c8STreehugger Robot * Source Licenses. See LICENSE.TXT for details.
7*7c3d14c8STreehugger Robot *
8*7c3d14c8STreehugger Robot * ===----------------------------------------------------------------------===
9*7c3d14c8STreehugger Robot *
10*7c3d14c8STreehugger Robot * This file implements __divtc3 for the compiler_rt library.
11*7c3d14c8STreehugger Robot *
12*7c3d14c8STreehugger Robot *===----------------------------------------------------------------------===
13*7c3d14c8STreehugger Robot */
14*7c3d14c8STreehugger Robot
15*7c3d14c8STreehugger Robot #include "int_lib.h"
16*7c3d14c8STreehugger Robot #include "int_math.h"
17*7c3d14c8STreehugger Robot
18*7c3d14c8STreehugger Robot /* Returns: the quotient of (a + ib) / (c + id) */
19*7c3d14c8STreehugger Robot
20*7c3d14c8STreehugger Robot COMPILER_RT_ABI long double _Complex
__divtc3(long double __a,long double __b,long double __c,long double __d)21*7c3d14c8STreehugger Robot __divtc3(long double __a, long double __b, long double __c, long double __d)
22*7c3d14c8STreehugger Robot {
23*7c3d14c8STreehugger Robot int __ilogbw = 0;
24*7c3d14c8STreehugger Robot long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d)));
25*7c3d14c8STreehugger Robot if (crt_isfinite(__logbw))
26*7c3d14c8STreehugger Robot {
27*7c3d14c8STreehugger Robot __ilogbw = (int)__logbw;
28*7c3d14c8STreehugger Robot __c = crt_scalbnl(__c, -__ilogbw);
29*7c3d14c8STreehugger Robot __d = crt_scalbnl(__d, -__ilogbw);
30*7c3d14c8STreehugger Robot }
31*7c3d14c8STreehugger Robot long double __denom = __c * __c + __d * __d;
32*7c3d14c8STreehugger Robot long double _Complex z;
33*7c3d14c8STreehugger Robot __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
34*7c3d14c8STreehugger Robot __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
35*7c3d14c8STreehugger Robot if (crt_isnan(__real__ z) && crt_isnan(__imag__ z))
36*7c3d14c8STreehugger Robot {
37*7c3d14c8STreehugger Robot if ((__denom == 0.0) && (!crt_isnan(__a) || !crt_isnan(__b)))
38*7c3d14c8STreehugger Robot {
39*7c3d14c8STreehugger Robot __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a;
40*7c3d14c8STreehugger Robot __imag__ z = crt_copysignl(CRT_INFINITY, __c) * __b;
41*7c3d14c8STreehugger Robot }
42*7c3d14c8STreehugger Robot else if ((crt_isinf(__a) || crt_isinf(__b)) &&
43*7c3d14c8STreehugger Robot crt_isfinite(__c) && crt_isfinite(__d))
44*7c3d14c8STreehugger Robot {
45*7c3d14c8STreehugger Robot __a = crt_copysignl(crt_isinf(__a) ? 1.0 : 0.0, __a);
46*7c3d14c8STreehugger Robot __b = crt_copysignl(crt_isinf(__b) ? 1.0 : 0.0, __b);
47*7c3d14c8STreehugger Robot __real__ z = CRT_INFINITY * (__a * __c + __b * __d);
48*7c3d14c8STreehugger Robot __imag__ z = CRT_INFINITY * (__b * __c - __a * __d);
49*7c3d14c8STreehugger Robot }
50*7c3d14c8STreehugger Robot else if (crt_isinf(__logbw) && __logbw > 0.0 &&
51*7c3d14c8STreehugger Robot crt_isfinite(__a) && crt_isfinite(__b))
52*7c3d14c8STreehugger Robot {
53*7c3d14c8STreehugger Robot __c = crt_copysignl(crt_isinf(__c) ? 1.0 : 0.0, __c);
54*7c3d14c8STreehugger Robot __d = crt_copysignl(crt_isinf(__d) ? 1.0 : 0.0, __d);
55*7c3d14c8STreehugger Robot __real__ z = 0.0 * (__a * __c + __b * __d);
56*7c3d14c8STreehugger Robot __imag__ z = 0.0 * (__b * __c - __a * __d);
57*7c3d14c8STreehugger Robot }
58*7c3d14c8STreehugger Robot }
59*7c3d14c8STreehugger Robot return z;
60*7c3d14c8STreehugger Robot }
61