1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#include "arch/probe.h"
/* flags we export */
int ceph_arch_intel_sse42 = 0;
#ifdef __x86_64__
/* intel cpu? */
static void do_cpuid(unsigned int *eax, unsigned int *ebx, unsigned int *ecx,
unsigned int *edx)
{
int id = *eax;
asm("movl %4, %%eax;"
"cpuid;"
"movl %%eax, %0;"
"movl %%ebx, %1;"
"movl %%ecx, %2;"
"movl %%edx, %3;"
: "=r" (*eax), "=r" (*ebx), "=r" (*ecx), "=r" (*edx)
: "r" (id)
: "eax", "ebx", "ecx", "edx");
}
int ceph_arch_intel_probe(void)
{
/* i know how to check this on x86_64... */
unsigned int eax = 1, ebx, ecx, edx;
do_cpuid(&eax, &ebx, &ecx, &edx);
if ((ecx & (1 << 20)) != 0) {
ceph_arch_intel_sse42 = 1;
}
return 0;
}
#else // __x86_64__
int ceph_arch_intel_probe(void)
{
/* no features */
return 0;
}
#endif // __x86_64__
|