blob: 5f240e956d845323e913a104b582e18314777d80 [file] [log] [blame]
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00001/* ===-- divxc3.c - Implement __divxc3 -------------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant9ad441f2010-11-16 22:13:33 +00005 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __divxc3 for the compiler_rt library.
11 *
12 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000013
14#if !_ARCH_PPC
15
16#include "int_lib.h"
Daniel Dunbar86030242011-11-16 07:33:00 +000017#include "int_math.h"
Daniel Dunbarb3a69012009-06-26 16:47:03 +000018
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000019/* Returns: the quotient of (a + ib) / (c + id) */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000020
21long double _Complex
22__divxc3(long double __a, long double __b, long double __c, long double __d)
23{
24 int __ilogbw = 0;
Daniel Dunbarc25c6d12011-11-16 07:33:06 +000025 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d)));
Daniel Dunbar86030242011-11-16 07:33:00 +000026 if (crt_isfinite(__logbw))
Daniel Dunbarb3a69012009-06-26 16:47:03 +000027 {
28 __ilogbw = (int)__logbw;
Daniel Dunbarc25c6d12011-11-16 07:33:06 +000029 __c = crt_scalbnl(__c, -__ilogbw);
30 __d = crt_scalbnl(__d, -__ilogbw);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000031 }
32 long double __denom = __c * __c + __d * __d;
33 long double _Complex z;
Daniel Dunbarc25c6d12011-11-16 07:33:06 +000034 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
Daniel Dunbar86030242011-11-16 07:33:00 +000036 if (crt_isnan(__real__ z) && crt_isnan(__imag__ z))
Daniel Dunbarb3a69012009-06-26 16:47:03 +000037 {
Daniel Dunbar86030242011-11-16 07:33:00 +000038 if ((__denom == 0) && (!crt_isnan(__a) || !crt_isnan(__b)))
Daniel Dunbarb3a69012009-06-26 16:47:03 +000039 {
Daniel Dunbarc25c6d12011-11-16 07:33:06 +000040 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a;
41 __imag__ z = crt_copysignl(CRT_INFINITY, __c) * __b;
Daniel Dunbarb3a69012009-06-26 16:47:03 +000042 }
Daniel Dunbar86030242011-11-16 07:33:00 +000043 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
44 crt_isfinite(__c) && crt_isfinite(__d))
Daniel Dunbarb3a69012009-06-26 16:47:03 +000045 {
Daniel Dunbarc25c6d12011-11-16 07:33:06 +000046 __a = crt_copysignl(crt_isinf(__a) ? 1 : 0, __a);
47 __b = crt_copysignl(crt_isinf(__b) ? 1 : 0, __b);
48 __real__ z = CRT_INFINITY * (__a * __c + __b * __d);
49 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000050 }
Daniel Dunbar86030242011-11-16 07:33:00 +000051 else if (crt_isinf(__logbw) && __logbw > 0 &&
52 crt_isfinite(__a) && crt_isfinite(__b))
Daniel Dunbarb3a69012009-06-26 16:47:03 +000053 {
Daniel Dunbarc25c6d12011-11-16 07:33:06 +000054 __c = crt_copysignl(crt_isinf(__c) ? 1 : 0, __c);
55 __d = crt_copysignl(crt_isinf(__d) ? 1 : 0, __d);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000056 __real__ z = 0 * (__a * __c + __b * __d);
57 __imag__ z = 0 * (__b * __c - __a * __d);
58 }
59 }
60 return z;
61}
62
63#endif