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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179276 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
3 changed files
with
44 additions
and
9 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,54 +1,77 @@ | ||
; RUN: llc < %s -march=ppc32 -fp-contract=fast | \ | ||
; RUN: egrep "fn?madd|fn?msub" | count 8 | ||
; RUN: llc < %s -march=ppc32 -fp-contract=fast | FileCheck %s | ||
|
||
define double @test_FMADD1(double %A, double %B, double %C) { | ||
%D = fmul double %A, %B ; <double> [#uses=1] | ||
%E = fadd double %D, %C ; <double> [#uses=1] | ||
ret double %E | ||
; CHECK: test_FMADD1: | ||
; CHECK: fmadd | ||
; CHECK-NEXT: blr | ||
} | ||
|
||
define double @test_FMADD2(double %A, double %B, double %C) { | ||
%D = fmul double %A, %B ; <double> [#uses=1] | ||
%E = fadd double %D, %C ; <double> [#uses=1] | ||
ret double %E | ||
; CHECK: test_FMADD2: | ||
; CHECK: fmadd | ||
; CHECK-NEXT: blr | ||
} | ||
|
||
define double @test_FMSUB(double %A, double %B, double %C) { | ||
%D = fmul double %A, %B ; <double> [#uses=1] | ||
%E = fsub double %D, %C ; <double> [#uses=1] | ||
ret double %E | ||
; CHECK: test_FMSUB: | ||
; CHECK: fmsub | ||
; CHECK-NEXT: blr | ||
} | ||
|
||
define double @test_FNMADD1(double %A, double %B, double %C) { | ||
%D = fmul double %A, %B ; <double> [#uses=1] | ||
%E = fadd double %D, %C ; <double> [#uses=1] | ||
%F = fsub double -0.000000e+00, %E ; <double> [#uses=1] | ||
ret double %F | ||
; CHECK: test_FNMADD1: | ||
; CHECK: fnmadd | ||
; CHECK-NEXT: blr | ||
} | ||
|
||
define double @test_FNMADD2(double %A, double %B, double %C) { | ||
%D = fmul double %A, %B ; <double> [#uses=1] | ||
%E = fadd double %C, %D ; <double> [#uses=1] | ||
%F = fsub double -0.000000e+00, %E ; <double> [#uses=1] | ||
ret double %F | ||
; CHECK: test_FNMADD2: | ||
; CHECK: fnmadd | ||
; CHECK-NEXT: blr | ||
} | ||
|
||
define double @test_FNMSUB1(double %A, double %B, double %C) { | ||
%D = fmul double %A, %B ; <double> [#uses=1] | ||
%E = fsub double %C, %D ; <double> [#uses=1] | ||
ret double %E | ||
; CHECK: test_FNMSUB1: | ||
; CHECK: fnmsub | ||
; CHECK-NEXT: blr | ||
} | ||
|
||
define double @test_FNMSUB2(double %A, double %B, double %C) { | ||
%D = fmul double %A, %B ; <double> [#uses=1] | ||
%E = fsub double %D, %C ; <double> [#uses=1] | ||
%F = fsub double -0.000000e+00, %E ; <double> [#uses=1] | ||
ret double %F | ||
; CHECK: test_FNMSUB2: | ||
; CHECK: fnmsub | ||
; CHECK-NEXT: blr | ||
} | ||
|
||
define float @test_FNMSUBS(float %A, float %B, float %C) { | ||
%D = fmul float %A, %B ; <float> [#uses=1] | ||
%E = fsub float %D, %C ; <float> [#uses=1] | ||
%F = fsub float -0.000000e+00, %E ; <float> [#uses=1] | ||
ret float %F | ||
; CHECK: test_FNMSUBS: | ||
; CHECK: fnmsubs | ||
; CHECK-NEXT: blr | ||
} |
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,23 +1,34 @@ | ||
; RUN: opt < %s -instcombine -S | \ | ||
; RUN: egrep "shl|lshr|ashr" | count 3 | ||
; RUN: opt < %s -instcombine -S | FileCheck %s | ||
|
||
define i41 @test0(i41 %A, i41 %B, i41 %C) { | ||
%X = shl i41 %A, %C | ||
%Y = shl i41 %B, %C | ||
%Z = and i41 %X, %Y | ||
ret i41 %Z | ||
; CHECK: @test0 | ||
; CHECK-NEXT: and i41 %A, %B | ||
; CHECK-NEXT: shl i41 | ||
; CHECK-NEXT: ret | ||
} | ||
|
||
define i57 @test1(i57 %A, i57 %B, i57 %C) { | ||
%X = lshr i57 %A, %C | ||
%Y = lshr i57 %B, %C | ||
%Z = or i57 %X, %Y | ||
ret i57 %Z | ||
; CHECK: @test1 | ||
; CHECK-NEXT: or i57 %A, %B | ||
; CHECK-NEXT: lshr i57 | ||
; CHECK-NEXT: ret | ||
} | ||
|
||
define i49 @test2(i49 %A, i49 %B, i49 %C) { | ||
%X = ashr i49 %A, %C | ||
%Y = ashr i49 %B, %C | ||
%Z = xor i49 %X, %Y | ||
ret i49 %Z | ||
; CHECK: @test2 | ||
; CHECK-NEXT: xor i49 %A, %B | ||
; CHECK-NEXT: ashr i49 | ||
; CHECK-NEXT: ret | ||
} |