Skip to content

Commit

Permalink
[ARM] Select fp16 fma
Browse files Browse the repository at this point in the history
This adds a pattern for fma, similar to the float and double patterns.

Differential Revision: https://reviews.llvm.org/D62330

llvm-svn: 361719
  • Loading branch information
davemgreen committed May 26, 2019
1 parent 21542cd commit 0dbafe1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
3 changes: 3 additions & 0 deletions llvm/lib/Target/ARM/ARMInstrVFP.td
Original file line number Diff line number Diff line change
Expand Up @@ -2073,6 +2073,9 @@ def : Pat<(f64 (fma DPR:$Dn, DPR:$Dm, DPR:$Ddin)),
def : Pat<(f32 (fma SPR:$Sn, SPR:$Sm, SPR:$Sdin)),
(VFMAS SPR:$Sdin, SPR:$Sn, SPR:$Sm)>,
Requires<[HasVFP4]>;
def : Pat<(f16 (fma HPR:$Sn, HPR:$Sm, HPR:$Sdin)),
(VFMAH HPR:$Sdin, HPR:$Sn, HPR:$Sm)>,
Requires<[HasFullFP16]>;

def VFMSD : ADbI<0b11101, 0b10, 1, 0,
(outs DPR:$Dd), (ins DPR:$Ddin, DPR:$Dn, DPR:$Dm),
Expand Down
24 changes: 15 additions & 9 deletions llvm/test/CodeGen/ARM/fp16-fullfp16.ll
Original file line number Diff line number Diff line change
Expand Up @@ -386,15 +386,21 @@ define void @test_log2(half* %p) {
ret void
}

; FIXME
;define void @test_fma(half* %p, half* %q, half* %r) {
; %a = load half, half* %p, align 2
; %b = load half, half* %q, align 2
; %c = load half, half* %r, align 2
; %v = call half @llvm.fma.f16(half %a, half %b, half %c)
; store half %v, half* %p
; ret void
;}
define void @test_fma(half* %p, half* %q, half* %r) {
; CHECK-LABEL: test_fma:
; CHECK: vldr.16 s0, [r1]
; CHECK-NEXT: vldr.16 s2, [r0]
; CHECK-NEXT: vldr.16 s4, [r2]
; CHECK-NEXT: vfma.f16 s4, s2, s0
; CHECK-NEXT: vstr.16 s4, [r0]
; CHECK-NEXT: bx lr
%a = load half, half* %p, align 2
%b = load half, half* %q, align 2
%c = load half, half* %r, align 2
%v = call half @llvm.fma.f16(half %a, half %b, half %c)
store half %v, half* %p
ret void
}

define void @test_fabs(half* %p) {
; CHECK-LABEL: test_fabs:
Expand Down

0 comments on commit 0dbafe1

Please sign in to comment.