Merge branch_beta3 onto the mainline.
[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 SOURCE IS GOVERNED BY *
7  * THE GNU LESSER/LIBRARY PUBLIC LICENSE, WHICH IS INCLUDED WITH    *
8  * THIS SOURCE. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.        *
9  *                                                                  *
10  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
11  * by Monty <monty@xiph.org> and the XIPHOPHORUS Company            *
12  * http://www.xiph.org/                                             *
13  *                                                                  *
14  ********************************************************************
15
16  function: #ifdef jail to whip a few platforms into the UNIX ideal.
17  last mod: $Id: os.h,v 1.11 2000/11/06 00:07:01 xiphmont Exp $
18
19  ********************************************************************/
20
21 #include <math.h>
22 #include <ogg/os_types.h>
23
24 #ifndef _V_IFDEFJAIL_H_
25 #define _V_IFDEFJAIL_H_
26
27 #ifndef M_PI
28 #define M_PI (3.1415926539)
29 #endif
30
31 #ifndef __GNUC__
32 #ifdef _WIN32
33 #  include <malloc.h>
34 #  define rint(x)   (floor((x)+0.5)) 
35 #endif
36 #endif
37
38 #ifdef _WIN32
39 #  define FAST_HYPOT(a, b) sqrt((a)*(a) + (b)*(b))
40 #else /* if not _WIN32 */
41 #  define FAST_HYPOT hypot
42 #endif
43
44 #endif
45
46 #ifdef HAVE_ALLOCA_H
47 #include <alloca.h>
48 #endif
49
50 #ifdef USE_MEMORY_H
51 #include <memory.h>
52 #endif
53
54 #ifndef min
55 #  define min(x,y)  ((x)>(y)?(y):(x))
56 #endif
57
58 #ifndef max
59 #  define max(x,y)  ((x)<(y)?(y):(x))
60 #endif
61
62
63 #if defined(__i386__) && defined(__GNUC__)
64
65 /* both GCC and MSVC are kinda stupid about rounding/casting to int.
66    Because of encapsulation constraints (GCC can't see inside the asm
67    block and so we end up doing stupid things like a store/load that
68    is collectively a noop), we do it this way */
69
70 /* we must set up the fpu before this works!! */
71
72 typedef ogg_int16_t vorbis_fpu_control;
73
74 static inline void vorbis_fpu_setround(vorbis_fpu_control *fpu){
75   ogg_int16_t ret;
76   ogg_int16_t temp;
77   __asm__ __volatile__("fnstcw %0\n\t"
78           "movw %0,%%dx\n\t"
79           "orw $62463,%%dx\n\t"
80           "movw %%dx,%1\n\t"
81           "fldcw %1\n\t":"=m"(ret):"m"(temp): "dx");
82   *fpu=ret;
83 }
84
85 static inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
86   __asm__ __volatile__("fldcw %0":: "m"(fpu));
87 }
88
89 /* assumes the FPU is in round mode! */
90 static inline int vorbis_ftoi(double f){  /* yes, double!  Otherwise,
91                                              we get extra fst/fld to
92                                              truncate precision */
93   int i;
94   __asm__("fistl %0": "=m"(i) : "t"(f));
95   return(i);
96 }
97
98 #else
99
100 static int vorbis_ftoi(double f){
101   return (int)(f+.5);
102 }
103
104
105 typedef int vorbis_fpu_control;
106
107 static inline void vorbis_fpu_setround(vorbis_fpu_control *fpu){
108 }
109
110 static inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
111 }
112
113 #endif
114
115 #endif /* _OS_H */