Improved vp8_rd_pick_intra_mbuv_mode
[aom.git] / vpx_ports / arm_cpudetect.c
blob4109924cf3ad2f8ee1ce97031d092184fe56f749
1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
11 #include <stdlib.h>
12 #include <string.h>
13 #include "arm.h"
15 static int arm_cpu_env_flags(int *flags)
17 char *env;
18 env = getenv("VPX_SIMD_CAPS");
19 if (env && *env)
21 *flags = (int)strtol(env, NULL, 0);
22 return 0;
24 *flags = 0;
25 return -1;
28 static int arm_cpu_env_mask(void)
30 char *env;
31 env = getenv("VPX_SIMD_CAPS_MASK");
32 return env && *env ? (int)strtol(env, NULL, 0) : ~0;
36 #if defined(_MSC_VER)
37 /*For GetExceptionCode() and EXCEPTION_ILLEGAL_INSTRUCTION.*/
38 #define WIN32_LEAN_AND_MEAN
39 #define WIN32_EXTRA_LEAN
40 #include <windows.h>
42 int arm_cpu_caps(void)
44 int flags;
45 int mask;
46 if (!arm_cpu_env_flags(&flags))
48 return flags;
50 mask = arm_cpu_env_mask();
51 /* MSVC has no inline __asm support for ARM, but it does let you __emit
52 * instructions via their assembled hex code.
53 * All of these instructions should be essentially nops.
55 #if defined(HAVE_ARMV5TE)
56 if (mask & HAS_EDSP)
58 __try
60 /*PLD [r13]*/
61 __emit(0xF5DDF000);
62 flags |= HAS_EDSP;
64 __except(GetExceptionCode() == EXCEPTION_ILLEGAL_INSTRUCTION)
66 /*Ignore exception.*/
69 #if defined(HAVE_ARMV6)
70 if (mask & HAS_MEDIA)
71 __try
73 /*SHADD8 r3,r3,r3*/
74 __emit(0xE6333F93);
75 flags |= HAS_MEDIA;
77 __except(GetExceptionCode() == EXCEPTION_ILLEGAL_INSTRUCTION)
79 /*Ignore exception.*/
82 #if defined(HAVE_ARMV7)
83 if (mask & HAS_NEON)
85 __try
87 /*VORR q0,q0,q0*/
88 __emit(0xF2200150);
89 flags |= HAS_NEON;
91 __except(GetExceptionCode() == EXCEPTION_ILLEGAL_INSTRUCTION)
93 /*Ignore exception.*/
96 #endif
97 #endif
98 #endif
99 return flags & mask;
102 #elif defined(__linux__)
103 #include <stdio.h>
105 int arm_cpu_caps(void)
107 FILE *fin;
108 int flags;
109 int mask;
110 if (!arm_cpu_env_flags(&flags))
112 return flags;
114 mask = arm_cpu_env_mask();
115 /* Reading /proc/self/auxv would be easier, but that doesn't work reliably
116 * on Android.
117 * This also means that detection will fail in Scratchbox.
119 fin = fopen("/proc/cpuinfo","r");
120 if(fin != NULL)
122 /* 512 should be enough for anybody (it's even enough for all the flags
123 * that x86 has accumulated... so far).
125 char buf[512];
126 while (fgets(buf, 511, fin) != NULL)
128 #if defined(HAVE_ARMV5TE) || defined(HAVE_ARMV7)
129 if (memcmp(buf, "Features", 8) == 0)
131 char *p;
132 #if defined(HAVE_ARMV5TE)
133 p=strstr(buf, " edsp");
134 if (p != NULL && (p[5] == ' ' || p[5] == '\n'))
136 flags |= HAS_EDSP;
138 #if defined(HAVE_ARMV7)
139 p = strstr(buf, " neon");
140 if (p != NULL && (p[5] == ' ' || p[5] == '\n'))
142 flags |= HAS_NEON;
144 #endif
145 #endif
147 #endif
148 #if defined(HAVE_ARMV6)
149 if (memcmp(buf, "CPU architecture:",17) == 0){
150 int version;
151 version = atoi(buf+17);
152 if (version >= 6)
154 flags |= HAS_MEDIA;
157 #endif
159 fclose(fin);
161 return flags & mask;
164 #elif !CONFIG_RUNTIME_CPU_DETECT
166 int arm_cpu_caps(void)
168 int flags;
169 int mask;
170 if (!arm_cpu_env_flags(&flags))
172 return flags;
174 mask = arm_cpu_env_mask();
175 #if defined(HAVE_ARMV5TE)
176 flags |= HAS_EDSP;
177 #endif
178 #if defined(HAVE_ARMV6)
179 flags |= HAS_MEDIA;
180 #endif
181 #if defined(HAVE_ARMV7)
182 flags |= HAS_NEON;
183 #endif
184 return flags & mask;
187 #else
188 #error "--enable-runtime-cpu-detect selected, but no CPU detection method " \
189 "available for your platform. Reconfigure without --enable-runtime-cpu-detect."
190 #endif