forked from rust-lang/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64][SVE] Detect MOV (imm, pred, zeroing/merging) (llvm#116032)
Add patterns to fold MOV (scalar, predicated) to MOV (imm, pred, merging) or MOV (imm, pred, zeroing) as appropriate. This affects the `@llvm.aarch64.sve.dup` intrinsics, which currently generate MOV (scalar, predicated) instructions even when the immediate forms are possible. For example: ``` svuint8_t mov_z_b(svbool_t p) { return svdup_u8_z(p, 1); } ``` Currently generates: ``` mov_z_b(__SVBool_t): mov z0.b, #0 mov w8, #1 mov z0.b, p0/m, w8 ret ``` Instead of: ``` mov_z_b(__SVBool_t): mov z0.b, p0/z, #1 ret ```
- Loading branch information
Showing
3 changed files
with
105 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sve < %s | FileCheck %s | ||
|
||
; Zeroing. | ||
|
||
define <vscale x 16 x i8> @mov_z_b(<vscale x 16 x i1> %pg) { | ||
; CHECK-LABEL: mov_z_b: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.b, p0/z, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 16 x i8> @llvm.aarch64.sve.dup.nxv16i8(<vscale x 16 x i8> zeroinitializer, <vscale x 16 x i1> %pg, i8 1) | ||
ret <vscale x 16 x i8> %r | ||
} | ||
|
||
define <vscale x 8 x i16> @mov_z_h(<vscale x 8 x i1> %pg) { | ||
; CHECK-LABEL: mov_z_h: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.h, p0/z, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 8 x i16> @llvm.aarch64.sve.dup.nxv8i16(<vscale x 8 x i16> zeroinitializer, <vscale x 8 x i1> %pg, i16 1) | ||
ret <vscale x 8 x i16> %r | ||
} | ||
|
||
define <vscale x 4 x i32> @mov_z_s(<vscale x 4 x i1> %pg) { | ||
; CHECK-LABEL: mov_z_s: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.s, p0/z, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 4 x i32> @llvm.aarch64.sve.dup.nxv4i32(<vscale x 4 x i32> zeroinitializer, <vscale x 4 x i1> %pg, i32 1) | ||
ret <vscale x 4 x i32> %r | ||
} | ||
|
||
define <vscale x 2 x i64> @mov_z_d(<vscale x 2 x i1> %pg) { | ||
; CHECK-LABEL: mov_z_d: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.d, p0/z, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 2 x i64> @llvm.aarch64.sve.dup.nxv2i64(<vscale x 2 x i64> zeroinitializer, <vscale x 2 x i1> %pg, i64 1) | ||
ret <vscale x 2 x i64> %r | ||
} | ||
|
||
; Merging. | ||
|
||
define <vscale x 16 x i8> @mov_m_b(<vscale x 16 x i8> %zd, <vscale x 16 x i1> %pg) { | ||
; CHECK-LABEL: mov_m_b: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.b, p0/m, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 16 x i8> @llvm.aarch64.sve.dup.nxv16i8(<vscale x 16 x i8> %zd, <vscale x 16 x i1> %pg, i8 1) | ||
ret <vscale x 16 x i8> %r | ||
} | ||
|
||
define <vscale x 8 x i16> @mov_m_h(<vscale x 8 x i16> %zd, <vscale x 8 x i1> %pg) { | ||
; CHECK-LABEL: mov_m_h: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.h, p0/m, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 8 x i16> @llvm.aarch64.sve.dup.nxv8i16(<vscale x 8 x i16> %zd, <vscale x 8 x i1> %pg, i16 1) | ||
ret <vscale x 8 x i16> %r | ||
} | ||
|
||
define <vscale x 4 x i32> @mov_m_s(<vscale x 4 x i32> %zd, <vscale x 4 x i1> %pg) { | ||
; CHECK-LABEL: mov_m_s: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.s, p0/m, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 4 x i32> @llvm.aarch64.sve.dup.nxv4i32(<vscale x 4 x i32> %zd, <vscale x 4 x i1> %pg, i32 1) | ||
ret <vscale x 4 x i32> %r | ||
} | ||
|
||
define <vscale x 2 x i64> @mov_m_d(<vscale x 2 x i64> %zd, <vscale x 2 x i1> %pg) { | ||
; CHECK-LABEL: mov_m_d: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: mov z0.d, p0/m, #1 // =0x1 | ||
; CHECK-NEXT: ret | ||
%r = tail call <vscale x 2 x i64> @llvm.aarch64.sve.dup.nxv2i64(<vscale x 2 x i64> %zd, <vscale x 2 x i1> %pg, i64 1) | ||
ret <vscale x 2 x i64> %r | ||
} | ||
|
||
declare <vscale x 16 x i8> @llvm.aarch64.sve.dup.nxv16i8(<vscale x 16 x i8>, <vscale x 16 x i1>, i8) | ||
declare <vscale x 8 x i16> @llvm.aarch64.sve.dup.nxv8i16(<vscale x 8 x i16>, <vscale x 8 x i1>, i16) | ||
declare <vscale x 4 x i32> @llvm.aarch64.sve.dup.nxv4i32(<vscale x 4 x i32>, <vscale x 4 x i1>, i32) | ||
declare <vscale x 2 x i64> @llvm.aarch64.sve.dup.nxv2i64(<vscale x 2 x i64>, <vscale x 2 x i1>, i64) |