On SystemZ, the outgoing argument area which is big enough for all calls in the function is created once during the prolog, as opposed to adjusting the stack around each call. The call-sequence instructions are therefore not really useful any more than to compute the maximum call frame size, which has so far been done by PEI, but can just as well be done at an earlier point. This patch removes the mapping of the CallFrameSetupOpcode and CallFrameDestroyOpcode and instead computes the MaxCallFrameSize directly after instruction selection and then removes the ADJCALLSTACK pseudos. This removes the confusing pseudos and also avoids the problem of having to keep the call frame size accurate when creating new MBBs. This fixes #76618 which exposed the need to maintain the call frame size when splitting blocks (which was not done).
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
# RUN: llc -mtriple=s390x-linux-gnu -mcpu=z15 -start-before=greedy %s -o - \
|
|
# RUN: | FileCheck %s
|
|
#
|
|
# Test that two-address reg alloc hints are given so that a SELR becomes LOCR.
|
|
|
|
|
|
--- |
|
|
define i32 @fun(i32 %arg, i32 %arg1, i32 %arg2, ptr %arg3) { ret i32 0 }
|
|
declare void @foo(i32)
|
|
...
|
|
# CHECK-LABEL: fun
|
|
# CHECK: locr
|
|
|
|
---
|
|
name: fun
|
|
alignment: 16
|
|
tracksRegLiveness: true
|
|
registers:
|
|
- { id: 0, class: gr32bit }
|
|
- { id: 1, class: gr32bit }
|
|
- { id: 2, class: gr32bit }
|
|
- { id: 3, class: gr32bit }
|
|
- { id: 4, class: gr64bit }
|
|
- { id: 5, class: grx32bit }
|
|
- { id: 6, class: grx32bit }
|
|
- { id: 7, class: addr64bit }
|
|
- { id: 8, class: grx32bit }
|
|
- { id: 9, class: grx32bit }
|
|
- { id: 10, class: gr64bit }
|
|
- { id: 11, class: gr32bit }
|
|
frameInfo:
|
|
maxAlignment: 1
|
|
adjustsStack: true
|
|
hasCalls: true
|
|
machineFunctionInfo: {}
|
|
body: |
|
|
bb.0:
|
|
%5:grx32bit = LHIMux 88
|
|
%8:grx32bit = LHIMux 77
|
|
%9:grx32bit = LHIMux 66
|
|
|
|
bb.1:
|
|
%6:grx32bit = LLCMux undef %7:addr64bit, 0, $noreg :: (load (s8) from `ptr undef`)
|
|
CHIMux %6, 1, implicit-def $cc
|
|
%11:gr32bit = SELRMux %8, %9:grx32bit, 14, 6, implicit killed $cc
|
|
CHIMux %6, 2, implicit-def $cc
|
|
%0:gr32bit = SELRMux %11, %5, 14, 8, implicit killed $cc
|
|
%10:gr64bit = LGFR %0
|
|
$r2d = COPY %10
|
|
CallBRASL @foo, killed $r2d, csr_systemz_elf, implicit-def dead $r14d, implicit-def dead $cc, implicit $fpc
|
|
J %bb.1
|
|
|
|
...
|