mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
cc12b285b6
This will currently accept the old number of bytes syntax, and convert it to a scalar. This should be removed in the near future (I think I converted all of the tests already, but likely missed a few). Not sure what the exact syntax and policy should be. We can continue printing the number of bytes for non-generic instructions to avoid test churn and only allow non-scalar types for generic instructions. This will currently print the LLT in parentheses, but accept parsing the existing integers and implicitly converting to scalar. The parentheses are a bit ugly, but the parser logic seems unable to deal without either parentheses or some keyword to indicate the start of a type.
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
# RUN: llc -o - %s -mtriple=aarch64-windows -start-before=prologepilog \
|
|
# RUN: -stop-after=prologepilog | FileCheck %s
|
|
# Check save_freg_x, save_freg
|
|
|
|
# CHECK: early-clobber $sp = frame-setup STRDpre killed $d8, $sp, -16
|
|
# CHECK-NEXT: frame-setup SEH_SaveFReg_X 8, -16
|
|
# CHECK-NEXT: frame-setup STRDui killed $d10, $sp, 1 :: (store (s64) into %stack.0)
|
|
# CHECK-NEXT: frame-setup SEH_SaveFReg 10, 8
|
|
# CHECK-NEXT: frame-setup SEH_PrologEnd
|
|
# CHECK: frame-destroy SEH_EpilogStart
|
|
# CHECK-NEXT: $d10 = frame-destroy LDRDui $sp, 1 :: (load (s64) from %stack.0)
|
|
# CHECK-NEXT: frame-destroy SEH_SaveFReg 10, 8
|
|
# CHECK-NEXT: early-clobber $sp, $d8 = frame-destroy LDRDpost $sp, 16 :: (load (s64) from %stack.1)
|
|
# CHECK-NEXT: frame-destroy SEH_SaveFReg_X 8, -16
|
|
# 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: $d0, $d1
|
|
$d8 = FADDDrr $d0, killed $d1
|
|
$d10 = FADDDrr killed $d8, $d0
|
|
$x0 = COPY killed $d10
|
|
RET_ReallyLR implicit $x0
|
|
...
|