diff options
| author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-12-11 10:38:06 +0000 | 
|---|---|---|
| committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-12-11 10:38:06 +0000 | 
| commit | 8d84a7d3b7bbfda18d25a0008e8f84b0bcf9bb31 (patch) | |
| tree | 1f3aff7711dfcef021ed13538d4a17f4500c9e4d /llvm/tools/llvmc/plugins | |
| parent | c808012918c51145ae89857089c6adcde0c0b5b2 (diff) | |
| download | bcm5719-llvm-8d84a7d3b7bbfda18d25a0008e8f84b0bcf9bb31.tar.gz bcm5719-llvm-8d84a7d3b7bbfda18d25a0008e8f84b0bcf9bb31.zip | |
Merge Base.td and Tools.td.
This stuff is not used outside Base.td, and with the conversion of the
compilation graph to string-based format became much less (if at all)
useful.
llvm-svn: 60873
Diffstat (limited to 'llvm/tools/llvmc/plugins')
| -rw-r--r-- | llvm/tools/llvmc/plugins/Base/Base.td | 140 | 
1 files changed, 138 insertions, 2 deletions
| diff --git a/llvm/tools/llvmc/plugins/Base/Base.td b/llvm/tools/llvmc/plugins/Base/Base.td index 85a37cb41a7..38455a9d43c 100644 --- a/llvm/tools/llvmc/plugins/Base/Base.td +++ b/llvm/tools/llvmc/plugins/Base/Base.td @@ -12,9 +12,145 @@  //===----------------------------------------------------------------------===//  include "llvm/CompilerDriver/Common.td" -include "llvm/CompilerDriver/Tools.td" -// Toolchains +// Options + +def OptList : OptionList<[ + (switch_option "emit-llvm", +    (help "Emit LLVM .ll files instead of native object files")), + (switch_option "E", +    (help "Stop after the preprocessing stage, do not run the compiler")), + (switch_option "fsyntax-only", +    (help "Stop after checking the input for syntax errors")), + (switch_option "opt", +    (help "Enable opt")), + (switch_option "S", +    (help "Stop after compilation, do not assemble")), + (switch_option "c", +    (help "Compile and assemble, but do not link")), + (switch_option "pthread", +    (help "Enable threads")), + (parameter_option "linker", +    (help "Choose linker (possible values: gcc, g++)")), + (parameter_list_option "include", +    (help "Include the named file prior to preprocessing")), + (prefix_list_option "I", +    (help "Add a directory to include path")), + (prefix_list_option "Wa,", +    (help "Pass options to assembler")), + (prefix_list_option "L", +    (help "Add a directory to link path")), + (prefix_list_option "l", +    (help "Search a library when linking")), + (prefix_list_option "Wl,", +    (help "Pass options to linker")) +]>; + +// Tools + +class llvm_gcc_based <string cmd_prefix, string in_lang, string E_ext> : Tool< +[(in_language in_lang), + (out_language "llvm-bitcode"), + (output_suffix "bc"), + (cmd_line (case +            (switch_on "E"), +              (case (not_empty "o"), +                    !strconcat(cmd_prefix, " -E $INFILE -o $OUTFILE"), +                    (default), +                    !strconcat(cmd_prefix, " -E $INFILE")), +            (switch_on "fsyntax-only"), +              !strconcat(cmd_prefix, " -fsyntax-only $INFILE"), +            (and (switch_on "S"), (switch_on "emit-llvm")), +              !strconcat(cmd_prefix, " -S $INFILE -o $OUTFILE -emit-llvm"), +            (default), +              !strconcat(cmd_prefix, " -c $INFILE -o $OUTFILE -emit-llvm"))), + (actions +     (case +         (switch_on "E"), [(stop_compilation), (output_suffix E_ext)], +         (and (switch_on "emit-llvm"), (switch_on "S")), +              [(output_suffix "ll"), (stop_compilation)], +         (and (switch_on "emit-llvm"), (switch_on "c")), (stop_compilation), +         (switch_on "fsyntax-only"), (stop_compilation), +         (not_empty "include"), (forward "include"), +         (not_empty "I"), (forward "I"))), + (sink) +]>; + +def llvm_gcc_c : llvm_gcc_based<"llvm-gcc -x c", "c", "i">; +def llvm_gcc_cpp : llvm_gcc_based<"llvm-g++ -x c++", "c++", "i">; +def llvm_gcc_m : llvm_gcc_based<"llvm-gcc -x objective-c", "objective-c", "mi">; +def llvm_gcc_mxx : llvm_gcc_based<"llvm-gcc -x objective-c++", +                                  "objective-c++", "mi">; + +def opt : Tool< +[(in_language "llvm-bitcode"), + (out_language "llvm-bitcode"), + (output_suffix "bc"), + (cmd_line "opt -f $INFILE -o $OUTFILE") +]>; + +def llvm_as : Tool< +[(in_language "llvm-assembler"), + (out_language "llvm-bitcode"), + (output_suffix "bc"), + (cmd_line "llvm-as $INFILE -o $OUTFILE") +]>; + +def llvm_gcc_assembler : Tool< +[(in_language "assembler"), + (out_language "object-code"), + (output_suffix "o"), + (cmd_line "llvm-gcc -c -x assembler $INFILE -o $OUTFILE"), + (actions (case +          (switch_on "c"), (stop_compilation), +          (not_empty "Wa,"), (unpack_values "Wa,"))) +]>; + +def llc : Tool< +[(in_language "llvm-bitcode"), + (out_language "assembler"), + (output_suffix "s"), + (cmd_line "llc -relocation-model=pic -f $INFILE -o $OUTFILE"), + (actions (case (switch_on "S"), (stop_compilation))) +]>; + +// Base class for linkers +class llvm_gcc_based_linker <string cmd_prefix> : Tool< +[(in_language "object-code"), + (out_language "executable"), + (output_suffix "out"), + (cmd_line !strconcat(cmd_prefix, " $INFILE -o $OUTFILE")), + (join), + (actions (case +          (switch_on "pthread"), (append_cmd "-lpthread"), +          (not_empty "L"), (forward "L"), +          (not_empty "l"), (forward "l"), +          (not_empty "Wl,"), (unpack_values "Wl,"))) +]>; + +// Default linker +def llvm_gcc_linker : llvm_gcc_based_linker<"llvm-gcc">; +// Alternative linker for C++ +def llvm_gcc_cpp_linker : llvm_gcc_based_linker<"llvm-g++">; + +// Language map + +def LanguageMap : LanguageMap< +    [LangToSuffixes<"c++", ["cc", "cp", "cxx", "cpp", "CPP", "c++", "C"]>, +     LangToSuffixes<"c", ["c"]>, +     LangToSuffixes<"c-cpp-output", ["i"]>, +     LangToSuffixes<"objective-c-cpp-output", ["mi"]>, +     LangToSuffixes<"objective-c++", ["mm"]>, +     LangToSuffixes<"objective-c", ["m"]>, +     LangToSuffixes<"assembler", ["s"]>, +     LangToSuffixes<"assembler-with-cpp", ["S"]>, +     LangToSuffixes<"llvm-assembler", ["ll"]>, +     LangToSuffixes<"llvm-bitcode", ["bc"]>, +     LangToSuffixes<"object-code", ["o"]>, +     LangToSuffixes<"executable", ["out"]> +     ]>; + +// Compilation graph  def CompilationGraph : CompilationGraph<[      Edge<"root", "llvm_gcc_c">, | 

