Shorten lines so this file can be used as the documentation example

directly. Remove -pre (experimental pass).


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15992 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2004-08-22 18:01:19 +00:00
parent 0e5e5f56bd
commit b50acbcf49

View File

@@ -5,14 +5,18 @@
########################################################## ##########################################################
lang.name=Stacker lang.name=Stacker
lang.opt1=-simplifycfg -instcombine -mem2reg lang.opt1=-simplifycfg -instcombine -mem2reg
lang.opt2=-simplifycfg -instcombine -mem2reg -load-vn -gcse -dse -scalarrepl -sccp lang.opt2=-simplifycfg -instcombine -mem2reg -load-vn \
lang.opt3=-simplifycfg -instcombine -mem2reg -load-vn -gcse -dse -scalarrepl -sccp \ -gcse -dse -scalarrepl -sccp
-branch-combine -adce -globaldce -inline -licm -pre lang.opt3=-simplifycfg -instcombine -mem2reg -load-vn \
lang.opt4=-simplifycfg -instcombine -mem2reg -load-vn -gcse -dse -scalarrepl -sccp \ -gcse -dse -scalarrepl -sccp -branch-combine -adce \
-ipconstprop -branch-combine -adce -globaldce -inline -licm -pre -globaldce -inline -licm
lang.opt5=-simplifycfg -instcombine -mem2reg --load-vn -gcse -dse scalarrepl -sccp \ lang.opt4=-simplifycfg -instcombine -mem2reg -load-vn \
-ipconstprop -branch-combine -adce -globaldce -inline -licm -pre \ -gcse -dse -scalarrepl -sccp -ipconstprop \
-block-placement -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
@@ -29,7 +33,8 @@
# 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% %stats% translator.command=stkrc -s 2048 %in% -o %out% %time% \
%stats% %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.
@@ -49,7 +54,8 @@
########################################################## ##########################################################
# 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=opt %in% -o %out% %opt% %time% %stats% \
%args%
# opt doesn't (yet) grok -On # opt doesn't (yet) grok -On
optimizer.groks_dash_O=no optimizer.groks_dash_O=no
@@ -63,8 +69,8 @@
########################################################## ##########################################################
# Assembler definitions # Assembler definitions
########################################################## ##########################################################
assembler.command=llc %in% -o %out% %target% "-regalloc=linearscan" \ assembler.command=llc %in% -o %out% %target% \
%time% %stats% "-regalloc=linearscan" %time% %stats%
########################################################## ##########################################################
# Linker definitions # Linker definitions