cpu.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * CPU detection code, extracted from mmx.h
  3. * (c)1997-99 by H. Dietz and R. Fisher
  4. * Converted to C and improved by Fabrice Bellard.
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include "libavutil/x86_cpu.h"
  25. #include "libavutil/cpu.h"
  26. /* ebx saving is necessary for PIC. gcc seems unable to see it alone */
  27. #define cpuid(index,eax,ebx,ecx,edx)\
  28. __asm__ volatile\
  29. ("mov %%"REG_b", %%"REG_S"\n\t"\
  30. "cpuid\n\t"\
  31. "xchg %%"REG_b", %%"REG_S\
  32. : "=a" (eax), "=S" (ebx),\
  33. "=c" (ecx), "=d" (edx)\
  34. : "0" (index));
  35. #define xgetbv(index,eax,edx) \
  36. __asm__ (".byte 0x0f, 0x01, 0xd0" : "=a"(eax), "=d"(edx) : "c" (index))
  37. /* Function to test if multimedia instructions are supported... */
  38. int ff_get_cpu_flags_x86(void)
  39. {
  40. int rval = 0;
  41. int eax, ebx, ecx, edx;
  42. int max_std_level, max_ext_level, std_caps=0, ext_caps=0;
  43. int family=0, model=0;
  44. union { int i[3]; char c[12]; } vendor;
  45. #if ARCH_X86_32
  46. x86_reg a, c;
  47. __asm__ volatile (
  48. /* See if CPUID instruction is supported ... */
  49. /* ... Get copies of EFLAGS into eax and ecx */
  50. "pushfl\n\t"
  51. "pop %0\n\t"
  52. "mov %0, %1\n\t"
  53. /* ... Toggle the ID bit in one copy and store */
  54. /* to the EFLAGS reg */
  55. "xor $0x200000, %0\n\t"
  56. "push %0\n\t"
  57. "popfl\n\t"
  58. /* ... Get the (hopefully modified) EFLAGS */
  59. "pushfl\n\t"
  60. "pop %0\n\t"
  61. : "=a" (a), "=c" (c)
  62. :
  63. : "cc"
  64. );
  65. if (a == c)
  66. return 0; /* CPUID not supported */
  67. #endif
  68. cpuid(0, max_std_level, ebx, ecx, edx);
  69. vendor.i[0] = ebx;
  70. vendor.i[1] = edx;
  71. vendor.i[2] = ecx;
  72. if(max_std_level >= 1){
  73. cpuid(1, eax, ebx, ecx, std_caps);
  74. family = ((eax>>8)&0xf) + ((eax>>20)&0xff);
  75. model = ((eax>>4)&0xf) + ((eax>>12)&0xf0);
  76. if (std_caps & (1<<15))
  77. rval |= AV_CPU_FLAG_CMOV;
  78. if (std_caps & (1<<23))
  79. rval |= AV_CPU_FLAG_MMX;
  80. if (std_caps & (1<<25))
  81. rval |= AV_CPU_FLAG_MMX2
  82. #if HAVE_SSE
  83. | AV_CPU_FLAG_SSE;
  84. if (std_caps & (1<<26))
  85. rval |= AV_CPU_FLAG_SSE2;
  86. if (ecx & 1)
  87. rval |= AV_CPU_FLAG_SSE3;
  88. if (ecx & 0x00000200 )
  89. rval |= AV_CPU_FLAG_SSSE3;
  90. if (ecx & 0x00080000 )
  91. rval |= AV_CPU_FLAG_SSE4;
  92. if (ecx & 0x00100000 )
  93. rval |= AV_CPU_FLAG_SSE42;
  94. #if HAVE_AVX
  95. /* Check OXSAVE and AVX bits */
  96. if ((ecx & 0x18000000) == 0x18000000) {
  97. /* Check for OS support */
  98. xgetbv(0, eax, edx);
  99. if ((eax & 0x6) == 0x6)
  100. rval |= AV_CPU_FLAG_AVX;
  101. }
  102. #endif
  103. #endif
  104. ;
  105. }
  106. cpuid(0x80000000, max_ext_level, ebx, ecx, edx);
  107. if(max_ext_level >= 0x80000001){
  108. cpuid(0x80000001, eax, ebx, ecx, ext_caps);
  109. if (ext_caps & (1U<<31))
  110. rval |= AV_CPU_FLAG_3DNOW;
  111. if (ext_caps & (1<<30))
  112. rval |= AV_CPU_FLAG_3DNOWEXT;
  113. if (ext_caps & (1<<23))
  114. rval |= AV_CPU_FLAG_MMX;
  115. if (ext_caps & (1<<22))
  116. rval |= AV_CPU_FLAG_MMX2;
  117. /* Allow for selectively disabling SSE2 functions on AMD processors
  118. with SSE2 support but not SSE4a. This includes Athlon64, some
  119. Opteron, and some Sempron processors. MMX, SSE, or 3DNow! are faster
  120. than SSE2 often enough to utilize this special-case flag.
  121. AV_CPU_FLAG_SSE2 and AV_CPU_FLAG_SSE2SLOW are both set in this case
  122. so that SSE2 is used unless explicitly disabled by checking
  123. AV_CPU_FLAG_SSE2SLOW. */
  124. if (!strncmp(vendor.c, "AuthenticAMD", 12) &&
  125. rval & AV_CPU_FLAG_SSE2 && !(ecx & 0x00000040)) {
  126. rval |= AV_CPU_FLAG_SSE2SLOW;
  127. }
  128. /* XOP and FMA4 use the AVX instruction coding scheme, so they can't be
  129. * used unless the OS has AVX support. */
  130. if (rval & AV_CPU_FLAG_AVX) {
  131. if (ecx & 0x00000800)
  132. rval |= AV_CPU_FLAG_XOP;
  133. if (ecx & 0x00010000)
  134. rval |= AV_CPU_FLAG_FMA4;
  135. }
  136. }
  137. if (!strncmp(vendor.c, "GenuineIntel", 12)) {
  138. if (family == 6 && (model == 9 || model == 13 || model == 14)) {
  139. /* 6/9 (pentium-m "banias"), 6/13 (pentium-m "dothan"), and 6/14 (core1 "yonah")
  140. * theoretically support sse2, but it's usually slower than mmx,
  141. * so let's just pretend they don't. AV_CPU_FLAG_SSE2 is disabled and
  142. * AV_CPU_FLAG_SSE2SLOW is enabled so that SSE2 is not used unless
  143. * explicitly enabled by checking AV_CPU_FLAG_SSE2SLOW. The same
  144. * situation applies for AV_CPU_FLAG_SSE3 and AV_CPU_FLAG_SSE3SLOW. */
  145. if (rval & AV_CPU_FLAG_SSE2) rval ^= AV_CPU_FLAG_SSE2SLOW|AV_CPU_FLAG_SSE2;
  146. if (rval & AV_CPU_FLAG_SSE3) rval ^= AV_CPU_FLAG_SSE3SLOW|AV_CPU_FLAG_SSE3;
  147. }
  148. /* The Atom processor has SSSE3 support, which is useful in many cases,
  149. * but sometimes the SSSE3 version is slower than the SSE2 equivalent
  150. * on the Atom, but is generally faster on other processors supporting
  151. * SSSE3. This flag allows for selectively disabling certain SSSE3
  152. * functions on the Atom. */
  153. if (family == 6 && model == 28)
  154. rval |= AV_CPU_FLAG_ATOM;
  155. }
  156. return rval;
  157. }