This repository has been archived by the owner on Jan 17, 2019. It is now read-only.
forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[X86] Modify Nontemporal tests to avoid deadstore optimization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@320379 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
c865d8a
commit 90ece71
Showing
4 changed files
with
167 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,44 @@ | ||
; RUN: llc < %s -mtriple=x86_64-- -mattr=+avx512f,+avx512bw | FileCheck %s | ||
|
||
define void @f(<16 x float> %A, <16 x float> %AA, i8* %B, <8 x double> %C, <8 x double> %CC, <8 x i64> %E, <8 x i64> %EE, <16 x i32> %F, <16 x i32> %FF, <32 x i16> %G, <32 x i16> %GG, <64 x i8> %H, <64 x i8> %HH) { | ||
define i32 @f(<16 x float> %A, <16 x float> %AA, i8* %B, <8 x double> %C, <8 x double> %CC, <8 x i64> %E, <8 x i64> %EE, <16 x i32> %F, <16 x i32> %FF, <32 x i16> %G, <32 x i16> %GG, <64 x i8> %H, <64 x i8> %HH, i32 * %loadptr) { | ||
; CHECK: vmovntps %z | ||
%v0 = load i32, i32* %loadptr, align 1 | ||
%cast = bitcast i8* %B to <16 x float>* | ||
%A2 = fadd <16 x float> %A, %AA | ||
store <16 x float> %A2, <16 x float>* %cast, align 64, !nontemporal !0 | ||
%v1 = load i32, i32* %loadptr, align 1 | ||
; CHECK: vmovntdq %z | ||
%cast1 = bitcast i8* %B to <8 x i64>* | ||
%E2 = add <8 x i64> %E, %EE | ||
store <8 x i64> %E2, <8 x i64>* %cast1, align 64, !nontemporal !0 | ||
%v2 = load i32, i32* %loadptr, align 1 | ||
; CHECK: vmovntpd %z | ||
%cast2 = bitcast i8* %B to <8 x double>* | ||
%C2 = fadd <8 x double> %C, %CC | ||
store <8 x double> %C2, <8 x double>* %cast2, align 64, !nontemporal !0 | ||
%v3 = load i32, i32* %loadptr, align 1 | ||
; CHECK: vmovntdq %z | ||
%cast3 = bitcast i8* %B to <16 x i32>* | ||
%F2 = add <16 x i32> %F, %FF | ||
store <16 x i32> %F2, <16 x i32>* %cast3, align 64, !nontemporal !0 | ||
%v4 = load i32, i32* %loadptr, align 1 | ||
; CHECK: vmovntdq %z | ||
%cast4 = bitcast i8* %B to <32 x i16>* | ||
%G2 = add <32 x i16> %G, %GG | ||
store <32 x i16> %G2, <32 x i16>* %cast4, align 64, !nontemporal !0 | ||
%v5 = load i32, i32* %loadptr, align 1 | ||
; CHECK: vmovntdq %z | ||
%cast5 = bitcast i8* %B to <64 x i8>* | ||
%H2 = add <64 x i8> %H, %HH | ||
store <64 x i8> %H2, <64 x i8>* %cast5, align 64, !nontemporal !0 | ||
ret void | ||
%v6 = load i32, i32* %loadptr, align 1 | ||
%sum1 = add i32 %v0, %v1 | ||
%sum2 = add i32 %sum1, %v2 | ||
%sum3 = add i32 %sum2, %v3 | ||
%sum4 = add i32 %sum3, %v4 | ||
%sum5 = add i32 %sum4, %v5 | ||
%sum6 = add i32 %sum5, %v6 | ||
ret i32 %sum6 | ||
} | ||
|
||
!0 = !{i32 1} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,48 @@ | ||
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=skx --show-mc-encoding | FileCheck %s | ||
|
||
define void @f256(<8 x float> %A, <8 x float> %AA, i8* %B, <4 x double> %C, <4 x double> %CC, i32 %D, <4 x i64> %E, <4 x i64> %EE) { | ||
define i32 @f256(<8 x float> %A, <8 x float> %AA, i8* %B, <4 x double> %C, <4 x double> %CC, i32 %D, <4 x i64> %E, <4 x i64> %EE, i32* %loadptr) { | ||
; CHECK: vmovntps %ymm{{.*}} ## EVEX TO VEX Compression encoding: [0xc5 | ||
%v0 = load i32, i32* %loadptr, align 1 | ||
%cast = bitcast i8* %B to <8 x float>* | ||
%A2 = fadd <8 x float> %A, %AA | ||
store <8 x float> %A2, <8 x float>* %cast, align 64, !nontemporal !0 | ||
; CHECK: vmovntdq %ymm{{.*}} ## EVEX TO VEX Compression encoding: [0xc5 | ||
%v1 = load i32, i32* %loadptr, align 1 | ||
%cast1 = bitcast i8* %B to <4 x i64>* | ||
%E2 = add <4 x i64> %E, %EE | ||
store <4 x i64> %E2, <4 x i64>* %cast1, align 64, !nontemporal !0 | ||
; CHECK: vmovntpd %ymm{{.*}} ## EVEX TO VEX Compression encoding: [0xc5 | ||
%v2 = load i32, i32* %loadptr, align 1 | ||
%cast2 = bitcast i8* %B to <4 x double>* | ||
%C2 = fadd <4 x double> %C, %CC | ||
store <4 x double> %C2, <4 x double>* %cast2, align 64, !nontemporal !0 | ||
ret void | ||
%v3 = load i32, i32* %loadptr, align 1 | ||
%sum1 = add i32 %v0, %v1 | ||
%sum2 = add i32 %sum1, %v2 | ||
%sum3 = add i32 %sum2, %v3 | ||
ret i32 %sum3 | ||
} | ||
|
||
define void @f128(<4 x float> %A, <4 x float> %AA, i8* %B, <2 x double> %C, <2 x double> %CC, i32 %D, <2 x i64> %E, <2 x i64> %EE) { | ||
define i32 @f128(<4 x float> %A, <4 x float> %AA, i8* %B, <2 x double> %C, <2 x double> %CC, i32 %D, <2 x i64> %E, <2 x i64> %EE, i32* %loadptr) { | ||
%v0 = load i32, i32* %loadptr, align 1 | ||
; CHECK: vmovntps %xmm{{.*}} ## EVEX TO VEX Compression encoding: [0xc5 | ||
%cast = bitcast i8* %B to <4 x float>* | ||
%A2 = fadd <4 x float> %A, %AA | ||
store <4 x float> %A2, <4 x float>* %cast, align 64, !nontemporal !0 | ||
; CHECK: vmovntdq %xmm{{.*}} ## EVEX TO VEX Compression encoding: [0xc5 | ||
%v1 = load i32, i32* %loadptr, align 1 | ||
%cast1 = bitcast i8* %B to <2 x i64>* | ||
%E2 = add <2 x i64> %E, %EE | ||
store <2 x i64> %E2, <2 x i64>* %cast1, align 64, !nontemporal !0 | ||
; CHECK: vmovntpd %xmm{{.*}} ## EVEX TO VEX Compression encoding: [0xc5 | ||
%v2 = load i32, i32* %loadptr, align 1 | ||
%cast2 = bitcast i8* %B to <2 x double>* | ||
%C2 = fadd <2 x double> %C, %CC | ||
store <2 x double> %C2, <2 x double>* %cast2, align 64, !nontemporal !0 | ||
ret void | ||
%v3 = load i32, i32* %loadptr, align 1 | ||
%sum1 = add i32 %v0, %v1 | ||
%sum2 = add i32 %sum1, %v2 | ||
%sum3 = add i32 %sum2, %v3 | ||
ret i32 %sum3 | ||
} | ||
!0 = !{i32 1} |
Oops, something went wrong.