/external/llvm-project/llvm/test/CodeGen/X86/ |
D | system-intrinsics-xgetbv.ll | 7 ; CHECK: xgetbv 12 ; CHECK64: xgetbv 17 %1 = call i64 @llvm.x86.xgetbv(i32 %in) 21 declare i64 @llvm.x86.xgetbv(i32)
|
/external/webp/src/dsp/ |
D | cpu.c | 74 static WEBP_INLINE uint64_t xgetbv(void) { in xgetbv() function 86 #define xgetbv() _xgetbv(0) macro 88 static WEBP_INLINE uint64_t xgetbv(void) { in xgetbv() function 100 #define xgetbv() 0U // no AVX for older x64 or unrecognized toolchains. macro 165 return (xgetbv() & 0x6) == 0x6; in x86CPUInfo()
|
/external/libvpx/libvpx/vpx_ports/ |
D | x86.h | 113 static INLINE uint64_t xgetbv(void) { in xgetbv() function 125 #define xgetbv() _xgetbv(0) macro 127 static INLINE uint64_t xgetbv(void) { in xgetbv() function 139 #define xgetbv() 0U // no AVX for older x64 or unrecognized toolchains. macro 206 if ((xgetbv() & 0x6) == 0x6) { in x86_simd_caps() 220 if ((xgetbv() & 0xe6) == 0xe6) flags |= HAS_AVX512; in x86_simd_caps()
|
/external/skqp/src/core/ |
D | SkCpu.cpp | 16 static uint64_t xgetbv(uint32_t xcr) { return _xgetbv(xcr); } in xgetbv() function 27 static uint64_t xgetbv(uint32_t xcr) { in xgetbv() function 49 && (xgetbv(0) & (3<<1)) == (3<<1)) { // XMM and YMM state enabled. in read_cpu_features() 59 if ((xgetbv(0) & (7<<5)) == (7<<5)) { // All ZMM state bits enabled too. in read_cpu_features()
|
/external/skia/src/core/ |
D | SkCpu.cpp | 18 static uint64_t xgetbv(uint32_t xcr) { return _xgetbv(xcr); } in xgetbv() function 29 static uint64_t xgetbv(uint32_t xcr) { in xgetbv() function 51 && (xgetbv(0) & (3<<1)) == (3<<1)) { // XMM and YMM state enabled. in read_cpu_features() 62 if ((xgetbv(0) & (7<<5)) == (7<<5)) { // All ZMM state bits enabled too. in read_cpu_features()
|
/external/libaom/libaom/aom_ports/ |
D | x86.h | 121 static INLINE uint64_t xgetbv(void) { in xgetbv() function 133 #define xgetbv() _xgetbv(0) macro 135 static INLINE uint64_t xgetbv(void) { in xgetbv() function 147 #define xgetbv() 0U // no AVX for older x64 or unrecognized toolchains. macro 210 if ((xgetbv() & 0x6) == 0x6) { in x86_simd_caps()
|
/external/llvm-project/llvm/test/MC/X86/ |
D | XSAVE-32.s | 5 xgetbv label
|
D | XSAVE-64.s | 5 xgetbv label
|
D | x86-64.s | 1167 xgetbv // CHECK: xgetbv # encoding: [0x0f,0x01,0xd0] label
|
/external/mesa3d/src/util/ |
D | u_cpu_detect.c | 337 static inline uint64_t xgetbv(void) in xgetbv() function 621 ((xgetbv() & 6) == 6); // XMM & YMM in util_cpu_detect_once() 644 (xgetbv() & (0x7 << 5)) && // OPMASK: upper-256 enabled by OS in util_cpu_detect_once() 645 ((xgetbv() & 6) == 6)) { // XMM/YMM enabled by OS in util_cpu_detect_once()
|
/external/igt-gpu-tools/lib/ |
D | igt_x86.c | 99 #define xgetbv(index,eax,edx) \ macro 129 xgetbv(0, bv_eax, bv_ecx); in igt_x86_features()
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_cpu_detect.c | 253 static inline uint64_t xgetbv(void) in xgetbv() function 371 ((xgetbv() & 6) == 6); // XMM & YMM in util_cpu_detect()
|
/external/cpuinfo/src/x86/ |
D | cpuid.h | 70 static inline uint64_t xgetbv(uint32_t ext_ctrl_reg) { in xgetbv() function
|
D | isa.c | 69 const uint64_t xfeature_enabled_mask = xgetbv(0); in cpuinfo_x86_detect_isa()
|
/external/libjpeg-turbo/simd/x86_64/ |
D | jsimdcpu.asm | 69 xgetbv
|
/external/clang/test/CodeGen/ |
D | ms-inline-asm.c | 586 void xgetbv() { 587 __asm xgetbv
|
/external/llvm-project/clang/test/CodeGen/ |
D | ms-inline-asm.c | 701 void xgetbv() { 702 __asm xgetbv
|
/external/libjpeg-turbo/simd/i386/ |
D | jsimdcpu.asm | 79 xgetbv
|
/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2-dispatch.c | 67 static inline uint64_t xgetbv(uint32_t xcr) in xgetbv() function 124 if( (xgetbv(0) & 6) == 6 ) /* XCR0 */ in get_cpu_features()
|
/external/llvm/test/MC/X86/ |
D | x86-64.s | 1129 xgetbv // CHECK: xgetbv # encoding: [0x0f,0x01,0xd0] label
|
/external/llvm/lib/Target/X86/ |
D | X86InstrSystem.td | 481 def XGETBV : I<0x01, MRM_D0, (outs), (ins), "xgetbv", []>, TB;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrSystem.td | 515 def XGETBV : I<0x01, MRM_D0, (outs), (ins), "xgetbv", []>, TB;
|
D | X86IntrinsicsInfo.h | 319 X86_INTRINSIC_DATA(xgetbv, XGETBV, X86::XGETBV, 0),
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86IntrinsicsInfo.h | 319 X86_INTRINSIC_DATA(xgetbv, XGETBV, X86::XGETBV, 0),
|
D | X86InstrSystem.td | 525 def XGETBV : I<0x01, MRM_D0, (outs), (ins), "xgetbv", []>, PS;
|