server: Add builtin admins ACE to default registry DACL.
[wine.git] / dlls / msvcrt / math.c
bloba55ecb6508aca0a3b6395274d46455be46c61971
1 /*
2 * msvcrt.dll math functions
4 * Copyright 2000 Jon Griffiths
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "config.h"
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
30 #include "msvcrt.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
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
46 #ifndef signbit
47 #define signbit(x) 0
48 #endif
50 typedef int (CDECL *MSVCRT_matherr_func)(struct MSVCRT__exception *);
52 static MSVCRT_matherr_func MSVCRT_default_matherr_func = NULL;
54 static BOOL sse2_supported;
55 static BOOL sse2_enabled;
57 void msvcrt_init_math(void)
59 sse2_supported = sse2_enabled = IsProcessorFeaturePresent( PF_XMMI64_INSTRUCTIONS_AVAILABLE );
62 /*********************************************************************
63 * _set_SSE2_enable (MSVCRT.@)
65 int CDECL MSVCRT__set_SSE2_enable(int flag)
67 sse2_enabled = flag && sse2_supported;
68 return sse2_enabled;
71 #if defined(__x86_64__) || defined(__arm__)
73 /*********************************************************************
74 * _chgsignf (MSVCRT.@)
76 float CDECL MSVCRT__chgsignf( float num )
78 /* FIXME: +-infinity,Nan not tested */
79 return -num;
82 /*********************************************************************
83 * _copysignf (MSVCRT.@)
85 float CDECL MSVCRT__copysignf( float num, float sign )
87 /* FIXME: Behaviour for Nan/Inf? */
88 if (sign < 0.0)
89 return num < 0.0 ? num : -num;
90 return num < 0.0 ? -num : num;
93 /*********************************************************************
94 * _finitef (MSVCRT.@)
96 int CDECL MSVCRT__finitef( float num )
98 return finitef(num) != 0; /* See comment for _isnan() */
101 /*********************************************************************
102 * _isnanf (MSVCRT.@)
104 INT CDECL MSVCRT__isnanf( float num )
106 /* Some implementations return -1 for true(glibc), msvcrt/crtdll return 1.
107 * Do the same, as the result may be used in calculations
109 return isnanf(num) != 0;
112 /*********************************************************************
113 * _logbf (MSVCRT.@)
115 float CDECL MSVCRT__logbf( float num )
117 if (!finitef(num)) *MSVCRT__errno() = MSVCRT_EDOM;
118 return logbf(num);
121 /*********************************************************************
122 * _nextafterf (MSVCRT.@)
124 float CDECL MSVCRT__nextafterf( float num, float next )
126 if (!finitef(num) || !finitef(next)) *MSVCRT__errno() = MSVCRT_EDOM;
127 return nextafterf( num, next );
130 /*********************************************************************
131 * MSVCRT_acosf (MSVCRT.@)
133 float CDECL MSVCRT_acosf( float x )
135 if (x < -1.0 || x > 1.0 || !finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
136 /* glibc implements acos() as the FPU equivalent of atan2(sqrt(1 - x ^ 2), x).
137 * asin() uses a similar construction. This is bad because as x gets nearer to
138 * 1 the error in the expression "1 - x^2" can get relatively large due to
139 * cancellation. The sqrt() makes things worse. A safer way to calculate
140 * acos() is to use atan2(sqrt((1 - x) * (1 + x)), x). */
141 return atan2f(sqrtf((1 - x) * (1 + x)), x);
144 /*********************************************************************
145 * MSVCRT_asinf (MSVCRT.@)
147 float CDECL MSVCRT_asinf( float x )
149 if (x < -1.0 || x > 1.0 || !finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
150 return atan2f(x, sqrtf((1 - x) * (1 + x)));
153 /*********************************************************************
154 * MSVCRT_atanf (MSVCRT.@)
156 float CDECL MSVCRT_atanf( float x )
158 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
159 return atanf(x);
162 /*********************************************************************
163 * MSVCRT_atan2f (MSVCRT.@)
165 float CDECL MSVCRT_atan2f( float x, float y )
167 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
168 return atan2f(x,y);
171 /*********************************************************************
172 * MSVCRT_cosf (MSVCRT.@)
174 float CDECL MSVCRT_cosf( float x )
176 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
177 return cosf(x);
180 /*********************************************************************
181 * MSVCRT_coshf (MSVCRT.@)
183 float CDECL MSVCRT_coshf( float x )
185 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
186 return coshf(x);
189 /*********************************************************************
190 * MSVCRT_expf (MSVCRT.@)
192 float CDECL MSVCRT_expf( float x )
194 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
195 return expf(x);
198 /*********************************************************************
199 * MSVCRT_fmodf (MSVCRT.@)
201 float CDECL MSVCRT_fmodf( float x, float y )
203 if (!finitef(x) || !finitef(y)) *MSVCRT__errno() = MSVCRT_EDOM;
204 return fmodf(x,y);
207 /*********************************************************************
208 * MSVCRT_logf (MSVCRT.@)
210 float CDECL MSVCRT_logf( float x)
212 if (x < 0.0 || !finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
213 if (x == 0.0) *MSVCRT__errno() = MSVCRT_ERANGE;
214 return logf(x);
217 /*********************************************************************
218 * MSVCRT_log10f (MSVCRT.@)
220 float CDECL MSVCRT_log10f( float x )
222 if (x < 0.0 || !finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
223 if (x == 0.0) *MSVCRT__errno() = MSVCRT_ERANGE;
224 return log10f(x);
227 /*********************************************************************
228 * MSVCRT_powf (MSVCRT.@)
230 float CDECL MSVCRT_powf( float x, float y )
232 /* FIXME: If x < 0 and y is not integral, set EDOM */
233 float z = powf(x,y);
234 if (!finitef(z)) *MSVCRT__errno() = MSVCRT_EDOM;
235 return z;
238 /*********************************************************************
239 * MSVCRT_sinf (MSVCRT.@)
241 float CDECL MSVCRT_sinf( float x )
243 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
244 return sinf(x);
247 /*********************************************************************
248 * MSVCRT_sinhf (MSVCRT.@)
250 float CDECL MSVCRT_sinhf( float x )
252 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
253 return sinhf(x);
256 /*********************************************************************
257 * MSVCRT_sqrtf (MSVCRT.@)
259 float CDECL MSVCRT_sqrtf( float x )
261 if (x < 0.0 || !finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
262 return sqrtf(x);
265 /*********************************************************************
266 * MSVCRT_tanf (MSVCRT.@)
268 float CDECL MSVCRT_tanf( float x )
270 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
271 return tanf(x);
274 /*********************************************************************
275 * MSVCRT_tanhf (MSVCRT.@)
277 float CDECL MSVCRT_tanhf( float x )
279 if (!finitef(x)) *MSVCRT__errno() = MSVCRT_EDOM;
280 return tanhf(x);
283 /*********************************************************************
284 * ceilf (MSVCRT.@)
286 float CDECL MSVCRT_ceilf( float x )
288 return ceilf(x);
291 /*********************************************************************
292 * floorf (MSVCRT.@)
294 float CDECL MSVCRT_floorf( float x )
296 return floorf(x);
299 /*********************************************************************
300 * frexpf (MSVCRT.@)
302 float CDECL MSVCRT_frexpf( float x, int *exp )
304 return frexpf( x, exp );
307 /*********************************************************************
308 * _scalbf (MSVCRT.@)
310 float CDECL MSVCRT__scalbf(float num, MSVCRT_long power)
312 if (!finitef(num)) *MSVCRT__errno() = MSVCRT_EDOM;
313 return ldexpf(num, power);
316 /*********************************************************************
317 * modff (MSVCRT.@)
319 double CDECL MSVCRT_modff( float x, float *iptr )
321 return modff( x, iptr );
324 #endif
326 /*********************************************************************
327 * MSVCRT_acos (MSVCRT.@)
329 double CDECL MSVCRT_acos( double x )
331 if (x < -1.0 || x > 1.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
332 /* glibc implements acos() as the FPU equivalent of atan2(sqrt(1 - x ^ 2), x).
333 * asin() uses a similar construction. This is bad because as x gets nearer to
334 * 1 the error in the expression "1 - x^2" can get relatively large due to
335 * cancellation. The sqrt() makes things worse. A safer way to calculate
336 * acos() is to use atan2(sqrt((1 - x) * (1 + x)), x). */
337 return atan2(sqrt((1 - x) * (1 + x)), x);
340 /*********************************************************************
341 * MSVCRT_asin (MSVCRT.@)
343 double CDECL MSVCRT_asin( double x )
345 if (x < -1.0 || x > 1.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
346 return atan2(x, sqrt((1 - x) * (1 + x)));
349 /*********************************************************************
350 * MSVCRT_atan (MSVCRT.@)
352 double CDECL MSVCRT_atan( double x )
354 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
355 return atan(x);
358 /*********************************************************************
359 * MSVCRT_atan2 (MSVCRT.@)
361 double CDECL MSVCRT_atan2( double x, double y )
363 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
364 return atan2(x,y);
367 /*********************************************************************
368 * MSVCRT_cos (MSVCRT.@)
370 double CDECL MSVCRT_cos( double x )
372 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
373 return cos(x);
376 /*********************************************************************
377 * MSVCRT_cosh (MSVCRT.@)
379 double CDECL MSVCRT_cosh( double x )
381 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
382 return cosh(x);
385 /*********************************************************************
386 * MSVCRT_exp (MSVCRT.@)
388 double CDECL MSVCRT_exp( double x )
390 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
391 return exp(x);
394 /*********************************************************************
395 * MSVCRT_fmod (MSVCRT.@)
397 double CDECL MSVCRT_fmod( double x, double y )
399 if (!finite(x) || !finite(y)) *MSVCRT__errno() = MSVCRT_EDOM;
400 return fmod(x,y);
403 /*********************************************************************
404 * MSVCRT_log (MSVCRT.@)
406 double CDECL MSVCRT_log( double x)
408 if (x < 0.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
409 if (x == 0.0) *MSVCRT__errno() = MSVCRT_ERANGE;
410 return log(x);
413 /*********************************************************************
414 * MSVCRT_log10 (MSVCRT.@)
416 double CDECL MSVCRT_log10( double x )
418 if (x < 0.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
419 if (x == 0.0) *MSVCRT__errno() = MSVCRT_ERANGE;
420 return log10(x);
423 /*********************************************************************
424 * MSVCRT_pow (MSVCRT.@)
426 double CDECL MSVCRT_pow( double x, double y )
428 /* FIXME: If x < 0 and y is not integral, set EDOM */
429 double z = pow(x,y);
430 if (!finite(z)) *MSVCRT__errno() = MSVCRT_EDOM;
431 return z;
434 /*********************************************************************
435 * MSVCRT_sin (MSVCRT.@)
437 double CDECL MSVCRT_sin( double x )
439 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
440 return sin(x);
443 /*********************************************************************
444 * MSVCRT_sinh (MSVCRT.@)
446 double CDECL MSVCRT_sinh( double x )
448 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
449 return sinh(x);
452 /*********************************************************************
453 * MSVCRT_sqrt (MSVCRT.@)
455 double CDECL MSVCRT_sqrt( double x )
457 if (x < 0.0 || !finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
458 return sqrt(x);
461 /*********************************************************************
462 * MSVCRT_tan (MSVCRT.@)
464 double CDECL MSVCRT_tan( double x )
466 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
467 return tan(x);
470 /*********************************************************************
471 * MSVCRT_tanh (MSVCRT.@)
473 double CDECL MSVCRT_tanh( double x )
475 if (!finite(x)) *MSVCRT__errno() = MSVCRT_EDOM;
476 return tanh(x);
480 #if defined(__GNUC__) && defined(__i386__)
482 #define FPU_DOUBLE(var) double var; \
483 __asm__ __volatile__( "fstpl %0;fwait" : "=m" (var) : )
484 #define FPU_DOUBLES(var1,var2) double var1,var2; \
485 __asm__ __volatile__( "fstpl %0;fwait" : "=m" (var2) : ); \
486 __asm__ __volatile__( "fstpl %0;fwait" : "=m" (var1) : )
488 /*********************************************************************
489 * _CIacos (MSVCRT.@)
491 double CDECL _CIacos(void)
493 FPU_DOUBLE(x);
494 return MSVCRT_acos(x);
497 /*********************************************************************
498 * _CIasin (MSVCRT.@)
500 double CDECL _CIasin(void)
502 FPU_DOUBLE(x);
503 return MSVCRT_asin(x);
506 /*********************************************************************
507 * _CIatan (MSVCRT.@)
509 double CDECL _CIatan(void)
511 FPU_DOUBLE(x);
512 return MSVCRT_atan(x);
515 /*********************************************************************
516 * _CIatan2 (MSVCRT.@)
518 double CDECL _CIatan2(void)
520 FPU_DOUBLES(x,y);
521 return MSVCRT_atan2(x,y);
524 /*********************************************************************
525 * _CIcos (MSVCRT.@)
527 double CDECL _CIcos(void)
529 FPU_DOUBLE(x);
530 return MSVCRT_cos(x);
533 /*********************************************************************
534 * _CIcosh (MSVCRT.@)
536 double CDECL _CIcosh(void)
538 FPU_DOUBLE(x);
539 return MSVCRT_cosh(x);
542 /*********************************************************************
543 * _CIexp (MSVCRT.@)
545 double CDECL _CIexp(void)
547 FPU_DOUBLE(x);
548 return MSVCRT_exp(x);
551 /*********************************************************************
552 * _CIfmod (MSVCRT.@)
554 double CDECL _CIfmod(void)
556 FPU_DOUBLES(x,y);
557 return MSVCRT_fmod(x,y);
560 /*********************************************************************
561 * _CIlog (MSVCRT.@)
563 double CDECL _CIlog(void)
565 FPU_DOUBLE(x);
566 return MSVCRT_log(x);
569 /*********************************************************************
570 * _CIlog10 (MSVCRT.@)
572 double CDECL _CIlog10(void)
574 FPU_DOUBLE(x);
575 return MSVCRT_log10(x);
578 /*********************************************************************
579 * _CIpow (MSVCRT.@)
581 double CDECL _CIpow(void)
583 FPU_DOUBLES(x,y);
584 return MSVCRT_pow(x,y);
587 /*********************************************************************
588 * _CIsin (MSVCRT.@)
590 double CDECL _CIsin(void)
592 FPU_DOUBLE(x);
593 return MSVCRT_sin(x);
596 /*********************************************************************
597 * _CIsinh (MSVCRT.@)
599 double CDECL _CIsinh(void)
601 FPU_DOUBLE(x);
602 return MSVCRT_sinh(x);
605 /*********************************************************************
606 * _CIsqrt (MSVCRT.@)
608 double CDECL _CIsqrt(void)
610 FPU_DOUBLE(x);
611 return MSVCRT_sqrt(x);
614 /*********************************************************************
615 * _CItan (MSVCRT.@)
617 double CDECL _CItan(void)
619 FPU_DOUBLE(x);
620 return MSVCRT_tan(x);
623 /*********************************************************************
624 * _CItanh (MSVCRT.@)
626 double CDECL _CItanh(void)
628 FPU_DOUBLE(x);
629 return MSVCRT_tanh(x);
632 /*********************************************************************
633 * _ftol (MSVCRT.@)
635 LONGLONG CDECL MSVCRT__ftol(void)
637 FPU_DOUBLE(x);
638 return (LONGLONG)x;
641 #endif /* defined(__GNUC__) && defined(__i386__) */
643 /*********************************************************************
644 * _fpclass (MSVCRT.@)
646 int CDECL MSVCRT__fpclass(double num)
648 #if defined(HAVE_FPCLASS) || defined(fpclass)
649 switch (fpclass( num ))
651 #ifdef FP_SNAN
652 case FP_SNAN: return MSVCRT__FPCLASS_SNAN;
653 #endif
654 #ifdef FP_QNAN
655 case FP_QNAN: return MSVCRT__FPCLASS_QNAN;
656 #endif
657 #ifdef FP_NINF
658 case FP_NINF: return MSVCRT__FPCLASS_NINF;
659 #endif
660 #ifdef FP_PINF
661 case FP_PINF: return MSVCRT__FPCLASS_PINF;
662 #endif
663 #ifdef FP_NDENORM
664 case FP_NDENORM: return MSVCRT__FPCLASS_ND;
665 #endif
666 #ifdef FP_PDENORM
667 case FP_PDENORM: return MSVCRT__FPCLASS_PD;
668 #endif
669 #ifdef FP_NZERO
670 case FP_NZERO: return MSVCRT__FPCLASS_NZ;
671 #endif
672 #ifdef FP_PZERO
673 case FP_PZERO: return MSVCRT__FPCLASS_PZ;
674 #endif
675 #ifdef FP_NNORM
676 case FP_NNORM: return MSVCRT__FPCLASS_NN;
677 #endif
678 #ifdef FP_PNORM
679 case FP_PNORM: return MSVCRT__FPCLASS_PN;
680 #endif
681 default: return MSVCRT__FPCLASS_PN;
683 #elif defined (fpclassify)
684 switch (fpclassify( num ))
686 case FP_NAN: return MSVCRT__FPCLASS_QNAN;
687 case FP_INFINITE: return signbit(num) ? MSVCRT__FPCLASS_NINF : MSVCRT__FPCLASS_PINF;
688 case FP_SUBNORMAL: return signbit(num) ?MSVCRT__FPCLASS_ND : MSVCRT__FPCLASS_PD;
689 case FP_ZERO: return signbit(num) ? MSVCRT__FPCLASS_NZ : MSVCRT__FPCLASS_PZ;
691 return signbit(num) ? MSVCRT__FPCLASS_NN : MSVCRT__FPCLASS_PN;
692 #else
693 if (!finite(num))
694 return MSVCRT__FPCLASS_QNAN;
695 return num == 0.0 ? MSVCRT__FPCLASS_PZ : (num < 0 ? MSVCRT__FPCLASS_NN : MSVCRT__FPCLASS_PN);
696 #endif
699 /*********************************************************************
700 * _rotl (MSVCRT.@)
702 unsigned int CDECL _rotl(unsigned int num, int shift)
704 shift &= 31;
705 return (num << shift) | (num >> (32-shift));
708 /*********************************************************************
709 * _lrotl (MSVCRT.@)
711 MSVCRT_ulong CDECL MSVCRT__lrotl(MSVCRT_ulong num, int shift)
713 shift &= 0x1f;
714 return (num << shift) | (num >> (32-shift));
717 /*********************************************************************
718 * _lrotr (MSVCRT.@)
720 MSVCRT_ulong CDECL MSVCRT__lrotr(MSVCRT_ulong num, int shift)
722 shift &= 0x1f;
723 return (num >> shift) | (num << (32-shift));
726 /*********************************************************************
727 * _rotr (MSVCRT.@)
729 unsigned int CDECL _rotr(unsigned int num, int shift)
731 shift &= 0x1f;
732 return (num >> shift) | (num << (32-shift));
735 /*********************************************************************
736 * _rotl64 (MSVCRT.@)
738 unsigned __int64 CDECL _rotl64(unsigned __int64 num, int shift)
740 shift &= 63;
741 return (num << shift) | (num >> (64-shift));
744 /*********************************************************************
745 * _rotr64 (MSVCRT.@)
747 unsigned __int64 CDECL _rotr64(unsigned __int64 num, int shift)
749 shift &= 63;
750 return (num >> shift) | (num << (64-shift));
753 /*********************************************************************
754 * abs (MSVCRT.@)
756 int CDECL MSVCRT_abs( int n )
758 return n >= 0 ? n : -n;
761 /*********************************************************************
762 * labs (MSVCRT.@)
764 MSVCRT_long CDECL MSVCRT_labs( MSVCRT_long n )
766 return n >= 0 ? n : -n;
769 /*********************************************************************
770 * _abs64 (MSVCRT.@)
772 __int64 CDECL _abs64( __int64 n )
774 return n >= 0 ? n : -n;
777 /*********************************************************************
778 * _logb (MSVCRT.@)
780 double CDECL MSVCRT__logb(double num)
782 if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
783 return logb(num);
786 /*********************************************************************
787 * _scalb (MSVCRT.@)
789 double CDECL MSVCRT__scalb(double num, MSVCRT_long power)
791 if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
792 return ldexp(num, power);
795 /*********************************************************************
796 * _hypot (MSVCRT.@)
798 double CDECL _hypot(double x, double y)
800 /* FIXME: errno handling */
801 return hypot( x, y );
804 /*********************************************************************
805 * _hypotf (MSVCRT.@)
807 float CDECL MSVCRT__hypotf(float x, float y)
809 /* FIXME: errno handling */
810 return hypotf( x, y );
813 /*********************************************************************
814 * ceil (MSVCRT.@)
816 double CDECL MSVCRT_ceil( double x )
818 return ceil(x);
821 /*********************************************************************
822 * floor (MSVCRT.@)
824 double CDECL MSVCRT_floor( double x )
826 return floor(x);
829 /*********************************************************************
830 * fabs (MSVCRT.@)
832 double CDECL MSVCRT_fabs( double x )
834 return fabs(x);
837 /*********************************************************************
838 * frexp (MSVCRT.@)
840 double CDECL MSVCRT_frexp( double x, int *exp )
842 return frexp( x, exp );
845 /*********************************************************************
846 * modf (MSVCRT.@)
848 double CDECL MSVCRT_modf( double x, double *iptr )
850 return modf( x, iptr );
853 /*********************************************************************
854 * _matherr (MSVCRT.@)
856 int CDECL MSVCRT__matherr(struct MSVCRT__exception *e)
858 if (e)
859 TRACE("(%p = %d, %s, %g %g %g)\n",e, e->type, e->name, e->arg1, e->arg2,
860 e->retval);
861 else
862 TRACE("(null)\n");
863 if (MSVCRT_default_matherr_func)
864 return MSVCRT_default_matherr_func(e);
865 ERR(":Unhandled math error!\n");
866 return 0;
869 /*********************************************************************
870 * __setusermatherr (MSVCRT.@)
872 void CDECL MSVCRT___setusermatherr(MSVCRT_matherr_func func)
874 MSVCRT_default_matherr_func = func;
875 TRACE(":new matherr handler %p\n", func);
878 /**********************************************************************
879 * _statusfp2 (MSVCRT.@)
881 * Not exported by native msvcrt, added in msvcr80.
883 #if defined(__i386__) || defined(__x86_64__)
884 void CDECL _statusfp2( unsigned int *x86_sw, unsigned int *sse2_sw )
886 #ifdef __GNUC__
887 unsigned int flags;
888 unsigned long fpword;
890 if (x86_sw)
892 __asm__ __volatile__( "fstsw %0" : "=m" (fpword) );
893 flags = 0;
894 if (fpword & 0x1) flags |= MSVCRT__SW_INVALID;
895 if (fpword & 0x2) flags |= MSVCRT__SW_DENORMAL;
896 if (fpword & 0x4) flags |= MSVCRT__SW_ZERODIVIDE;
897 if (fpword & 0x8) flags |= MSVCRT__SW_OVERFLOW;
898 if (fpword & 0x10) flags |= MSVCRT__SW_UNDERFLOW;
899 if (fpword & 0x20) flags |= MSVCRT__SW_INEXACT;
900 *x86_sw = flags;
903 if (!sse2_sw) return;
905 if (sse2_supported)
907 __asm__ __volatile__( "stmxcsr %0" : "=m" (fpword) );
908 flags = 0;
909 if (fpword & 0x1) flags |= MSVCRT__SW_INVALID;
910 if (fpword & 0x2) flags |= MSVCRT__SW_DENORMAL;
911 if (fpword & 0x4) flags |= MSVCRT__SW_ZERODIVIDE;
912 if (fpword & 0x8) flags |= MSVCRT__SW_OVERFLOW;
913 if (fpword & 0x10) flags |= MSVCRT__SW_UNDERFLOW;
914 if (fpword & 0x20) flags |= MSVCRT__SW_INEXACT;
915 *sse2_sw = flags;
917 else *sse2_sw = 0;
918 #else
919 FIXME( "not implemented\n" );
920 #endif
922 #endif
924 /**********************************************************************
925 * _statusfp (MSVCRT.@)
927 unsigned int CDECL _statusfp(void)
929 #if defined(__i386__) || defined(__x86_64__)
930 unsigned int x86_sw, sse2_sw;
932 _statusfp2( &x86_sw, &sse2_sw );
933 /* FIXME: there's no definition for ambiguous status, just return all status bits for now */
934 return x86_sw | sse2_sw;
935 #else
936 FIXME( "not implemented\n" );
937 return 0;
938 #endif
941 /*********************************************************************
942 * _clearfp (MSVCRT.@)
944 unsigned int CDECL _clearfp(void)
946 unsigned int flags = 0;
947 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
948 unsigned long fpword;
950 __asm__ __volatile__( "fnstsw %0; fnclex" : "=m" (fpword) );
951 if (fpword & 0x1) flags |= MSVCRT__SW_INVALID;
952 if (fpword & 0x2) flags |= MSVCRT__SW_DENORMAL;
953 if (fpword & 0x4) flags |= MSVCRT__SW_ZERODIVIDE;
954 if (fpword & 0x8) flags |= MSVCRT__SW_OVERFLOW;
955 if (fpword & 0x10) flags |= MSVCRT__SW_UNDERFLOW;
956 if (fpword & 0x20) flags |= MSVCRT__SW_INEXACT;
958 if (sse2_supported)
960 __asm__ __volatile__( "stmxcsr %0" : "=m" (fpword) );
961 if (fpword & 0x1) flags |= MSVCRT__SW_INVALID;
962 if (fpword & 0x2) flags |= MSVCRT__SW_DENORMAL;
963 if (fpword & 0x4) flags |= MSVCRT__SW_ZERODIVIDE;
964 if (fpword & 0x8) flags |= MSVCRT__SW_OVERFLOW;
965 if (fpword & 0x10) flags |= MSVCRT__SW_UNDERFLOW;
966 if (fpword & 0x20) flags |= MSVCRT__SW_INEXACT;
967 fpword &= ~0x3f;
968 __asm__ __volatile__( "ldmxcsr %0" : : "m" (fpword) );
970 #else
971 FIXME( "not implemented\n" );
972 #endif
973 return flags;
976 /*********************************************************************
977 * __fpecode (MSVCRT.@)
979 int * CDECL __fpecode(void)
981 return &msvcrt_get_thread_data()->fpecode;
984 /*********************************************************************
985 * ldexp (MSVCRT.@)
987 double CDECL MSVCRT_ldexp(double num, MSVCRT_long exp)
989 double z = ldexp(num,exp);
991 if (!finite(z))
992 *MSVCRT__errno() = MSVCRT_ERANGE;
993 else if (z == 0 && signbit(z))
994 z = 0.0; /* Convert -0 -> +0 */
995 return z;
998 /*********************************************************************
999 * _cabs (MSVCRT.@)
1001 double CDECL MSVCRT__cabs(struct MSVCRT__complex num)
1003 return sqrt(num.x * num.x + num.y * num.y);
1006 /*********************************************************************
1007 * _chgsign (MSVCRT.@)
1009 double CDECL MSVCRT__chgsign(double num)
1011 /* FIXME: +-infinity,Nan not tested */
1012 return -num;
1015 /*********************************************************************
1016 * __control87_2 (MSVCRT.@)
1018 * Not exported by native msvcrt, added in msvcr80.
1020 #if defined(__i386__) || defined(__x86_64__)
1021 int CDECL __control87_2( unsigned int newval, unsigned int mask,
1022 unsigned int *x86_cw, unsigned int *sse2_cw )
1024 #ifdef __GNUC__
1025 unsigned long fpword;
1026 unsigned int flags;
1028 if (x86_cw)
1030 __asm__ __volatile__( "fstcw %0" : "=m" (fpword) );
1032 /* Convert into mask constants */
1033 flags = 0;
1034 if (fpword & 0x1) flags |= MSVCRT__EM_INVALID;
1035 if (fpword & 0x2) flags |= MSVCRT__EM_DENORMAL;
1036 if (fpword & 0x4) flags |= MSVCRT__EM_ZERODIVIDE;
1037 if (fpword & 0x8) flags |= MSVCRT__EM_OVERFLOW;
1038 if (fpword & 0x10) flags |= MSVCRT__EM_UNDERFLOW;
1039 if (fpword & 0x20) flags |= MSVCRT__EM_INEXACT;
1040 switch (fpword & 0xc00)
1042 case 0xc00: flags |= MSVCRT__RC_UP|MSVCRT__RC_DOWN; break;
1043 case 0x800: flags |= MSVCRT__RC_UP; break;
1044 case 0x400: flags |= MSVCRT__RC_DOWN; break;
1046 switch (fpword & 0x300)
1048 case 0x0: flags |= MSVCRT__PC_24; break;
1049 case 0x200: flags |= MSVCRT__PC_53; break;
1050 case 0x300: flags |= MSVCRT__PC_64; break;
1052 if (fpword & 0x1000) flags |= MSVCRT__IC_AFFINE;
1054 TRACE( "x86 flags=%08x newval=%08x mask=%08x\n", flags, newval, mask );
1055 if (mask)
1057 flags = (flags & ~mask) | (newval & mask);
1059 /* Convert (masked) value back to fp word */
1060 fpword = 0;
1061 if (flags & MSVCRT__EM_INVALID) fpword |= 0x1;
1062 if (flags & MSVCRT__EM_DENORMAL) fpword |= 0x2;
1063 if (flags & MSVCRT__EM_ZERODIVIDE) fpword |= 0x4;
1064 if (flags & MSVCRT__EM_OVERFLOW) fpword |= 0x8;
1065 if (flags & MSVCRT__EM_UNDERFLOW) fpword |= 0x10;
1066 if (flags & MSVCRT__EM_INEXACT) fpword |= 0x20;
1067 switch (flags & MSVCRT__MCW_RC)
1069 case MSVCRT__RC_UP|MSVCRT__RC_DOWN: fpword |= 0xc00; break;
1070 case MSVCRT__RC_UP: fpword |= 0x800; break;
1071 case MSVCRT__RC_DOWN: fpword |= 0x400; break;
1073 switch (flags & MSVCRT__MCW_PC)
1075 case MSVCRT__PC_64: fpword |= 0x300; break;
1076 case MSVCRT__PC_53: fpword |= 0x200; break;
1077 case MSVCRT__PC_24: fpword |= 0x0; break;
1079 if (flags & MSVCRT__IC_AFFINE) fpword |= 0x1000;
1081 __asm__ __volatile__( "fldcw %0" : : "m" (fpword) );
1083 *x86_cw = flags;
1086 if (!sse2_cw) return 1;
1088 if (sse2_supported)
1090 __asm__ __volatile__( "stmxcsr %0" : "=m" (fpword) );
1092 /* Convert into mask constants */
1093 flags = 0;
1094 if (fpword & 0x80) flags |= MSVCRT__EM_INVALID;
1095 if (fpword & 0x100) flags |= MSVCRT__EM_DENORMAL;
1096 if (fpword & 0x200) flags |= MSVCRT__EM_ZERODIVIDE;
1097 if (fpword & 0x400) flags |= MSVCRT__EM_OVERFLOW;
1098 if (fpword & 0x800) flags |= MSVCRT__EM_UNDERFLOW;
1099 if (fpword & 0x1000) flags |= MSVCRT__EM_INEXACT;
1100 switch (fpword & 0x6000)
1102 case 0x6000: flags |= MSVCRT__RC_UP|MSVCRT__RC_DOWN; break;
1103 case 0x4000: flags |= MSVCRT__RC_UP; break;
1104 case 0x2000: flags |= MSVCRT__RC_DOWN; break;
1106 switch (fpword & 0x8040)
1108 case 0x0040: flags |= MSVCRT__DN_FLUSH_OPERANDS_SAVE_RESULTS; break;
1109 case 0x8000: flags |= MSVCRT__DN_SAVE_OPERANDS_FLUSH_RESULTS; break;
1110 case 0x8040: flags |= MSVCRT__DN_FLUSH; break;
1113 TRACE( "sse2 flags=%08x newval=%08x mask=%08x\n", flags, newval, mask );
1114 if (mask)
1116 flags = (flags & ~mask) | (newval & mask);
1118 /* Convert (masked) value back to fp word */
1119 fpword = 0;
1120 if (flags & MSVCRT__EM_INVALID) fpword |= 0x80;
1121 if (flags & MSVCRT__EM_DENORMAL) fpword |= 0x100;
1122 if (flags & MSVCRT__EM_ZERODIVIDE) fpword |= 0x200;
1123 if (flags & MSVCRT__EM_OVERFLOW) fpword |= 0x400;
1124 if (flags & MSVCRT__EM_UNDERFLOW) fpword |= 0x800;
1125 if (flags & MSVCRT__EM_INEXACT) fpword |= 0x1000;
1126 switch (flags & MSVCRT__MCW_RC)
1128 case MSVCRT__RC_UP|MSVCRT__RC_DOWN: fpword |= 0x6000; break;
1129 case MSVCRT__RC_UP: fpword |= 0x4000; break;
1130 case MSVCRT__RC_DOWN: fpword |= 0x2000; break;
1132 switch (flags & MSVCRT__MCW_DN)
1134 case MSVCRT__DN_FLUSH_OPERANDS_SAVE_RESULTS: fpword |= 0x0040; break;
1135 case MSVCRT__DN_SAVE_OPERANDS_FLUSH_RESULTS: fpword |= 0x8000; break;
1136 case MSVCRT__DN_FLUSH: fpword |= 0x8040; break;
1138 __asm__ __volatile__( "ldmxcsr %0" : : "m" (fpword) );
1140 *sse2_cw = flags;
1142 else *sse2_cw = 0;
1144 return 1;
1145 #else
1146 FIXME( "not implemented\n" );
1147 return 0;
1148 #endif
1150 #endif
1152 /*********************************************************************
1153 * _control87 (MSVCRT.@)
1155 unsigned int CDECL _control87(unsigned int newval, unsigned int mask)
1157 #if defined(__i386__) || defined(__x86_64__)
1158 unsigned int x86_cw, sse2_cw;
1160 __control87_2( newval, mask, &x86_cw, &sse2_cw );
1162 if ((x86_cw ^ sse2_cw) & (MSVCRT__MCW_EM | MSVCRT__MCW_RC)) x86_cw |= MSVCRT__EM_AMBIGUOUS;
1163 return x86_cw;
1164 #else
1165 FIXME( "not implemented\n" );
1166 return 0;
1167 #endif
1170 /*********************************************************************
1171 * _controlfp (MSVCRT.@)
1173 unsigned int CDECL _controlfp(unsigned int newval, unsigned int mask)
1175 return _control87( newval, mask & ~MSVCRT__EM_DENORMAL );
1178 /*********************************************************************
1179 * _set_controlfp (MSVCRT.@)
1181 void CDECL _set_controlfp( unsigned int newval, unsigned int mask )
1183 _controlfp( newval, mask );
1186 /*********************************************************************
1187 * _controlfp_s (MSVCRT.@)
1189 int CDECL _controlfp_s(unsigned int *cur, unsigned int newval, unsigned int mask)
1191 static const unsigned int all_flags = (MSVCRT__MCW_EM | MSVCRT__MCW_IC | MSVCRT__MCW_RC |
1192 MSVCRT__MCW_PC | MSVCRT__MCW_DN);
1193 unsigned int val;
1195 if (!MSVCRT_CHECK_PMT( !(newval & mask & ~all_flags) ))
1197 if (cur) *cur = _controlfp( 0, 0 ); /* retrieve it anyway */
1198 return MSVCRT_EINVAL;
1200 val = _controlfp( newval, mask );
1201 if (cur) *cur = val;
1202 return 0;
1205 /*********************************************************************
1206 * _copysign (MSVCRT.@)
1208 double CDECL MSVCRT__copysign(double num, double sign)
1210 /* FIXME: Behaviour for Nan/Inf? */
1211 if (sign < 0.0)
1212 return num < 0.0 ? num : -num;
1213 return num < 0.0 ? -num : num;
1216 /*********************************************************************
1217 * _finite (MSVCRT.@)
1219 int CDECL MSVCRT__finite(double num)
1221 return (finite(num)?1:0); /* See comment for _isnan() */
1224 /*********************************************************************
1225 * _fpreset (MSVCRT.@)
1227 void CDECL _fpreset(void)
1229 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
1230 const unsigned int x86_cw = 0x27f;
1231 __asm__ __volatile__( "fninit; fldcw %0" : : "m" (x86_cw) );
1232 if (sse2_supported)
1234 const unsigned long sse2_cw = 0x1f80;
1235 __asm__ __volatile__( "ldmxcsr %0" : : "m" (sse2_cw) );
1237 #else
1238 FIXME( "not implemented\n" );
1239 #endif
1242 /*********************************************************************
1243 * _isnan (MSVCRT.@)
1245 INT CDECL MSVCRT__isnan(double num)
1247 /* Some implementations return -1 for true(glibc), msvcrt/crtdll return 1.
1248 * Do the same, as the result may be used in calculations
1250 return isnan(num) ? 1 : 0;
1253 /*********************************************************************
1254 * _j0 (MSVCRT.@)
1256 double CDECL MSVCRT__j0(double num)
1258 /* FIXME: errno handling */
1259 return j0(num);
1262 /*********************************************************************
1263 * _j1 (MSVCRT.@)
1265 double CDECL MSVCRT__j1(double num)
1267 /* FIXME: errno handling */
1268 return j1(num);
1271 /*********************************************************************
1272 * _jn (MSVCRT.@)
1274 double CDECL MSVCRT__jn(int n, double num)
1276 /* FIXME: errno handling */
1277 return jn(n, num);
1280 /*********************************************************************
1281 * _y0 (MSVCRT.@)
1283 double CDECL MSVCRT__y0(double num)
1285 double retval;
1286 if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
1287 retval = y0(num);
1288 if (MSVCRT__fpclass(retval) == MSVCRT__FPCLASS_NINF)
1290 *MSVCRT__errno() = MSVCRT_EDOM;
1291 retval = sqrt(-1);
1293 return retval;
1296 /*********************************************************************
1297 * _y1 (MSVCRT.@)
1299 double CDECL MSVCRT__y1(double num)
1301 double retval;
1302 if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
1303 retval = y1(num);
1304 if (MSVCRT__fpclass(retval) == MSVCRT__FPCLASS_NINF)
1306 *MSVCRT__errno() = MSVCRT_EDOM;
1307 retval = sqrt(-1);
1309 return retval;
1312 /*********************************************************************
1313 * _yn (MSVCRT.@)
1315 double CDECL MSVCRT__yn(int order, double num)
1317 double retval;
1318 if (!finite(num)) *MSVCRT__errno() = MSVCRT_EDOM;
1319 retval = yn(order,num);
1320 if (MSVCRT__fpclass(retval) == MSVCRT__FPCLASS_NINF)
1322 *MSVCRT__errno() = MSVCRT_EDOM;
1323 retval = sqrt(-1);
1325 return retval;
1328 /*********************************************************************
1329 * _nextafter (MSVCRT.@)
1331 double CDECL MSVCRT__nextafter(double num, double next)
1333 double retval;
1334 if (!finite(num) || !finite(next)) *MSVCRT__errno() = MSVCRT_EDOM;
1335 retval = nextafter(num,next);
1336 return retval;
1339 /*********************************************************************
1340 * _ecvt (MSVCRT.@)
1342 char * CDECL _ecvt( double number, int ndigits, int *decpt, int *sign )
1344 int prec, len;
1345 thread_data_t *data = msvcrt_get_thread_data();
1346 /* FIXME: check better for overflow (native supports over 300 chars) */
1347 ndigits = min( ndigits, 80 - 7); /* 7 : space for dec point, 1 for "e",
1348 * 4 for exponent and one for
1349 * terminating '\0' */
1350 if (!data->efcvt_buffer)
1351 data->efcvt_buffer = MSVCRT_malloc( 80 ); /* ought to be enough */
1353 if( number < 0) {
1354 *sign = TRUE;
1355 number = -number;
1356 } else
1357 *sign = FALSE;
1358 /* handle cases with zero ndigits or less */
1359 prec = ndigits;
1360 if( prec < 1) prec = 2;
1361 len = snprintf(data->efcvt_buffer, 80, "%.*le", prec - 1, number);
1362 /* take the decimal "point away */
1363 if( prec != 1)
1364 memmove( data->efcvt_buffer + 1, data->efcvt_buffer + 2, len - 1 );
1365 /* take the exponential "e" out */
1366 data->efcvt_buffer[ prec] = '\0';
1367 /* read the exponent */
1368 sscanf( data->efcvt_buffer + prec + 1, "%d", decpt);
1369 (*decpt)++;
1370 /* adjust for some border cases */
1371 if( data->efcvt_buffer[0] == '0')/* value is zero */
1372 *decpt = 0;
1373 /* handle cases with zero ndigits or less */
1374 if( ndigits < 1){
1375 if( data->efcvt_buffer[ 0] >= '5')
1376 (*decpt)++;
1377 data->efcvt_buffer[ 0] = '\0';
1379 TRACE("out=\"%s\"\n",data->efcvt_buffer);
1380 return data->efcvt_buffer;
1383 /*********************************************************************
1384 * _ecvt_s (MSVCRT.@)
1386 int CDECL _ecvt_s( char *buffer, MSVCRT_size_t length, double number, int ndigits, int *decpt, int *sign )
1388 int prec, len;
1389 char *result;
1390 const char infret[] = "1#INF";
1392 if (!MSVCRT_CHECK_PMT(buffer != NULL)) return MSVCRT_EINVAL;
1393 if (!MSVCRT_CHECK_PMT(decpt != NULL)) return MSVCRT_EINVAL;
1394 if (!MSVCRT_CHECK_PMT(sign != NULL)) return MSVCRT_EINVAL;
1395 if (!MSVCRT_CHECK_PMT_ERR( length > 2, MSVCRT_ERANGE )) return MSVCRT_ERANGE;
1396 if (!MSVCRT_CHECK_PMT_ERR(ndigits < (int)length - 1, MSVCRT_ERANGE )) return MSVCRT_ERANGE;
1398 /* special case - inf */
1399 if(number == HUGE_VAL || number == -HUGE_VAL)
1401 memset(buffer, '0', ndigits);
1402 memcpy(buffer, infret, min(ndigits, sizeof(infret) - 1 ) );
1403 buffer[ndigits] = '\0';
1404 (*decpt) = 1;
1405 if(number == -HUGE_VAL)
1406 (*sign) = 1;
1407 else
1408 (*sign) = 0;
1409 return 0;
1411 /* handle cases with zero ndigits or less */
1412 prec = ndigits;
1413 if( prec < 1) prec = 2;
1414 result = MSVCRT_malloc(prec + 7);
1416 if( number < 0) {
1417 *sign = TRUE;
1418 number = -number;
1419 } else
1420 *sign = FALSE;
1421 len = snprintf(result, prec + 7, "%.*le", prec - 1, number);
1422 /* take the decimal "point away */
1423 if( prec != 1)
1424 memmove( result + 1, result + 2, len - 1 );
1425 /* take the exponential "e" out */
1426 result[ prec] = '\0';
1427 /* read the exponent */
1428 sscanf( result + prec + 1, "%d", decpt);
1429 (*decpt)++;
1430 /* adjust for some border cases */
1431 if( result[0] == '0')/* value is zero */
1432 *decpt = 0;
1433 /* handle cases with zero ndigits or less */
1434 if( ndigits < 1){
1435 if( result[ 0] >= '5')
1436 (*decpt)++;
1437 result[ 0] = '\0';
1439 memcpy( buffer, result, max(ndigits + 1, 1) );
1440 MSVCRT_free( result );
1441 return 0;
1444 /***********************************************************************
1445 * _fcvt (MSVCRT.@)
1447 char * CDECL _fcvt( double number, int ndigits, int *decpt, int *sign )
1449 thread_data_t *data = msvcrt_get_thread_data();
1450 int stop, dec1, dec2;
1451 char *ptr1, *ptr2, *first;
1452 char buf[80]; /* ought to be enough */
1454 if (!data->efcvt_buffer)
1455 data->efcvt_buffer = MSVCRT_malloc( 80 ); /* ought to be enough */
1457 if (number < 0)
1459 *sign = 1;
1460 number = -number;
1461 } else *sign = 0;
1463 snprintf(buf, 80, "%.*f", ndigits < 0 ? 0 : ndigits, number);
1464 ptr1 = buf;
1465 ptr2 = data->efcvt_buffer;
1466 first = NULL;
1467 dec1 = 0;
1468 dec2 = 0;
1470 /* For numbers below the requested resolution, work out where
1471 the decimal point will be rather than finding it in the string */
1472 if (number < 1.0 && number > 0.0) {
1473 dec2 = log10(number + 1e-10);
1474 if (-dec2 <= ndigits) dec2 = 0;
1477 /* If requested digits is zero or less, we will need to truncate
1478 * the returned string */
1479 if (ndigits < 1) {
1480 stop = strlen(buf) + ndigits;
1481 } else {
1482 stop = strlen(buf);
1485 while (*ptr1 == '0') ptr1++; /* Skip leading zeroes */
1486 while (*ptr1 != '\0' && *ptr1 != '.') {
1487 if (!first) first = ptr2;
1488 if ((ptr1 - buf) < stop) {
1489 *ptr2++ = *ptr1++;
1490 } else {
1491 ptr1++;
1493 dec1++;
1496 if (ndigits > 0) {
1497 ptr1++;
1498 if (!first) {
1499 while (*ptr1 == '0') { /* Process leading zeroes */
1500 *ptr2++ = *ptr1++;
1501 dec1--;
1504 while (*ptr1 != '\0') {
1505 if (!first) first = ptr2;
1506 *ptr2++ = *ptr1++;
1510 *ptr2 = '\0';
1512 /* We never found a non-zero digit, then our number is either
1513 * smaller than the requested precision, or 0.0 */
1514 if (!first) {
1515 if (number > 0.0) {
1516 first = ptr2;
1517 } else {
1518 first = data->efcvt_buffer;
1519 dec1 = 0;
1523 *decpt = dec2 ? dec2 : dec1;
1524 return first;
1527 /***********************************************************************
1528 * _fcvt_s (MSVCRT.@)
1530 int CDECL _fcvt_s(char* outbuffer, MSVCRT_size_t size, double number, int ndigits, int *decpt, int *sign)
1532 int stop, dec1, dec2;
1533 char *ptr1, *ptr2, *first;
1534 char buf[80]; /* ought to be enough */
1536 if (!outbuffer || !decpt || !sign || size == 0)
1538 *MSVCRT__errno() = MSVCRT_EINVAL;
1539 return MSVCRT_EINVAL;
1542 if (number < 0)
1544 *sign = 1;
1545 number = -number;
1546 } else *sign = 0;
1548 snprintf(buf, 80, "%.*f", ndigits < 0 ? 0 : ndigits, number);
1549 ptr1 = buf;
1550 ptr2 = outbuffer;
1551 first = NULL;
1552 dec1 = 0;
1553 dec2 = 0;
1555 /* For numbers below the requested resolution, work out where
1556 the decimal point will be rather than finding it in the string */
1557 if (number < 1.0 && number > 0.0) {
1558 dec2 = log10(number + 1e-10);
1559 if (-dec2 <= ndigits) dec2 = 0;
1562 /* If requested digits is zero or less, we will need to truncate
1563 * the returned string */
1564 if (ndigits < 1) {
1565 stop = strlen(buf) + ndigits;
1566 } else {
1567 stop = strlen(buf);
1570 while (*ptr1 == '0') ptr1++; /* Skip leading zeroes */
1571 while (*ptr1 != '\0' && *ptr1 != '.') {
1572 if (!first) first = ptr2;
1573 if ((ptr1 - buf) < stop) {
1574 if (size > 1) {
1575 *ptr2++ = *ptr1++;
1576 size--;
1578 } else {
1579 ptr1++;
1581 dec1++;
1584 if (ndigits > 0) {
1585 ptr1++;
1586 if (!first) {
1587 while (*ptr1 == '0') { /* Process leading zeroes */
1588 if (number == 0.0 && size > 1) {
1589 *ptr2++ = '0';
1590 size--;
1592 ptr1++;
1593 dec1--;
1596 while (*ptr1 != '\0') {
1597 if (!first) first = ptr2;
1598 if (size > 1) {
1599 *ptr2++ = *ptr1++;
1600 size--;
1605 *ptr2 = '\0';
1607 /* We never found a non-zero digit, then our number is either
1608 * smaller than the requested precision, or 0.0 */
1609 if (!first && (number <= 0.0))
1610 dec1 = 0;
1612 *decpt = dec2 ? dec2 : dec1;
1613 return 0;
1616 /***********************************************************************
1617 * _gcvt (MSVCRT.@)
1619 char * CDECL _gcvt( double number, int ndigit, char *buff )
1621 if(!buff) {
1622 *MSVCRT__errno() = MSVCRT_EINVAL;
1623 return NULL;
1626 if(ndigit < 0) {
1627 *MSVCRT__errno() = MSVCRT_ERANGE;
1628 return NULL;
1631 MSVCRT_sprintf(buff, "%.*g", ndigit, number);
1632 return buff;
1635 /***********************************************************************
1636 * _gcvt_s (MSVCRT.@)
1638 int CDECL _gcvt_s(char *buff, MSVCRT_size_t size, double number, int digits)
1640 int len;
1642 if(!buff) {
1643 *MSVCRT__errno() = MSVCRT_EINVAL;
1644 return MSVCRT_EINVAL;
1647 if( digits<0 || digits>=size) {
1648 if(size)
1649 buff[0] = '\0';
1651 *MSVCRT__errno() = MSVCRT_ERANGE;
1652 return MSVCRT_ERANGE;
1655 len = MSVCRT__scprintf("%.*g", digits, number);
1656 if(len > size) {
1657 buff[0] = '\0';
1658 *MSVCRT__errno() = MSVCRT_ERANGE;
1659 return MSVCRT_ERANGE;
1662 MSVCRT_sprintf(buff, "%.*g", digits, number);
1663 return 0;
1666 #include <stdlib.h> /* div_t, ldiv_t */
1668 /*********************************************************************
1669 * div (MSVCRT.@)
1670 * VERSION
1671 * [i386] Windows binary compatible - returns the struct in eax/edx.
1673 #ifdef __i386__
1674 unsigned __int64 CDECL MSVCRT_div(int num, int denom)
1676 div_t dt = div(num,denom);
1677 return ((unsigned __int64)dt.rem << 32) | (unsigned int)dt.quot;
1679 #else
1680 /*********************************************************************
1681 * div (MSVCRT.@)
1682 * VERSION
1683 * [!i386] Non-x86 can't run win32 apps so we don't need binary compatibility
1685 MSVCRT_div_t CDECL MSVCRT_div(int num, int denom)
1687 div_t dt = div(num,denom);
1688 MSVCRT_div_t ret;
1689 ret.quot = dt.quot;
1690 ret.rem = dt.rem;
1692 return ret;
1695 #endif /* ifdef __i386__ */
1698 /*********************************************************************
1699 * ldiv (MSVCRT.@)
1700 * VERSION
1701 * [i386] Windows binary compatible - returns the struct in eax/edx.
1703 #ifdef __i386__
1704 unsigned __int64 CDECL MSVCRT_ldiv(MSVCRT_long num, MSVCRT_long denom)
1706 ldiv_t ldt = ldiv(num,denom);
1707 return ((unsigned __int64)ldt.rem << 32) | (MSVCRT_ulong)ldt.quot;
1709 #else
1710 /*********************************************************************
1711 * ldiv (MSVCRT.@)
1712 * VERSION
1713 * [!i386] Non-x86 can't run win32 apps so we don't need binary compatibility
1715 MSVCRT_ldiv_t CDECL MSVCRT_ldiv(MSVCRT_long num, MSVCRT_long denom)
1717 ldiv_t result = ldiv(num,denom);
1719 MSVCRT_ldiv_t ret;
1720 ret.quot = result.quot;
1721 ret.rem = result.rem;
1723 return ret;
1725 #endif /* ifdef __i386__ */
1727 #ifdef __i386__
1729 /*********************************************************************
1730 * _adjust_fdiv (MSVCRT.@)
1731 * Used by the MSVC compiler to work around the Pentium FDIV bug.
1733 int MSVCRT__adjust_fdiv = 0;
1735 /***********************************************************************
1736 * _adj_fdiv_m16i (MSVCRT.@)
1738 * NOTE
1739 * I _think_ this function is intended to work around the Pentium
1740 * fdiv bug.
1742 void __stdcall _adj_fdiv_m16i( short arg )
1744 TRACE("(): stub\n");
1747 /***********************************************************************
1748 * _adj_fdiv_m32 (MSVCRT.@)
1750 * NOTE
1751 * I _think_ this function is intended to work around the Pentium
1752 * fdiv bug.
1754 void __stdcall _adj_fdiv_m32( unsigned int arg )
1756 TRACE("(): stub\n");
1759 /***********************************************************************
1760 * _adj_fdiv_m32i (MSVCRT.@)
1762 * NOTE
1763 * I _think_ this function is intended to work around the Pentium
1764 * fdiv bug.
1766 void __stdcall _adj_fdiv_m32i( int arg )
1768 TRACE("(): stub\n");
1771 /***********************************************************************
1772 * _adj_fdiv_m64 (MSVCRT.@)
1774 * NOTE
1775 * I _think_ this function is intended to work around the Pentium
1776 * fdiv bug.
1778 void __stdcall _adj_fdiv_m64( unsigned __int64 arg )
1780 TRACE("(): stub\n");
1783 /***********************************************************************
1784 * _adj_fdiv_r (MSVCRT.@)
1785 * FIXME
1786 * This function is likely to have the wrong number of arguments.
1788 * NOTE
1789 * I _think_ this function is intended to work around the Pentium
1790 * fdiv bug.
1792 void _adj_fdiv_r(void)
1794 TRACE("(): stub\n");
1797 /***********************************************************************
1798 * _adj_fdivr_m16i (MSVCRT.@)
1800 * NOTE
1801 * I _think_ this function is intended to work around the Pentium
1802 * fdiv bug.
1804 void __stdcall _adj_fdivr_m16i( short arg )
1806 TRACE("(): stub\n");
1809 /***********************************************************************
1810 * _adj_fdivr_m32 (MSVCRT.@)
1812 * NOTE
1813 * I _think_ this function is intended to work around the Pentium
1814 * fdiv bug.
1816 void __stdcall _adj_fdivr_m32( unsigned int arg )
1818 TRACE("(): stub\n");
1821 /***********************************************************************
1822 * _adj_fdivr_m32i (MSVCRT.@)
1824 * NOTE
1825 * I _think_ this function is intended to work around the Pentium
1826 * fdiv bug.
1828 void __stdcall _adj_fdivr_m32i( int arg )
1830 TRACE("(): stub\n");
1833 /***********************************************************************
1834 * _adj_fdivr_m64 (MSVCRT.@)
1836 * NOTE
1837 * I _think_ this function is intended to work around the Pentium
1838 * fdiv bug.
1840 void __stdcall _adj_fdivr_m64( unsigned __int64 arg )
1842 TRACE("(): stub\n");
1845 /***********************************************************************
1846 * _adj_fpatan (MSVCRT.@)
1847 * FIXME
1848 * This function is likely to have the wrong number of arguments.
1850 * NOTE
1851 * I _think_ this function is intended to work around the Pentium
1852 * fdiv bug.
1854 void _adj_fpatan(void)
1856 TRACE("(): stub\n");
1859 /***********************************************************************
1860 * _adj_fprem (MSVCRT.@)
1861 * FIXME
1862 * This function is likely to have the wrong number of arguments.
1864 * NOTE
1865 * I _think_ this function is intended to work around the Pentium
1866 * fdiv bug.
1868 void _adj_fprem(void)
1870 TRACE("(): stub\n");
1873 /***********************************************************************
1874 * _adj_fprem1 (MSVCRT.@)
1875 * FIXME
1876 * This function is likely to have the wrong number of arguments.
1878 * NOTE
1879 * I _think_ this function is intended to work around the Pentium
1880 * fdiv bug.
1882 void _adj_fprem1(void)
1884 TRACE("(): stub\n");
1887 /***********************************************************************
1888 * _adj_fptan (MSVCRT.@)
1889 * FIXME
1890 * This function is likely to have the wrong number of arguments.
1892 * NOTE
1893 * I _think_ this function is intended to work around the Pentium
1894 * fdiv bug.
1896 void _adj_fptan(void)
1898 TRACE("(): stub\n");
1901 /***********************************************************************
1902 * _safe_fdiv (MSVCRT.@)
1903 * FIXME
1904 * This function is likely to have the wrong number of arguments.
1906 * NOTE
1907 * I _think_ this function is intended to work around the Pentium
1908 * fdiv bug.
1910 void _safe_fdiv(void)
1912 TRACE("(): stub\n");
1915 /***********************************************************************
1916 * _safe_fdivr (MSVCRT.@)
1917 * FIXME
1918 * This function is likely to have the wrong number of arguments.
1920 * NOTE
1921 * I _think_ this function is intended to work around the Pentium
1922 * fdiv bug.
1924 void _safe_fdivr(void)
1926 TRACE("(): stub\n");
1929 /***********************************************************************
1930 * _safe_fprem (MSVCRT.@)
1931 * FIXME
1932 * This function is likely to have the wrong number of arguments.
1934 * NOTE
1935 * I _think_ this function is intended to work around the Pentium
1936 * fdiv bug.
1938 void _safe_fprem(void)
1940 TRACE("(): stub\n");
1943 /***********************************************************************
1944 * _safe_fprem1 (MSVCRT.@)
1946 * FIXME
1947 * This function is likely to have the wrong number of arguments.
1949 * NOTE
1950 * I _think_ this function is intended to work around the Pentium
1951 * fdiv bug.
1953 void _safe_fprem1(void)
1955 TRACE("(): stub\n");
1958 /***********************************************************************
1959 * __libm_sse2_acos (MSVCRT.@)
1961 void __cdecl __libm_sse2_acos(void)
1963 double d;
1964 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
1965 d = acos( d );
1966 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
1969 /***********************************************************************
1970 * __libm_sse2_acosf (MSVCRT.@)
1972 void __cdecl __libm_sse2_acosf(void)
1974 float f;
1975 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
1976 f = acosf( f );
1977 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
1980 /***********************************************************************
1981 * __libm_sse2_asin (MSVCRT.@)
1983 void __cdecl __libm_sse2_asin(void)
1985 double d;
1986 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
1987 d = asin( d );
1988 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
1991 /***********************************************************************
1992 * __libm_sse2_asinf (MSVCRT.@)
1994 void __cdecl __libm_sse2_asinf(void)
1996 float f;
1997 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
1998 f = asinf( f );
1999 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2002 /***********************************************************************
2003 * __libm_sse2_atan (MSVCRT.@)
2005 void __cdecl __libm_sse2_atan(void)
2007 double d;
2008 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
2009 d = atan( d );
2010 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
2013 /***********************************************************************
2014 * __libm_sse2_atan2 (MSVCRT.@)
2016 void __cdecl __libm_sse2_atan2(void)
2018 double d1, d2;
2019 __asm__ __volatile__( "movq %%xmm0,%0; movq %%xmm1,%1 " : "=m" (d1), "=m" (d2) );
2020 d1 = atan2( d1, d2 );
2021 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d1) );
2024 /***********************************************************************
2025 * __libm_sse2_atanf (MSVCRT.@)
2027 void __cdecl __libm_sse2_atanf(void)
2029 float f;
2030 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
2031 f = atanf( f );
2032 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2035 /***********************************************************************
2036 * __libm_sse2_cos (MSVCRT.@)
2038 void __cdecl __libm_sse2_cos(void)
2040 double d;
2041 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
2042 d = cos( d );
2043 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
2046 /***********************************************************************
2047 * __libm_sse2_cosf (MSVCRT.@)
2049 void __cdecl __libm_sse2_cosf(void)
2051 float f;
2052 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
2053 f = cosf( f );
2054 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2057 /***********************************************************************
2058 * __libm_sse2_exp (MSVCRT.@)
2060 void __cdecl __libm_sse2_exp(void)
2062 double d;
2063 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
2064 d = exp( d );
2065 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
2068 /***********************************************************************
2069 * __libm_sse2_expf (MSVCRT.@)
2071 void __cdecl __libm_sse2_expf(void)
2073 float f;
2074 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
2075 f = expf( f );
2076 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2079 /***********************************************************************
2080 * __libm_sse2_log (MSVCRT.@)
2082 void __cdecl __libm_sse2_log(void)
2084 double d;
2085 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
2086 d = log( d );
2087 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
2090 /***********************************************************************
2091 * __libm_sse2_log10 (MSVCRT.@)
2093 void __cdecl __libm_sse2_log10(void)
2095 double d;
2096 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
2097 d = log10( d );
2098 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
2101 /***********************************************************************
2102 * __libm_sse2_log10f (MSVCRT.@)
2104 void __cdecl __libm_sse2_log10f(void)
2106 float f;
2107 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
2108 f = log10f( f );
2109 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2112 /***********************************************************************
2113 * __libm_sse2_logf (MSVCRT.@)
2115 void __cdecl __libm_sse2_logf(void)
2117 float f;
2118 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
2119 f = logf( f );
2120 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2123 /***********************************************************************
2124 * __libm_sse2_pow (MSVCRT.@)
2126 void __cdecl __libm_sse2_pow(void)
2128 double d1, d2;
2129 __asm__ __volatile__( "movq %%xmm0,%0; movq %%xmm1,%1 " : "=m" (d1), "=m" (d2) );
2130 d1 = pow( d1, d2 );
2131 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d1) );
2134 /***********************************************************************
2135 * __libm_sse2_powf (MSVCRT.@)
2137 void __cdecl __libm_sse2_powf(void)
2139 float f1, f2;
2140 __asm__ __volatile__( "movd %%xmm0,%0; movd %%xmm1,%1" : "=g" (f1), "=g" (f2) );
2141 f1 = powf( f1, f2 );
2142 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f1) );
2145 /***********************************************************************
2146 * __libm_sse2_sin (MSVCRT.@)
2148 void __cdecl __libm_sse2_sin(void)
2150 double d;
2151 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
2152 d = sin( d );
2153 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
2156 /***********************************************************************
2157 * __libm_sse2_sinf (MSVCRT.@)
2159 void __cdecl __libm_sse2_sinf(void)
2161 float f;
2162 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
2163 f = sinf( f );
2164 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2167 /***********************************************************************
2168 * __libm_sse2_tan (MSVCRT.@)
2170 void __cdecl __libm_sse2_tan(void)
2172 double d;
2173 __asm__ __volatile__( "movq %%xmm0,%0" : "=m" (d) );
2174 d = tan( d );
2175 __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
2178 /***********************************************************************
2179 * __libm_sse2_tanf (MSVCRT.@)
2181 void __cdecl __libm_sse2_tanf(void)
2183 float f;
2184 __asm__ __volatile__( "movd %%xmm0,%0" : "=g" (f) );
2185 f = tanf( f );
2186 __asm__ __volatile__( "movd %0,%%xmm0" : : "g" (f) );
2189 #endif /* __i386__ */