using autoheader to generate config.h so we get rid of the long compile
[platform/upstream/libvorbis.git] / lib / os.h
1 #ifndef _OS_H
2 #define _OS_H
3 /********************************************************************
4  *                                                                  *
5  * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
6  * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
7  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
8  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
9  *                                                                  *
10  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2002             *
11  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
12  *                                                                  *
13  ********************************************************************
14
15  function: #ifdef jail to whip a few platforms into the UNIX ideal.
16  last mod: $Id$
17
18  ********************************************************************/
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include <math.h>
25 #include <ogg/os_types.h>
26
27 #include "misc.h"
28
29 #ifndef _V_IFDEFJAIL_H_
30 #  define _V_IFDEFJAIL_H_
31
32 #  ifdef __GNUC__
33 #    define STIN static __inline__
34 #  elif _WIN32
35 #    define STIN static __inline
36 #  else
37 #    define STIN static
38 #  endif
39
40 #ifdef DJGPP
41 #  define rint(x)   (floor((x)+0.5f))
42 #endif
43
44 #ifndef M_PI
45 #  define M_PI (3.1415926536f)
46 #endif
47
48 #ifdef _WIN32
49 #  include <malloc.h>
50 #  define rint(x)   (floor((x)+0.5f)) 
51 #  define NO_FLOAT_MATH_LIB
52 #  define FAST_HYPOT(a, b) sqrt((a)*(a) + (b)*(b))
53 #endif
54
55 #ifndef FAST_HYPOT
56 #  define FAST_HYPOT hypot
57 #endif
58
59 #endif
60
61 #ifdef HAVE_ALLOCA_H
62 #  include <alloca.h>
63 #endif
64
65 #ifdef USE_MEMORY_H
66 #  include <memory.h>
67 #endif
68
69 #ifndef min
70 #  define min(x,y)  ((x)>(y)?(y):(x))
71 #endif
72
73 #ifndef max
74 #  define max(x,y)  ((x)<(y)?(y):(x))
75 #endif
76
77 #if defined(__i386__) && defined(__GNUC__) && !defined(__BEOS__)
78 #  define VORBIS_FPU_CONTROL
79 /* both GCC and MSVC are kinda stupid about rounding/casting to int.
80    Because of encapsulation constraints (GCC can't see inside the asm
81    block and so we end up doing stupid things like a store/load that
82    is collectively a noop), we do it this way */
83
84 /* we must set up the fpu before this works!! */
85
86 typedef ogg_int16_t vorbis_fpu_control;
87
88 static inline void vorbis_fpu_setround(vorbis_fpu_control *fpu){
89   ogg_int16_t ret;
90   ogg_int16_t temp;
91   __asm__ __volatile__("fnstcw %0\n\t"
92           "movw %0,%%dx\n\t"
93           "orw $62463,%%dx\n\t"
94           "movw %%dx,%1\n\t"
95           "fldcw %1\n\t":"=m"(ret):"m"(temp): "dx");
96   *fpu=ret;
97 }
98
99 static inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
100   __asm__ __volatile__("fldcw %0":: "m"(fpu));
101 }
102
103 /* assumes the FPU is in round mode! */
104 static inline int vorbis_ftoi(double f){  /* yes, double!  Otherwise,
105                                              we get extra fst/fld to
106                                              truncate precision */
107   int i;
108   __asm__("fistl %0": "=m"(i) : "t"(f));
109   return(i);
110 }
111 #endif
112
113
114 #if defined(_WIN32) && !defined(__GNUC__) && !defined(__BORLANDC__)
115 #  define VORBIS_FPU_CONTROL
116
117 typedef ogg_int16_t vorbis_fpu_control;
118
119 static __inline int vorbis_ftoi(double f){
120         int i;
121         __asm{
122                 fld f
123                 fistp i
124         }
125         return i;
126 }
127
128 static __inline void vorbis_fpu_setround(vorbis_fpu_control *fpu){
129 }
130
131 static __inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
132 }
133
134 #endif
135
136
137 #ifndef VORBIS_FPU_CONTROL
138
139 typedef int vorbis_fpu_control;
140
141 static int vorbis_ftoi(double f){
142   return (int)(f+.5);
143 }
144
145 /* We don't have special code for this compiler/arch, so do it the slow way */
146 #  define vorbis_fpu_setround(vorbis_fpu_control) {}
147 #  define vorbis_fpu_restore(vorbis_fpu_control) {}
148
149 #endif
150
151 #endif /* _OS_H */