mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 17:31:50 +00:00
89dbe97442
When we're rematerializing into a not-quite-right register we already add the real definition as an imp-def, but we should also be marking the "official" register as dead, since nothing else is going to use it as a result of this remat. Not doing this can affect pressure tracking. rdar://problem/14158833 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184002 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
812 B
LLVM
24 lines
812 B
LLVM
; REQUIRES: asserts
|
|
; RUN: llc -mtriple=x86_64-apple-darwin -debug -o /dev/null < %s 2>&1 | FileCheck %s
|
|
|
|
; We need to make sure that rematerialization into a physical register marks the
|
|
; super- or sub-register as dead after this rematerialization since only the
|
|
; original register is actually used later. Largely irrelevant for a trivial
|
|
; example like this, since EAX is never used again, but easy to test.
|
|
|
|
define i8 @test_remat() {
|
|
ret i8 0
|
|
; CHECK: REGISTER COALESCING
|
|
; CHECK: Remat: %EAX<def,dead> = MOV32r0 %EFLAGS<imp-def,dead>, %AL<imp-def>
|
|
}
|
|
|
|
; On the other hand, if it's already the correct width, we really shouldn't be
|
|
; marking the definition register as dead.
|
|
|
|
define i32 @test_remat32() {
|
|
ret i32 0
|
|
; CHECK: REGISTER COALESCING
|
|
; CHECK: Remat: %EAX<def> = MOV32r0 %EFLAGS<imp-def,dead>
|
|
}
|
|
|