/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ |
xsave.s | 1 # Check xsave/xrstor 5 xsave (%ebx) 12 xsave [ecx]
|
x86-64-xsave.s | 1 # Check 64bit xsave/xrstor 7 xsave (%rax) 8 xsave (%r8) 9 xsave (%r8, %rax) 10 xsave (%rax, %r8) 11 xsave (%r8, %r15) 38 xsave [rax] 39 xsave [r8] 40 xsave [r8+rax*1] 41 xsave [rax+r8*1 [all...] |
xsave-intel.d | 1 #source: xsave.s 4 #name: i386 xsave (Intel mode) 12 [ ]*[a-f0-9]+: 0f ae 23 xsave \[ebx\] 17 [ ]*[a-f0-9]+: 0f ae 21 xsave \[ecx\]
|
xsave.d | 2 #name: i386 xsave 10 [ ]*[a-f0-9]+: 0f ae 23 xsave \(%ebx\) 15 [ ]*[a-f0-9]+: 0f ae 21 xsave \(%ecx\)
|
x86-64-xsave-intel.d | 1 #source: x86-64-xsave.s 4 #name: x86-64 xsave (Intel mode) 13 [ ]*[a-f0-9]+: 0f ae 20 xsave \[rax\] 14 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \[r8\] 15 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \[r8\+rax\*1\] 16 [ ]*[a-f0-9]+: 42 0f ae 24 00 xsave \[rax\+r8\*1\] 17 [ ]*[a-f0-9]+: 43 0f ae 24 38 xsave \[r8\+r15\*1\] 41 [ ]*[a-f0-9]+: 0f ae 20 xsave \[rax\] 42 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \[r8\] 43 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \[r8\+rax\*1\ [all...] |
x86-64-xsave.d | 2 #name: x86-64 xsave 11 [ ]*[a-f0-9]+: 0f ae 20 xsave \(%rax\) 12 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \(%r8\) 13 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \(%r8,%rax,1\) 14 [ ]*[a-f0-9]+: 42 0f ae 24 00 xsave \(%rax,%r8,1\) 15 [ ]*[a-f0-9]+: 43 0f ae 24 38 xsave \(%r8,%r15,1\) 39 [ ]*[a-f0-9]+: 0f ae 20 xsave \(%rax\) 40 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \(%r8\) 41 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \(%r8,%rax,1\) 42 [ ]*[a-f0-9]+: 42 0f ae 24 00 xsave \(%rax,%r8,1\ [all...] |
/external/valgrind/memcheck/tests/amd64/ |
xsave-avx.vgtest | 1 prog: xsave-avx 2 prereq: test -x xsave-avx && ../../../tests/x86_amd64_features amd64-avx
|
Makefile.am | 37 xsave-avx.vgtest xsave-avx.stdout.exp xsave-avx.stderr.exp 50 check_PROGRAMS += sh-mem-vec256 xsave-avx
|
xsave-avx.c | 71 "movq %0, %%rax; xorq %%rdx, %%rdx; xsave (%1)" 175 //fprintf(stderr, "cpuid(1).ecx[26=xsave] = %u\n", (ecx >> 26) & 1); 191 "This program must be run on a CPU that supports AVX and XSAVE.\n"); 198 /* Testing XSAVE: 201 and AVX registers with some values, do XSAVE to dump it, and 213 "------------------ XSAVE, rfbm = %u ------------------\n", rfbm); 224 /* Testing XRSTOR is more complex than testing XSAVE, because the 231 from the buffer, them dump all components with XSAVE in a new 246 /* Ditto for the XSAVE header area. Also set XSTATE_BV. */ 271 it with XSAVE. This gives us an image we can tr [all...] |
/external/clang/test/CodeGen/ |
x86_32-xsave.c | 1 // RUN: %clang_cc1 %s -DTEST_XSAVE -O0 -triple=i686-unknown-unknown -target-feature +xsave -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVE 2 // RUN: %clang_cc1 %s -DTEST_XSAVE -O0 -triple=i686-unknown-unknown -target-feature +xsave -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVE 4 // RUN: %clang_cc1 %s -DTEST_XSAVEOPT -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsaveopt -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEOPT 5 // RUN: %clang_cc1 %s -DTEST_XSAVEOPT -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsaveopt -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEOPT 7 // RUN: %clang_cc1 %s -DTEST_XSAVEC -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsavec -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEC 8 // RUN: %clang_cc1 %s -DTEST_XSAVEC -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsavec -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEC 10 // RUN: %clang_cc1 %s -DTEST_XSAVES -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsaves -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVES 11 // RUN: %clang_cc1 %s -DTEST_XSAVES -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsaves -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSA (…) [all...] |
x86_64-xsave.c | 1 // RUN: %clang_cc1 %s -DTEST_XSAVE -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVE 2 // RUN: %clang_cc1 %s -DTEST_XSAVE -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVE 4 // RUN: %clang_cc1 %s -DTEST_XSAVEOPT -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -target-feature +xsaveopt -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEOPT 5 // RUN: %clang_cc1 %s -DTEST_XSAVEOPT -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -target-feature +xsaveopt -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEOPT 7 // RUN: %clang_cc1 %s -DTEST_XSAVEC -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -target-feature +xsavec -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEC 8 // RUN: %clang_cc1 %s -DTEST_XSAVEC -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -target-feature +xsavec -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVEC 10 // RUN: %clang_cc1 %s -DTEST_XSAVES -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -target-feature +xsaves -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSAVES 11 // RUN: %clang_cc1 %s -DTEST_XSAVES -O0 -triple=x86_64-unknown-unknown -target-feature +xsave -target-feature +xsaves -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s --check-prefix=XSA (…) [all...] |
attr-target-x86.c | 38 // CHECK: #1 = {{.*}}"target-cpu"="ivybridge" "target-features"="+aes,+avx,+cx16,+f16c,+fsgsbase,+fxsr,+mmx,+pclmul,+popcnt,+rdrnd,+sse,+sse2,+sse3,+sse4.1,+sse4.2,+ssse3,+x87,+xsave,+xsaveopt" 39 // CHECK: #2 = {{.*}}"target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+x87,-aes,-avx,-avx2,-avx512bw,-avx512cd,-avx512dq,-avx512er,-avx512f,-avx512ifma,-avx512pf,-avx512vbmi,-avx512vl,-f16c,-fma,-fma4,-pclmul,-sha,-sse2,-sse3,-sse4.1,-sse4.2,-sse4a,-ssse3,-xop,-xsave,-xsaveopt" 41 // CHECK: #4 = {{.*}}"target-cpu"="ivybridge" "target-features"="+avx,+cx16,+f16c,+fsgsbase,+fxsr,+mmx,+pclmul,+popcnt,+rdrnd,+sse,+sse2,+sse3,+sse4.1,+sse4.2,+ssse3,+x87,+xsave,+xsaveopt,-aes"
|
/external/llvm/test/CodeGen/X86/ |
system-intrinsics-xsave.ll | 1 ; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+xsave | FileCheck %s 8 ; CHECK: xsave (%ecx) 9 call void @llvm.x86.xsave(i8* %ptr, i32 %hi, i32 %lo) 12 declare void @llvm.x86.xsave(i8*, i32, i32)
|
system-intrinsics-64-xsave.ll | 1 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+xsave | FileCheck %s 7 ; CHECK: xsave (%rdi) 8 call void @llvm.x86.xsave(i8* %ptr, i32 %hi, i32 %lo) 11 declare void @llvm.x86.xsave(i8*, i32, i32)
|
system-intrinsics-xsavec.ll | 1 ; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+xsave,+xsavec | FileCheck %s
|
system-intrinsics-xsaveopt.ll | 1 ; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+xsave,+xsaveopt | FileCheck %s
|
system-intrinsics-64-xsavec.ll | 1 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+xsave,+xsavec | FileCheck %s
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/ |
x86-64-xsave-intel.d | 1 #source: ../x86-64-xsave.s 4 #name: x86-64 (ILP32) xsave (Intel mode) 13 [ ]*[a-f0-9]+: 0f ae 20 xsave \[rax\] 14 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \[r8\] 15 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \[r8\+rax\*1\] 16 [ ]*[a-f0-9]+: 42 0f ae 24 00 xsave \[rax\+r8\*1\] 17 [ ]*[a-f0-9]+: 43 0f ae 24 38 xsave \[r8\+r15\*1\] 41 [ ]*[a-f0-9]+: 0f ae 20 xsave \[rax\] 42 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \[r8\] 43 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \[r8\+rax\*1\ [all...] |
x86-64-xsave.d | 1 #source: ../x86-64-xsave.s 3 #name: x86-64 (ILP32) xsave 12 [ ]*[a-f0-9]+: 0f ae 20 xsave \(%rax\) 13 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \(%r8\) 14 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \(%r8,%rax,1\) 15 [ ]*[a-f0-9]+: 42 0f ae 24 00 xsave \(%rax,%r8,1\) 16 [ ]*[a-f0-9]+: 43 0f ae 24 38 xsave \(%r8,%r15,1\) 40 [ ]*[a-f0-9]+: 0f ae 20 xsave \(%rax\) 41 [ ]*[a-f0-9]+: 41 0f ae 20 xsave \(%r8\) 42 [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \(%r8,%rax,1\ [all...] |
/external/toolchain-utils/crosperf/test_cache/test_input/ |
machine.txt | 1 processor : 0vendor_id : GenuineIntelcpu family : 6model : 42model name : Intel(R) Celeron(R) CPU 867 @ 1.30GHzstepping : 7microcode : 0x25cache size : 2048 KBphysical id : 0siblings : 2core id : 0cpu cores : 2apicid : 0initial apicid : 0fpu : yesfpu_exception : yescpuid level : 13wp : yesflags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpidclflush size : 64cache_alignment : 64address sizes : 36 bits physical, 48 bits virtualpower management:processor : 1vendor_id : GenuineIntelcpu family : 6model : 42model name : Intel(R) Celeron(R) CPU 867 @ 1.30GHzstepping : 7microcode : 0x25cache size : 2048 KBphysical id : 0siblings : 2core id : 1cpu cores : 2apicid : 2initial apicid : 2fpu : yesfpu_exception : yescpuid level : 13wp : yesflags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpidclflush size : 64cache_ (…)
|
/external/toolchain-utils/crosperf/test_cache/test_puretelemetry_input/ |
machine.txt | 1 processor : 0vendor_id : GenuineIntelcpu family : 6model : 42model name : Intel(R) Celeron(R) CPU 867 @ 1.30GHzstepping : 7microcode : 0x25cache size : 2048 KBphysical id : 0siblings : 2core id : 0cpu cores : 2apicid : 0initial apicid : 0fpu : yesfpu_exception : yescpuid level : 13wp : yesflags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpidclflush size : 64cache_alignment : 64address sizes : 36 bits physical, 48 bits virtualpower management:processor : 1vendor_id : GenuineIntelcpu family : 6model : 42model name : Intel(R) Celeron(R) CPU 867 @ 1.30GHzstepping : 7microcode : 0x25cache size : 2048 KBphysical id : 0siblings : 2core id : 1cpu cores : 2apicid : 2initial apicid : 2fpu : yesfpu_exception : yescpuid level : 13wp : yesflags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpidclflush size : 64cache_ (…)
|
/external/clang/lib/Headers/ |
xsaveintrin.h | 1 /*===---- xsaveintrin.h - XSAVE intrinsic ------------------------------------=== 32 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("xsave")))
|
/prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/ |
xsaveintrin.h | 1 /*===---- xsaveintrin.h - XSAVE intrinsic ------------------------------------=== 32 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("xsave")))
|
/prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/ |
xsaveintrin.h | 1 /*===---- xsaveintrin.h - XSAVE intrinsic ------------------------------------=== 32 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("xsave")))
|
/prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/ |
xsaveintrin.h | 1 /*===---- xsaveintrin.h - XSAVE intrinsic ------------------------------------=== 32 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("xsave")))
|