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 |
||
---|---|---|
.. | ||
addc-adde-sube-subc.ll | ||
align.ll | ||
alloca.ll | ||
alu8.ll | ||
alu16.ll | ||
alu32.ll | ||
alu64.ll | ||
analyze-branch.ll | ||
arith-with-overflow.ll | ||
atomic-cmpxchg.ll | ||
atomic-fence.ll | ||
atomic-load-store.ll | ||
atomic-rmw.ll | ||
bare-select.ll | ||
blockaddress.ll | ||
branch-relaxation.ll | ||
branch.ll | ||
bswap-ctlz-cttz-ctpop.ll | ||
byval.ll | ||
calling-conv-rv32f-ilp32.ll | ||
calling-conv-sext-zext.ll | ||
calling-conv.ll | ||
calls.ll | ||
compress-inline-asm.ll | ||
compress.ll | ||
disable-tail-calls.ll | ||
div.ll | ||
double-arith.ll | ||
double-br-fcmp.ll | ||
double-calling-conv.ll | ||
double-convert.ll | ||
double-fcmp.ll | ||
double-frem.ll | ||
double-imm.ll | ||
double-intrinsics.ll | ||
double-mem.ll | ||
double-previous-failure.ll | ||
double-select-fcmp.ll | ||
double-stack-spill-restore.ll | ||
fixups-diff.ll | ||
fixups-relax-diff.ll | ||
float-arith.ll | ||
float-br-fcmp.ll | ||
float-convert.ll | ||
float-fcmp.ll | ||
float-frem.ll | ||
float-imm.ll | ||
float-intrinsics.ll | ||
float-mem.ll | ||
float-select-fcmp.ll | ||
flt-rounds.ll | ||
fp128.ll | ||
frame.ll | ||
frameaddr-returnaddr.ll | ||
get-setcc-result-type.ll | ||
hoist-global-addr-base.ll | ||
i32-icmp.ll | ||
imm-cse.ll | ||
imm.ll | ||
indirectbr.ll | ||
init-array.ll | ||
inline-asm.ll | ||
interrupt-attr-args-error.ll | ||
interrupt-attr-invalid.ll | ||
interrupt-attr-nocall.ll | ||
interrupt-attr-ret-error.ll | ||
interrupt-attr.ll | ||
jumptable.ll | ||
large-stack.ll | ||
lit.local.cfg | ||
lsr-legaladdimm.ll | ||
mem64.ll | ||
mem.ll | ||
mul.ll | ||
musttail-call.ll | ||
option-norelax.ll | ||
option-norvc.ll | ||
option-relax.ll | ||
option-rvc.ll | ||
prefetch.ll | ||
rem.ll | ||
remat.ll | ||
rotl-rotr.ll | ||
rv64i-exhaustive-w-insts.ll | ||
rv64i-tricky-shifts.ll | ||
rv64m-exhaustive-w-insts.ll | ||
select-cc.ll | ||
sext-zext-trunc.ll | ||
shift-masked-shamt.ll | ||
shifts.ll | ||
tail-calls.ll | ||
umulo-128-legalisation-lowering.ll | ||
vararg.ll | ||
wide-mem.ll | ||
zext-with-load-is-free.ll |