/external/clang/lib/Headers/ |
D | cpuid.h | 150 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ argument 151 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 154 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ argument 155 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 159 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ argument 163 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 166 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ argument 170 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 175 unsigned int *__ebx, unsigned int *__ecx, in __get_cpuid() argument 177 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx); in __get_cpuid() [all …]
|
D | intrin.h | 903 __cpuidex(int __info[4], int __level, int __ecx) { in __cpuidex() argument 905 : "a"(__level), "c"(__ecx)); in __cpuidex()
|
/external/llvm-project/clang/lib/Headers/ |
D | cpuid.h | 238 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 239 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 242 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 243 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 247 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 251 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 254 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 258 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 264 unsigned int __eax, __ebx, __ecx, __edx; in __get_cpuid_max() local 286 __cpuid(__leaf, __eax, __ebx, __ecx, __edx); in __get_cpuid_max() [all …]
|
D | intrin.h | 516 int __ecx) { in __cpuidex() argument 519 : "a"(__level), "c"(__ecx)); in __cpuidex()
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/i386/ |
D | MachRegisterStatesI386.h | 28 uint32_t __ecx; member
|
/external/llvm-project/libunwind/src/ |
D | Registers.hpp | 73 uint32_t getECX() const { return _registers.__ecx; } in getECX() 74 void setECX(uint32_t value) { _registers.__ecx = value; } in setECX() 86 unsigned int __ecx; member 136 return _registers.__ecx; in getRegister() 173 _registers.__ecx = value; in setRegister()
|
/external/llvm-project/lldb/source/Plugins/Process/Linux/ |
D | NativeRegisterContextLinux_x86_64.cpp | 30 unsigned int *__ecx, unsigned int *__edx) in get_cpuid_count() argument 37 __cpuid_count(__leaf, __subleaf, *__eax, *__ebx, *__ecx, *__edx); in get_cpuid_count()
|