Skip to content

Commit

Permalink
[AArch64] Teach the AArch64 backend patterns to generate the RAX1 ins…
Browse files Browse the repository at this point in the history
…truction.

Differential Revision: https://reviews.llvm.org/D147887
  • Loading branch information
BK1603 authored and davemgreen committed Apr 14, 2023
1 parent 89cd0e8 commit b4c1b07
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions llvm/lib/Target/AArch64/AArch64InstrInfo.td
Original file line number Diff line number Diff line change
Expand Up @@ -1273,6 +1273,8 @@ def : Pat<(v2i64 (int_aarch64_crypto_rax1 (v2i64 V128:$Vn), (v2i64 V128:$Vm))),
def : Pat<(v2i64 (int_aarch64_crypto_xar (v2i64 V128:$Vn), (v2i64 V128:$Vm), (i64 timm0_63:$imm))),
(XAR (v2i64 V128:$Vn), (v2i64 V128:$Vm), (timm0_63:$imm))>;

def : Pat<(xor (v2i64 V128:$Vn), (or (AArch64vlshr (v2i64 V128:$Vm), (i32 63)), (AArch64vshl (v2i64 V128:$Vm), (i32 1)))),
(RAX1 (v2i64 V128:$Vn), (v2i64 V128:$Vm))>;

} // HasSHA3

Expand Down
23 changes: 23 additions & 0 deletions llvm/test/CodeGen/AArch64/rax1.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 2
; RUN: llc -mtriple=aarch64-none-eabi -mattr=+sha3 < %s | FileCheck --check-prefix=SHA3 %s
; RUN: llc -mtriple=aarch64-none-eabi -mattr=-sha3 < %s | FileCheck --check-prefix=NOSHA3 %s

define <2 x i64> @rax1(<2 x i64> %x, <2 x i64> %y) {
; SHA3-LABEL: rax1:
; SHA3: // %bb.0:
; SHA3-NEXT: rax1 v0.2d, v0.2d, v1.2d
; SHA3-NEXT: ret
;
; NOSHA3-LABEL: rax1:
; NOSHA3: // %bb.0:
; NOSHA3-NEXT: ushr v2.2d, v1.2d, #63
; NOSHA3-NEXT: shl v1.2d, v1.2d, #1
; NOSHA3-NEXT: orr v1.16b, v1.16b, v2.16b
; NOSHA3-NEXT: eor v0.16b, v0.16b, v1.16b
; NOSHA3-NEXT: ret
%a = call <2 x i64> @llvm.fshl.v2i64(<2 x i64> %y, <2 x i64> %y, <2 x i64> <i64 1, i64 1>)
%b = xor <2 x i64> %x, %a
ret <2 x i64> %b
}

declare <2 x i64> @llvm.fshl.v2i64(<2 x i64>, <2 x i64>, <2 x i64>)

0 comments on commit b4c1b07

Please sign in to comment.