mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +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 |
||
---|---|---|
.. | ||
32abi.ll | ||
64abi.ll | ||
64bit.ll | ||
64cond.ll | ||
64spill.ll | ||
2006-01-22-BitConvertLegalize.ll | ||
2007-05-09-JumpTables.ll | ||
2007-07-05-LiveIntervalAssert.ll | ||
2008-10-10-InlineAsmMemoryOperand.ll | ||
2008-10-10-InlineAsmRegOperand.ll | ||
2009-08-28-PIC.ll | ||
2009-08-28-WeakLinkage.ll | ||
2011-01-11-Call.ll | ||
2011-01-11-CC.ll | ||
2011-01-11-FrameAddr.ll | ||
2011-01-19-DelaySlot.ll | ||
2011-01-21-ByValArgs.ll | ||
2011-01-22-SRet.ll | ||
2011-12-03-TailDuplication.ll | ||
2012-05-01-LowerArguments.ll | ||
2013-05-17-CallFrame.ll | ||
analyze-branch.ll | ||
atomics.ll | ||
basictest.ll | ||
blockaddr.ll | ||
cast-sret-func.ll | ||
codemodel.ll | ||
constpool.ll | ||
constructor.ll | ||
ctpop.ll | ||
DbgValueOtherTargets.test | ||
disable-fsmuld-fmuls.ll | ||
empty-functions.ll | ||
exception.ll | ||
fail-alloca-align.ll | ||
float-constants.ll | ||
float.ll | ||
fp128.ll | ||
func-addr.ll | ||
globals.ll | ||
imm.ll | ||
inlineasm-bad.ll | ||
inlineasm-v9.ll | ||
inlineasm.ll | ||
leafproc.ll | ||
LeonCASAInstructionUT.ll | ||
LeonDetectRoundChangePassUT.ll | ||
LeonFixAllFDIVSQRTPassUT.ll | ||
LeonInsertNOPLoadPassUT.ll | ||
LeonItinerariesUT.ll | ||
LeonSMACUMACInstructionUT.ll | ||
lit.local.cfg | ||
mature-mc-support.ll | ||
missing-sret.ll | ||
missinglabel.ll | ||
mult-alt-generic-sparc.ll | ||
multiple-div.ll | ||
obj-relocs.ll | ||
parts.ll | ||
pic.ll | ||
private.ll | ||
readcycle.ll | ||
register-clobber.ll | ||
rem.ll | ||
reserved-regs.ll | ||
select-mask.ll | ||
sethiandn.ll | ||
setjmp.ll | ||
soft-float.ll | ||
soft-mul-div.ll | ||
spill.ll | ||
spillsize.ll | ||
sret-secondary.ll | ||
stack-align.ll | ||
stack-protector.ll | ||
thread-pointer.ll | ||
tls.ll | ||
trap.ll | ||
umulo-128-legalisation-lowering.ll | ||
varargs-v8.ll | ||
varargs.ll | ||
vector-call.ll | ||
vector-extract-elt.ll | ||
zerostructcall.ll |