forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64] Replace AND with LSL#2 for LDR target (llvm#34101) (llvm#89531
) Currently, process of replacing bitwise operations consisting of `LSR`/`LSL` with `And` is performed by `DAGCombiner`. However, in certain cases, the `AND` generated by this process can be removed. Consider following case: ``` lsr x8, x8, llvm#56 and x8, x8, #0xfc ldr w0, [x2, x8] ret ``` In this case, we can remove the `AND` by changing the target of `LDR` to `[X2, X8, LSL #2]` and right-shifting amount change to 56 to 58. after changed: ``` lsr x8, x8, llvm#58 ldr w0, [x2, x8, lsl #2] ret ``` This patch checks to see if the `SHIFTING` + `AND` operation on load target can be optimized and optimizes it if it can.
- Loading branch information
1 parent
43b8885
commit 77fccb3
Showing
2 changed files
with
155 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 4 | ||
; RUN: llc < %s -mtriple=aarch64 | FileCheck %s | ||
; | ||
|
||
define i16 @load16_shr63(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load16_shr63: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #63 | ||
; CHECK-NEXT: ldrh w0, [x2, x8, lsl #1] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 63 | ||
%arrayidx = getelementptr inbounds i16, ptr %table, i64 %shr | ||
%0 = load i16, ptr %arrayidx, align 2 | ||
ret i16 %0 | ||
} | ||
|
||
define i16 @load16_shr2(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load16_shr2: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #2 | ||
; CHECK-NEXT: ldrh w0, [x2, x8, lsl #1] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 2 | ||
%arrayidx = getelementptr inbounds i16, ptr %table, i64 %shr | ||
%0 = load i16, ptr %arrayidx, align 2 | ||
ret i16 %0 | ||
} | ||
|
||
define i16 @load16_shr1(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load16_shr1: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #1 | ||
; CHECK-NEXT: ldrh w0, [x2, x8, lsl #1] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 1 | ||
%arrayidx = getelementptr inbounds i16, ptr %table, i64 %shr | ||
%0 = load i16, ptr %arrayidx, align 2 | ||
ret i16 %0 | ||
} | ||
|
||
define i32 @load32_shr63(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load32_shr63: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #63 | ||
; CHECK-NEXT: ldr w0, [x2, x8, lsl #2] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 63 | ||
%arrayidx = getelementptr inbounds i32, ptr %table, i64 %shr | ||
%0 = load i32, ptr %arrayidx, align 4 | ||
ret i32 %0 | ||
} | ||
|
||
define i32 @load32_shr2(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load32_shr2: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #2 | ||
; CHECK-NEXT: ldr w0, [x2, x8, lsl #2] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 2 | ||
%arrayidx = getelementptr inbounds i32, ptr %table, i64 %shr | ||
%0 = load i32, ptr %arrayidx, align 4 | ||
ret i32 %0 | ||
} | ||
|
||
define i32 @load32_shr1(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load32_shr1: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #1 | ||
; CHECK-NEXT: ldr w0, [x2, x8, lsl #2] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 1 | ||
%arrayidx = getelementptr inbounds i32, ptr %table, i64 %shr | ||
%0 = load i32, ptr %arrayidx, align 4 | ||
ret i32 %0 | ||
} | ||
|
||
define i64 @load64_shr63(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load64_shr63: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #63 | ||
; CHECK-NEXT: ldr x0, [x2, x8, lsl #3] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 63 | ||
%arrayidx = getelementptr inbounds i64, ptr %table, i64 %shr | ||
%0 = load i64, ptr %arrayidx, align 8 | ||
ret i64 %0 | ||
} | ||
|
||
define i64 @load64_shr2(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load64_shr2: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #2 | ||
; CHECK-NEXT: ldr x0, [x2, x8, lsl #3] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 2 | ||
%arrayidx = getelementptr inbounds i64, ptr %table, i64 %shr | ||
%0 = load i64, ptr %arrayidx, align 8 | ||
ret i64 %0 | ||
} | ||
|
||
define i64 @load64_shr1(i64 %a, i64 %b, ptr %table) { | ||
; CHECK-LABEL: load64_shr1: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: mul x8, x1, x0 | ||
; CHECK-NEXT: lsr x8, x8, #1 | ||
; CHECK-NEXT: ldr x0, [x2, x8, lsl #3] | ||
; CHECK-NEXT: ret | ||
entry: | ||
%mul = mul i64 %b, %a | ||
%shr = lshr i64 %mul, 1 | ||
%arrayidx = getelementptr inbounds i64, ptr %table, i64 %shr | ||
%0 = load i64, ptr %arrayidx, align 8 | ||
ret i64 %0 | ||
} |