1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/AArch64/machine-outliner-inline-asm-adrp.mir
Jessica Paquette f7f9e664cd [MachineOutliner] Check for explicit uses of LR/W30 in MI operands
Before, the outliner would grab ADRPs that used LR/W30. This patch fixes
that by checking for explicit uses of those registers before the special-casing
for ADRPs.

This also adds a test that ensures that those sorts of ADRPs won't be outlined.

llvm-svn: 330783
2018-04-24 22:38:15 +00:00

58 lines
1.2 KiB
YAML

# RUN: llc -simplify-mir -run-pass=machine-outliner -verify-machineinstrs %s -o - | FileCheck %s
# CHECK-NOT: OUTLINED_FUNCTION
--- |
target triple = "arm64----"
@g = external global i64, align 8
define void @foo() #0 {
ret void
}
define void @foo2() #0 {
ret void
}
define void @foo3() #0 {
ret void
}
attributes #0 = { nounwind noredzone }
...
---
name: foo
alignment: 2
tracksRegLiveness: true
body: |
bb.0 (%ir-block.0):
liveins: $x27, $lr
$x27 = ADRP target-flags(aarch64-page, aarch64-got) @g
$lr = ADRP target-flags(aarch64-page, aarch64-got) @g
RET undef $lr
...
---
name: foo2
alignment: 2
tracksRegLiveness: true
body: |
bb.0 (%ir-block.0):
liveins: $x27, $lr
$x27 = ADRP target-flags(aarch64-page, aarch64-got) @g
$lr = ADRP target-flags(aarch64-page, aarch64-got) @g
RET undef $lr
...
---
name: foo3
alignment: 2
tracksRegLiveness: true
body: |
bb.0 (%ir-block.0):
liveins: $x27, $lr
$x27 = ADRP target-flags(aarch64-page, aarch64-got) @g
$lr = ADRP target-flags(aarch64-page, aarch64-got) @g
RET undef $lr
...