-
Notifications
You must be signed in to change notification settings - Fork 12.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ARM] Mark AESD and AESE instructions as commutative.
Similar to #83390, this marks AESD and AESE as commutative, as the logic of the instructions starts as a XOR between the two operands.
- Loading branch information
1 parent
03f150b
commit 5f05839
Showing
3 changed files
with
65 additions
and
22 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,41 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 4 | ||
; RUN: llc %s -o - -mtriple=armv8-none-eabi -mattr=+aes | FileCheck %s | ||
|
||
declare <16 x i8> @llvm.arm.neon.aese(<16 x i8> %d, <16 x i8> %k) | ||
declare <16 x i8> @llvm.arm.neon.aesd(<16 x i8> %d, <16 x i8> %k) | ||
|
||
define arm_aapcs_vfpcc <16 x i8> @aese(<16 x i8> %a, <16 x i8> %b) { | ||
; CHECK-LABEL: aese: | ||
; CHECK: @ %bb.0: | ||
; CHECK-NEXT: aese.8 q0, q1 | ||
; CHECK-NEXT: bx lr | ||
%r = call <16 x i8> @llvm.arm.neon.aese(<16 x i8> %a, <16 x i8> %b) | ||
ret <16 x i8> %r | ||
} | ||
|
||
define arm_aapcs_vfpcc <16 x i8> @aese_c(<16 x i8> %a, <16 x i8> %b) { | ||
; CHECK-LABEL: aese_c: | ||
; CHECK: @ %bb.0: | ||
; CHECK-NEXT: aese.8 q0, q1 | ||
; CHECK-NEXT: bx lr | ||
%r = call <16 x i8> @llvm.arm.neon.aese(<16 x i8> %b, <16 x i8> %a) | ||
ret <16 x i8> %r | ||
} | ||
|
||
define arm_aapcs_vfpcc <16 x i8> @aesd(<16 x i8> %a, <16 x i8> %b) { | ||
; CHECK-LABEL: aesd: | ||
; CHECK: @ %bb.0: | ||
; CHECK-NEXT: aesd.8 q0, q1 | ||
; CHECK-NEXT: bx lr | ||
%r = call <16 x i8> @llvm.arm.neon.aesd(<16 x i8> %a, <16 x i8> %b) | ||
ret <16 x i8> %r | ||
} | ||
|
||
define arm_aapcs_vfpcc <16 x i8> @aesd_c(<16 x i8> %a, <16 x i8> %b) { | ||
; CHECK-LABEL: aesd_c: | ||
; CHECK: @ %bb.0: | ||
; CHECK-NEXT: aesd.8 q0, q1 | ||
; CHECK-NEXT: bx lr | ||
%r = call <16 x i8> @llvm.arm.neon.aesd(<16 x i8> %b, <16 x i8> %a) | ||
ret <16 x i8> %r | ||
} |