mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Add Uses=[SP] to call instructions. This fixes a miscompilation with a
variable sized alloca. llvm-svn: 138433
This commit is contained in:
parent
1da38a34a6
commit
6b6b0b535d
@ -739,7 +739,7 @@ def LDAP_lu10_ba : _FLU10<(outs),
|
||||
|
||||
let isCall=1,
|
||||
// All calls clobber the link register and the non-callee-saved registers:
|
||||
Defs = [R0, R1, R2, R3, R11, LR] in {
|
||||
Defs = [R0, R1, R2, R3, R11, LR], Uses = [SP] in {
|
||||
def BL_u10 : _FU10<
|
||||
(outs),
|
||||
(ins calltarget:$target, variable_ops),
|
||||
@ -981,7 +981,7 @@ def ECALLF_1r : _F1R<(outs), (ins GRRegs:$src),
|
||||
|
||||
let isCall=1,
|
||||
// All calls clobber the link register and the non-callee-saved registers:
|
||||
Defs = [R0, R1, R2, R3, R11, LR] in {
|
||||
Defs = [R0, R1, R2, R3, R11, LR], Uses = [SP] in {
|
||||
def BLA_1r : _F1R<(outs), (ins GRRegs:$addr, variable_ops),
|
||||
"bla $addr",
|
||||
[(XCoreBranchLink GRRegs:$addr)]>;
|
||||
|
20
test/CodeGen/XCore/2011-08-01-DynamicAllocBug.ll
Normal file
20
test/CodeGen/XCore/2011-08-01-DynamicAllocBug.ll
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: llc < %s -march=xcore | FileCheck %s
|
||||
|
||||
declare void @g()
|
||||
declare i8* @llvm.stacksave() nounwind
|
||||
declare void @llvm.stackrestore(i8*) nounwind
|
||||
|
||||
define void @f(i32** %p, i32 %size) {
|
||||
allocas:
|
||||
%0 = call i8* @llvm.stacksave()
|
||||
%a = alloca i32, i32 %size
|
||||
store i32* %a, i32** %p
|
||||
call void @g()
|
||||
call void @llvm.stackrestore(i8* %0)
|
||||
ret void
|
||||
}
|
||||
; CHECK: f:
|
||||
; CHECK: ldaw [[REGISTER:r[0-9]+]], {{r[0-9]+}}[-r1]
|
||||
; CHECK: set sp, [[REGISTER]]
|
||||
; CHECK extsp 1
|
||||
; CHECK bl g
|
Loading…
Reference in New Issue
Block a user