mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
02501293ba
Summary: As a side-quest for D6629 jvoung pointed out that I should use -verify-machineinstrs and this found a bug in x86-32's handling of EFLAGS for PUSHF/POPF. This patch fixes the use/def, and adds -verify-machineinstrs to all x86 tests which contain 'EFLAGS'. One exception: this patch leaves inline-asm-fpstack.ll as-is because it fails -verify-machineinstrs in a way unrelated to EFLAGS. This patch also modifies cmpxchg-clobber-flags.ll along the lines of what D6629 already does by also testing i386. Test Plan: ninja check Reviewers: t.p.northover, jvoung Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D6687 llvm-svn: 224359
24 lines
834 B
LLVM
24 lines
834 B
LLVM
; REQUIRES: asserts
|
|
; RUN: llc -verify-machineinstrs -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>
|
|
}
|
|
|