summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/PowerPC/fneg.ll
blob: 328ffecd17624bcf2c247f4fc668a3044a610503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- -ppc-asm-full-reg-names | FileCheck %s

define double @test1(double %a, double %b, double %c, double %d) {
; CHECK-LABEL: test1:
; CHECK:       # %bb.0:
; CHECK-NEXT:    fmul f0, f3, f4
; CHECK-NEXT:    fmul f1, f1, f2
; CHECK-NEXT:    fadd f1, f1, f0
; CHECK-NEXT:    blr
  %tmp2 = fsub double -0.000000e+00, %c
  %tmp4 = fmul double %tmp2, %d
  %tmp7 = fmul double %a, %b
  %tmp9 = fsub double %tmp7, %tmp4
  ret double %tmp9
}

declare float @llvm.fmuladd.f32(float, float, float) #4

define float @fma_fneg_fneg(float %x, float %y, float %z) {
; CHECK-LABEL: fma_fneg_fneg:
; CHECK:       # %bb.0:
; CHECK-NEXT:    fmadds f1, f1, f2, f3
; CHECK-NEXT:    blr
  %negx = fneg float %x
  %negy = fneg float %y
  %r = call float @llvm.fmuladd.f32(float %negx, float %negy, float %z)
  ret float %r
}

define float @fma_fneg_fsub(float %x, float %y0, float %y1, float %z) {
; CHECK-LABEL: fma_fneg_fsub:
; CHECK:       # %bb.0:
; CHECK-NEXT:    fsubs f0, f3, f2
; CHECK-NEXT:    fmadds f1, f1, f0, f4
; CHECK-NEXT:    blr
  %negx = fneg float %x
  %negy = fsub nsz float %y0, %y1
  %r = call float @llvm.fmuladd.f32(float %negx, float %negy, float %z)
  ret float %r
}
OpenPOWER on IntegriCloud