2020-05-28 18:29:26 +08:00
|
|
|
; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sve < %s 2>%t | FileCheck %s
|
|
|
|
; RUN: FileCheck --check-prefix=WARN --allow-empty %s <%t
|
|
|
|
|
2020-07-09 17:16:32 +08:00
|
|
|
; If this check fails please read test/CodeGen/AArch64/README for instructions on how to resolve it.
|
2020-05-28 18:29:26 +08:00
|
|
|
; WARN-NOT: warning
|
[Aarch64][SVE] Add intrinsics for scatter stores
Summary:
This patch adds the following SVE intrinsics for scatter stores:
* 64-bit offsets:
* @llvm.aarch64.sve.st1.scatter (unscaled)
* @llvm.aarch64.sve.st1.scatter.index (scaled)
* 32-bit unscaled offsets:
* @llvm.aarch64.sve.st1.scatter.uxtw (zero-extended offset)
* @llvm.aarch64.sve.st1.scatter.sxtw (sign-extended-offset)
* 32-bit scaled offsets:
* @llvm.aarch64.sve.st1.scatter.uxtw.index (zero-extended offset)
* @llvm.aarch64.sve.st1.scatter.sxtw.index (sign-extended offset)
* vector base + immediate:
* @llvm.aarch64.sve.st1.scatter.imm
Reviewers: rengolin, efriedma, sdesmalen
Reviewed By: efriedma, sdesmalen
Subscribers: kmclaughlin, eli.friedman, tschuett, kristof.beyls, hiraditya, rkruppe, psnobl, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71074
2019-12-16 19:51:10 +08:00
|
|
|
|
|
|
|
;
|
|
|
|
; ST1H, ST1W, ST1D: base + 64-bit scaled offset
|
|
|
|
; e.g. st1h { z0.d }, p0, [x0, z0.d, lsl #1]
|
|
|
|
;
|
|
|
|
|
|
|
|
define void @sst1h_index(<vscale x 2 x i64> %data, <vscale x 2 x i1> %pg, i16* %base, <vscale x 2 x i64> %offsets) {
|
|
|
|
; CHECK-LABEL: sst1h_index
|
|
|
|
; CHECK: st1h { z0.d }, p0, [x0, z1.d, lsl #1]
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
%data_trunc = trunc <vscale x 2 x i64> %data to <vscale x 2 x i16>
|
|
|
|
call void @llvm.aarch64.sve.st1.scatter.index.nxv2i16(<vscale x 2 x i16> %data_trunc,
|
|
|
|
<vscale x 2 x i1> %pg,
|
|
|
|
i16* %base,
|
|
|
|
<vscale x 2 x i64> %offsets)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @sst1w_index(<vscale x 2 x i64> %data, <vscale x 2 x i1> %pg, i32* %base, <vscale x 2 x i64> %offsets) {
|
|
|
|
; CHECK-LABEL: sst1w_index
|
|
|
|
; CHECK: st1w { z0.d }, p0, [x0, z1.d, lsl #2]
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
%data_trunc = trunc <vscale x 2 x i64> %data to <vscale x 2 x i32>
|
|
|
|
call void @llvm.aarch64.sve.st1.scatter.index.nxv2i32(<vscale x 2 x i32> %data_trunc,
|
|
|
|
<vscale x 2 x i1> %pg,
|
|
|
|
i32* %base,
|
|
|
|
<vscale x 2 x i64> %offsets)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @sst1d_index(<vscale x 2 x i64> %data, <vscale x 2 x i1> %pg, i64* %base, <vscale x 2 x i64> %offsets) {
|
|
|
|
; CHECK-LABEL: sst1d_index
|
|
|
|
; CHECK: st1d { z0.d }, p0, [x0, z1.d, lsl #3]
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
call void @llvm.aarch64.sve.st1.scatter.index.nxv2i64(<vscale x 2 x i64> %data,
|
|
|
|
<vscale x 2 x i1> %pg,
|
|
|
|
i64* %base,
|
|
|
|
<vscale x 2 x i64> %offsets)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @sst1d_index_double(<vscale x 2 x double> %data, <vscale x 2 x i1> %pg, double* %base, <vscale x 2 x i64> %offsets) {
|
|
|
|
; CHECK-LABEL: sst1d_index_double
|
|
|
|
; CHECK: st1d { z0.d }, p0, [x0, z1.d, lsl #3]
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
call void @llvm.aarch64.sve.st1.scatter.index.nxv2f64(<vscale x 2 x double> %data,
|
|
|
|
<vscale x 2 x i1> %pg,
|
|
|
|
double* %base,
|
|
|
|
<vscale x 2 x i64> %offsets)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
declare void @llvm.aarch64.sve.st1.scatter.index.nxv2i16(<vscale x 2 x i16>, <vscale x 2 x i1>, i16*, <vscale x 2 x i64>)
|
|
|
|
declare void @llvm.aarch64.sve.st1.scatter.index.nxv2i32(<vscale x 2 x i32>, <vscale x 2 x i1>, i32*, <vscale x 2 x i64>)
|
|
|
|
declare void @llvm.aarch64.sve.st1.scatter.index.nxv2i64(<vscale x 2 x i64>, <vscale x 2 x i1>, i64*, <vscale x 2 x i64>)
|
|
|
|
declare void @llvm.aarch64.sve.st1.scatter.index.nxv2f64(<vscale x 2 x double>, <vscale x 2 x i1>, double*, <vscale x 2 x i64>)
|