diff --git a/docs/CompilerDriver.html b/docs/CompilerDriver.html index 761d6ee6810..0a3f8771623 100644 --- a/docs/CompilerDriver.html +++ b/docs/CompilerDriver.html @@ -17,28 +17,28 @@ The ReST source lives in the directory 'tools/llvmc/doc'. -->
Contents
LLVMC is a generic compiler driver, designed to be customizable and extensible. It plays the same role for LLVM as the gcc program does for GCC - LLVMC's job is essentially to transform a set of input @@ -63,7 +63,7 @@ example, as a build tool for game resources.
need to be familiar with it to customize LLVMC.LLVMC tries hard to be as compatible with gcc as possible, although there are some small differences. Most of the time, however, you shouldn't be able to notice them:
@@ -100,7 +100,7 @@ hello possible to choose the clang compiler with the -clang option.LLVMC has some built-in options that can't be overridden in the configuration libraries:
It's easiest to start working on your own LLVMC plugin by copying the skeleton project which lives under $LLVMC_DIR/plugins/Simple:
@@ -176,7 +176,7 @@ $ llvmc -load $LLVM_DIR/Release/lib/plugin_llvmc_Simple.so
By default, the llvmc executable consists of a driver core plus several statically linked plugins (Base and Clang at the moment). You can produce a standalone LLVMC-based driver executable by linking the core with your @@ -215,7 +215,7 @@ $ make LLVMC_BUILTIN_PLUGINS=""
Each TableGen configuration file should include the common definitions:
@@ -283,7 +283,7 @@ debugging), run llvmcgsview installed for this to work properly.
Command-line options that the plugin supports are defined by using an OptionList:
@@ -342,6 +342,11 @@ the --help output (bu
output).
Sometimes, when linking several plugins together, one plugin needs to
access options defined in some other plugin. Because of the way
options are implemented, such options must be marked as
@@ -374,7 +379,7 @@ ignored. See also the section on plugin
- The 'case' construct is the main means by which programmability is
achieved in LLVMC. It can be used to calculate edge weights, program
actions and modify the shell commands to be executed. The 'case'
@@ -433,7 +438,7 @@ a given value.
Example: (parameter_equals "W", "all").
Conditional evaluation
+Conditional evaluation
As was said earlier, nodes in the compilation graph represent tools, which are described separately. A tool definition looks like this (taken from the include/llvm/CompilerDriver/Tools.td file):
@@ -512,12 +517,12 @@ list of input files and joins them together. Used for linkers. tools are passed to this tool.A tool often needs to react to command-line options, and this is precisely what the actions property is for. The next example illustrates this feature:
@@ -550,28 +555,31 @@ like a linker.Possible actions:
-
- append_cmd - append a string to the tool invocation -command. -Example: (case (switch_on "pthread"), (append_cmd -"-lpthread"))
-- error - exit with error. +
- append_cmd - Append a string to the tool invocation command. +Example: (case (switch_on "pthread"), (append_cmd "-lpthread")).
+- error - Exit with error. Example: (error "Mixing -c and -S is not allowed!").
-- warning - print a warning. +
- warning - Print a warning. Example: (warning "Specifying both -O1 and -O2 is meaningless!").
-- forward - forward an option unchanged. Example: (forward "Wall").
-- forward_as - Change the name of an option, but forward the -argument unchanged. +
- forward - Forward the option unchanged. +Example: (forward "Wall").
+- forward_as - Change the option's name, but forward the argument +unchanged. Example: (forward_as "O0", "--disable-optimization").
-- output_suffix - modify the output suffix of this -tool. +
- forward_value - Forward only option's value. Cannot be used with switch +options (since they don't have values), but works fine with lists. +Example: (forward_value "Wa,").
+- forward_transformed_value - As above, but applies a hook to the +option's value before forwarding (see below). When +forward_transformed_value is applied to a list +option, the hook must have signature +std::string hooks::HookName (const std::vector<std::string>&). +Example: (forward_transformed_value "m", "ConvertToMAttr").
+- output_suffix - Modify the output suffix of this tool. Example: (output_suffix "i").
-- stop_compilation - stop compilation after this tool processes -its input. Used without arguments.
-- unpack_values - used for for splitting and forwarding -comma-separated lists of options, e.g. -Wa,-foo=bar,-baz is -converted to -foo=bar -baz and appended to the tool invocation -command. -Example: (unpack_values "Wa,").
+- stop_compilation - Stop compilation after this tool processes its +input. Used without arguments. +Example: (stop_compilation).
If you are adding support for a new language to LLVMC, you'll need to modify the language map, which defines mappings from file extensions to language names. It is used to choose the proper toolchain(s) for a @@ -602,7 +610,7 @@ multiple output languages, for nodes "inside" the graph the input and output languages should match. This is enforced at compile-time.
It is sometimes useful to run error-checking code before processing the compilation graph. For example, if optimization options "-O1" and "-O2" are implemented as switches, we might want to output a warning if the user invokes @@ -629,9 +637,9 @@ in OptionPreprocessor convenience, unset_option also works on lists.
Normally, LLVMC executes programs from the system PATH. Sometimes, this is not sufficient: for example, we may want to specify tool paths or names in the configuration file. This can be easily achieved via @@ -664,7 +672,7 @@ the case expression (
It is possible for LLVMC plugins to depend on each other. For example, one can create edges between nodes defined in some other plugin. To make this work, however, that plugin should be loaded first. To @@ -680,7 +688,7 @@ with 0. Therefore, the plugin with the highest priority value will be loaded last.
When writing LLVMC plugins, it can be useful to get a visual view of the resulting compilation graph. This can be achieved via the command line option --view-graph. This command assumes that Graphviz and @@ -696,7 +704,7 @@ perform any compilation tasks and returns the number of encountered errors as its status code.
For now, the executable name (the value passed to the driver in argv[0]) is accessible only in the C++ code (i.e. hooks). Use the following code:
@@ -704,12 +712,16 @@ namespace llvmc { extern const char* ProgramName; } +namespace hooks { + std::string MyHook() { //... if (strcmp(ProgramName, "mydriver") == 0) { //... } + +} // end namespace hooks
In general, you're encouraged not to make the behaviour dependent on the
executable file name, and use command-line switches instead. See for example how
@@ -727,7 +739,7 @@ the Base plugin behav
Mikhail Glushenkov
LLVM Compiler Infrastructure
-Last modified: $Date$
+Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $