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.
Enhance bool simplifcation in X86 to handle more cases
This patch is revised based on patch from Victor Umansky <[email protected]>. More cases are handled in X86's bool simplification, i.e. - SETCC_CARRY - value is truncated to i1 with AND As a by-product, PR5443 is also fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179265 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
4 changed files
with
334 additions
and
8 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
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 |
---|---|---|
@@ -0,0 +1,150 @@ | ||
; RUN: llc < %s -mtriple=i386-apple-darwin10 -mcpu=corei7-avx -mattr=+avx | FileCheck %s | ||
|
||
declare i32 @llvm.x86.avx.ptestz.256(<4 x i64> %p1, <4 x i64> %p2) nounwind | ||
declare i32 @llvm.x86.avx.ptestc.256(<4 x i64> %p1, <4 x i64> %p2) nounwind | ||
|
||
define <4 x float> @test1(<4 x i64> %a, <4 x float> %b) nounwind { | ||
entry: | ||
; CHECK: test1: | ||
; CHECK: vptest | ||
; CHECK-NEXT: jne | ||
; CHECK: ret | ||
|
||
%res = call i32 @llvm.x86.avx.ptestz.256(<4 x i64> %a, <4 x i64> %a) nounwind | ||
%one = icmp ne i32 %res, 0 | ||
br i1 %one, label %bb1, label %bb2 | ||
|
||
bb1: | ||
%c = fadd <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
bb2: | ||
%d = fdiv <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
return: | ||
%e = phi <4 x float> [%c, %bb1], [%d, %bb2] | ||
ret <4 x float> %e | ||
} | ||
|
||
define <4 x float> @test3(<4 x i64> %a, <4 x float> %b) nounwind { | ||
entry: | ||
; CHECK: test3: | ||
; CHECK: vptest | ||
; CHECK-NEXT: jne | ||
; CHECK: ret | ||
|
||
%res = call i32 @llvm.x86.avx.ptestz.256(<4 x i64> %a, <4 x i64> %a) nounwind | ||
%one = trunc i32 %res to i1 | ||
br i1 %one, label %bb1, label %bb2 | ||
|
||
bb1: | ||
%c = fadd <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
bb2: | ||
%d = fdiv <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
return: | ||
%e = phi <4 x float> [%c, %bb1], [%d, %bb2] | ||
ret <4 x float> %e | ||
} | ||
|
||
define <4 x float> @test4(<4 x i64> %a, <4 x float> %b) nounwind { | ||
entry: | ||
; CHECK: test4: | ||
; CHECK: vptest | ||
; CHECK-NEXT: jae | ||
; CHECK: ret | ||
|
||
%res = call i32 @llvm.x86.avx.ptestc.256(<4 x i64> %a, <4 x i64> %a) nounwind | ||
%one = icmp ne i32 %res, 0 | ||
br i1 %one, label %bb1, label %bb2 | ||
|
||
bb1: | ||
%c = fadd <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
bb2: | ||
%d = fdiv <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
return: | ||
%e = phi <4 x float> [%c, %bb1], [%d, %bb2] | ||
ret <4 x float> %e | ||
} | ||
|
||
define <4 x float> @test6(<4 x i64> %a, <4 x float> %b) nounwind { | ||
entry: | ||
; CHECK: test6: | ||
; CHECK: vptest | ||
; CHECK-NEXT: jae | ||
; CHECK: ret | ||
|
||
%res = call i32 @llvm.x86.avx.ptestc.256(<4 x i64> %a, <4 x i64> %a) nounwind | ||
%one = trunc i32 %res to i1 | ||
br i1 %one, label %bb1, label %bb2 | ||
|
||
bb1: | ||
%c = fadd <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
bb2: | ||
%d = fdiv <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
return: | ||
%e = phi <4 x float> [%c, %bb1], [%d, %bb2] | ||
ret <4 x float> %e | ||
} | ||
|
||
define <4 x float> @test7(<4 x i64> %a, <4 x float> %b) nounwind { | ||
entry: | ||
; CHECK: test7: | ||
; CHECK: vptest | ||
; CHECK-NEXT: jne | ||
; CHECK: ret | ||
|
||
%res = call i32 @llvm.x86.avx.ptestz.256(<4 x i64> %a, <4 x i64> %a) nounwind | ||
%one = icmp eq i32 %res, 1 | ||
br i1 %one, label %bb1, label %bb2 | ||
|
||
bb1: | ||
%c = fadd <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
bb2: | ||
%d = fdiv <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
return: | ||
%e = phi <4 x float> [%c, %bb1], [%d, %bb2] | ||
ret <4 x float> %e | ||
} | ||
|
||
define <4 x float> @test8(<4 x i64> %a, <4 x float> %b) nounwind { | ||
entry: | ||
; CHECK: test8: | ||
; CHECK: vptest | ||
; CHECK-NEXT: je | ||
; CHECK: ret | ||
|
||
%res = call i32 @llvm.x86.avx.ptestz.256(<4 x i64> %a, <4 x i64> %a) nounwind | ||
%one = icmp ne i32 %res, 1 | ||
br i1 %one, label %bb1, label %bb2 | ||
|
||
bb1: | ||
%c = fadd <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
bb2: | ||
%d = fdiv <4 x float> %b, < float 1.000000e+002, float 2.000000e+002, float 3.000000e+002, float 4.000000e+002 > | ||
br label %return | ||
|
||
return: | ||
%e = phi <4 x float> [%c, %bb1], [%d, %bb2] | ||
ret <4 x float> %e | ||
} | ||
|
||
|
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