gcc_fixes.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * gcc fixes for altivec.
  3.  * Used to workaround broken gcc (FSF gcc-3 pre gcc-3.3) 
  4.  * and to stay somewhat compatible with Darwin.
  5.  */
  6. #ifndef _GCC_FIXES_
  7. #define _GCC_FIXES_
  8. #ifdef HAVE_ALTIVEC_H
  9. #include <altivec.h>
  10. #endif
  11. #ifdef CONFIG_DARWIN
  12. # ifndef __MWERKS__
  13. #  define AVV(x...) (x)
  14. # else
  15. #  define AVV
  16. # endif
  17. #else
  18. #define AVV(x...) {x}
  19. #if (__GNUC__ * 100 + __GNUC_MINOR__ < 303)  
  20. /* This code was provided to me by Bartosch Pixa
  21.  * as a separate header file (broken_mergel.h).
  22.  * thanks to lu_zero for the workaround.
  23.  *
  24.  * See this mail for more information:
  25.  * http://gcc.gnu.org/ml/gcc/2003-04/msg00967.html
  26.  */
  27. static inline vector signed char ff_vmrglb (vector signed char const A,
  28.   vector signed char const B)
  29. {
  30.     static const vector unsigned char lowbyte = {
  31. 0x08, 0x18, 0x09, 0x19, 0x0a, 0x1a, 0x0b,  0x1b,
  32. 0x0c, 0x1c, 0x0d, 0x1d, 0x0e, 0x1e, 0x0f, 0x1f
  33.     };
  34.     return vec_perm (A, B, lowbyte);
  35. }
  36. static inline vector signed short ff_vmrglh (vector signed short const A,
  37.   vector signed short const B)
  38. {
  39.     static const vector unsigned char lowhalf = {
  40.      0x08, 0x09, 0x18, 0x19, 0x0a, 0x0b, 0x1a, 0x1b,
  41. 0x0c, 0x0d, 0x1c, 0x1d, 0x0e, 0x0f, 0x1e, 0x1f
  42.     };
  43.     return vec_perm (A, B, lowhalf);
  44. }
  45. static inline vector signed int ff_vmrglw (vector signed int const A,
  46.   vector signed int const B)
  47. {
  48.     static const vector unsigned char lowword = {
  49.      0x08, 0x09, 0x0a, 0x0b, 0x18, 0x19, 0x1a, 0x1b,
  50. 0x0c, 0x0d, 0x0e, 0x0f, 0x1c, 0x1d, 0x1e, 0x1f
  51.     };
  52.     return vec_perm (A, B, lowword);
  53. }
  54. /*#define ff_vmrglb ff_vmrglb 
  55. #define ff_vmrglh ff_vmrglh 
  56. #define ff_vmrglw ff_vmrglw 
  57. */
  58. #undef vec_mergel
  59. #define vec_mergel(a1, a2) 
  60. __ch (__bin_args_eq (vector signed char, (a1), vector signed char, (a2)), 
  61.       ((vector signed char) ff_vmrglb ((vector signed char) (a1), (vector signed char) (a2))), 
  62. __ch (__bin_args_eq (vector unsigned char, (a1), vector unsigned char, (a2)), 
  63.       ((vector unsigned char) ff_vmrglb ((vector signed char) (a1), (vector signed char) (a2))), 
  64. __ch (__bin_args_eq (vector signed short, (a1), vector signed short, (a2)), 
  65.       ((vector signed short) ff_vmrglh ((vector signed short) (a1), (vector signed short) (a2))), 
  66. __ch (__bin_args_eq (vector unsigned short, (a1), vector unsigned short, (a2)), 
  67.       ((vector unsigned short) ff_vmrglh ((vector signed short) (a1), (vector signed short) (a2))), 
  68. __ch (__bin_args_eq (vector float, (a1), vector float, (a2)), 
  69.       ((vector float) ff_vmrglw ((vector signed int) (a1), (vector signed int) (a2))), 
  70. __ch (__bin_args_eq (vector signed int, (a1), vector signed int, (a2)), 
  71.       ((vector signed int) ff_vmrglw ((vector signed int) (a1), (vector signed int) (a2))), 
  72. __ch (__bin_args_eq (vector unsigned int, (a1), vector unsigned int, (a2)), 
  73.       ((vector unsigned int) ff_vmrglw ((vector signed int) (a1), (vector signed int) (a2))), 
  74.     __altivec_link_error_invalid_argument ())))))))
  75. #endif
  76. #endif /* CONFIG_DARWIN */
  77. #ifndef __MWERKS__
  78. #define const_vector const vector
  79. #else
  80. #define const_vector vector
  81. #endif
  82. #endif /* _GCC_FIXES_ */