mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Update to reflect stkrc's new optimization capabilities.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16327 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d4ff15af96
commit
e52b44e799
@ -4,19 +4,11 @@
|
|||||||
# Language definitions
|
# Language definitions
|
||||||
##########################################################
|
##########################################################
|
||||||
lang.name=Stacker
|
lang.name=Stacker
|
||||||
lang.opt1=-simplifycfg -instcombine -mem2reg
|
lang.opt1=-O1
|
||||||
lang.opt2=-simplifycfg -instcombine -mem2reg -load-vn \
|
lang.opt2=-O2
|
||||||
-gcse -dse -scalarrepl -sccp
|
lang.opt3=-O3
|
||||||
lang.opt3=-simplifycfg -instcombine -mem2reg -load-vn \
|
lang.opt4=-O4
|
||||||
-gcse -dse -scalarrepl -sccp -branch-combine -adce \
|
lang.opt5=-O5
|
||||||
-globaldce -inline -licm
|
|
||||||
lang.opt4=-simplifycfg -instcombine -mem2reg -load-vn \
|
|
||||||
-gcse -dse -scalarrepl -sccp -ipconstprop \
|
|
||||||
-branch-combine -adce -globaldce -inline -licm
|
|
||||||
lang.opt5=-simplifycfg -instcombine -mem2reg --load-vn \
|
|
||||||
-gcse -dse scalarrepl -sccp -ipconstprop \
|
|
||||||
-branch-combine -adce -globaldce -inline -licm \
|
|
||||||
-block-placement
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
# Pre-processor definitions
|
# Pre-processor definitions
|
||||||
@ -33,15 +25,15 @@
|
|||||||
|
|
||||||
# To compile stacker source, we just run the stacker
|
# To compile stacker source, we just run the stacker
|
||||||
# compiler with a default stack size of 2048 entries.
|
# compiler with a default stack size of 2048 entries.
|
||||||
translator.command=stkrc -s 2048 %in% -o %out% %time% \
|
translator.command=stkrc -s 2048 %in% -o %out% %opt% \
|
||||||
%stats% %force% %args%
|
%time% %stats% %force% %args%
|
||||||
|
|
||||||
# stkrc doesn't preprocess but we set this to true so
|
# stkrc doesn't preprocess but we set this to true so
|
||||||
# that we don't run the cp command by default.
|
# that we don't run the cp command by default.
|
||||||
translator.preprocesses=true
|
translator.preprocesses=true
|
||||||
|
|
||||||
# The translator is required to run.
|
# The translator is required to run.
|
||||||
translator.required=true
|
translator.required=false
|
||||||
|
|
||||||
# stkrc doesn't handle the -On options
|
# stkrc doesn't handle the -On options
|
||||||
translator.output=bytecode
|
translator.output=bytecode
|
||||||
@ -51,16 +43,16 @@
|
|||||||
##########################################################
|
##########################################################
|
||||||
|
|
||||||
# For optimization, we use the LLVM "opt" program
|
# For optimization, we use the LLVM "opt" program
|
||||||
optimizer.command=opt %in% -o %out% %opt% %time% %stats% \
|
optimizer.command=stkrc -s 2048 %in% -o %out% %opt% \
|
||||||
%force% %args%
|
%time% %stats% %force% %args%
|
||||||
|
|
||||||
optimizer.required = true
|
optimizer.required = yes
|
||||||
|
|
||||||
# opt doesn't translate
|
# opt doesn't translate
|
||||||
optimizer.translates = no
|
optimizer.translates = yes
|
||||||
|
|
||||||
# opt doesn't preprocess
|
# opt doesn't preprocess
|
||||||
optimizer.preprocesses=no
|
optimizer.preprocesses=yes
|
||||||
|
|
||||||
# opt produces bytecode
|
# opt produces bytecode
|
||||||
optimizer.output = bc
|
optimizer.output = bc
|
||||||
|
Loading…
Reference in New Issue
Block a user