1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 04:52:54 +02:00
llvm-mirror/test/CodeGen/AArch64/machine-outliner.mir
Eli Friedman f156ca7ef2 [MachineOutliner] Add "thunk" outlining for AArch64.
When we're outlining a sequence that ends in a call, we can save up to
three instructions in the outlined function by turning the call into
a tail-call. I refer to this as thunk outlining because the resulting
outlined function looks like a thunk; suggestions welcome for a better
name.

In addition to making the outlined function shorter, thunk outlining
allows outlining calls which would otherwise be illegal to outline:
we don't need to save/restore LR, so we don't need to prove anything
about the stack access patterns of the callee.

To make this work effectively, I also added
MachineOutlinerInstrType::LegalTerminator to the generic MachineOutliner
code; this allows treating an arbitrary instruction as a terminator in
the suffix tree.

Differential Revision: https://reviews.llvm.org/D47173

llvm-svn: 333015
2018-05-22 19:11:06 +00:00

170 lines
4.6 KiB
YAML

# RUN: llc -mtriple=aarch64--- -run-pass=prologepilog -run-pass=machine-outliner -verify-machineinstrs %s -o - | FileCheck %s
--- |
@x = common global i32 0, align 4
define void @baz() #0 {
ret void
}
define i32 @main() #0 {
ret i32 0
}
define void @bar(i32 %a) #0 {
ret void
}
attributes #0 = { noinline noredzone "no-frame-pointer-elim"="true" }
...
---
# This test ensures that we
# - Create outlined functions
# - Don't outline anything to do with LR or W30
# - Save LR when it's not available
# - Don't outline stack instructions when we might need to save + restore
# - Functions whose addresses are taken can still be outlined
#
# CHECK-LABEL: name: main
# CHECK: BL @OUTLINED_FUNCTION_[[F0:[0-9]+]]
# CHECK-NEXT: early-clobber $sp, $lr = LDRXpost $sp, 16
# CHECK-NEXT: $x16 = ADDXri $sp, 48, 0
# CHECK-NEXT: STRHHroW $w16, $x9, $w30, 1, 1
# CHECK-NEXT: $lr = ORRXri $xzr, 1
# CHECK: BL @OUTLINED_FUNCTION_[[F0]]
# CHECK-NEXT: early-clobber $sp, $lr = LDRXpost $sp, 16
# CHECK-NEXT: $x16 = ADDXri $sp, 48, 0
# CHECK-NEXT: STRHHroW $w16, $x9, $w30, 1, 1
# CHECK-NEXT: $lr = ORRXri $xzr, 1
# CHECK: BL @OUTLINED_FUNCTION_[[F0]]
# CHECK-NEXT: early-clobber $sp, $lr = LDRXpost $sp, 16
# CHECK-NEXT: $x16 = ADDXri $sp, 48, 0
# CHECK-NEXT: STRHHroW $w16, $x9, $w30, 1, 1
# CHECK-NEXT: $lr = ORRXri $xzr, 1
name: main
tracksRegLiveness: true
body: |
bb.0:
$sp = frame-setup SUBXri $sp, 16, 0
renamable $x9 = ADRP target-flags(aarch64-page) @bar
$x9 = ORRXri $xzr, 1
$w16 = ORRWri $wzr, 1
$w30 = ORRWri $wzr, 1
$lr = ORRXri $xzr, 1
$x20, $x19 = LDPXi $sp, 10
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
renamable $x9 = ADRP target-flags(aarch64-page) @x
$x16 = ADDXri $sp, 48, 0;
STRHHroW $w16, $x9, $w30, 1, 1
$lr = ORRXri $xzr, 1
$w3 = ORRWri $wzr, 1993
$x20, $x19 = LDPXi $sp, 10
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
renamable $x9 = ADRP target-flags(aarch64-page) @x
$x16 = ADDXri $sp, 48, 0;
STRHHroW $w16, $x9, $w30, 1, 1
$lr = ORRXri $xzr, 1
$w4 = ORRWri $wzr, 1994
$x20, $x19 = LDPXi $sp, 10
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
$w16 = ORRWri $wzr, 1
renamable $x9 = ADRP target-flags(aarch64-page) @x
$x16 = ADDXri $sp, 48, 0;
STRHHroW $w16, $x9, $w30, 1, 1
$lr = ORRXri $xzr, 1
$sp = ADDXri $sp, 16, 0
RET undef $lr
...
---
# This test ensures that we can avoid saving LR when it's available.
# It also makes sure that KILL instructions don't impact outlining.
# CHECK-LABEL: bb.1:
# CHECK-NOT: BL @baz, implicit-def dead $lr, implicit $sp
# CHECK: BL @OUTLINED_FUNCTION_[[F1:[0-9]+]], implicit-def $lr, implicit $sp
# CHECK-NEXT: $w17 = ORRWri $wzr, 2
# CHECK-NEXT: BL @OUTLINED_FUNCTION_[[F1]], implicit-def $lr, implicit $sp
# CHECK-NEXT: $w8 = ORRWri $wzr, 0
# CHECK-NOT: $w17 = KILL renamable $w17, implicit killed $w17
name: bar
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $lr, $w8
$sp = frame-setup SUBXri $sp, 32, 0
$fp = frame-setup ADDXri $sp, 16, 0
bb.1:
BL @baz, implicit-def dead $lr, implicit $sp
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 1
$w17 = KILL renamable $w17, implicit killed $w17
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 1
BL @baz, implicit-def dead $lr, implicit $sp
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 2
BL @baz, implicit-def dead $lr, implicit $sp
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 1
BL @baz, implicit-def dead $lr, implicit $sp
$w17 = ORRWri $wzr, 1
$w17 = ORRWri $wzr, 1
$w8 = ORRWri $wzr, 0
bb.2:
$w15 = ORRWri $wzr, 1
$w15 = ORRWri $wzr, 1
$w15 = ORRWri $wzr, 1
$w15 = ORRWri $wzr, 1
$x15 = ADDXri $sp, 48, 0;
$w9 = ORRWri $wzr, 0
$w15 = ORRWri $wzr, 1
$w15 = ORRWri $wzr, 1
$w15 = ORRWri $wzr, 1
$w15 = ORRWri $wzr, 1
$x15 = ADDXri $sp, 48, 0;
$w8 = ORRWri $wzr, 0
bb.3:
$fp, $lr = LDPXi $sp, 2
$sp = ADDXri $sp, 32, 0
RET undef $lr
...
---
name: baz
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $lr, $w8
RET undef $lr
# CHECK-LABEL: name: OUTLINED_FUNCTION_{{[0-9]}}
# CHECK=LABEL: name: OUTLINED_FUNCTION_{{[1-9]}}