oleaut32: Fix differences between the size returned in sizing the
[wine] / dlls / msvcrt / math.c
1 /*
2  * msvcrt.dll math functions
3  *
4  * Copyright 2000 Jon Griffiths
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 #include "config.h"
21
22 #include <stdio.h>
23 #define __USE_ISOC9X 1
24 #define __USE_ISOC99 1
25 #include <math.h>
26 #ifdef HAVE_IEEEFP_H
27 #include <ieeefp.h>
28 #endif
29
30 #include "msvcrt.h"
31
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
35
36 #ifndef HAVE_FINITE
37 #ifndef finite /* Could be a macro */
38 #ifdef isfinite
39 #define finite(x) isfinite(x)
40 #else
41 #define finite(x) (!isnan(x)) /* At least catch some cases */
42 #endif
43 #endif
44 #endif
45
46 #ifndef signbit
47 #define signbit(x) 0
48 #endif
49
50 typedef int (*MSVCRT_matherr_func)(struct MSVCRT__exception *);
51
52 static MSVCRT_matherr_func MSVCRT_default_matherr_func = NULL;
53
54 /*********************************************************************
55  *              MSVCRT_acos (MSVCRT.@)
56  */
57 double MSVCRT_acos( double x )
58 {
59   if (x < -1.0 || x > 1.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
60   return acos(x);
61 }
62
63 /*********************************************************************
64  *              MSVCRT_asin (MSVCRT.@)
65  */
66 double MSVCRT_asin( double x )
67 {
68   if (x < -1.0 || x > 1.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
69   return asin(x);
70 }
71
72 /*********************************************************************
73  *              MSVCRT_atan (MSVCRT.@)
74  */
75 double MSVCRT_atan( double x )
76 {
77   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
78   return atan(x);
79 }
80
81 /*********************************************************************
82  *              MSVCRT_atan2 (MSVCRT.@)
83  */
84 double MSVCRT_atan2( double x, double y )
85 {
86   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
87   return atan2(x,y);
88 }
89
90 /*********************************************************************
91  *              MSVCRT_cos (MSVCRT.@)
92  */
93 double MSVCRT_cos( double x )
94 {
95   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
96   return cos(x);
97 }
98
99 /*********************************************************************
100  *              MSVCRT_cosh (MSVCRT.@)
101  */
102 double MSVCRT_cosh( double x )
103 {
104   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
105   return cosh(x);
106 }
107
108 /*********************************************************************
109  *              MSVCRT_exp (MSVCRT.@)
110  */
111 double MSVCRT_exp( double x )
112 {
113   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
114   return exp(x);
115 }
116
117 /*********************************************************************
118  *              MSVCRT_fmod (MSVCRT.@)
119  */
120 double MSVCRT_fmod( double x, double y )
121 {
122   if (!finite(x) || !finite(y)) *MSVCRT__errno() = MSVCRT_EDOM;
123   return fmod(x,y);
124 }
125
126 /*********************************************************************
127  *              MSVCRT_log (MSVCRT.@)
128  */
129 double MSVCRT_log( double x)
130 {
131   if (x < 0.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
132   if (x == 0.0) *MSVCRT__errno() = MSVCRT_ERANGE;
133   return log(x);
134 }
135
136 /*********************************************************************
137  *              MSVCRT_log10 (MSVCRT.@)
138  */
139 double MSVCRT_log10( double x )
140 {
141   if (x < 0.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
142   if (x == 0.0) *MSVCRT__errno() = MSVCRT_ERANGE;
143   return log10(x);
144 }
145
146 /*********************************************************************
147  *              MSVCRT_pow (MSVCRT.@)
148  */
149 double MSVCRT_pow( double x, double y )
150 {
151   /* FIXME: If x < 0 and y is not integral, set EDOM */
152   double z = pow(x,y);
153   if (!finite(z)) *MSVCRT__errno() = MSVCRT_EDOM;
154   return z;
155 }
156
157 /*********************************************************************
158  *              MSVCRT_sin (MSVCRT.@)
159  */
160 double MSVCRT_sin( double x )
161 {
162   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
163   return sin(x);
164 }
165
166 /*********************************************************************
167  *              MSVCRT_sinh (MSVCRT.@)
168  */
169 double MSVCRT_sinh( double x )
170 {
171   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
172   return sinh(x);
173 }
174
175 /*********************************************************************
176  *              MSVCRT_sqrt (MSVCRT.@)
177  */
178 double MSVCRT_sqrt( double x )
179 {
180   if (x < 0.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
181   return sqrt(x);
182 }
183
184 /*********************************************************************
185  *              MSVCRT_tan (MSVCRT.@)
186  */
187 double MSVCRT_tan( double x )
188 {
189   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
190   return tan(x);
191 }
192
193 /*********************************************************************
194  *              MSVCRT_tanh (MSVCRT.@)
195  */
196 double MSVCRT_tanh( double x )
197 {
198   if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
199   return tanh(x);
200 }
201
202
203 #if defined(__GNUC__) && defined(__i386__)
204
205 #define FPU_DOUBLE(var) double var; \
206   __asm__ __volatile__( "fstpl %0;fwait" : "=m" (var) : )
207 #define FPU_DOUBLES(var1,var2) double var1,var2; \
208   __asm__ __volatile__( "fstpl %0;fwait" : "=m" (var2) : ); \
209   __asm__ __volatile__( "fstpl %0;fwait" : "=m" (var1) : )
210
211 /*********************************************************************
212  *              _CIacos (MSVCRT.@)
213  */
214 double _CIacos(void)
215 {
216   FPU_DOUBLE(x);
217   return MSVCRT_acos(x);
218 }
219
220 /*********************************************************************
221  *              _CIasin (MSVCRT.@)
222  */
223 double _CIasin(void)
224 {
225   FPU_DOUBLE(x);
226   return MSVCRT_asin(x);
227 }
228
229 /*********************************************************************
230  *              _CIatan (MSVCRT.@)
231  */
232 double _CIatan(void)
233 {
234   FPU_DOUBLE(x);
235   return MSVCRT_atan(x);
236 }
237
238 /*********************************************************************
239  *              _CIatan2 (MSVCRT.@)
240  */
241 double _CIatan2(void)
242 {
243   FPU_DOUBLES(x,y);
244   return MSVCRT_atan2(x,y);
245 }
246
247 /*********************************************************************
248  *              _CIcos (MSVCRT.@)
249  */
250 double _CIcos(void)
251 {
252   FPU_DOUBLE(x);
253   return MSVCRT_cos(x);
254 }
255
256 /*********************************************************************
257  *              _CIcosh (MSVCRT.@)
258  */
259 double _CIcosh(void)
260 {
261   FPU_DOUBLE(x);
262   return MSVCRT_cosh(x);
263 }
264
265 /*********************************************************************
266  *              _CIexp (MSVCRT.@)
267  */
268 double _CIexp(void)
269 {
270   FPU_DOUBLE(x);
271   return MSVCRT_exp(x);
272 }
273
274 /*********************************************************************
275  *              _CIfmod (MSVCRT.@)
276  */
277 double _CIfmod(void)
278 {
279   FPU_DOUBLES(x,y);
280   return MSVCRT_fmod(x,y);
281 }
282
283 /*********************************************************************
284  *              _CIlog (MSVCRT.@)
285  */
286 double _CIlog(void)
287 {
288   FPU_DOUBLE(x);
289   return MSVCRT_log(x);
290 }
291
292 /*********************************************************************
293  *              _CIlog10 (MSVCRT.@)
294  */
295 double _CIlog10(void)
296 {
297   FPU_DOUBLE(x);
298   return MSVCRT_log10(x);
299 }
300
301 /*********************************************************************
302  *              _CIpow (MSVCRT.@)
303  */
304 double _CIpow(void)
305 {
306   FPU_DOUBLES(x,y);
307   return MSVCRT_pow(x,y);
308 }
309
310 /*********************************************************************
311  *              _CIsin (MSVCRT.@)
312  */
313 double _CIsin(void)
314 {
315   FPU_DOUBLE(x);
316   return MSVCRT_sin(x);
317 }
318
319 /*********************************************************************
320  *              _CIsinh (MSVCRT.@)
321  */
322 double _CIsinh(void)
323 {
324   FPU_DOUBLE(x);
325   return MSVCRT_sinh(x);
326 }
327
328 /*********************************************************************
329  *              _CIsqrt (MSVCRT.@)
330  */
331 double _CIsqrt(void)
332 {
333   FPU_DOUBLE(x);
334   return MSVCRT_sqrt(x);
335 }
336
337 /*********************************************************************
338  *              _CItan (MSVCRT.@)
339  */
340 double _CItan(void)
341 {
342   FPU_DOUBLE(x);
343   return MSVCRT_tan(x);
344 }
345
346 /*********************************************************************
347  *              _CItanh (MSVCRT.@)
348  */
349 double _CItanh(void)
350 {
351   FPU_DOUBLE(x);
352   return MSVCRT_tanh(x);
353 }
354
355 #else /* defined(__GNUC__) && defined(__i386__) */
356
357 /* The above cannot be called on non x86 platforms, stub them for linking */
358
359 #define IX86_ONLY(func) double func(void) { return 0.0; }
360
361 IX86_ONLY(_CIacos)
362 IX86_ONLY(_CIasin)
363 IX86_ONLY(_CIatan)
364 IX86_ONLY(_CIatan2)
365 IX86_ONLY(_CIcos)
366 IX86_ONLY(_CIcosh)
367 IX86_ONLY(_CIexp)
368 IX86_ONLY(_CIfmod)
369 IX86_ONLY(_CIlog)
370 IX86_ONLY(_CIlog10)
371 IX86_ONLY(_CIpow)
372 IX86_ONLY(_CIsin)
373 IX86_ONLY(_CIsinh)
374 IX86_ONLY(_CIsqrt)
375 IX86_ONLY(_CItan)
376 IX86_ONLY(_CItanh)
377
378 #endif /* defined(__GNUC__) && defined(__i386__) */
379
380 /*********************************************************************
381  *              _fpclass (MSVCRT.@)
382  */
383 int _fpclass(double num)
384 {
385 #if defined(HAVE_FPCLASS) || defined(fpclass)
386   switch (fpclass( num ))
387   {
388 #ifdef FP_SNAN
389   case FP_SNAN:  return MSVCRT__FPCLASS_SNAN;
390 #endif
391 #ifdef FP_QNAN
392   case FP_QNAN:  return MSVCRT__FPCLASS_QNAN;
393 #endif
394 #ifdef FP_NINF
395   case FP_NINF:  return MSVCRT__FPCLASS_NINF;
396 #endif
397 #ifdef FP_PINF
398   case FP_PINF:  return MSVCRT__FPCLASS_PINF;
399 #endif
400 #ifdef FP_NDENORM
401   case FP_NDENORM: return MSVCRT__FPCLASS_ND;
402 #endif
403 #ifdef FP_PDENORM
404   case FP_PDENORM: return MSVCRT__FPCLASS_PD;
405 #endif
406 #ifdef FP_NZERO
407   case FP_NZERO: return MSVCRT__FPCLASS_NZ;
408 #endif
409 #ifdef FP_PZERO
410   case FP_PZERO: return MSVCRT__FPCLASS_PZ;
411 #endif
412 #ifdef FP_NNORM
413   case FP_NNORM: return MSVCRT__FPCLASS_NN;
414 #endif
415 #ifdef FP_PNORM
416   case FP_PNORM: return MSVCRT__FPCLASS_PN;
417 #endif
418   }
419   return MSVCRT__FPCLASS_PN;
420 #elif defined (fpclassify)
421   switch (fpclassify( num ))
422   {
423   case FP_NAN: return MSVCRT__FPCLASS_QNAN;
424   case FP_INFINITE: return signbit(num) ? MSVCRT__FPCLASS_NINF : MSVCRT__FPCLASS_PINF;
425   case FP_SUBNORMAL: return signbit(num) ?MSVCRT__FPCLASS_ND : MSVCRT__FPCLASS_PD;
426   case FP_ZERO: return signbit(num) ? MSVCRT__FPCLASS_NZ : MSVCRT__FPCLASS_PZ;
427   }
428   return signbit(num) ? MSVCRT__FPCLASS_NN : MSVCRT__FPCLASS_PN;
429 #else
430   if (!finite(num))
431     return MSVCRT__FPCLASS_QNAN;
432   return num == 0.0 ? MSVCRT__FPCLASS_PZ : (num < 0 ? MSVCRT__FPCLASS_NN : MSVCRT__FPCLASS_PN);
433 #endif
434 }
435
436 /*********************************************************************
437  *              _rotl (MSVCRT.@)
438  */
439 unsigned int _rotl(unsigned int num, int shift)
440 {
441   shift &= 31;
442   return (num << shift) | (num >> (32-shift));
443 }
444
445 /*********************************************************************
446  *              _logb (MSVCRT.@)
447  */
448 double _logb(double num)
449 {
450   if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
451   return logb(num);
452 }
453
454 /*********************************************************************
455  *              _lrotl (MSVCRT.@)
456  */
457 unsigned long _lrotl(unsigned long num, int shift)
458 {
459   shift &= 0x1f;
460   return (num << shift) | (num >> (32-shift));
461 }
462
463 /*********************************************************************
464  *              _lrotr (MSVCRT.@)
465  */
466 unsigned long _lrotr(unsigned long num, int shift)
467 {
468   shift &= 0x1f;
469   return (num >> shift) | (num << (32-shift));
470 }
471
472 /*********************************************************************
473  *              _rotr (MSVCRT.@)
474  */
475 unsigned int _rotr(unsigned int num, int shift)
476 {
477     shift &= 0x1f;
478     return (num >> shift) | (num << (32-shift));
479 }
480
481 /*********************************************************************
482  *              _scalb (MSVCRT.@)
483  */
484 double _scalb(double num, long power)
485 {
486   /* Note - Can't forward directly as libc expects y as double */
487   double dblpower = (double)power;
488   if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
489   return scalb(num, dblpower);
490 }
491
492 /*********************************************************************
493  *              _hypot (MSVCRT.@)
494  */
495 double _hypot(double x, double y)
496 {
497   /* FIXME: errno handling */
498   return hypot( x, y );
499 }
500
501 /*********************************************************************
502  *              ceil (MSVCRT.@)
503  */
504 double MSVCRT_ceil( double x )
505 {
506   return ceil(x);
507 }
508
509 /*********************************************************************
510  *              floor (MSVCRT.@)
511  */
512 double MSVCRT_floor( double x )
513 {
514   return floor(x);
515 }
516
517 /*********************************************************************
518  *              fabs (MSVCRT.@)
519  */
520 double MSVCRT_fabs( double x )
521 {
522   return fabs(x);
523 }
524
525 /*********************************************************************
526  *              frexp (MSVCRT.@)
527  */
528 double MSVCRT_frexp( double x, int *exp )
529 {
530   return frexp( x, exp );
531 }
532
533 /*********************************************************************
534  *              modf (MSVCRT.@)
535  */
536 double MSVCRT_modf( double x, double *iptr )
537 {
538   return modf( x, iptr );
539 }
540
541 /*********************************************************************
542  *              _matherr (MSVCRT.@)
543  */
544 int MSVCRT__matherr(struct MSVCRT__exception *e)
545 {
546   if (e)
547     TRACE("(%p = %d, %s, %g %g %g)\n",e, e->type, e->name, e->arg1, e->arg2,
548           e->retval);
549   else
550     TRACE("(null)\n");
551   if (MSVCRT_default_matherr_func)
552     return MSVCRT_default_matherr_func(e);
553   ERR(":Unhandled math error!\n");
554   return 0;
555 }
556
557 /*********************************************************************
558  *              __setusermatherr (MSVCRT.@)
559  */
560 void MSVCRT___setusermatherr(MSVCRT_matherr_func func)
561 {
562   MSVCRT_default_matherr_func = func;
563   TRACE(":new matherr handler %p\n", func);
564 }
565
566 /**********************************************************************
567  *              _statusfp (MSVCRT.@)
568  */
569 unsigned int _statusfp(void)
570 {
571    unsigned int retVal = 0;
572 #if defined(__GNUC__) && defined(__i386__)
573   unsigned int fpword;
574
575   __asm__ __volatile__( "fstsw %0" : "=m" (fpword) : );
576   if (fpword & 0x1)  retVal |= MSVCRT__SW_INVALID;
577   if (fpword & 0x2)  retVal |= MSVCRT__SW_DENORMAL;
578   if (fpword & 0x4)  retVal |= MSVCRT__SW_ZERODIVIDE;
579   if (fpword & 0x8)  retVal |= MSVCRT__SW_OVERFLOW;
580   if (fpword & 0x10) retVal |= MSVCRT__SW_UNDERFLOW;
581   if (fpword & 0x20) retVal |= MSVCRT__SW_INEXACT;
582 #else
583   FIXME(":Not implemented!\n");
584 #endif
585   return retVal;
586 }
587
588 /*********************************************************************
589  *              _clearfp (MSVCRT.@)
590  */
591 unsigned int _clearfp(void)
592 {
593   unsigned int retVal = _statusfp();
594 #if defined(__GNUC__) && defined(__i386__)
595   __asm__ __volatile__( "fnclex" );
596 #else
597   FIXME(":Not Implemented\n");
598 #endif
599   return retVal;
600 }
601
602 /*********************************************************************
603  *              __fpecode (MSVCRT.@)
604  */
605 int *__fpecode(void)
606 {
607     return &msvcrt_get_thread_data()->fpecode;
608 }
609
610 /*********************************************************************
611  *              ldexp (MSVCRT.@)
612  */
613 double MSVCRT_ldexp(double num, long exp)
614 {
615   double z = ldexp(num,exp);
616
617   if (!finite(z))
618     *MSVCRT__errno() = MSVCRT_ERANGE;
619   else if (z == 0 && signbit(z))
620     z = 0.0; /* Convert -0 -> +0 */
621   return z;
622 }
623
624 /*********************************************************************
625  *              _cabs (MSVCRT.@)
626  */
627 double MSVCRT__cabs(struct MSVCRT__complex num)
628 {
629   return sqrt(num.x * num.x + num.y * num.y);
630 }
631
632 /*********************************************************************
633  *              _chgsign (MSVCRT.@)
634  */
635 double _chgsign(double num)
636 {
637   /* FIXME: +-infinity,Nan not tested */
638   return -num;
639 }
640
641 /*********************************************************************
642  *              _control87 (MSVCRT.@)
643  */
644 unsigned int _control87(unsigned int newval, unsigned int mask)
645 {
646 #if defined(__GNUC__) && defined(__i386__)
647   unsigned int fpword = 0;
648   unsigned int flags = 0;
649
650   TRACE("(%08x, %08x): Called\n", newval, mask);
651
652   /* Get fp control word */
653   __asm__ __volatile__( "fstcw %0" : "=m" (fpword) : );
654
655   TRACE("Control word before : %08x\n", fpword);
656
657   /* Convert into mask constants */
658   if (fpword & 0x1)  flags |= MSVCRT__EM_INVALID;
659   if (fpword & 0x2)  flags |= MSVCRT__EM_DENORMAL;
660   if (fpword & 0x4)  flags |= MSVCRT__EM_ZERODIVIDE;
661   if (fpword & 0x8)  flags |= MSVCRT__EM_OVERFLOW;
662   if (fpword & 0x10) flags |= MSVCRT__EM_UNDERFLOW;
663   if (fpword & 0x20) flags |= MSVCRT__EM_INEXACT;
664   switch(fpword & 0xC00) {
665   case 0xC00: flags |= MSVCRT__RC_UP|MSVCRT__RC_DOWN; break;
666   case 0x800: flags |= MSVCRT__RC_UP; break;
667   case 0x400: flags |= MSVCRT__RC_DOWN; break;
668   }
669   switch(fpword & 0x300) {
670   case 0x0:   flags |= MSVCRT__PC_24; break;
671   case 0x200: flags |= MSVCRT__PC_53; break;
672   case 0x300: flags |= MSVCRT__PC_64; break;
673   }
674   if (fpword & 0x1000) flags |= MSVCRT__IC_AFFINE;
675
676   /* Mask with parameters */
677   flags = (flags & ~mask) | (newval & mask);
678
679   /* Convert (masked) value back to fp word */
680   fpword = 0;
681   if (flags & MSVCRT__EM_INVALID)    fpword |= 0x1;
682   if (flags & MSVCRT__EM_DENORMAL)   fpword |= 0x2;
683   if (flags & MSVCRT__EM_ZERODIVIDE) fpword |= 0x4;
684   if (flags & MSVCRT__EM_OVERFLOW)   fpword |= 0x8;
685   if (flags & MSVCRT__EM_UNDERFLOW)  fpword |= 0x10;
686   if (flags & MSVCRT__EM_INEXACT)    fpword |= 0x20;
687   switch(flags & (MSVCRT__RC_UP | MSVCRT__RC_DOWN)) {
688   case MSVCRT__RC_UP|MSVCRT__RC_DOWN: fpword |= 0xC00; break;
689   case MSVCRT__RC_UP:          fpword |= 0x800; break;
690   case MSVCRT__RC_DOWN:        fpword |= 0x400; break;
691   }
692   switch (flags & (MSVCRT__PC_24 | MSVCRT__PC_53)) {
693   case MSVCRT__PC_64: fpword |= 0x300; break;
694   case MSVCRT__PC_53: fpword |= 0x200; break;
695   case MSVCRT__PC_24: fpword |= 0x0; break;
696   }
697   if (flags & MSVCRT__IC_AFFINE) fpword |= 0x1000;
698
699   TRACE("Control word after  : %08x\n", fpword);
700
701   /* Put fp control word */
702   __asm__ __volatile__( "fldcw %0" : : "m" (fpword) );
703
704   return flags;
705 #else
706   FIXME(":Not Implemented!\n");
707   return 0;
708 #endif
709 }
710
711 /*********************************************************************
712  *              _controlfp (MSVCRT.@)
713  */
714 unsigned int _controlfp(unsigned int newval, unsigned int mask)
715 {
716 #ifdef __i386__
717   return _control87( newval, mask & ~MSVCRT__EM_DENORMAL );
718 #else
719   FIXME(":Not Implemented!\n");
720   return 0;
721 #endif
722 }
723
724 /*********************************************************************
725  *              _copysign (MSVCRT.@)
726  */
727 double _copysign(double num, double sign)
728 {
729   /* FIXME: Behaviour for Nan/Inf? */
730   if (sign < 0.0)
731     return num < 0.0 ? num : -num;
732   return num < 0.0 ? -num : num;
733 }
734
735 /*********************************************************************
736  *              _finite (MSVCRT.@)
737  */
738 int  _finite(double num)
739 {
740   return (finite(num)?1:0); /* See comment for _isnan() */
741 }
742
743 /*********************************************************************
744  *              _fpreset (MSVCRT.@)
745  */
746 void _fpreset(void)
747 {
748 #if defined(__GNUC__) && defined(__i386__)
749   __asm__ __volatile__( "fninit" );
750 #else
751   FIXME(":Not Implemented!\n");
752 #endif
753 }
754
755 /*********************************************************************
756  *              _isnan (MSVCRT.@)
757  */
758 INT  _isnan(double num)
759 {
760   /* Some implementations return -1 for true(glibc), msvcrt/crtdll return 1.
761    * Do the same, as the result may be used in calculations
762    */
763   return isnan(num) ? 1 : 0;
764 }
765
766 /*********************************************************************
767  *              _j0 (MSVCRT.@)
768  */
769 double _j0(double num)
770 {
771   /* FIXME: errno handling */
772   return j0(num);
773 }
774
775 /*********************************************************************
776  *              _j1 (MSVCRT.@)
777  */
778 double _j1(double num)
779 {
780   /* FIXME: errno handling */
781   return j1(num);
782 }
783
784 /*********************************************************************
785  *              jn (MSVCRT.@)
786  */
787 double _jn(int n, double num)
788 {
789   /* FIXME: errno handling */
790   return jn(n, num);
791 }
792
793 /*********************************************************************
794  *              _y0 (MSVCRT.@)
795  */
796 double _y0(double num)
797 {
798   double retval;
799   if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
800   retval  = y0(num);
801   if (_fpclass(retval) == MSVCRT__FPCLASS_NINF)
802   {
803     *MSVCRT__errno() = MSVCRT_EDOM;
804     retval = sqrt(-1);
805   }
806   return retval;
807 }
808
809 /*********************************************************************
810  *              _y1 (MSVCRT.@)
811  */
812 double _y1(double num)
813 {
814   double retval;
815   if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
816   retval  = y1(num);
817   if (_fpclass(retval) == MSVCRT__FPCLASS_NINF)
818   {
819     *MSVCRT__errno() = MSVCRT_EDOM;
820     retval = sqrt(-1);
821   }
822   return retval;
823 }
824
825 /*********************************************************************
826  *              _yn (MSVCRT.@)
827  */
828 double _yn(int order, double num)
829 {
830   double retval;
831   if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
832   retval  = yn(order,num);
833   if (_fpclass(retval) == MSVCRT__FPCLASS_NINF)
834   {
835     *MSVCRT__errno() = MSVCRT_EDOM;
836     retval = sqrt(-1);
837   }
838   return retval;
839 }
840
841 /*********************************************************************
842  *              _nextafter (MSVCRT.@)
843  */
844 double _nextafter(double num, double next)
845 {
846   double retval;
847   if (!finite(num) || !finite(next)) *MSVCRT__errno() = MSVCRT_EDOM;
848   retval = nextafter(num,next);
849   return retval;
850 }
851
852 /*********************************************************************
853  *              _ecvt (MSVCRT.@)
854  */
855 char *_ecvt( double number, int ndigits, int *decpt, int *sign )
856 {
857     thread_data_t *data = msvcrt_get_thread_data();
858     char *dec;
859
860     if (!data->efcvt_buffer)
861         data->efcvt_buffer = MSVCRT_malloc( 80 ); /* ought to be enough */
862
863     snprintf(data->efcvt_buffer, 80, "%.*e", ndigits /* FIXME wrong */, number);
864     *sign = (number < 0);
865     dec = strchr(data->efcvt_buffer, '.');
866     *decpt = (dec) ? dec - data->efcvt_buffer : -1;
867     return data->efcvt_buffer;
868 }
869
870 /***********************************************************************
871  *              _fcvt  (MSVCRT.@)
872  */
873 char *_fcvt( double number, int ndigits, int *decpt, int *sign )
874 {
875     thread_data_t *data = msvcrt_get_thread_data();
876     char *dec;
877
878     if (!data->efcvt_buffer)
879         data->efcvt_buffer = MSVCRT_malloc( 80 ); /* ought to be enough */
880
881     snprintf(data->efcvt_buffer, 80, "%.*e", ndigits, number);
882     *sign = (number < 0);
883     dec = strchr(data->efcvt_buffer, '.');
884     *decpt = (dec) ? dec - data->efcvt_buffer : -1;
885     return data->efcvt_buffer;
886 }
887
888 /***********************************************************************
889  *              _gcvt  (MSVCRT.@)
890  *
891  * FIXME: uses both E and F.
892  */
893 char *_gcvt( double number, int ndigit, char *buff )
894 {
895     sprintf(buff, "%.*E", ndigit, number);
896     return buff;
897 }
898
899 #include <stdlib.h> /* div_t, ldiv_t */
900
901 /*********************************************************************
902  *              div (MSVCRT.@)
903  * VERSION
904  *      [i386] Windows binary compatible - returns the struct in eax/edx.
905  */
906 #ifdef __i386__
907 unsigned __int64 MSVCRT_div(int num, int denom)
908 {
909   div_t dt = div(num,denom);
910   return ((unsigned __int64)dt.rem << 32) | (unsigned int)dt.quot;
911 }
912 #else
913 /*********************************************************************
914  *              div (MSVCRT.@)
915  * VERSION
916  *      [!i386] Non-x86 can't run win32 apps so we don't need binary compatibility
917  */
918 MSVCRT_div_t MSVCRT_div(int num, int denom)
919 {
920   div_t dt = div(num,denom);
921   MSVCRT_div_t     ret;
922   ret.quot = dt.quot;
923   ret.rem = dt.rem;
924
925   return ret;
926
927 }
928 #endif /* ifdef __i386__ */
929
930
931 /*********************************************************************
932  *              ldiv (MSVCRT.@)
933  * VERSION
934  *      [i386] Windows binary compatible - returns the struct in eax/edx.
935  */
936 #ifdef __i386__
937 unsigned __int64 MSVCRT_ldiv(long num, long denom)
938 {
939   ldiv_t ldt = ldiv(num,denom);
940   return ((unsigned __int64)ldt.rem << 32) | (unsigned long)ldt.quot;
941 }
942 #else
943 /*********************************************************************
944  *              ldiv (MSVCRT.@)
945  * VERSION
946  *      [!i386] Non-x86 can't run win32 apps so we don't need binary compatibility
947  */
948 MSVCRT_ldiv_t MSVCRT_ldiv(long num, long denom)
949 {
950   ldiv_t result = ldiv(num,denom);
951
952   MSVCRT_ldiv_t ret;
953   ret.quot = result.quot;
954   ret.rem = result.rem;
955
956   return ret;
957 }
958 #endif /* ifdef __i386__ */
959
960 /***********************************************************************
961  *              _adj_fdiv_m16i (MSVCRT.@)
962  *
963  * NOTE
964  *    I _think_ this function is intended to work around the Pentium
965  *    fdiv bug.
966  */
967 void __stdcall _adj_fdiv_m16i( short arg )
968 {
969   TRACE("(): stub\n");
970 }
971
972 /***********************************************************************
973  *              _adj_fdiv_m32 (MSVCRT.@)
974  *
975  * NOTE
976  *    I _think_ this function is intended to work around the Pentium
977  *    fdiv bug.
978  */
979 void __stdcall _adj_fdiv_m32( unsigned int arg )
980 {
981   TRACE("(): stub\n");
982 }
983
984 /***********************************************************************
985  *              _adj_fdiv_m32i (MSVCRT.@)
986  *
987  * NOTE
988  *    I _think_ this function is intended to work around the Pentium
989  *    fdiv bug.
990  */
991 void __stdcall _adj_fdiv_m32i( int arg )
992 {
993   TRACE("(): stub\n");
994 }
995
996 /***********************************************************************
997  *              _adj_fdiv_m64 (MSVCRT.@)
998  *
999  * NOTE
1000  *    I _think_ this function is intended to work around the Pentium
1001  *    fdiv bug.
1002  */
1003 void __stdcall _adj_fdiv_m64( unsigned __int64 arg )
1004 {
1005   TRACE("(): stub\n");
1006 }
1007
1008 /***********************************************************************
1009  *              _adj_fdiv_r (MSVCRT.@)
1010  * FIXME
1011  *    This function is likely to have the wrong number of arguments.
1012  *
1013  * NOTE
1014  *    I _think_ this function is intended to work around the Pentium
1015  *    fdiv bug.
1016  */
1017 void _adj_fdiv_r(void)
1018 {
1019   TRACE("(): stub\n");
1020 }
1021
1022 /***********************************************************************
1023  *              _adj_fdivr_m16i (MSVCRT.@)
1024  *
1025  * NOTE
1026  *    I _think_ this function is intended to work around the Pentium
1027  *    fdiv bug.
1028  */
1029 void __stdcall _adj_fdivr_m16i( short arg )
1030 {
1031   TRACE("(): stub\n");
1032 }
1033
1034 /***********************************************************************
1035  *              _adj_fdivr_m32 (MSVCRT.@)
1036  *
1037  * NOTE
1038  *    I _think_ this function is intended to work around the Pentium
1039  *    fdiv bug.
1040  */
1041 void __stdcall _adj_fdivr_m32( unsigned int arg )
1042 {
1043   TRACE("(): stub\n");
1044 }
1045
1046 /***********************************************************************
1047  *              _adj_fdivr_m32i (MSVCRT.@)
1048  *
1049  * NOTE
1050  *    I _think_ this function is intended to work around the Pentium
1051  *    fdiv bug.
1052  */
1053 void __stdcall _adj_fdivr_m32i( int arg )
1054 {
1055   TRACE("(): stub\n");
1056 }
1057
1058 /***********************************************************************
1059  *              _adj_fdivr_m64 (MSVCRT.@)
1060  *
1061  * NOTE
1062  *    I _think_ this function is intended to work around the Pentium
1063  *    fdiv bug.
1064  */
1065 void __stdcall _adj_fdivr_m64( unsigned __int64 arg )
1066 {
1067   TRACE("(): stub\n");
1068 }
1069
1070 /***********************************************************************
1071  *              _adj_fpatan (MSVCRT.@)
1072  * FIXME
1073  *    This function is likely to have the wrong number of arguments.
1074  *
1075  * NOTE
1076  *    I _think_ this function is intended to work around the Pentium
1077  *    fdiv bug.
1078  */
1079 void _adj_fpatan(void)
1080 {
1081   TRACE("(): stub\n");
1082 }
1083
1084 /***********************************************************************
1085  *              _adj_fprem (MSVCRT.@)
1086  * FIXME
1087  *    This function is likely to have the wrong number of arguments.
1088  *
1089  * NOTE
1090  *    I _think_ this function is intended to work around the Pentium
1091  *    fdiv bug.
1092  */
1093 void _adj_fprem(void)
1094 {
1095   TRACE("(): stub\n");
1096 }
1097
1098 /***********************************************************************
1099  *              _adj_fprem1 (MSVCRT.@)
1100  * FIXME
1101  *    This function is likely to have the wrong number of arguments.
1102  *
1103  * NOTE
1104  *    I _think_ this function is intended to work around the Pentium
1105  *    fdiv bug.
1106  */
1107 void _adj_fprem1(void)
1108 {
1109   TRACE("(): stub\n");
1110 }
1111
1112 /***********************************************************************
1113  *              _adj_fptan (MSVCRT.@)
1114  * FIXME
1115  *    This function is likely to have the wrong number of arguments.
1116  *
1117  * NOTE
1118  *    I _think_ this function is intended to work around the Pentium
1119  *    fdiv bug.
1120  */
1121 void _adj_fptan(void)
1122 {
1123   TRACE("(): stub\n");
1124 }
1125
1126 /***********************************************************************
1127  *              _adjust_fdiv (MSVCRT.@)
1128  * FIXME
1129  *    I _think_ this function should be a variable indicating whether
1130  *    Pentium fdiv bug safe code should be used.
1131  */
1132 void _adjust_fdiv(void)
1133 {
1134   TRACE("(): stub\n");
1135 }
1136
1137 /***********************************************************************
1138  *              _safe_fdiv (MSVCRT.@)
1139  * FIXME
1140  *    This function is likely to have the wrong number of arguments.
1141  *
1142  * NOTE
1143  *    I _think_ this function is intended to work around the Pentium
1144  *    fdiv bug.
1145  */
1146 void _safe_fdiv(void)
1147 {
1148   TRACE("(): stub\n");
1149 }
1150
1151 /***********************************************************************
1152  *              _safe_fdivr (MSVCRT.@)
1153  * FIXME
1154  *    This function is likely to have the wrong number of arguments.
1155  *
1156  * NOTE
1157  *    I _think_ this function is intended to work around the Pentium
1158  *    fdiv bug.
1159  */
1160 void _safe_fdivr(void)
1161 {
1162   TRACE("(): stub\n");
1163 }
1164
1165 /***********************************************************************
1166  *              _safe_fprem (MSVCRT.@)
1167  * FIXME
1168  *    This function is likely to have the wrong number of arguments.
1169  *
1170  * NOTE
1171  *    I _think_ this function is intended to work around the Pentium
1172  *    fdiv bug.
1173  */
1174 void _safe_fprem(void)
1175 {
1176   TRACE("(): stub\n");
1177 }
1178
1179 /***********************************************************************
1180  *              _safe_fprem1 (MSVCRT.@)
1181  *
1182  * FIXME
1183  *    This function is likely to have the wrong number of arguments.
1184  *
1185  * NOTE
1186  *    I _think_ this function is intended to work around the Pentium
1187  *    fdiv bug.
1188  */
1189 void _safe_fprem1(void)
1190 {
1191   TRACE("(): stub\n");
1192 }