cpu.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVUTIL_X86_CPU_H
  19. #define AVUTIL_X86_CPU_H
  20. #include "config.h"
  21. #include "libavutil/cpu.h"
  22. #include "libavutil/cpu_internal.h"
  23. #define AV_CPU_FLAG_AMD3DNOW AV_CPU_FLAG_3DNOW
  24. #define AV_CPU_FLAG_AMD3DNOWEXT AV_CPU_FLAG_3DNOWEXT
  25. #define X86_AMD3DNOW(flags) CPUEXT(flags, AMD3DNOW)
  26. #define X86_AMD3DNOWEXT(flags) CPUEXT(flags, AMD3DNOWEXT)
  27. #define X86_MMX(flags) CPUEXT(flags, MMX)
  28. #define X86_MMXEXT(flags) CPUEXT(flags, MMXEXT)
  29. #define X86_SSE(flags) CPUEXT(flags, SSE)
  30. #define X86_SSE2(flags) CPUEXT(flags, SSE2)
  31. #define X86_SSE3(flags) CPUEXT(flags, SSE3)
  32. #define X86_SSSE3(flags) CPUEXT(flags, SSSE3)
  33. #define X86_SSE4(flags) CPUEXT(flags, SSE4)
  34. #define X86_SSE42(flags) CPUEXT(flags, SSE42)
  35. #define X86_AVX(flags) CPUEXT(flags, AVX)
  36. #define X86_XOP(flags) CPUEXT(flags, XOP)
  37. #define X86_FMA3(flags) CPUEXT(flags, FMA3)
  38. #define X86_FMA4(flags) CPUEXT(flags, FMA4)
  39. #define X86_AVX2(flags) CPUEXT(flags, AVX2)
  40. #define EXTERNAL_AMD3DNOW(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, AMD3DNOW)
  41. #define EXTERNAL_AMD3DNOWEXT(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, AMD3DNOWEXT)
  42. #define EXTERNAL_MMX(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, MMX)
  43. #define EXTERNAL_MMXEXT(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, MMXEXT)
  44. #define EXTERNAL_SSE(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, SSE)
  45. #define EXTERNAL_SSE2(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, SSE2)
  46. #define EXTERNAL_SSE3(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, SSE3)
  47. #define EXTERNAL_SSSE3(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, SSSE3)
  48. #define EXTERNAL_SSE4(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, SSE4)
  49. #define EXTERNAL_SSE42(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, SSE42)
  50. #define EXTERNAL_AVX(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, AVX)
  51. #define EXTERNAL_XOP(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, XOP)
  52. #define EXTERNAL_FMA3(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, FMA3)
  53. #define EXTERNAL_FMA4(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, FMA4)
  54. #define EXTERNAL_AVX2(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, AVX2)
  55. #define INLINE_AMD3DNOW(flags) CPUEXT_SUFFIX(flags, _INLINE, AMD3DNOW)
  56. #define INLINE_AMD3DNOWEXT(flags) CPUEXT_SUFFIX(flags, _INLINE, AMD3DNOWEXT)
  57. #define INLINE_MMX(flags) CPUEXT_SUFFIX(flags, _INLINE, MMX)
  58. #define INLINE_MMXEXT(flags) CPUEXT_SUFFIX(flags, _INLINE, MMXEXT)
  59. #define INLINE_SSE(flags) CPUEXT_SUFFIX(flags, _INLINE, SSE)
  60. #define INLINE_SSE2(flags) CPUEXT_SUFFIX(flags, _INLINE, SSE2)
  61. #define INLINE_SSE3(flags) CPUEXT_SUFFIX(flags, _INLINE, SSE3)
  62. #define INLINE_SSSE3(flags) CPUEXT_SUFFIX(flags, _INLINE, SSSE3)
  63. #define INLINE_SSE4(flags) CPUEXT_SUFFIX(flags, _INLINE, SSE4)
  64. #define INLINE_SSE42(flags) CPUEXT_SUFFIX(flags, _INLINE, SSE42)
  65. #define INLINE_AVX(flags) CPUEXT_SUFFIX(flags, _INLINE, AVX)
  66. #define INLINE_XOP(flags) CPUEXT_SUFFIX(flags, _INLINE, XOP)
  67. #define INLINE_FMA3(flags) CPUEXT_SUFFIX(flags, _INLINE, FMA3)
  68. #define INLINE_FMA4(flags) CPUEXT_SUFFIX(flags, _INLINE, FMA4)
  69. #define INLINE_AVX2(flags) CPUEXT_SUFFIX(flags, _INLINE, AVX2)
  70. void ff_cpu_cpuid(int index, int *eax, int *ebx, int *ecx, int *edx);
  71. void ff_cpu_xgetbv(int op, int *eax, int *edx);
  72. int ff_cpu_cpuid_test(void);
  73. #endif /* AVUTIL_X86_CPU_H */