~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/i386/cputest.c

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Cpu detection code, extracted from mmx.h ((c)1997-99 by H. Dietz
2
 
   and R. Fisher). Converted to C and improved by Fabrice Bellard */
 
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
 */
3
22
 
4
23
#include <stdlib.h>
5
24
#include "../dsputil.h"
6
25
 
 
26
#undef printf
 
27
 
 
28
#ifdef ARCH_X86_64
 
29
#  define REG_b "rbx"
 
30
#  define REG_S "rsi"
 
31
#else
 
32
#  define REG_b "ebx"
 
33
#  define REG_S "esi"
 
34
#endif
 
35
 
7
36
/* ebx saving is necessary for PIC. gcc seems unable to see it alone */
8
37
#define cpuid(index,eax,ebx,ecx,edx)\
9
38
    __asm __volatile\
10
 
        ("movl %%ebx, %%esi\n\t"\
 
39
        ("mov %%"REG_b", %%"REG_S"\n\t"\
11
40
         "cpuid\n\t"\
12
 
         "xchgl %%ebx, %%esi"\
 
41
         "xchg %%"REG_b", %%"REG_S\
13
42
         : "=a" (eax), "=S" (ebx),\
14
43
           "=c" (ecx), "=d" (edx)\
15
44
         : "0" (index));
17
46
/* Function to test if multimedia instructions are supported...  */
18
47
int mm_support(void)
19
48
{
20
 
    int rval;
 
49
    int rval = 0;
21
50
    int eax, ebx, ecx, edx;
22
 
    
 
51
    int max_std_level, max_ext_level, std_caps=0, ext_caps=0;
 
52
    long a, c;
 
53
 
23
54
    __asm__ __volatile__ (
24
55
                          /* See if CPUID instruction is supported ... */
25
56
                          /* ... Get copies of EFLAGS into eax and ecx */
26
57
                          "pushf\n\t"
27
 
                          "popl %0\n\t"
28
 
                          "movl %0, %1\n\t"
29
 
                          
 
58
                          "pop %0\n\t"
 
59
                          "mov %0, %1\n\t"
 
60
 
30
61
                          /* ... Toggle the ID bit in one copy and store */
31
62
                          /*     to the EFLAGS reg */
32
 
                          "xorl $0x200000, %0\n\t"
 
63
                          "xor $0x200000, %0\n\t"
33
64
                          "push %0\n\t"
34
65
                          "popf\n\t"
35
 
                          
 
66
 
36
67
                          /* ... Get the (hopefully modified) EFLAGS */
37
68
                          "pushf\n\t"
38
 
                          "popl %0\n\t"
39
 
                          : "=a" (eax), "=c" (ecx)
 
69
                          "pop %0\n\t"
 
70
                          : "=a" (a), "=c" (c)
40
71
                          :
41
 
                          : "cc" 
 
72
                          : "cc"
42
73
                          );
43
 
    
44
 
    if (eax == ecx)
 
74
 
 
75
    if (a == c)
45
76
        return 0; /* CPUID not supported */
46
 
    
47
 
    cpuid(0, eax, ebx, ecx, edx);
48
 
 
49
 
    if (ebx == 0x756e6547 &&
50
 
        edx == 0x49656e69 &&
51
 
        ecx == 0x6c65746e) {
52
 
        
53
 
        /* intel */
54
 
    inteltest:
55
 
        cpuid(1, eax, ebx, ecx, edx);
56
 
        if ((edx & 0x00800000) == 0)
57
 
            return 0;
58
 
        rval = MM_MMX;
59
 
        if (edx & 0x02000000) 
 
77
 
 
78
    cpuid(0, max_std_level, ebx, ecx, edx);
 
79
 
 
80
    if(max_std_level >= 1){
 
81
        cpuid(1, eax, ebx, ecx, std_caps);
 
82
        if (std_caps & (1<<23))
 
83
            rval |= MM_MMX;
 
84
        if (std_caps & (1<<25))
60
85
            rval |= MM_MMXEXT | MM_SSE;
61
 
        if (edx & 0x04000000) 
 
86
        if (std_caps & (1<<26))
62
87
            rval |= MM_SSE2;
63
 
        return rval;
64
 
    } else if (ebx == 0x68747541 &&
65
 
               edx == 0x69746e65 &&
66
 
               ecx == 0x444d4163) {
67
 
        /* AMD */
68
 
        cpuid(0x80000000, eax, ebx, ecx, edx);
69
 
        if ((unsigned)eax < 0x80000001)
70
 
            goto inteltest;
71
 
        cpuid(0x80000001, eax, ebx, ecx, edx);
72
 
        if ((edx & 0x00800000) == 0)
73
 
            return 0;
74
 
        rval = MM_MMX;
75
 
        if (edx & 0x80000000)
 
88
        if (ecx & 1)
 
89
            rval |= MM_SSE3;
 
90
        if (ecx & 0x00000200 )
 
91
            rval |= MM_SSSE3;
 
92
    }
 
93
 
 
94
    cpuid(0x80000000, max_ext_level, ebx, ecx, edx);
 
95
 
 
96
    if(max_ext_level >= 0x80000001){
 
97
        cpuid(0x80000001, eax, ebx, ecx, ext_caps);
 
98
        if (ext_caps & (1<<31))
76
99
            rval |= MM_3DNOW;
77
 
        if (edx & 0x00400000)
78
 
            rval |= MM_MMXEXT;
79
 
        return rval;
80
 
    } else if (ebx == 0x746e6543 &&
81
 
               edx == 0x48727561 &&
82
 
               ecx == 0x736c7561) {  /*  "CentaurHauls" */
83
 
        /* VIA C3 */
84
 
        cpuid(0x80000000, eax, ebx, ecx, edx);
85
 
        if ((unsigned)eax < 0x80000001)
86
 
            goto inteltest;     
87
 
        cpuid(0x80000001, eax, ebx, ecx, edx);
88
 
        rval = 0;      
89
 
        if( edx & ( 1 << 31) )
90
 
          rval |= MM_3DNOW;
91
 
        if( edx & ( 1 << 23) )
92
 
          rval |= MM_MMX;
93
 
        if( edx & ( 1 << 24) )
94
 
          rval |= MM_MMXEXT;
95
 
        return rval;
96
 
    } else if (ebx == 0x69727943 &&
97
 
               edx == 0x736e4978 &&
98
 
               ecx == 0x64616574) {
99
 
        /* Cyrix Section */
100
 
        /* See if extended CPUID level 80000001 is supported */
101
 
        /* The value of CPUID/80000001 for the 6x86MX is undefined
102
 
           according to the Cyrix CPU Detection Guide (Preliminary
103
 
           Rev. 1.01 table 1), so we'll check the value of eax for
104
 
           CPUID/0 to see if standard CPUID level 2 is supported.
105
 
           According to the table, the only CPU which supports level
106
 
           2 is also the only one which supports extended CPUID levels.
107
 
        */
108
 
        if (eax != 2) 
109
 
            goto inteltest;
110
 
        cpuid(0x80000001, eax, ebx, ecx, edx);
111
 
        if ((eax & 0x00800000) == 0)
112
 
            return 0;
113
 
        rval = MM_MMX;
114
 
        if (eax & 0x01000000)
115
 
            rval |= MM_MMXEXT;
116
 
        return rval;
117
 
    } else {
118
 
        return 0;
 
100
        if (ext_caps & (1<<30))
 
101
            rval |= MM_3DNOWEXT;
 
102
        if (ext_caps & (1<<23))
 
103
            rval |= MM_MMX;
 
104
        if (ext_caps & (1<<22))
 
105
            rval |= MM_MMXEXT;
119
106
    }
 
107
 
 
108
#if 0
 
109
    av_log(NULL, AV_LOG_DEBUG, "%s%s%s%s%s%s%s%s\n",
 
110
        (rval&MM_MMX) ? "MMX ":"",
 
111
        (rval&MM_MMXEXT) ? "MMX2 ":"",
 
112
        (rval&MM_SSE) ? "SSE ":"",
 
113
        (rval&MM_SSE2) ? "SSE2 ":"",
 
114
        (rval&MM_SSE3) ? "SSE3 ":"",
 
115
        (rval&MM_SSSE3) ? "SSSE3 ":"",
 
116
        (rval&MM_3DNOW) ? "3DNow ":"",
 
117
        (rval&MM_3DNOWEXT) ? "3DNowExt ":"");
 
118
#endif
 
119
    return rval;
120
120
}
121
121
 
122
122
#ifdef __TEST__
124
124
{
125
125
  int mm_flags;
126
126
  mm_flags = mm_support();
127
 
  printf("mm_support = 0x%08u\n",mm_flags);
 
127
  printf("mm_support = 0x%08X\n",mm_flags);
128
128
  return 0;
129
129
}
130
130
#endif