mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
[RegisterCoalescer] Remove copies to reserved registers
This allows the RegisterCoalescer to join "non-flipped" range pairs with a physical destination register -- which allows the RegisterCoalescer to remove copies like this: <vreg> = something (maybe a load, for example) ... (things that don't use PHYSREG) PHYSREG = COPY <vreg> (with all of the restrictions normally applied by the RegisterCoalescer: having compatible register classes, etc. ) Previously, the RegisterCoalescer handled only the opposite case (copying *from* a physical register). I don't handle the problem fully here, but try to get the common case where there is only one use of <vreg> (the COPY). An upcoming commit to the PowerPC backend will make this pattern much more common on PPC64/ELF systems. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226071 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
; RUN: llc -mtriple=arm-eabi %s -o /dev/null
|
||||
; RUN: llc -mcpu=generic -mtriple=arm-eabi < %s | FileCheck %s
|
||||
|
||||
%struct.comment = type { i8**, i32*, i32, i8* }
|
||||
%struct.info = type { i32, i32, i32, i32, i32, i32, i32, i8* }
|
||||
@ -7,6 +7,18 @@
|
||||
@str215 = external global [2 x i8]
|
||||
|
||||
define void @t1(%struct.state* %v) {
|
||||
|
||||
; Make sure we generate:
|
||||
; sub sp, sp, r1
|
||||
; instead of:
|
||||
; sub r1, sp, r1
|
||||
; mov sp, r1
|
||||
|
||||
; CHECK-LABEL: @t1
|
||||
; CHECK: bic [[REG1:r[0-9]+]],
|
||||
; CHECK-NOT: sub r{{[0-9]+}}, sp, [[REG1]]
|
||||
; CHECK: sub sp, sp, [[REG1]]
|
||||
|
||||
%tmp6 = load i32* null
|
||||
%tmp8 = alloca float, i32 %tmp6
|
||||
store i32 1, i32* null
|
||||
|
Reference in New Issue
Block a user