forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64][SVE] Add intrinsics for gather loads with 64-bit offsets
This patch adds the following intrinsics for gather loads with 64-bit offsets: * @llvm.aarch64.sve.ld1.gather (unscaled offset) * @llvm.aarch64.sve.ld1.gather.index (scaled offset) These intrinsics map 1-1 to the following AArch64 instructions respectively (examples for half-words): * ld1h { z0.d }, p0/z, [x0, z0.d] * ld1h { z0.d }, p0/z, [x0, z0.d, lsl #1] Committing on behalf of Andrzej Warzynski (andwar) Reviewers: sdesmalen, huntergr, rovka, mgudim, dancgr, rengolin, efriedma Reviewed By: efriedma Tags: #llvm Differential Revision: https://reviews.llvm.org/D70542
- Loading branch information
1 parent
409350d
commit 6e51ceb
Showing
9 changed files
with
310 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
llvm/test/CodeGen/AArch64/sve-intrinsics-gather-loads-64bit-scaled-offset.ll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sve < %s | FileCheck %s | ||
|
||
; | ||
; LD1H, LD1W, LD1D: base + 64-bit scaled offset | ||
; e.g. ld1h z0.d, p0/z, [x0, z0.d, lsl #1] | ||
; | ||
|
||
define <vscale x 2 x i64> @gld1h_index(<vscale x 2 x i1> %pg, i16* %base, <vscale x 2 x i64> %b) { | ||
; CHECK-LABEL: gld1h_index | ||
; CHECK: ld1h { z0.d }, p0/z, [x0, z0.d, lsl #1] | ||
; CHECK-NEXT: mov w8, #65535 | ||
; CHECK-NEXT: mov z1.d, x8 | ||
; CHECK-NEXT: and z0.d, z0.d, z1.d | ||
; CHECK-NEXT: ret | ||
%load = call <vscale x 2 x i16> @llvm.aarch64.sve.ld1.gather.index.nxv2i16(<vscale x 2 x i1> %pg, | ||
i16* %base, | ||
<vscale x 2 x i64> %b) | ||
%res = zext <vscale x 2 x i16> %load to <vscale x 2 x i64> | ||
ret <vscale x 2 x i64> %res | ||
} | ||
|
||
define <vscale x 2 x i64> @gld1w_index(<vscale x 2 x i1> %pg, i32* %base, <vscale x 2 x i64> %b) { | ||
; CHECK-LABEL: gld1w_index | ||
; CHECK: ld1w { z0.d }, p0/z, [x0, z0.d, lsl #2] | ||
; CHECK-NEXT: mov w8, #-1 | ||
; CHECK-NEXT: mov z1.d, x8 | ||
; CHECK-NEXT: and z0.d, z0.d, z1.d | ||
; CHECK-NEXT: ret | ||
%load = call <vscale x 2 x i32> @llvm.aarch64.sve.ld1.gather.index.nxv2i32(<vscale x 2 x i1> %pg, | ||
i32* %base, | ||
<vscale x 2 x i64> %b) | ||
%res = zext <vscale x 2 x i32> %load to <vscale x 2 x i64> | ||
ret <vscale x 2 x i64> %res | ||
} | ||
|
||
define <vscale x 2 x i64> @gld1d_index(<vscale x 2 x i1> %pg, i64* %base, <vscale x 2 x i64> %b) { | ||
; CHECK-LABEL: gld1d_index | ||
; CHECK: ld1d { z0.d }, p0/z, [x0, z0.d, lsl #3] | ||
; CHECK-NEXT: ret | ||
%load = call <vscale x 2 x i64> @llvm.aarch64.sve.ld1.gather.index.nxv2i64(<vscale x 2 x i1> %pg, | ||
i64* %base, | ||
<vscale x 2 x i64> %b) | ||
ret <vscale x 2 x i64> %load | ||
} | ||
|
||
define <vscale x 2 x double> @gld1d_index_double(<vscale x 2 x i1> %pg, double* %base, <vscale x 2 x i64> %b) { | ||
; CHECK-LABEL: gld1d_index_double | ||
; CHECK: ld1d { z0.d }, p0/z, [x0, z0.d, lsl #3] | ||
; CHECK-NEXT: ret | ||
%load = call <vscale x 2 x double> @llvm.aarch64.sve.ld1.gather.index.nxv2f64(<vscale x 2 x i1> %pg, | ||
double* %base, | ||
<vscale x 2 x i64> %b) | ||
ret <vscale x 2 x double> %load | ||
} | ||
|
||
declare <vscale x 2 x i16> @llvm.aarch64.sve.ld1.gather.index.nxv2i16(<vscale x 2 x i1>, i16*, <vscale x 2 x i64>) | ||
declare <vscale x 2 x i32> @llvm.aarch64.sve.ld1.gather.index.nxv2i32(<vscale x 2 x i1>, i32*, <vscale x 2 x i64>) | ||
declare <vscale x 2 x i64> @llvm.aarch64.sve.ld1.gather.index.nxv2i64(<vscale x 2 x i1>, i64*, <vscale x 2 x i64>) | ||
declare <vscale x 2 x double> @llvm.aarch64.sve.ld1.gather.index.nxv2f64(<vscale x 2 x i1>, double*, <vscale x 2 x i64>) |
Oops, something went wrong.