Home
last modified time | relevance | path

Searched refs:__leaf (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang/lib/Headers/
H A Dcpuid.h240 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument
242 : "0"(__leaf))
246 : "0"(__leaf), "2"(__count))
249 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument
254 : "0"(__leaf))
261 : "0"(__leaf), "2"(__count))
288 __cpuid(__leaf, __eax, __ebx, __ecx, __edx); in __get_cpuid_max()
300 if (__max_leaf == 0 || __max_leaf < __leaf) in __get_cpuid()
303 __cpuid(__leaf, *__eax, *__ebx, *__ecx, *__edx); in __get_cpuid()
307 static __inline int __get_cpuid_count (unsigned int __leaf, in __get_cpuid_count() argument
[all …]
H A Dsgxintrin.h24 _enclu_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _enclu_u32() argument
29 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _enclu_u32()
35 _encls_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _encls_u32() argument
40 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _encls_u32()
46 _enclv_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _enclv_u32() argument
51 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _enclv_u32()
H A Dpconfigintrin.h26 _pconfig_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _pconfig_u32() argument
31 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _pconfig_u32()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux_x86_64.cpp27 static inline int get_cpuid_count(unsigned int __leaf, in get_cpuid_count() argument
32 unsigned int __max_leaf = __get_cpuid_max(__leaf & 0x80000000, nullptr); in get_cpuid_count()
34 if (__max_leaf == 0 || __max_leaf < __leaf) in get_cpuid_count()
37 __cpuid_count(__leaf, __subleaf, *__eax, *__ebx, *__ecx, *__edx); in get_cpuid_count()