Home
last modified time | relevance | path

Searched refs:eax (Results 1 – 6 of 6) sorted by relevance

/tools/power/cpupower/debug/i386/
Dintel_gsic.c26 r.eax = 0x0000E980; in main()
35 if (r.eax == 0x47534943) { in main()
38 (r.eax >> 24) & 0xff, in main()
39 (r.eax >> 16) & 0xff, in main()
40 (r.eax >> 8) & 0xff, in main()
41 (r.eax) & 0xff); in main()
64 printf("eax = 0x%.8x\n", r.eax); in main()
/tools/perf/arch/x86/tests/
Dregs_load.S67 movl %eax, AX(%edi)
72 pop %eax
73 movl %eax, DI(%edi)
76 leal 4(%esp), %eax /* exclude this call. */
77 movl %eax, SP(%edi)
79 movl 0(%esp), %eax
80 movl %eax, IP(%edi)
/tools/power/cpupower/utils/helpers/
Dcpuid.c26 unsigned int eax, ebx, ecx, edx; \
27 __cpuid(op, eax, ebx, ecx, edx); \
30 cpuid_func(eax);
/tools/power/x86/x86_energy_perf_policy/
Dx86_energy_perf_policy.c139 unsigned int eax, ebx, ecx, edx, max_level; in validate_cpuid() local
142 eax = ebx = ecx = edx = 0; in validate_cpuid()
176 asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (6)); in validate_cpuid()
/tools/perf/Documentation/
Dexamples.txt203 0.00 : 31a2e95602: b8 38 00 00 00 mov $0x38,%eax
207 0.00 : 31a2e95615: 85 c0 test %eax,%eax
/tools/power/x86/turbostat/
Dturbostat.c1996 unsigned int eax, ebx, ecx, edx, max_level; in check_cpuid() local
1999 eax = ebx = ecx = edx = 0; in check_cpuid()
2039 __get_cpuid(0x80000007, &eax, &ebx, &ecx, &edx); in check_cpuid()
2050 __get_cpuid(0x6, &eax, &ebx, &ecx, &edx); in check_cpuid()
2052 do_dts = eax & (1 << 0); in check_cpuid()
2053 do_ptm = eax & (1 << 6); in check_cpuid()