Skip to content

[RISCV] Expand bf16 vector truncstores and extloads #108235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1128,6 +1128,7 @@ RISCVTargetLowering::RISCVTargetLowering(const TargetMachine &TM,
continue;
SetCommonVFPActions(VT);
SetCommonVFPExtLoadTruncStoreActions(VT, F16VecVTs);
SetCommonVFPExtLoadTruncStoreActions(VT, BF16VecVTs);
}
}

Expand All @@ -1137,6 +1138,7 @@ RISCVTargetLowering::RISCVTargetLowering(const TargetMachine &TM,
continue;
SetCommonVFPActions(VT);
SetCommonVFPExtLoadTruncStoreActions(VT, F16VecVTs);
SetCommonVFPExtLoadTruncStoreActions(VT, BF16VecVTs);
SetCommonVFPExtLoadTruncStoreActions(VT, F32VecVTs);
}
}
Expand Down
71 changes: 71 additions & 0 deletions llvm/test/CodeGen/RISCV/rvv/load-bf16.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; RUN: llc < %s -mtriple=riscv32 -mattr=+v,+zvfbfmin -verify-machineinstrs | FileCheck %s
; RUN: llc < %s -mtriple=riscv64 -mattr=+v,+zvfbfmin -verify-machineinstrs | FileCheck %s

define <vscale x 1 x bfloat> @load_nxv1bf16(ptr %p) {
; CHECK-LABEL: load_nxv1bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vsetvli a1, zero, e16, mf4, ta, ma
; CHECK-NEXT: vle16.v v8, (a0)
; CHECK-NEXT: ret
%x = load <vscale x 1 x bfloat>, ptr %p
ret <vscale x 1 x bfloat> %x
}

define <vscale x 2 x bfloat> @load_nxv2bf16(ptr %p) {
; CHECK-LABEL: load_nxv2bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vsetvli a1, zero, e16, mf2, ta, ma
; CHECK-NEXT: vle16.v v8, (a0)
; CHECK-NEXT: ret
%x = load <vscale x 2 x bfloat>, ptr %p
ret <vscale x 2 x bfloat> %x
}

define <vscale x 4 x bfloat> @load_nxv4bf16(ptr %p) {
; CHECK-LABEL: load_nxv4bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vl1re16.v v8, (a0)
; CHECK-NEXT: ret
%x = load <vscale x 4 x bfloat>, ptr %p
ret <vscale x 4 x bfloat> %x
}

define <vscale x 8 x bfloat> @load_nxv8bf16(ptr %p) {
; CHECK-LABEL: load_nxv8bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vl2re16.v v8, (a0)
; CHECK-NEXT: ret
%x = load <vscale x 8 x bfloat>, ptr %p
ret <vscale x 8 x bfloat> %x
}

define <vscale x 16 x bfloat> @load_nxv16bf16(ptr %p) {
; CHECK-LABEL: load_nxv16bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vl4re16.v v8, (a0)
; CHECK-NEXT: ret
%x = load <vscale x 16 x bfloat>, ptr %p
ret <vscale x 16 x bfloat> %x
}

define <vscale x 32 x bfloat> @load_nxv32bf16(ptr %p) {
; CHECK-LABEL: load_nxv32bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vl8re16.v v8, (a0)
; CHECK-NEXT: ret
%x = load <vscale x 32 x bfloat>, ptr %p
ret <vscale x 32 x bfloat> %x
}

define <vscale x 4 x float> @extload(ptr %p) {
; CHECK-LABEL: extload:
; CHECK: # %bb.0:
; CHECK-NEXT: vl1re16.v v10, (a0)
; CHECK-NEXT: vsetvli a0, zero, e16, m1, ta, ma
; CHECK-NEXT: vfwcvtbf16.f.f.v v8, v10
; CHECK-NEXT: ret
%x = load <vscale x 4 x bfloat>, ptr %p
%y = fpext <vscale x 4 x bfloat> %x to <vscale x 4 x float>
ret <vscale x 4 x float> %y
}
71 changes: 71 additions & 0 deletions llvm/test/CodeGen/RISCV/rvv/store-bf16.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; RUN: llc < %s -mtriple=riscv32 -mattr=+v,+zvfbfmin -verify-machineinstrs | FileCheck %s
; RUN: llc < %s -mtriple=riscv64 -mattr=+v,+zvfbfmin -verify-machineinstrs | FileCheck %s

define void @store_nxv1bf16(<vscale x 1 x bfloat> %v, ptr %p) {
; CHECK-LABEL: store_nxv1bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vsetvli a1, zero, e16, mf4, ta, ma
; CHECK-NEXT: vse16.v v8, (a0)
; CHECK-NEXT: ret
store <vscale x 1 x bfloat> %v, ptr %p
ret void
}

define void @store_nxv2bf16(<vscale x 2 x bfloat> %v, ptr %p) {
; CHECK-LABEL: store_nxv2bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vsetvli a1, zero, e16, mf2, ta, ma
; CHECK-NEXT: vse16.v v8, (a0)
; CHECK-NEXT: ret
store <vscale x 2 x bfloat> %v, ptr %p
ret void
}

define void @store_nxv4bf16(<vscale x 4 x bfloat> %v, ptr %p) {
; CHECK-LABEL: store_nxv4bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vs1r.v v8, (a0)
; CHECK-NEXT: ret
store <vscale x 4 x bfloat> %v, ptr %p
ret void
}

define void @store_nxv8bf16(<vscale x 8 x bfloat> %v, ptr %p) {
; CHECK-LABEL: store_nxv8bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vs2r.v v8, (a0)
; CHECK-NEXT: ret
store <vscale x 8 x bfloat> %v, ptr %p
ret void
}

define void @store_nxv16bf16(<vscale x 16 x bfloat> %v, ptr %p) {
; CHECK-LABEL: store_nxv16bf16:
; CHECK: # %bb.0:
; CHECK-NEXT: vs4r.v v8, (a0)
; CHECK-NEXT: ret
store <vscale x 16 x bfloat> %v, ptr %p
ret void
}

define void @store_nxv32bf32(<vscale x 32 x bfloat> %v, ptr %p) {
; CHECK-LABEL: store_nxv32bf32:
; CHECK: # %bb.0:
; CHECK-NEXT: vs8r.v v8, (a0)
; CHECK-NEXT: ret
store <vscale x 32 x bfloat> %v, ptr %p
ret void
}

define void @truncstore(<vscale x 4 x float> %v, ptr %p) {
; CHECK-LABEL: truncstore:
; CHECK: # %bb.0:
; CHECK-NEXT: vsetvli a1, zero, e16, m1, ta, ma
; CHECK-NEXT: vfncvtbf16.f.f.w v10, v8
; CHECK-NEXT: vs1r.v v10, (a0)
; CHECK-NEXT: ret
%w = fptrunc <vscale x 4 x float> %v to <vscale x 4 x bfloat>
store <vscale x 4 x bfloat> %w, ptr %p
ret void
}
Loading