2009-06-07 07:08:01 +00:00
|
|
|
//===- PIC16Base.td - PIC16 toolchain driver ---------------*- tablegen -*-===//
|
|
|
|
//
|
|
|
|
// A basic driver for the PIC16 toolchain.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
|
|
|
|
// Options
|
|
|
|
|
|
|
|
def OptionList : OptionList<[
|
|
|
|
(switch_option "g",
|
2009-07-01 16:10:29 +00:00
|
|
|
(help "Enable Debugging")),
|
2009-06-07 07:08:01 +00:00
|
|
|
(switch_option "S",
|
|
|
|
(help "Stop after compilation, do not assemble")),
|
2009-07-02 17:35:38 +00:00
|
|
|
(switch_option "c",
|
|
|
|
(help "Stop after assemble, do not link")),
|
2009-06-07 07:08:01 +00:00
|
|
|
(parameter_option "I",
|
|
|
|
(help "Add a directory to include path")),
|
|
|
|
(parameter_option "pre-RA-sched",
|
|
|
|
(help "Example of an option that is passed to llc")),
|
|
|
|
(prefix_list_option "Wa,",
|
|
|
|
(help "Pass options to native assembler")),
|
|
|
|
(prefix_list_option "Wl,",
|
|
|
|
(help "Pass options to native linker")),
|
|
|
|
(prefix_list_option "Wllc,",
|
|
|
|
(help "Pass options to llc")),
|
|
|
|
(prefix_list_option "Wo,",
|
|
|
|
(help "Pass options to llvm-ld"))
|
|
|
|
]>;
|
|
|
|
|
|
|
|
// Tools
|
|
|
|
|
|
|
|
def clang_cc : Tool<[
|
|
|
|
(in_language "c"),
|
|
|
|
(out_language "llvm-bitcode"),
|
|
|
|
(output_suffix "bc"),
|
2009-07-01 16:10:29 +00:00
|
|
|
(cmd_line "$CALL(GetBinDir)clang-cc -I $CALL(GetStdHeadersDir) -triple=pic16- -emit-llvm-bc $INFILE -o $OUTFILE"),
|
2009-06-07 07:08:01 +00:00
|
|
|
(actions (case
|
|
|
|
(not_empty "I"), (forward "I"))),
|
|
|
|
(sink)
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def llvm_ld : Tool<[
|
|
|
|
(in_language "llvm-bitcode"),
|
|
|
|
(out_language "llvm-bitcode"),
|
|
|
|
(output_suffix "bc"),
|
2009-07-02 17:51:09 +00:00
|
|
|
(cmd_line "$CALL(GetBinDir)llvm-ld -link-as-library $INFILE -o $OUTFILE"),
|
2009-06-07 07:08:01 +00:00
|
|
|
(actions (case
|
|
|
|
(switch_on "g"), (append_cmd "-disable-opt"),
|
|
|
|
(not_empty "Wo,"), (unpack_values "Wo,")))
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def llvm_ld_lto : Tool<[
|
|
|
|
(in_language "llvm-bitcode"),
|
|
|
|
(out_language "llvm-bitcode"),
|
|
|
|
(output_suffix "bc"),
|
2009-08-06 04:09:26 +00:00
|
|
|
(cmd_line "$CALL(GetBinDir)llvm-ld -L $CALL(GetStdLibsDir) -l std $INFILE -b $OUTFILE"),
|
2009-06-07 07:08:01 +00:00
|
|
|
(actions (case
|
|
|
|
(switch_on "g"), (append_cmd "-disable-opt"),
|
|
|
|
(not_empty "Wo,"), (unpack_values "Wo,"))),
|
|
|
|
(join)
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def llc : Tool<[
|
|
|
|
(in_language "llvm-bitcode"),
|
|
|
|
(out_language "assembler"),
|
|
|
|
(output_suffix "s"),
|
2009-07-09 08:20:25 +00:00
|
|
|
(cmd_line "$CALL(GetBinDir)llc -march=pic16 -disable-jump-tables -f $INFILE -o $OUTFILE"),
|
2009-06-07 07:08:01 +00:00
|
|
|
(actions (case
|
|
|
|
(switch_on "S"), (stop_compilation),
|
|
|
|
(not_empty "Wllc,"), (unpack_values "Wllc,"),
|
|
|
|
(not_empty "pre-RA-sched"), (forward "pre-RA-sched")))
|
|
|
|
]>;
|
|
|
|
|
2009-07-01 16:10:29 +00:00
|
|
|
def gpasm : Tool<[
|
2009-06-07 07:08:01 +00:00
|
|
|
(in_language "assembler"),
|
|
|
|
(out_language "object-code"),
|
|
|
|
(output_suffix "o"),
|
2009-07-02 17:51:09 +00:00
|
|
|
(cmd_line "$CALL(GetBinDir)gpasm -r decimal -p p16F1937 -I $CALL(GetStdAsmHeadersDir) -C -c $INFILE -o $OUTFILE"),
|
2009-06-07 07:08:01 +00:00
|
|
|
(actions (case
|
2009-07-02 17:35:38 +00:00
|
|
|
(switch_on "c"), (stop_compilation),
|
2009-06-07 07:08:01 +00:00
|
|
|
(not_empty "Wa,"), (unpack_values "Wa,")))
|
|
|
|
]>;
|
|
|
|
|
2009-07-01 16:10:29 +00:00
|
|
|
def mplink : Tool<[
|
2009-06-07 07:08:01 +00:00
|
|
|
(in_language "object-code"),
|
|
|
|
(out_language "executable"),
|
|
|
|
(output_suffix "out"),
|
2009-07-10 19:04:05 +00:00
|
|
|
(cmd_line "$CALL(GetBinDir)mplink.exe -k $CALL(GetStdLinkerScriptsDir) -l $CALL(GetStdLibsDir) 16f1937_g.lkr intrinsics.lib devices.lib $INFILE -o $OUTFILE"),
|
2009-06-07 07:08:01 +00:00
|
|
|
(actions (case
|
|
|
|
(not_empty "Wl,"), (unpack_values "Wl,"))),
|
|
|
|
(join)
|
|
|
|
]>;
|
|
|
|
|
|
|
|
// Language map
|
|
|
|
|
|
|
|
def LanguageMap : LanguageMap<[
|
|
|
|
LangToSuffixes<"c", ["c"]>,
|
|
|
|
LangToSuffixes<"c-cpp-output", ["i"]>,
|
|
|
|
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", "clang_cc">,
|
|
|
|
Edge<"clang_cc", "llvm_ld_lto">,
|
|
|
|
Edge<"llvm_ld_lto", "llc">,
|
2009-07-02 17:35:38 +00:00
|
|
|
OptionalEdge<"clang_cc", "llvm_ld", (case
|
|
|
|
(switch_on "S"), (inc_weight),
|
|
|
|
(switch_on "c"), (inc_weight))>,
|
2009-06-07 07:08:01 +00:00
|
|
|
Edge<"llvm_ld", "llc">,
|
2009-07-01 16:10:29 +00:00
|
|
|
Edge<"llc", "gpasm">,
|
|
|
|
Edge<"gpasm", "mplink">
|
2009-06-07 07:08:01 +00:00
|
|
|
]>;
|