[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / builtins / Unit / powixf2_test.c
blob0e8798aaa8ca029352577ad027c5b10d6729ebec
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_powixf2
3 // UNSUPPORTED: powerpc64
4 // REQUIRES: x86-target-arch
5 //===-- powixf2_test.cpp - Test __powixf2 ---------------------------------===//
6 //
7 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
8 // See https://llvm.org/LICENSE.txt for license information.
9 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11 //===----------------------------------------------------------------------===//
13 // This file tests __powixf2 for the compiler_rt library.
15 //===----------------------------------------------------------------------===//
17 #if !_ARCH_PPC
19 #include "int_lib.h"
20 #include <stdio.h>
21 #include <math.h>
23 // Returns: a ^ b
25 COMPILER_RT_ABI long double __powixf2(long double a, si_int b);
27 int test__powixf2(long double a, si_int b, long double expected)
29 long double x = __powixf2(a, b);
30 int correct = (x == expected) && (signbit(x) == signbit(expected));
31 if (!correct)
32 printf("error in __powixf2(%Lf, %d) = %Lf, expected %Lf\n",
33 a, b, x, expected);
34 return !correct;
37 #endif
39 int main()
41 #if !_ARCH_PPC
42 if (test__powixf2(0, 0, 1))
43 return 1;
44 if (test__powixf2(1, 0, 1))
45 return 1;
46 if (test__powixf2(1.5, 0, 1))
47 return 1;
48 if (test__powixf2(2, 0, 1))
49 return 1;
50 if (test__powixf2(INFINITY, 0, 1))
51 return 1;
53 if (test__powixf2(-0., 0, 1))
54 return 1;
55 if (test__powixf2(-1, 0, 1))
56 return 1;
57 if (test__powixf2(-1.5, 0, 1))
58 return 1;
59 if (test__powixf2(-2, 0, 1))
60 return 1;
61 if (test__powixf2(-INFINITY, 0, 1))
62 return 1;
64 if (test__powixf2(0, 1, 0))
65 return 1;
66 if (test__powixf2(0, 2, 0))
67 return 1;
68 if (test__powixf2(0, 3, 0))
69 return 1;
70 if (test__powixf2(0, 4, 0))
71 return 1;
72 if (test__powixf2(0, 0x7FFFFFFE, 0))
73 return 1;
74 if (test__powixf2(0, 0x7FFFFFFF, 0))
75 return 1;
77 if (test__powixf2(-0., 1, -0.))
78 return 1;
79 if (test__powixf2(-0., 2, 0))
80 return 1;
81 if (test__powixf2(-0., 3, -0.))
82 return 1;
83 if (test__powixf2(-0., 4, 0))
84 return 1;
85 if (test__powixf2(-0., 0x7FFFFFFE, 0))
86 return 1;
87 if (test__powixf2(-0., 0x7FFFFFFF, -0.))
88 return 1;
90 if (test__powixf2(1, 1, 1))
91 return 1;
92 if (test__powixf2(1, 2, 1))
93 return 1;
94 if (test__powixf2(1, 3, 1))
95 return 1;
96 if (test__powixf2(1, 4, 1))
97 return 1;
98 if (test__powixf2(1, 0x7FFFFFFE, 1))
99 return 1;
100 if (test__powixf2(1, 0x7FFFFFFF, 1))
101 return 1;
103 if (test__powixf2(INFINITY, 1, INFINITY))
104 return 1;
105 if (test__powixf2(INFINITY, 2, INFINITY))
106 return 1;
107 if (test__powixf2(INFINITY, 3, INFINITY))
108 return 1;
109 if (test__powixf2(INFINITY, 4, INFINITY))
110 return 1;
111 if (test__powixf2(INFINITY, 0x7FFFFFFE, INFINITY))
112 return 1;
113 if (test__powixf2(INFINITY, 0x7FFFFFFF, INFINITY))
114 return 1;
116 if (test__powixf2(-INFINITY, 1, -INFINITY))
117 return 1;
118 if (test__powixf2(-INFINITY, 2, INFINITY))
119 return 1;
120 if (test__powixf2(-INFINITY, 3, -INFINITY))
121 return 1;
122 if (test__powixf2(-INFINITY, 4, INFINITY))
123 return 1;
124 if (test__powixf2(-INFINITY, 0x7FFFFFFE, INFINITY))
125 return 1;
126 if (test__powixf2(-INFINITY, 0x7FFFFFFF, -INFINITY))
127 return 1;
129 if (test__powixf2(0, -1, INFINITY))
130 return 1;
131 if (test__powixf2(0, -2, INFINITY))
132 return 1;
133 if (test__powixf2(0, -3, INFINITY))
134 return 1;
135 if (test__powixf2(0, -4, INFINITY))
136 return 1;
137 if (test__powixf2(0, 0x80000002, INFINITY))
138 return 1;
139 if (test__powixf2(0, 0x80000001, INFINITY))
140 return 1;
141 if (test__powixf2(0, 0x80000000, INFINITY))
142 return 1;
144 if (test__powixf2(-0., -1, -INFINITY))
145 return 1;
146 if (test__powixf2(-0., -2, INFINITY))
147 return 1;
148 if (test__powixf2(-0., -3, -INFINITY))
149 return 1;
150 if (test__powixf2(-0., -4, INFINITY))
151 return 1;
152 if (test__powixf2(-0., 0x80000002, INFINITY))
153 return 1;
154 if (test__powixf2(-0., 0x80000001, -INFINITY))
155 return 1;
156 if (test__powixf2(-0., 0x80000000, INFINITY))
157 return 1;
159 if (test__powixf2(1, -1, 1))
160 return 1;
161 if (test__powixf2(1, -2, 1))
162 return 1;
163 if (test__powixf2(1, -3, 1))
164 return 1;
165 if (test__powixf2(1, -4, 1))
166 return 1;
167 if (test__powixf2(1, 0x80000002, 1))
168 return 1;
169 if (test__powixf2(1, 0x80000001, 1))
170 return 1;
171 if (test__powixf2(1, 0x80000000, 1))
172 return 1;
174 if (test__powixf2(INFINITY, -1, 0))
175 return 1;
176 if (test__powixf2(INFINITY, -2, 0))
177 return 1;
178 if (test__powixf2(INFINITY, -3, 0))
179 return 1;
180 if (test__powixf2(INFINITY, -4, 0))
181 return 1;
182 if (test__powixf2(INFINITY, 0x80000002, 0))
183 return 1;
184 if (test__powixf2(INFINITY, 0x80000001, 0))
185 return 1;
186 if (test__powixf2(INFINITY, 0x80000000, 0))
187 return 1;
189 if (test__powixf2(-INFINITY, -1, -0.))
190 return 1;
191 if (test__powixf2(-INFINITY, -2, 0))
192 return 1;
193 if (test__powixf2(-INFINITY, -3, -0.))
194 return 1;
195 if (test__powixf2(-INFINITY, -4, 0))
196 return 1;
197 if (test__powixf2(-INFINITY, 0x80000002, 0))
198 return 1;
199 if (test__powixf2(-INFINITY, 0x80000001, -0.))
200 return 1;
201 if (test__powixf2(-INFINITY, 0x80000000, 0))
202 return 1;
204 if (test__powixf2(2, 10, 1024.))
205 return 1;
206 if (test__powixf2(-2, 10, 1024.))
207 return 1;
208 if (test__powixf2(2, -10, 1/1024.))
209 return 1;
210 if (test__powixf2(-2, -10, 1/1024.))
211 return 1;
213 if (test__powixf2(2, 19, 524288.))
214 return 1;
215 if (test__powixf2(-2, 19, -524288.))
216 return 1;
217 if (test__powixf2(2, -19, 1/524288.))
218 return 1;
219 if (test__powixf2(-2, -19, -1/524288.))
220 return 1;
222 if (test__powixf2(2, 31, 2147483648.))
223 return 1;
224 if (test__powixf2(-2, 31, -2147483648.))
225 return 1;
226 if (test__powixf2(2, -31, 1/2147483648.))
227 return 1;
228 if (test__powixf2(-2, -31, -1/2147483648.))
229 return 1;
231 #else
232 printf("skipped\n");
233 #endif
234 return 0;