Searched refs:edx (Results 1 – 5 of 5) sorted by relevance
/tools/power/x86/x86_energy_perf_policy/ |
D | x86_energy_perf_policy.c | 139 unsigned int eax, ebx, ecx, edx, max_level; in validate_cpuid() local 142 eax = ebx = ecx = edx = 0; in validate_cpuid() 145 "=d" (edx) : "a" (0)); in validate_cpuid() 147 if (ebx != 0x756e6547 || edx != 0x49656e69 || ecx != 0x6c65746e) { in validate_cpuid() 150 (char *)&ebx, (char *)&edx, (char *)&ecx); in validate_cpuid() 154 asm("cpuid" : "=a" (fms), "=c" (ecx), "=d" (edx) : "a" (1) : "ebx"); in validate_cpuid() 166 if (!(edx & (1 << 5))) { in validate_cpuid() 176 asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (6)); in validate_cpuid()
|
/tools/power/cpupower/debug/i386/ |
D | intel_gsic.c | 27 r.edx = 0x47534943; in main() 47 printf("\tflags = 0x%.8x\n", r.edx); in main() 67 printf("edx = 0x%.8x\n", r.edx); in main()
|
/tools/power/cpupower/utils/helpers/ |
D | cpuid.c | 26 unsigned int eax, ebx, ecx, edx; \ 27 __cpuid(op, eax, ebx, ecx, edx); \ 33 cpuid_func(edx);
|
/tools/power/x86/turbostat/ |
D | turbostat.c | 1996 unsigned int eax, ebx, ecx, edx, max_level; in check_cpuid() local 1999 eax = ebx = ecx = edx = 0; in check_cpuid() 2001 __get_cpuid(0, &max_level, &ebx, &ecx, &edx); in check_cpuid() 2003 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e) in check_cpuid() 2008 (char *)&ebx, (char *)&edx, (char *)&ecx); in check_cpuid() 2010 __get_cpuid(1, &fms, &ebx, &ecx, &edx); in check_cpuid() 2021 if (!(edx & (1 << 5))) in check_cpuid() 2029 ebx = ecx = edx = 0; in check_cpuid() 2030 __get_cpuid(0x80000000, &max_level, &ebx, &ecx, &edx); in check_cpuid() 2039 __get_cpuid(0x80000007, &eax, &ebx, &ecx, &edx); in check_cpuid() [all …]
|
/tools/perf/arch/x86/tests/ |
D | regs_load.S | 70 movl %edx, DX(%edi)
|