mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
f7ea499702
Part of the effort to refactoring frame pointer code generation. We used to use two function attributes "no-frame-pointer-elim" and "no-frame-pointer-elim-non-leaf" to represent three kinds of frame pointer usage: (all) frames use frame pointer, (non-leaf) frames use frame pointer, (none) frame use frame pointer. This CL makes the idea explicit by using only one enum function attribute "frame-pointer" Option "-frame-pointer=" replaces "-disable-fp-elim" for tools such as llc. "no-frame-pointer-elim" and "no-frame-pointer-elim-non-leaf" are still supported for easy migration to "frame-pointer". tests are mostly updated with // replace command line args ‘-disable-fp-elim=false’ with ‘-frame-pointer=none’ grep -iIrnl '\-disable-fp-elim=false' * | xargs sed -i '' -e "s/-disable-fp-elim=false/-frame-pointer=none/g" // replace command line args ‘-disable-fp-elim’ with ‘-frame-pointer=all’ grep -iIrnl '\-disable-fp-elim' * | xargs sed -i '' -e "s/-disable-fp-elim/-frame-pointer=all/g" Patch by Yuanfang Chen (tabloid.adroit)! Differential Revision: https://reviews.llvm.org/D56351 llvm-svn: 351049
21 lines
674 B
LLVM
21 lines
674 B
LLVM
; RUN: llc -mtriple=x86_64-- < %s -frame-pointer=all | FileCheck %s
|
|
|
|
; This test is checking that we don't crash and we don't incorrectly fold
|
|
; a large displacement and a frame index into a single lea.
|
|
; <rdar://problem/9763308>
|
|
|
|
declare void @bar([39 x i8]*)
|
|
define i32 @f(i64 %a, i64 %b) nounwind readnone {
|
|
entry:
|
|
%stack_main = alloca [39 x i8]
|
|
call void @bar([39 x i8]* %stack_main)
|
|
%tmp6 = add i64 %a, -2147483647
|
|
%.sum = add i64 %tmp6, %b
|
|
%tmp8 = getelementptr inbounds [39 x i8], [39 x i8]* %stack_main, i64 0, i64 %.sum
|
|
%tmp9 = load i8, i8* %tmp8, align 1
|
|
%tmp10 = sext i8 %tmp9 to i32
|
|
ret i32 %tmp10
|
|
}
|
|
; CHECK-LABEL: f:
|
|
; CHECK: movsbl -2147483647
|