[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / PowerPC / fma-ext.ll
blobf8ed49f9ca7c8bed9ce145e0ecf65ddb1c516011
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- -fp-contract=fast -mattr=-vsx -disable-ppc-vsx-fma-mutation=false | FileCheck %s
2 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -fp-contract=fast -mattr=+vsx -mcpu=pwr7 -disable-ppc-vsx-fma-mutation=false | FileCheck -check-prefix=CHECK-VSX %s
4 define double @test_FMADD_EXT1(float %A, float %B, double %C) {
5     %D = fmul float %A, %B          ; <float> [#uses=1]
6     %E = fpext float %D to double   ; <double> [#uses=1]
7     %F = fadd double %E, %C         ; <double> [#uses=1]
8     ret double %F
9 ; CHECK-LABEL: test_FMADD_EXT1:
10 ; CHECK: fmadd
11 ; CHECK-NEXT: blr
12                                 
13 ; CHECK-VSX-LABEL: test_FMADD_EXT1:
14 ; CHECK-VSX: xsmaddmdp
15 ; CHECK-VSX-NEXT: blr
18 define double @test_FMADD_EXT2(float %A, float %B, double %C) {
19     %D = fmul float %A, %B          ; <float> [#uses=1]
20     %E = fpext float %D to double   ; <double> [#uses=1]
21     %F = fadd double %C, %E         ; <double> [#uses=1]
22     ret double %F
23 ; CHECK-LABEL: test_FMADD_EXT2:
24 ; CHECK: fmadd
25 ; CHECK-NEXT: blr
26                                 
27 ; CHECK-VSX-LABEL: test_FMADD_EXT2:
28 ; CHECK-VSX: xsmaddmdp
29 ; CHECK-VSX-NEXT: blr
32 define double @test_FMSUB_EXT1(float %A, float %B, double %C) {
33     %D = fmul float %A, %B          ; <float> [#uses=1]
34     %E = fpext float %D to double   ; <double> [#uses=1]
35     %F = fsub double %E, %C         ; <double> [#uses=1]
36     ret double %F
37 ; CHECK-LABEL: test_FMSUB_EXT1:
38 ; CHECK: fmsub
39 ; CHECK-NEXT: blr
40                                 
41 ; CHECK-VSX-LABEL: test_FMSUB_EXT1:
42 ; CHECK-VSX: xsmsubmdp
43 ; CHECK-VSX-NEXT: blr
46 define double @test_FMSUB_EXT2(float %A, float %B, double %C) {
47     %D = fmul float %A, %B          ; <float> [#uses=1]
48     %E = fpext float %D to double   ; <double> [#uses=1]
49     %F = fsub double %C, %E         ; <double> [#uses=1]
50     ret double %F
51 ; CHECK-LABEL: test_FMSUB_EXT2:
52 ; CHECK: fnmsub
53 ; CHECK-NEXT: blr
54                                 
55 ; CHECK-VSX-LABEL: test_FMSUB_EXT2:
56 ; CHECK-VSX: xsnmsubmdp
57 ; CHECK-VSX-NEXT: blr
60 define double @test_FMSUB_EXT3(float %A, float %B, double %C) {
61     %D = fmul float %A, %B          ; <float> [#uses=1]
62     %E = fsub float -0.000000e+00, %D ;    <float> [#uses=1]
63     %F = fpext float %E to double   ; <double> [#uses=1]
64     %G = fsub double %F, %C         ; <double> [#uses=1]
65     ret double %G
66 ; CHECK-LABEL: test_FMSUB_EXT3:
67 ; CHECK: fnmadd
69 ; CHECK-NEXT: blr
70                                 
71 ; CHECK-VSX-LABEL: test_FMSUB_EXT3:
72 ; CHECK-VSX: xsnmaddmdp
74 ; CHECK-VSX-NEXT: blr
76     
77 define double @test_FMSUB_EXT4(float %A, float %B, double %C) {
78     %D = fmul float %A, %B          ; <float> [#uses=1]
79     %E = fpext float %D to double   ; <double> [#uses=1]
80     %F = fsub double -0.000000e+00, %E ;    <double> [#uses=1]
81     %G = fsub double %F, %C         ; <double> [#uses=1]
82     ret double %G
83 ; CHECK-LABEL: test_FMSUB_EXT4:
84 ; CHECK: fnmadd
86 ; CHECK-NEXT: blr
87                                 
88 ; CHECK-VSX-LABEL: test_FMSUB_EXT4:
89 ; CHECK-VSX: xsnmaddmdp
91 ; CHECK-VSX-NEXT: blr
92 }