Searched refs:__ecx (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | cpuid.h | 260 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 261 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 264 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 265 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 269 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 273 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 276 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 280 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 287 unsigned int __eax, __ebx, __ecx, __edx; in __get_cpuid_max() local 309 __cpuid(__leaf, __eax, __ebx, __ecx, __edx); in __get_cpuid_max() [all …]
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | Registers.hpp | 87 uint32_t getECX() const { return _registers.__ecx; } in getECX() 88 void setECX(uint32_t value) { _registers.__ecx = value; } in setECX() 100 unsigned int __ecx; member 150 return _registers.__ecx; in getRegister() 187 _registers.__ecx = value; in setRegister()
|