/toolchain/binutils/binutils-2.25/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 | 36 xsave-avx.vgtest xsave-avx.stdout.exp xsave-avx.stderr.exp 49 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 | 35 // 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,+xsave,+xsaveopt" 36 // CHECK: #2 = {{.*}}"target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,-aes,-avx,-avx2,-avx512bw,-avx512cd,-avx512dq,-avx512er,-avx512f,-avx512pf,-avx512vl,-f16c,-fma,-fma4,-pclmul,-sha,-sse2,-sse3,-sse4.1,-sse4.2,-sse4a,-ssse3,-xop,-xsave,-xsaveopt" 38 // CHECK: #4 = {{.*}}"target-cpu"="ivybridge" "target-features"="+avx,+cx16,+f16c,+fsgsbase,+fxsr,+mmx,+pclmul,+popcnt,+rdrnd,+sse,+sse2,+sse3,+sse4.1,+sse4.2,+ssse3,+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.25/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/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-2629532/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-2658975/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-2690385/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/linux-x86/clang-2629532/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/linux-x86/clang-2658975/lib64/clang/3.8/include/ |
xsaveintrin.h | 1 /*===---- xsaveintrin.h - XSAVE intrinsic ------------------------------------=== 32 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("xsave")))
|