[llvm-commits] CVS: llvm/tools/llvmc/st
Reid Spencer
reid at x10sys.com
Wed Dec 13 00:10:32 PST 2006
Changes in directory llvm/tools/llvmc:
st updated: 1.9 -> 1.10
---
Log message:
Ressurrect this needed file.
---
Diffs of the changes: (+63 -0)
st | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 63 insertions(+)
Index: llvm/tools/llvmc/st
diff -u /dev/null llvm/tools/llvmc/st:1.10
--- /dev/null Wed Dec 13 02:10:26 2006
+++ llvm/tools/llvmc/st Wed Dec 13 02:10:16 2006
@@ -0,0 +1,63 @@
+# Stacker Configuration File For llvmc
+
+##########################################################
+# Language definitions
+##########################################################
+ lang.name=Stacker
+ lang.opt1=-O1
+ lang.opt2=-O2
+ lang.opt3=-O3
+ lang.opt4=-O4
+ lang.opt5=-O5
+
+##########################################################
+# Pre-processor definitions
+##########################################################
+
+ # Stacker doesn't have a preprocessor but the following
+ # allows the -E option to be supported
+ preprocessor.command=cp %in% %out%
+ preprocessor.required=false
+
+##########################################################
+# Translator definitions
+##########################################################
+
+ # To compile stacker source, we just run the stacker
+ # compiler with a default stack size of 2048 entries.
+ translator.command=stkrc -s 2048 %in% -f -o %out% %opt% \
+ %time% %stats% %args%
+
+ # stkrc doesn't preprocess but we set this to true so
+ # that we don't run the cp command by default.
+ translator.preprocesses=true
+
+ # The translator is required to run.
+ translator.required=false
+
+ # stkrc doesn't handle the -On options
+ translator.output=bytecode
+
+##########################################################
+# Optimizer definitions
+##########################################################
+
+ # For optimization, we use the LLVM "opt" program
+ optimizer.command=stkrc -s 2048 %in% -f -o %out% %opt% \
+ %time% %stats% %args%
+
+ optimizer.required = yes
+
+ # opt doesn't translate
+ optimizer.translates = yes
+
+ # opt doesn't preprocess
+ optimizer.preprocesses=yes
+
+ # opt produces bytecode
+ optimizer.output = bc
+
+##########################################################
+# Assembler definitions
+##########################################################
+ assembler.command=llc %in% -o %out% %target% %time% %stats%
More information about the llvm-commits
mailing list