float_cast.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* Copyright (C) 2001 Erik de Castro Lopo <erikd AT mega-nerd DOT com> */
  2. /*
  3. Redistribution and use in source and binary forms, with or without
  4. modification, are permitted provided that the following conditions
  5. are met:
  6. - Redistributions of source code must retain the above copyright
  7. notice, this list of conditions and the following disclaimer.
  8. - Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  12. ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  13. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  14. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
  15. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  16. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  17. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  18. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  19. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  20. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  21. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. */
  23. /* Version 1.1 */
  24. #ifndef FLOAT_CAST_H
  25. #define FLOAT_CAST_H
  26. /*============================================================================
  27. ** On Intel Pentium processors (especially PIII and probably P4), converting
  28. ** from float to int is very slow. To meet the C specs, the code produced by
  29. ** most C compilers targeting Pentium needs to change the FPU rounding mode
  30. ** before the float to int conversion is performed.
  31. **
  32. ** Changing the FPU rounding mode causes the FPU pipeline to be flushed. It
  33. ** is this flushing of the pipeline which is so slow.
  34. **
  35. ** Fortunately the ISO C99 specifications define the functions lrint, lrintf,
  36. ** llrint and llrintf which fix this problem as a side effect.
  37. **
  38. ** On Unix-like systems, the configure process should have detected the
  39. ** presence of these functions. If they weren't found we have to replace them
  40. ** here with a standard C cast.
  41. */
  42. /*
  43. ** The C99 prototypes for lrint and lrintf are as follows:
  44. **
  45. ** long int lrintf (float x) ;
  46. ** long int lrint (double x) ;
  47. */
  48. /* The presence of the required functions are detected during the configure
  49. ** process and the values HAVE_LRINT and HAVE_LRINTF are set accordingly in
  50. ** the config.h file.
  51. */
  52. #if (HAVE_LRINTF)
  53. /* These defines enable functionality introduced with the 1999 ISO C
  54. ** standard. They must be defined before the inclusion of math.h to
  55. ** engage them. If optimisation is enabled, these functions will be
  56. ** inlined. With optimisation switched off, you have to link in the
  57. ** maths library using -lm.
  58. */
  59. #define _ISOC9X_SOURCE 1
  60. #define _ISOC99_SOURCE 1
  61. #define __USE_ISOC9X 1
  62. #define __USE_ISOC99 1
  63. #include <math.h>
  64. #define float2int(x) lrintf(x)
  65. #elif (defined(HAVE_LRINT))
  66. #define _ISOC9X_SOURCE 1
  67. #define _ISOC99_SOURCE 1
  68. #define __USE_ISOC9X 1
  69. #define __USE_ISOC99 1
  70. #include <math.h>
  71. #define float2int(x) lrint(x)
  72. #elif (defined (WIN64) || defined (_WIN64))
  73. #include <xmmintrin.h>
  74. __inline long int float2int(float value)
  75. {
  76. return _mm_cvtss_si32(_mm_load_ss(&value));
  77. }
  78. #elif (defined (WIN32) || defined (_WIN32))
  79. #include <math.h>
  80. /* Win32 doesn't seem to have these functions.
  81. ** Therefore implement inline versions of these functions here.
  82. */
  83. __inline long int
  84. float2int (float flt)
  85. { int intgr;
  86. _asm
  87. { fld flt
  88. fistp intgr
  89. } ;
  90. return intgr ;
  91. }
  92. #else
  93. #if (defined(__GNUC__) && defined(__STDC__) && __STDC__ && __STDC_VERSION__ >= 199901L)
  94. /* supported by gcc in C99 mode, but not by all other compilers */
  95. #warning "Don't have the functions lrint() and lrintf ()."
  96. #warning "Replacing these functions with a standard C cast."
  97. #endif /* __STDC_VERSION__ >= 199901L */
  98. #include <math.h>
  99. #define float2int(flt) ((int)(floor(.5+flt)))
  100. #endif
  101. static inline opus_int16 FLOAT2INT16(float x)
  102. {
  103. x = x*CELT_SIG_SCALE;
  104. x = MAX32(x, -32768);
  105. x = MIN32(x, 32767);
  106. return (opus_int16)float2int(x);
  107. }
  108. #endif /* FLOAT_CAST_H */