mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
ARM: improve WoA ABI conformance for frame register
Windows on ARM uses R11 for the frame pointer even though the environment is a pure Thumb-2, thumb-only environment. Replicate this behaviour to improve Windows ABI compatibility. This register is used for fast stack walking, and thus is part of the Windows ABI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209085 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
22
test/CodeGen/ARM/Windows/frame-register.ll
Normal file
22
test/CodeGen/ARM/Windows/frame-register.ll
Normal file
@@ -0,0 +1,22 @@
|
||||
; RUN: llc -mtriple thumbv7-windows -disable-fp-elim -filetype asm -o - %s \
|
||||
; RUN: | FileCheck %s
|
||||
|
||||
declare void @callee(i32)
|
||||
|
||||
define i32 @calleer(i32 %i) {
|
||||
entry:
|
||||
%i.addr = alloca i32, align 4
|
||||
%j = alloca i32, align 4
|
||||
store i32 %i, i32* %i.addr, align 4
|
||||
%0 = load i32* %i.addr, align 4
|
||||
%add = add nsw i32 %0, 1
|
||||
store i32 %add, i32* %j, align 4
|
||||
%1 = load i32* %j, align 4
|
||||
call void @callee(i32 %1)
|
||||
%2 = load i32* %j, align 4
|
||||
%add1 = add nsw i32 %2, 1
|
||||
ret i32 %add1
|
||||
}
|
||||
|
||||
; CHECK: push.w {r11, lr}
|
||||
|
Reference in New Issue
Block a user