mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-14 01:40:53 +00:00
![Matthias Braun](/assets/img/avatar_default.png)
This changes TargetFrameLowering::processFunctionBeforeCalleeSavedScan(): - Rename the function to determineCalleeSaves() - Pass a bitset of callee saved registers by reference, thus avoiding the function-global PhysRegUsed bitset in MachineRegisterInfo. - Without PhysRegUsed the implementation is fine tuned to not save physcial registers which are only read but never modified. Related to rdar://21539507 Differential Revision: http://reviews.llvm.org/D10909 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242165 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
722 B
LLVM
27 lines
722 B
LLVM
; RUN: llc < %s -mtriple=arm-apple-ios | FileCheck %s
|
|
; RUN: llc < %s -mtriple=thumbv6-apple-ios | FileCheck %s
|
|
; RUN: llc < %s -mtriple=arm-apple-ios -regalloc=basic | FileCheck %s
|
|
; RUN: llc < %s -mtriple=thumbv6-apple-ios -regalloc=basic | FileCheck %s
|
|
; rdar://8015977
|
|
; rdar://8020118
|
|
|
|
define i8* @rt0(i32 %x) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: rt0:
|
|
; CHECK: mov r0, lr
|
|
%0 = tail call i8* @llvm.returnaddress(i32 0)
|
|
ret i8* %0
|
|
}
|
|
|
|
define i8* @rt2() nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: rt2:
|
|
; CHECK: ldr r[[R0:[0-9]+]], [r7]
|
|
; CHECK: ldr r0, [r[[R0]]]
|
|
; CHECK: ldr r0, [r[[R0]], #4]
|
|
%0 = tail call i8* @llvm.returnaddress(i32 2)
|
|
ret i8* %0
|
|
}
|
|
|
|
declare i8* @llvm.returnaddress(i32) nounwind readnone
|