forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When scavenging for a use in instruction MI, we will reload after that instruction and hence cannot spill uses/defs of this instruction. This fixes http://llvm.org/PR33687 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@307352 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
3 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# RUN: llc -o - %s -mtriple=arm-arm-none-eabi -mcpu=cortex-m0 -run-pass scavenger-test | FileCheck %s | ||
--- | ||
# CHECK-LABEL: name: scavengebug0 | ||
# Make sure we are not spilling/using a physreg used in the very last | ||
# instruction of the scavenging range. | ||
# CHECK-NOT: tSTRi {{.*}}%r0,{{.*}}%r0 | ||
# CHECK-NOT: tSTRi {{.*}}%r1,{{.*}}%r1 | ||
# CHECK-NOT: tSTRi {{.*}}%r2,{{.*}}%r2 | ||
# CHECK-NOT: tSTRi {{.*}}%r3,{{.*}}%r3 | ||
# CHECK-NOT: tSTRi {{.*}}%r4,{{.*}}%r4 | ||
# CHECK-NOT: tSTRi {{.*}}%r5,{{.*}}%r5 | ||
# CHECK-NOT: tSTRi {{.*}}%r6,{{.*}}%r6 | ||
# CHECK-NOT: tSTRi {{.*}}%r7,{{.*}}%r7 | ||
name: scavengebug0 | ||
body: | | ||
bb.0: | ||
; Bring up register pressure to force emergency spilling | ||
%r0 = IMPLICIT_DEF | ||
%r1 = IMPLICIT_DEF | ||
%r2 = IMPLICIT_DEF | ||
%r3 = IMPLICIT_DEF | ||
%r4 = IMPLICIT_DEF | ||
%r5 = IMPLICIT_DEF | ||
%r6 = IMPLICIT_DEF | ||
%r7 = IMPLICIT_DEF | ||
%0 : tgpr = IMPLICIT_DEF | ||
%0 = tADDhirr %0, %sp, 14, _ | ||
tSTRi %r0, %0, 0, 14, _ | ||
%1 : tgpr = IMPLICIT_DEF | ||
%1 = tADDhirr %1, %sp, 14, _ | ||
tSTRi %r1, %1, 0, 14, _ | ||
%2 : tgpr = IMPLICIT_DEF | ||
%2 = tADDhirr %2, %sp, 14, _ | ||
tSTRi %r2, %2, 0, 14, _ | ||
%3 : tgpr = IMPLICIT_DEF | ||
%3 = tADDhirr %3, %sp, 14, _ | ||
tSTRi %r3, %3, 0, 14, _ | ||
%4 : tgpr = IMPLICIT_DEF | ||
%4 = tADDhirr %4, %sp, 14, _ | ||
tSTRi %r4, %4, 0, 14, _ | ||
%5 : tgpr = IMPLICIT_DEF | ||
%5 = tADDhirr %5, %sp, 14, _ | ||
tSTRi %r5, %5, 0, 14, _ | ||
%6 : tgpr = IMPLICIT_DEF | ||
%6 = tADDhirr %6, %sp, 14, _ | ||
tSTRi %r6, %6, 0, 14, _ | ||
%7 : tgpr = IMPLICIT_DEF | ||
%7 = tADDhirr %7, %sp, 14, _ | ||
tSTRi %r7, %7, 0, 14, _ | ||
KILL %r0 | ||
KILL %r1 | ||
KILL %r2 | ||
KILL %r3 | ||
KILL %r4 | ||
KILL %r5 | ||
KILL %r6 | ||
KILL %r7 |