|
0
|
1 Fri Oct 23 19:27:04 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
2 |
|
|
3 * tests/vectors/vector_support.h (START_TEST): |
|
|
4 Ensure that dummy START_TEST (the one used when the test should |
|
|
5 *not* be run) does have a reference to the test function. And |
|
|
6 make sure that there is a default one if there's no C API |
|
|
7 |
|
|
8 * src/mathincl/fdlibm.h: |
|
|
9 Add matherr() prototype if no namespace pollution |
|
|
10 |
|
|
11 Fixes for PR 17972 |
|
|
12 |
|
|
13 1998-10-22 Jesper Skov <jskov@cygnus.co.uk> |
|
|
14 PR 17925 |
|
|
15 |
|
|
16 * include/pkgconf/libm.h: |
|
|
17 * src/misc/matherr.c: |
|
|
18 Removed the CYGFUN_LIBM_matherr config. The function is already |
|
|
19 weakly defined so shouldn't need to be configured out. |
|
|
20 |
|
|
21 1998-10-19 Mark Galassi <rosalia@cygnus.com> |
|
|
22 |
|
|
23 * include/pkgconf/libm.h: updated the doc URL |
|
|
24 |
|
|
25 Thu Oct 15 21:36:12 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
26 |
|
|
27 * src/misc/compatmode.cxx, src/misc/signgam.cxx: |
|
|
28 Only include kernel headers if we want thread-safe operation |
|
|
29 Required for PR 17229 |
|
|
30 |
|
|
31 Wed Oct 14 17:24:46 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
32 |
|
|
33 * include/pkgconf/libm.h: |
|
|
34 Make CYGPKG_LIBM_COMPATIBILITY_DEFAULT require CYGPKG_LIBC |
|
|
35 rather than all of libm, and put a check (with #error) that |
|
|
36 this is the case |
|
|
37 |
|
|
38 * src/double/ieee754-api/w_scalb.c: |
|
|
39 Only include errno.h if we aren't IEEE-only |
|
|
40 |
|
|
41 * src/double/portable-api/s_ldexp.c, src/misc/standard.c: |
|
|
42 Make the error checking in s_ldexp.c more like every other libm |
|
|
43 sources by putting the actual error handling into standard.c. |
|
|
44 The error handling is just like scalb |
|
|
45 |
|
|
46 * tests/vectors/acos.c, tests/vectors/asin.c, |
|
|
47 tests/vectors/atan.c, tests/vectors/atan2.c, |
|
|
48 tests/vectors/ceil.c, tests/vectors/cos.c, tests/vectors/cosh.c, |
|
|
49 tests/vectors/exp.c, tests/vectors/fabs.c, |
|
|
50 tests/vectors/floor.c, tests/vectors/fmod.c, |
|
|
51 tests/vectors/frexp.c, tests/vectors/ldexp.c, |
|
|
52 tests/vectors/log.c, tests/vectors/log10.c, |
|
|
53 tests/vectors/modf.c, tests/vectors/pow.c, tests/vectors/sin.c, |
|
|
54 tests/vectors/sinh.c, tests/vectors/sqrt.c, tests/vectors/tan.c, |
|
|
55 tests/vectors/tanh.c: |
|
|
56 Remove unnecessary include of <errno.h> |
|
|
57 |
|
|
58 * tests/vectors/vector_support.h: |
|
|
59 Only include errno.h if we aren't IEEE-only. |
|
|
60 If we don't have Cyg_ErrNo, just use a cyg_int32 instead, to |
|
|
61 make sure that the fields are still correct for the input |
|
|
62 test vector. |
|
|
63 In doTestVec(), before checking errno, check if we're |
|
|
64 in IEEE mode (either compiled in or set at runtime) because if |
|
|
65 so, and errno is set in the errno field of the input test |
|
|
66 vector, then we have to skip this, since we can't validate the |
|
|
67 output. |
|
|
68 In all modes, if errno is set in the input test vector, don't |
|
|
69 bother checking the actual values |
|
|
70 |
|
|
71 All of the above changes are for PR 17503 |
|
|
72 |
|
|
73 * tests/vectors/pow.c: |
|
|
74 Remove requirement of being in POSIX mode, as the change to |
|
|
75 vector_support.h should make this work better now. |
|
|
76 |
|
|
77 |
|
|
78 Sun Sep 27 20:46:09 1998 David Moore <dsm@keema.cygnus.co.uk> |
|
|
79 |
|
|
80 * include/pkgconf/libm.h: |
|
|
81 PR 17515: Corrected notcdl doc string. |
|
|
82 |
|
|
83 1998-09-26 Bart Veer <bartv@cygnus.co.uk> |
|
|
84 |
|
|
85 * include/pkgconf/libm.h: |
|
|
86 PR 17503: there are uses of errno in a couple of places in libm, |
|
|
87 and errno will only be available if the C library is present. |
|
|
88 Therefore libm requires libc. |
|
|
89 |
|
|
90 |
|
|
91 Fri Sep 25 19:00:35 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
92 |
|
|
93 * src/misc/compatmode.cxx: |
|
|
94 Make sure CYGNUM_LIBM_COMPATMODE_TRACE_LEVEL is defined before |
|
|
95 we attempt tracing, otherwise set trace level to 0 i.e. never |
|
|
96 |
|
|
97 * src/misc/signgam.cxx: |
|
|
98 Make sure CYGNUM_LIBM_SIGNGAM_TRACE_LEVEL is defined before |
|
|
99 we attempt tracing, otherwise set trace level to 0 i.e. never |
|
|
100 Fix for PR 17478 |
|
|
101 |
|
|
102 * include/pkgconf/libm.h: |
|
|
103 Define trace levels only if parent CYGPKG_LIBM_TRACE is defined |
|
|
104 for consistency with Configuration Tool |
|
|
105 |
|
|
106 Fri Sep 25 18:25:02 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
107 |
|
|
108 * include/pkgconf/libm.h: |
|
|
109 Only check valid compatibility setting if we aren't IEEE-only |
|
|
110 mode |
|
|
111 Fix for PR 17481 |
|
|
112 |
|
|
113 Fri Sep 25 18:13:24 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
114 |
|
|
115 * src/mathincl/fdlibm.h: |
|
|
116 * src/double/ieee754-core/e_scalb.c: |
|
|
117 * src/double/ieee754-api/w_scalb.c: |
|
|
118 Use CYGFUN_LIBM_SVID3_scalb for whether 2nd arg of scalb is |
|
|
119 double or int, rather than _SCALB_INT. |
|
|
120 Fix for PR 17479 |
|
|
121 |
|
|
122 Wed Sep 23 08:07:48 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
123 |
|
|
124 * tests/vectors/pow.c (test): |
|
|
125 Make pow test conditional on being in POSIX compatibility mode. |
|
|
126 This is the only mode that can set errno correctly, in |
|
|
127 relation to what the tests expect. |
|
|
128 Fix for PR 16933 |
|
|
129 |
|
|
130 1998-09-20 Mark Galassi <rosalia@cygnus.com> |
|
|
131 |
|
|
132 * include/pkgconf/libm.h: updated CDL doc strings. |
|
|
133 |
|
|
134 Thu Sep 17 17:10:47 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
135 |
|
|
136 * tests/vectors/vector_support.h (checkErrorAcceptable): |
|
|
137 Move check for signed-ness after all of the special cases |
|
|
138 Fix for PR 16933 |
|
|
139 |
|
|
140 Tue Sep 15 19:26:32 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
141 |
|
|
142 * include/pkgconf/libm.h: |
|
|
143 Updated descriptions and a few other minor things after review |
|
|
144 |
|
|
145 1998-09-11 Bart Veer <bartv@cygnus.co.uk> |
|
|
146 |
|
|
147 * include/pkgconf/libm.h: |
|
|
148 Sorting out dependencies for error package. |
|
|
149 |
|
|
150 Fri Sep 4 14:20:04 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
151 |
|
|
152 * include/pkgconf/libm.h: |
|
|
153 Fix thread-safe modes "requires" lines not to be associated |
|
|
154 with the dummy parent package, but with the options themselves. |
|
|
155 Also we don't need "requires CYGPKG_KERNEL" if we already require |
|
|
156 a particular kernel option anyway. |
|
|
157 |
|
|
158 Thu Sep 3 09:50:20 1998 Tim Goodwin <tgoodwin@cygnus.co.uk> |
|
|
159 |
|
|
160 * tests/vectors/vector_support.h |
|
|
161 Change to cyg_thread_create() interface. |
|
|
162 |
|
|
163 Wed Sep 2 14:41:54 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
164 |
|
|
165 * include/pkgconf/libm.h: |
|
|
166 Add default define for CYGPKG_LIBM_COMPATIBILITY_DEFAULT, |
|
|
167 and shorten some display texts |
|
|
168 |
|
|
169 Wed Sep 2 13:15:43 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
170 |
|
|
171 * src/double/ieee754-core/e_pow.c: |
|
|
172 Fix bug for when x is negative and y isn't an integer. A CYGNUS |
|
|
173 LOCAL change got it wrong when casting a signed integer to |
|
|
174 unsigned before right shifting. |
|
|
175 |
|
|
176 Reformat for 76 columns |
|
|
177 |
|
|
178 * src/double/ieee754-api/w_pow.c: |
|
|
179 Reformat for 76 columns |
|
|
180 |
|
|
181 |
|
|
182 Wed Sep 2 12:30:11 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
183 |
|
|
184 * include/pkgconf/libm.h: |
|
|
185 Default tracing to off |
|
|
186 Reformat for 76 columns |
|
|
187 |
|
|
188 * tests/vectors/vector_support.h: |
|
|
189 Align '{'s and "verbs" on the same line. Tidy to 76 columns |
|
|
190 |
|
|
191 Mon Aug 31 13:38:25 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
192 |
|
|
193 * include/pkgconf/libm.h: |
|
|
194 Require infra tracing support to allow tracing |
|
|
195 |
|
|
196 1998-08-28 Bart Veer <bartv@cygnus.co.uk> |
|
|
197 |
|
|
198 * include/pkgconf/libm.h: |
|
|
199 * src/misc/compatmode.cxx, src/misc/signgam.cxx: |
|
|
200 * tests/vectors/vector_support.h |
|
|
201 |
|
|
202 Updated for new kernel configuration option symbol names |
|
|
203 |
|
|
204 Fri Aug 28 09:07:07 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
205 |
|
|
206 * tests/vectors/vector_support.h: |
|
|
207 Change START_TEST macro, adjust config options and add |
|
|
208 cyg_package_start() to get tests working correctly with new entry |
|
|
209 point mechanism, including cyg_iso_c_start() if available |
|
|
210 |
|
|
211 Wed Aug 26 20:25:36 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
212 |
|
|
213 * include/pkgconf/libm.h: |
|
|
214 Remove #define CYGPKG_LIBM is that is meant to live in |
|
|
215 <pkgconf/system.h> after all |
|
|
216 |
|
|
217 |
|
|
218 Wed Aug 26 19:38:54 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
219 |
|
|
220 * include/pkgconf/libm.h: |
|
|
221 More fixes to CDL stuff to make it work better, and look better on |
|
|
222 the screen |
|
|
223 |
|
|
224 Tue Aug 25 20:23:25 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
225 |
|
|
226 * include/pkgconf/libm.h: |
|
|
227 Make some fixes after running the ConfigTool |
|
|
228 |
|
|
229 Tue Aug 25 16:59:11 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
230 |
|
|
231 * include/pkgconf/libm.h: |
|
|
232 Turns out the nesting wasn't quite right. Correct it, and replace |
|
|
233 the "not" prefix on CFG_DATA, which slipped in to the previous change. |
|
|
234 |
|
|
235 Tue Aug 25 16:53:03 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
236 |
|
|
237 * include/pkgconf/libm.h: |
|
|
238 Ensure there is a default compatibility mode and fix the |
|
|
239 ifdef nesting for the compat modes |
|
|
240 |
|
|
241 Tue Aug 25 15:24:51 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
242 |
|
|
243 * include/pkgconf/libm.h: |
|
|
244 Tidy up CDL stuff prior to checking if it all actually works! |
|
|
245 |
|
|
246 Tue Aug 25 05:17:55 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
247 |
|
|
248 * include/pkgconf/libm.h: |
|
|
249 Do a first pass of CDLification of configuration data |
|
|
250 |
|
|
251 * include/pkgconf/libm.h, src/misc/matherr.c: |
|
|
252 Rename CYGFUN_LIBC_matherr to CYGFUN_LIBM_matherr |
|
|
253 |
|
|
254 Wed Aug 19 19:35:16 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
255 |
|
|
256 * tests/vectors/acos.c, tests/vectors/cosh.c, tests/vectors/ldexp.c, |
|
|
257 tests/vectors/sinh.c, tests/vectors/asin.c, tests/vectors/exp.c, |
|
|
258 tests/vectors/log.c, tests/vectors/sqrt.c, tests/vectors/atan.c, |
|
|
259 tests/vectors/fabs.c, tests/vectors/log10.c, tests/vectors/tan.c, |
|
|
260 tests/vectors/atan2.c, tests/vectors/floor.c, tests/vectors/modf.c, |
|
|
261 tests/vectors/tanh.c, tests/vectors/ceil.c, tests/vectors/fmod.c, |
|
|
262 tests/vectors/pow.c, tests/vectors/cos.c, tests/vectors/frexp.c, |
|
|
263 tests/vectors/sin.c |
|
|
264 |
|
|
265 * tests/vectors/vector_support.h (doTestVec): |
|
|
266 Remove "register" on variable |
|
|
267 |
|
|
268 Wed Aug 19 18:59:47 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
269 |
|
|
270 * src/double/ieee754-core/e_gamma.c, |
|
|
271 src/double/ieee754-core/e_lgamma.c, |
|
|
272 src/double/ieee754-api/w_gamma.c, |
|
|
273 src/double/ieee754-api/w_lgamma.c: |
|
|
274 Remove direct reference to extern int signgam and include <math.h> |
|
|
275 instead |
|
|
276 |
|
|
277 Mon Jul 27 23:47:52 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
278 |
|
|
279 * include/math.h, include/pkgconf/libm.h, |
|
|
280 src/double/ieee754-api/w_acos.c, src/double/ieee754-api/w_acosh.c, |
|
|
281 src/double/ieee754-api/w_asin.c, src/double/ieee754-api/w_atan2.c, |
|
|
282 src/double/ieee754-api/w_atanh.c, src/double/ieee754-api/w_cosh.c, |
|
|
283 src/double/ieee754-api/w_exp.c, src/double/ieee754-api/w_fmod.c, |
|
|
284 src/double/ieee754-api/w_gamma.c, |
|
|
285 src/double/ieee754-api/w_gamma_r.c, |
|
|
286 src/double/ieee754-api/w_hypot.c, src/double/ieee754-api/w_j0.c, |
|
|
287 src/double/ieee754-api/w_j1.c, src/double/ieee754-api/w_jn.c, |
|
|
288 src/double/ieee754-api/w_lgamma.c, |
|
|
289 src/double/ieee754-api/w_lgamma_r.c, |
|
|
290 src/double/ieee754-api/w_log.c, |
|
|
291 src/double/ieee754-api/w_log10.c, src/double/ieee754-api/w_pow.c, |
|
|
292 src/double/ieee754-api/w_remainder.c, |
|
|
293 src/double/ieee754-api/w_scalb.c, src/double/ieee754-api/w_sinh.c, |
|
|
294 src/double/ieee754-api/w_sqrt.c, src/double/ieee754-core/e_acos.c, |
|
|
295 src/double/ieee754-core/e_acosh.c, |
|
|
296 src/double/ieee754-core/e_asin.c, |
|
|
297 src/double/ieee754-core/e_atan2.c, |
|
|
298 src/double/ieee754-core/e_atanh.c, |
|
|
299 src/double/ieee754-core/e_cosh.c, |
|
|
300 src/double/ieee754-core/e_exp.c, src/double/ieee754-core/e_fmod.c, |
|
|
301 src/double/ieee754-core/e_gamma.c, |
|
|
302 src/double/ieee754-core/e_gamma_r.c, |
|
|
303 src/double/ieee754-core/e_hypot.c, src/double/ieee754-core/e_j0.c, |
|
|
304 src/double/ieee754-core/e_j1.c, src/double/ieee754-core/e_jn.c, |
|
|
305 src/double/ieee754-core/e_lgamma.c, |
|
|
306 src/double/ieee754-core/e_lgamma_r.c, |
|
|
307 src/double/ieee754-core/e_log.c, src/double/ieee754-core/e_log10.c, |
|
|
308 src/double/ieee754-core/e_pow.c, |
|
|
309 src/double/ieee754-core/e_rem_pio2.c, |
|
|
310 src/double/ieee754-core/e_remainder.c, |
|
|
311 src/double/ieee754-core/e_scalb.c, |
|
|
312 src/double/ieee754-core/e_sinh.c, |
|
|
313 src/double/ieee754-core/e_sqrt.c, src/double/internal/k_cos.c, |
|
|
314 src/double/internal/k_rem_pio2.c, src/double/internal/k_sin.c, |
|
|
315 src/double/internal/k_tan.c, src/double/portable-api/s_asinh.c, |
|
|
316 src/double/portable-api/s_atan.c, src/double/portable-api/s_cbrt.c, |
|
|
317 src/double/portable-api/s_ceil.c, |
|
|
318 src/double/portable-api/s_copysign.c, |
|
|
319 src/double/portable-api/s_cos.c, src/double/portable-api/s_erf.c, |
|
|
320 src/double/portable-api/s_expm1.c, |
|
|
321 src/double/portable-api/s_fabs.c, |
|
|
322 src/double/portable-api/s_finite.c, |
|
|
323 src/double/portable-api/s_floor.c, |
|
|
324 src/double/portable-api/s_frexp.c, |
|
|
325 src/double/portable-api/s_ilogb.c, |
|
|
326 src/double/portable-api/s_isnan.c, |
|
|
327 src/double/portable-api/s_ldexp.c, |
|
|
328 src/double/portable-api/s_log1p.c, |
|
|
329 src/double/portable-api/s_logb.c, |
|
|
330 src/double/portable-api/s_modf.c, |
|
|
331 src/double/portable-api/s_nextafter.c, |
|
|
332 src/double/portable-api/s_rint.c, |
|
|
333 src/double/portable-api/s_scalbn.c, |
|
|
334 src/double/portable-api/s_significand.c, |
|
|
335 src/double/portable-api/s_sin.c, src/double/portable-api/s_tan.c, |
|
|
336 src/double/portable-api/s_tanh.c, src/mathincl/fdlibm.h, |
|
|
337 src/misc/standard.c: |
|
|
338 |
|
|
339 Untabify |
|
|
340 |
|
|
341 Mon Jul 27 22:52:24 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
342 |
|
|
343 * tests/vectors/vector_support.h (doTestVec): |
|
|
344 Remove "register" when declaring variable i |
|
|
345 |
|
|
346 * host/acosgen.c, host/cosgen.c, host/fmodgen.c, host/modfgen.c, |
|
|
347 host/tangen.c, host/asingen.c, host/coshgen.c, host/frexpgen.c, |
|
|
348 host/powgen.c, host/tanhgen.c, host/atan2gen.c, host/expgen.c, |
|
|
349 host/ldexpgen.c, host/singen.c, host/atangen.c, host/fabsgen.c, |
|
|
350 host/log10gen.c, host/sinhgen.c, host/ceilgen.c, host/floorgen.c, |
|
|
351 host/loggen.c, host/sqrtgen.c: |
|
|
352 Remove "register" when declaring variable "int x" |
|
|
353 |
|
|
354 Mon Jul 27 22:45:01 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
355 |
|
|
356 * tests/vectors/vector_support.h (checkErrorAcceptable): |
|
|
357 Add extra check for tolerance acceptance so it behaves correctly with |
|
|
358 underflow and overflow |
|
|
359 |
|
|
360 Also reverse sense of checkErrorAcceptable() so it now returns |
|
|
361 false on success and true on failure, as suggested by hmt. Change |
|
|
362 this in doTestVec() (which is where it is called) too. |
|
|
363 |
|
|
364 * tests/vectors/vector_support.h: |
|
|
365 Remove #if 0'd shift_double() function |
|
|
366 |
|
|
367 Mon Jul 27 21:55:04 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
368 |
|
|
369 * src/mathincl/fdlibm.h: |
|
|
370 Rename CYGONCE_LIBM_FDLIBM_H to CYGONCE_LIBM_MATHINCL_FDLIBM_H as per |
|
|
371 code review comments |
|
|
372 |
|
|
373 Fri Jul 24 22:20:42 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
374 |
|
|
375 * include/math.h, include/pkgconf/libm.h, |
|
|
376 src/double/ieee754-api/w_acos.c, src/double/ieee754-api/w_acosh.c, |
|
|
377 src/double/ieee754-api/w_asin.c, src/double/ieee754-api/w_atan2.c, |
|
|
378 src/double/ieee754-api/w_atanh.c, src/double/ieee754-api/w_cosh.c, |
|
|
379 src/double/ieee754-api/w_exp.c, src/double/ieee754-api/w_fmod.c, |
|
|
380 src/double/ieee754-api/w_gamma.c, src/double/ieee754-api/w_gamma_r.c, |
|
|
381 src/double/ieee754-api/w_hypot.c, src/double/ieee754-api/w_j0.c, |
|
|
382 src/double/ieee754-api/w_j1.c, src/double/ieee754-api/w_jn.c, |
|
|
383 src/double/ieee754-api/w_lgamma.c, |
|
|
384 src/double/ieee754-api/w_lgamma_r.c, src/double/ieee754-api/w_log.c, |
|
|
385 src/double/ieee754-api/w_log10.c, src/double/ieee754-api/w_pow.c, |
|
|
386 src/double/ieee754-api/w_remainder.c, |
|
|
387 src/double/ieee754-api/w_scalb.c, src/double/ieee754-api/w_sinh.c, |
|
|
388 src/double/ieee754-api/w_sqrt.c, src/mathincl/fdlibm.h, |
|
|
389 src/misc/compatmode.cxx, src/misc/matherr.c, src/misc/signgam.cxx, |
|
|
390 src/misc/standard.c: |
|
|
391 |
|
|
392 Rename libm config option names as per the libm coding standard |
|
|
393 review. Chiefly ensuring that CYGXXX_ prefixes are correct |
|
|
394 |
|
|
395 * src/misc/matherr.c, include/pkgconf/libm.h: |
|
|
396 Add new CYGFUN_LIBC_matherr config option to prevent inclusion of |
|
|
397 default matherr |
|
|
398 |
|
|
399 Mon Jul 20 18:07:31 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
400 |
|
|
401 * src/misc/infconst.c: |
|
|
402 Oops. Don't let cyg_libm_infinity be static! |
|
|
403 |
|
|
404 Thu Jul 16 20:07:26 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
405 |
|
|
406 * include/math.h, include/sys/ieeefp.h, src/misc/infconst.c: |
|
|
407 Remove union Cyg_libm_int_double from math.h, which was used to |
|
|
408 define infinity, and replace with use of |
|
|
409 Cyg_libm_ieee_double_shape_type from ieeefp.h |
|
|
410 |
|
|
411 That type (which is a union) is now reordered so that it can be |
|
|
412 initialised in terms of two int's |
|
|
413 |
|
|
414 Mon Jul 13 21:55:06 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
415 |
|
|
416 * src/double/ieee754-api/w_acos.c, src/double/ieee754-api/w_acosh.c, |
|
|
417 src/double/ieee754-api/w_asin.c, src/double/ieee754-api/w_atan2.c, |
|
|
418 src/double/ieee754-api/w_atanh.c, src/double/ieee754-api/w_cosh.c, |
|
|
419 src/double/ieee754-api/w_exp.c, src/double/ieee754-api/w_fmod.c, |
|
|
420 src/double/ieee754-api/w_gamma.c, src/double/ieee754-api/w_gamma_r.c, |
|
|
421 src/double/ieee754-api/w_hypot.c, src/double/ieee754-api/w_j0.c, |
|
|
422 src/double/ieee754-api/w_j1.c, src/double/ieee754-api/w_jn.c, |
|
|
423 src/double/ieee754-api/w_lgamma.c, |
|
|
424 src/double/ieee754-api/w_lgamma_r.c, src/double/ieee754-api/w_log.c, |
|
|
425 src/double/ieee754-api/w_log10.c, src/double/ieee754-api/w_pow.c, |
|
|
426 src/double/ieee754-api/w_remainder.c, |
|
|
427 src/double/ieee754-api/w_scalb.c, src/double/ieee754-api/w_sinh.c, |
|
|
428 src/double/ieee754-api/w_sqrt.c, src/double/ieee754-core/e_acos.c, |
|
|
429 src/double/ieee754-core/e_acosh.c, src/double/ieee754-core/e_asin.c, |
|
|
430 src/double/ieee754-core/e_atan2.c, src/double/ieee754-core/e_atanh.c, |
|
|
431 src/double/ieee754-core/e_cosh.c, src/double/ieee754-core/e_exp.c, |
|
|
432 src/double/ieee754-core/e_fmod.c, src/double/ieee754-core/e_gamma.c, |
|
|
433 src/double/ieee754-core/e_gamma_r.c, |
|
|
434 src/double/ieee754-core/e_hypot.c, src/double/ieee754-core/e_j0.c, |
|
|
435 src/double/ieee754-core/e_j1.c, src/double/ieee754-core/e_jn.c, |
|
|
436 src/double/ieee754-core/e_lgamma.c, |
|
|
437 src/double/ieee754-core/e_lgamma_r.c, |
|
|
438 src/double/ieee754-core/e_log.c, src/double/ieee754-core/e_log10.c, |
|
|
439 src/double/ieee754-core/e_pow.c, |
|
|
440 src/double/ieee754-core/e_rem_pio2.c, |
|
|
441 src/double/ieee754-core/e_remainder.c, |
|
|
442 src/double/ieee754-core/e_scalb.c, src/double/ieee754-core/e_sinh.c, |
|
|
443 src/double/ieee754-core/e_sqrt.c, src/double/internal/k_cos.c, |
|
|
444 src/double/internal/k_rem_pio2.c, src/double/internal/k_sin.c, |
|
|
445 src/double/internal/k_tan.c, src/double/portable-api/s_asinh.c, |
|
|
446 src/double/portable-api/s_atan.c, src/double/portable-api/s_cbrt.c, |
|
|
447 src/double/portable-api/s_ceil.c, |
|
|
448 src/double/portable-api/s_copysign.c, |
|
|
449 src/double/portable-api/s_cos.c, src/double/portable-api/s_erf.c, |
|
|
450 src/double/portable-api/s_expm1.c, src/double/portable-api/s_fabs.c, |
|
|
451 src/double/portable-api/s_finite.c, |
|
|
452 src/double/portable-api/s_floor.c, src/double/portable-api/s_frexp.c, |
|
|
453 src/double/portable-api/s_ilogb.c, src/double/portable-api/s_isnan.c, |
|
|
454 src/double/portable-api/s_ldexp.c, src/double/portable-api/s_log1p.c, |
|
|
455 src/double/portable-api/s_logb.c, src/double/portable-api/s_modf.c, |
|
|
456 src/double/portable-api/s_nextafter.c, |
|
|
457 src/double/portable-api/s_rint.c, src/double/portable-api/s_scalbn.c, |
|
|
458 src/double/portable-api/s_significand.c, |
|
|
459 src/double/portable-api/s_sin.c, src/double/portable-api/s_tan.c, |
|
|
460 src/double/portable-api/s_tanh.c, src/misc/standard.c: |
|
|
461 |
|
|
462 Make #ifdef __STDC__ bits compulsory and remove the associated #else |
|
|
463 clause. We know that gcc is ISO C compatible! |
|
|
464 |
|
|
465 Tue Jul 7 16:05:48 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
466 |
|
|
467 * src/misc/compatmode.cxx: |
|
|
468 Fix conditionalisation to prevent unused variable warning for tracing |
|
|
469 |
|
|
470 Thu Jun 25 04:58:21 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
471 |
|
|
472 * tests/vectors/acos.c, tests/vectors/acos.h, tests/vectors/asin.c, |
|
|
473 tests/vectors/asin.h, tests/vectors/atan.c, tests/vectors/atan.h, |
|
|
474 tests/vectors/atan2.c, tests/vectors/atan2.h, tests/vectors/ceil.c, |
|
|
475 tests/vectors/ceil.h, tests/vectors/cos.c, tests/vectors/cos.h, |
|
|
476 tests/vectors/cosh.c, tests/vectors/cosh.h, tests/vectors/exp.c, |
|
|
477 tests/vectors/exp.h, tests/vectors/fabs.c, tests/vectors/fabs.h, |
|
|
478 tests/vectors/floor.c, tests/vectors/floor.h, tests/vectors/fmod.c, |
|
|
479 tests/vectors/fmod.h, tests/vectors/frexp.c, tests/vectors/frexp.h, |
|
|
480 tests/vectors/ldexp.c, tests/vectors/ldexp.h, tests/vectors/log.c, |
|
|
481 tests/vectors/log.h, tests/vectors/log10.c, tests/vectors/log10.h, |
|
|
482 tests/vectors/modf.c, tests/vectors/modf.h, tests/vectors/pow.c, |
|
|
483 tests/vectors/pow.h, tests/vectors/sin.c, tests/vectors/sin.h, |
|
|
484 tests/vectors/sinh.c, tests/vectors/sinh.h, tests/vectors/sqrt.c, |
|
|
485 tests/vectors/sqrt.h, tests/vectors/tan.c, tests/vectors/tan.h, |
|
|
486 tests/vectors/tanh.c, tests/vectors/tanh.h, |
|
|
487 tests/vectors/vector_support.h: |
|
|
488 Add math library tests for functions specified in the ISO standard. |
|
|
489 These are based on precomputed test vectors |
|
|
490 |
|
|
491 * tests/PKGconf.mak: |
|
|
492 Create with above files being built |
|
|
493 |
|
|
494 * host/acosgen.c, host/asingen.c, host/atan2gen.c, host/atangen.c, |
|
|
495 host/ceilgen.c, host/cosgen.c, host/coshgen.c, host/expgen.c, |
|
|
496 host/fabsgen.c, host/floorgen.c, host/fmodgen.c, host/frexpgen.c, |
|
|
497 host/ldexpgen.c, host/log10gen.c, host/loggen.c, host/modfgen.c, |
|
|
498 host/powgen.c, host/singen.c, host/sinhgen.c, host/sqrtgen.c, |
|
|
499 host/tangen.c, host/tanhgen.c: |
|
|
500 Host-side (and currently linux-specific) sources to automatically |
|
|
501 generate test vector data used by the above tests. |
|
|
502 |
|
|
503 * include/pkgconf/libm.h: |
|
|
504 Ensure the kernel C API is available if we want thread safety |
|
|
505 |
|
|
506 Wed Jun 24 15:42:31 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
507 |
|
|
508 * src/misc/standard.c: |
|
|
509 Fix typo in ifdef |
|
|
510 |
|
|
511 Wed Jun 24 13:04:30 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
512 |
|
|
513 * src/misc/standard.c: |
|
|
514 Fix #defines for IEEE mode, revealed by permutation testing |
|
|
515 |
|
|
516 Mon Jun 22 14:42:50 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
517 |
|
|
518 * src/misc/infconst.c: |
|
|
519 Fix compiler warning |
|
|
520 |
|
|
521 Sun Jun 21 04:42:18 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
522 |
|
|
523 * include/sys/ieeefp.h: |
|
|
524 Add this to allow bitfield break down of IEEE floating point doubles |
|
|
525 |
|
|
526 Wed Jun 17 08:55:21 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
527 |
|
|
528 * include/pkgconf/libm.h: |
|
|
529 Make the use of stderr for messages _not_ the default |
|
|
530 Make thread safety the default |
|
|
531 |
|
|
532 * src/misc/standard.c: |
|
|
533 Change alternative for fprintf(stderr,...) _not_ being used from |
|
|
534 "CYG_EMPTY_STATEMENT" to just "0" to placate compiler. |
|
|
535 |
|
|
536 Mon Jun 15 19:59:36 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
537 |
|
|
538 * src/misc/compatmode.cxx: |
|
|
539 Fix typo in compatibility mode name |
|
|
540 |
|
|
541 Fri Jun 5 16:31:26 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
542 |
|
|
543 * src/misc/signgam.cxx, src/misc/compatmode.cxx: |
|
|
544 Fix some minor typos when thread safety is turned on |
|
|
545 |
|
|
546 * src/misc/matherr.c |
|
|
547 Correct syntax of weak attribute |
|
|
548 |
|
|
549 Fri Jun 5 07:07:03 1998 Jonathan Larmour <jlarmour@cygnus.co.uk> |
|
|
550 |
|
|
551 * Initial check-in of all math library sources. Based on fdlibm-5.2. |
|
|
552 |
|
|
553 |
|
|
554 //=========================================================================== |
|
|
555 //####COPYRIGHTBEGIN#### |
|
|
556 // |
|
|
557 // ------------------------------------------- |
|
|
558 // The contents of this file are subject to the Cygnus eCos Public License |
|
|
559 // Version 1.0 (the "License"); you may not use this file except in |
|
|
560 // compliance with the License. You may obtain a copy of the License at |
|
|
561 // http://sourceware.cygnus.com/ecos |
|
|
562 // |
|
|
563 // Software distributed under the License is distributed on an "AS IS" |
|
|
564 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the |
|
|
565 // License for the specific language governing rights and limitations under |
|
|
566 // the License. |
|
|
567 // |
|
|
568 // The Original Code is eCos - Embedded Cygnus Operating System, released |
|
|
569 // September 30, 1998. |
|
|
570 // |
|
|
571 // The Initial Developer of the Original Code is Cygnus. Portions created |
|
|
572 // by Cygnus are Copyright (C) 1998 Cygnus Solutions. All Rights Reserved. |
|
|
573 // ------------------------------------------- |
|
|
574 // |
|
|
575 //####COPYRIGHTEND#### |
|
|
576 //=========================================================================== |