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.
[RISCV] Lower the alignment requirement for a GPR pair spill for Zdin…
…x on RV32. (llvm#85871) I believe we can use XLen alignment as long as eliminateFrameIndex limits the maximum folded offset to 2043. This way when we split the load/store into two 2 instructions we'll be able to add 4 without overflowing simm12.
- Loading branch information
Showing
3 changed files
with
82 additions
and
1 deletion.
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,74 @@ | ||
# NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 4 | ||
# RUN: llc %s -mtriple=riscv32 -mattr=+zdinx -start-before=prologepilog -o - | FileCheck %s | ||
|
||
# We want to make sure eliminateFrameIndex doesn't fold sp+2044 as an offset in | ||
# a GPR pair spill/reload instruction. When we split the pair spill, we would be | ||
# unable to add 4 to the immediate without overflowing simm12. | ||
|
||
--- | | ||
define void @foo() { | ||
; CHECK-LABEL: foo: | ||
; CHECK: # %bb.0: | ||
; CHECK-NEXT: addi sp, sp, -2048 | ||
; CHECK-NEXT: addi sp, sp, -16 | ||
; CHECK-NEXT: .cfi_def_cfa_offset 2064 | ||
; CHECK-NEXT: lui t0, 1 | ||
; CHECK-NEXT: add t0, sp, t0 | ||
; CHECK-NEXT: sw a0, -2040(t0) | ||
; CHECK-NEXT: sw a1, -2036(t0) | ||
; CHECK-NEXT: lui a0, 1 | ||
; CHECK-NEXT: add a0, sp, a0 | ||
; CHECK-NEXT: sw a2, -2048(a0) | ||
; CHECK-NEXT: sw a3, -2044(a0) | ||
; CHECK-NEXT: sw a4, 2040(sp) | ||
; CHECK-NEXT: sw a5, 2044(sp) | ||
; CHECK-NEXT: sw a6, 2032(sp) | ||
; CHECK-NEXT: sw a7, 2036(sp) | ||
; CHECK-NEXT: lui a0, 1 | ||
; CHECK-NEXT: add a0, sp, a0 | ||
; CHECK-NEXT: lw a1, -2036(a0) | ||
; CHECK-NEXT: lw a0, -2040(a0) | ||
; CHECK-NEXT: lui a0, 1 | ||
; CHECK-NEXT: add a0, sp, a0 | ||
; CHECK-NEXT: lw a2, -2048(a0) | ||
; CHECK-NEXT: lw a3, -2044(a0) | ||
; CHECK-NEXT: lw a4, 2040(sp) | ||
; CHECK-NEXT: lw a5, 2044(sp) | ||
; CHECK-NEXT: lw a6, 2032(sp) | ||
; CHECK-NEXT: lw a7, 2036(sp) | ||
; CHECK-NEXT: addi sp, sp, 2032 | ||
; CHECK-NEXT: addi sp, sp, 32 | ||
; CHECK-NEXT: ret | ||
ret void | ||
} | ||
... | ||
--- | ||
name: foo | ||
tracksRegLiveness: true | ||
tracksDebugUserValues: true | ||
frameInfo: | ||
maxAlignment: 4 | ||
stack: | ||
- { id: 0, type: spill-slot, size: 8, alignment: 4 } | ||
- { id: 1, type: spill-slot, size: 8, alignment: 4 } | ||
- { id: 2, type: spill-slot, size: 8, alignment: 4 } | ||
- { id: 3, type: spill-slot, size: 8, alignment: 4 } | ||
- { id: 4, type: spill-slot, size: 2024, alignment: 4 } | ||
machineFunctionInfo: | ||
varArgsFrameIndex: 0 | ||
varArgsSaveSize: 0 | ||
body: | | ||
bb.0: | ||
liveins: $x10_x11, $x12_x13, $x14_x15, $x16_x17 | ||
PseudoRV32ZdinxSD killed renamable $x10_x11, %stack.0, 0 :: (store (s64) into %stack.0, align 4) | ||
PseudoRV32ZdinxSD killed renamable $x12_x13, %stack.1, 0 :: (store (s64) into %stack.1, align 4) | ||
PseudoRV32ZdinxSD killed renamable $x14_x15, %stack.2, 0 :: (store (s64) into %stack.2, align 4) | ||
PseudoRV32ZdinxSD killed renamable $x16_x17, %stack.3, 0 :: (store (s64) into %stack.3, align 4) | ||
renamable $x10_x11 = PseudoRV32ZdinxLD %stack.0, 0 :: (load (s64) from %stack.0, align 4) | ||
renamable $x12_x13 = PseudoRV32ZdinxLD %stack.1, 0 :: (load (s64) from %stack.1, align 4) | ||
renamable $x14_x15 = PseudoRV32ZdinxLD %stack.2, 0 :: (load (s64) from %stack.2, align 4) | ||
renamable $x16_x17 = PseudoRV32ZdinxLD %stack.3, 0 :: (load (s64) from %stack.3, align 4) | ||
PseudoRET | ||
... |