mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-27 07:12:06 +00:00
32b9ed845a
Add an option to enable the analysis of MachineFunction register usage to extract the list of clobbered registers. When enabled, the CodeGen order is changed to be bottom up on the Call Graph. The analysis is split in two parts, RegUsageInfoCollector is the MachineFunction Pass that runs post-RA and collect the list of clobbered registers to produce a register mask. An immutable pass, RegisterUsageInfo, stores the RegMask produced by RegUsageInfoCollector, and keep them available. A future tranformation pass will use this information to update every call-sites after instruction selection. Patch by Vivek Pandya <vivekvpandya@gmail.com> Differential Revision: http://reviews.llvm.org/D20769 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272403 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
647 B
LLVM
21 lines
647 B
LLVM
; RUN: llc -enable-ipra -print-regusage -o /dev/null 2>&1 < %s | FileCheck %s
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.12.0"
|
|
|
|
; Verify that bar does not clobber anything
|
|
; CHECK-NOT: bar Clobbered Registers:{{.+}}
|
|
; CHECK: bar Clobbered Registers:
|
|
define void @bar() #0 {
|
|
ret void
|
|
}
|
|
|
|
; Verifies that inline assembly is correctly handled by giving a list of clobbered registers
|
|
; CHECK: foo Clobbered Registers: AH AL AX CH CL CX DI DIL EAX ECX EDI RAX RCX RDI
|
|
define void @foo() #0 {
|
|
call void asm sideeffect "", "~{eax},~{ecx},~{edi}"() #0
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { nounwind }
|