1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/CodeGen/AArch64/wineh-frame2.mir
Martin Storsjö ba79f9fef9 [AArch64] Match the windows canonical callee saved register order
On windows, the callee saved registers in a canonical prologue are
ordered starting from a lower register number at a lower stack
address (with the possible gap for aligning the stack at the top);
this is the opposite order that llvm normally produces.

To achieve this, reverse the order of the registers in the
assignCalleeSavedSpillSlots callback, to get the stack objects
laid out by PrologEpilogInserter in the right order, and adjust
computeCalleeSaveRegisterPairs to lay them out from the bottom up.

This allows generated prologs more often to match the format that
allows the unwind info to be written as packed info.

Differential Revision: https://reviews.llvm.org/D88677
2020-10-03 21:37:22 +03:00

73 lines
2.2 KiB
YAML

# RUN: llc -o - %s -mtriple=aarch64-windows -start-before=prologepilog \
# RUN: -stop-after=prologepilog | FileCheck %s
# Check save_freg_x, save_frep, save_reg
# CHECK: early-clobber $sp = frame-setup STRXpre killed $x19, $sp, -48
# CHECK-NEXT: frame-setup SEH_SaveReg_X 19, -48
# CHECK-NEXT: frame-setup STPDi killed $d8, killed $d9, $sp, 1
# CHECK-NEXT: frame-setup SEH_SaveFRegP 8, 9, 8
# CHECK-NEXT: frame-setup STPDi killed $d10, killed $d11, $sp, 3
# CHECK-NEXT: frame-setup SEH_SaveFRegP 10, 11, 24
# CHECK-NEXT: frame-setup STRDui killed $d12, $sp, 5
# CHECK-NEXT: frame-setup SEH_SaveFReg 12, 40
# CHECK-NEXT: frame-setup SEH_PrologEnd
# CHECK: frame-destroy SEH_EpilogStart
# CHECK-NEXT: $d12 = frame-destroy LDRDui $sp, 5
# CHECK-NEXT: frame-destroy SEH_SaveFReg 12, 40
# CHECK-NEXT: $d10, $d11 = frame-destroy LDPDi $sp, 3
# CHECK-NEXT: frame-destroy SEH_SaveFRegP 10, 11, 24
# CHECK-NEXT: $d8, $d9 = frame-destroy LDPDi $sp, 1
# CHECK-NEXT: frame-destroy SEH_SaveFRegP 8, 9, 8
# CHECK-NEXT: early-clobber $sp, $x19 = frame-destroy LDRXpost $sp, 48
# CHECK-NEXT: frame-destroy SEH_SaveReg_X 19, -48
# CHECK-NEXT: frame-destroy SEH_EpilogEnd
# CHECK-NEXT: RET_ReallyLR implicit $x0
...
---
name: test
alignment: 4
exposesReturnsTwice: false
legalized: false
regBankSelected: false
selected: false
failedISel: false
tracksRegLiveness: true
hasWinCFI: true
registers:
liveins:
- { reg: '$w0', virtual-reg: '' }
frameInfo:
isFrameAddressTaken: false
isReturnAddressTaken: false
hasStackMap: false
hasPatchPoint: false
stackSize: 112
offsetAdjustment: 0
maxAlignment: 8
adjustsStack: false
hasCalls: false
stackProtector: ''
maxCallFrameSize: 0
hasOpaqueSPAdjustment: true
hasVAStart: false
hasMustTailInVarArgFunc: false
localFrameSize: 0
savePoint: ''
restorePoint: ''
fixedStack:
stack:
constants:
body: |
bb.0.entry:
liveins: $x0, $x1, $d0, $d1, $d10, $d11, $d8, $d9
$x19 = ADDXrr $x0, killed $x1
$d8 = FADDDrr killed $d0, $d1
$d9 = FADDDrr $d8, $d1
$d10 = FADDDrr $d9, $d8
$d11 = FADDDrr killed $d9, $d10
$d12 = FADDDrr $d11, killed $d11
$x0 = COPY $d12
RET_ReallyLR implicit $x0
...