Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 1 | =================================== |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 2 | Customizing LLVMC: Reference Manual |
| 3 | =================================== |
Mikhail Glushenkov | 23f522a | 2008-12-13 17:51:47 +0000 | [diff] [blame] | 4 | .. |
| 5 | This file was automatically generated by rst2html. |
| 6 | Please do not edit directly! |
| 7 | The ReST source lives in the directory 'tools/llvmc/doc'. |
Mikhail Glushenkov | d565203 | 2008-12-13 02:28:58 +0000 | [diff] [blame] | 8 | |
| 9 | .. contents:: |
| 10 | |
| 11 | .. raw:: html |
| 12 | |
| 13 | <div class="doc_author"> |
| 14 | <p>Written by <a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a></p> |
| 15 | </div> |
| 16 | |
| 17 | Introduction |
| 18 | ============ |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 19 | |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 20 | LLVMC is a generic compiler driver, designed to be customizable and |
| 21 | extensible. It plays the same role for LLVM as the ``gcc`` program |
| 22 | does for GCC - LLVMC's job is essentially to transform a set of input |
| 23 | files into a set of targets depending on configuration rules and user |
| 24 | options. What makes LLVMC different is that these transformation rules |
| 25 | are completely customizable - in fact, LLVMC knows nothing about the |
| 26 | specifics of transformation (even the command-line options are mostly |
| 27 | not hard-coded) and regards the transformation structure as an |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 28 | abstract graph. The structure of this graph is completely determined |
| 29 | by plugins, which can be either statically or dynamically linked. This |
| 30 | makes it possible to easily adapt LLVMC for other purposes - for |
| 31 | example, as a build tool for game resources. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 32 | |
Mikhail Glushenkov | d565203 | 2008-12-13 02:28:58 +0000 | [diff] [blame] | 33 | Because LLVMC employs TableGen_ as its configuration language, you |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 34 | need to be familiar with it to customize LLVMC. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 35 | |
Mikhail Glushenkov | 4aecec1 | 2009-06-17 02:56:08 +0000 | [diff] [blame] | 36 | .. _TableGen: http://llvm.org/docs/TableGenFundamentals.html |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 37 | |
| 38 | |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 39 | Compiling with LLVMC |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 40 | ==================== |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 41 | |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 42 | LLVMC tries hard to be as compatible with ``gcc`` as possible, |
| 43 | although there are some small differences. Most of the time, however, |
| 44 | you shouldn't be able to notice them:: |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 45 | |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 46 | $ # This works as expected: |
Mikhail Glushenkov | 113ec35 | 2008-11-25 21:38:12 +0000 | [diff] [blame] | 47 | $ llvmc -O3 -Wall hello.cpp |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 48 | $ ./a.out |
| 49 | hello |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 50 | |
Mikhail Glushenkov | 4aecec1 | 2009-06-17 02:56:08 +0000 | [diff] [blame] | 51 | One nice feature of LLVMC is that one doesn't have to distinguish between |
| 52 | different compilers for different languages (think ``g++`` vs. ``gcc``) - the |
| 53 | right toolchain is chosen automatically based on input language names (which |
| 54 | are, in turn, determined from file extensions). If you want to force files |
| 55 | ending with ".c" to compile as C++, use the ``-x`` option, just like you would |
| 56 | do it with ``gcc``:: |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 57 | |
Mikhail Glushenkov | ebdeca7 | 2008-11-25 21:34:29 +0000 | [diff] [blame] | 58 | $ # hello.c is really a C++ file |
Mikhail Glushenkov | 113ec35 | 2008-11-25 21:38:12 +0000 | [diff] [blame] | 59 | $ llvmc -x c++ hello.c |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 60 | $ ./a.out |
| 61 | hello |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 62 | |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 63 | On the other hand, when using LLVMC as a linker to combine several C++ |
| 64 | object files you should provide the ``--linker`` option since it's |
| 65 | impossible for LLVMC to choose the right linker in that case:: |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 66 | |
Mikhail Glushenkov | 113ec35 | 2008-11-25 21:38:12 +0000 | [diff] [blame] | 67 | $ llvmc -c hello.cpp |
| 68 | $ llvmc hello.o |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 69 | [A lot of link-time errors skipped] |
Mikhail Glushenkov | 113ec35 | 2008-11-25 21:38:12 +0000 | [diff] [blame] | 70 | $ llvmc --linker=c++ hello.o |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 71 | $ ./a.out |
| 72 | hello |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 73 | |
Mikhail Glushenkov | e8e4d58 | 2009-06-30 00:16:22 +0000 | [diff] [blame] | 74 | By default, LLVMC uses ``llvm-gcc`` to compile the source code. It is also |
| 75 | possible to choose the ``clang`` compiler with the ``-clang`` option. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 76 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 77 | |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 78 | Predefined options |
| 79 | ================== |
| 80 | |
| 81 | LLVMC has some built-in options that can't be overridden in the |
Mikhail Glushenkov | 7e6d70a | 2008-11-26 22:59:45 +0000 | [diff] [blame] | 82 | configuration libraries: |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 83 | |
| 84 | * ``-o FILE`` - Output file name. |
| 85 | |
| 86 | * ``-x LANGUAGE`` - Specify the language of the following input files |
| 87 | until the next -x option. |
| 88 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 89 | * ``-load PLUGIN_NAME`` - Load the specified plugin DLL. Example: |
| 90 | ``-load $LLVM_DIR/Release/lib/LLVMCSimple.so``. |
| 91 | |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 92 | * ``-v`` - Enable verbose mode, i.e. print out all executed commands. |
| 93 | |
Mikhail Glushenkov | 294f507 | 2009-06-25 18:20:44 +0000 | [diff] [blame] | 94 | * ``--save-temps`` - Write temporary files to the current directory and do not |
| 95 | delete them on exit. This option can also take an argument: the |
| 96 | ``--save-temps=obj`` switch will write files into the directory specified with |
| 97 | the ``-o`` option. The ``--save-temps=cwd`` and ``--save-temps`` switches are |
| 98 | both synonyms for the default behaviour. |
| 99 | |
Mikhail Glushenkov | 09826e3 | 2009-07-11 19:27:40 +0000 | [diff] [blame] | 100 | * ``--temp-dir DIRECTORY`` - Store temporary files in the given directory. This |
| 101 | directory is deleted on exit unless ``--save-temps`` is specified. If |
| 102 | ``--save-temps=obj`` is also specified, ``--temp-dir`` is given the |
| 103 | precedence. |
Mikhail Glushenkov | 792f182 | 2009-07-09 19:39:16 +0000 | [diff] [blame] | 104 | |
Mikhail Glushenkov | 4ad0d57 | 2009-03-27 12:58:29 +0000 | [diff] [blame] | 105 | * ``--check-graph`` - Check the compilation for common errors like mismatched |
| 106 | output/input language names, multiple default edges and cycles. Because of |
Mikhail Glushenkov | 530f399 | 2009-06-16 00:13:52 +0000 | [diff] [blame] | 107 | plugins, these checks can't be performed at compile-time. Exit with code zero |
| 108 | if no errors were found, and return the number of found errors |
| 109 | otherwise. Hidden option, useful for debugging LLVMC plugins. |
Mikhail Glushenkov | f8c430b | 2009-01-09 16:16:27 +0000 | [diff] [blame] | 110 | |
Mikhail Glushenkov | 4ad0d57 | 2009-03-27 12:58:29 +0000 | [diff] [blame] | 111 | * ``--view-graph`` - Show a graphical representation of the compilation graph |
| 112 | and exit. Requires that you have ``dot`` and ``gv`` programs installed. Hidden |
| 113 | option, useful for debugging LLVMC plugins. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 114 | |
Mikhail Glushenkov | 4ad0d57 | 2009-03-27 12:58:29 +0000 | [diff] [blame] | 115 | * ``--write-graph`` - Write a ``compilation-graph.dot`` file in the current |
| 116 | directory with the compilation graph description in Graphviz format (identical |
Mikhail Glushenkov | 530f399 | 2009-06-16 00:13:52 +0000 | [diff] [blame] | 117 | to the file used by the ``--view-graph`` option). The ``-o`` option can be |
| 118 | used to set the output file name. Hidden option, useful for debugging LLVMC |
| 119 | plugins. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 120 | |
Mikhail Glushenkov | 7329610 | 2008-05-30 06:29:17 +0000 | [diff] [blame] | 121 | * ``--help``, ``--help-hidden``, ``--version`` - These options have |
| 122 | their standard meaning. |
| 123 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 124 | Compiling LLVMC plugins |
| 125 | ======================= |
| 126 | |
| 127 | It's easiest to start working on your own LLVMC plugin by copying the |
| 128 | skeleton project which lives under ``$LLVMC_DIR/plugins/Simple``:: |
| 129 | |
| 130 | $ cd $LLVMC_DIR/plugins |
| 131 | $ cp -r Simple MyPlugin |
| 132 | $ cd MyPlugin |
| 133 | $ ls |
| 134 | Makefile PluginMain.cpp Simple.td |
| 135 | |
| 136 | As you can see, our basic plugin consists of only two files (not |
| 137 | counting the build script). ``Simple.td`` contains TableGen |
| 138 | description of the compilation graph; its format is documented in the |
| 139 | following sections. ``PluginMain.cpp`` is just a helper file used to |
| 140 | compile the auto-generated C++ code produced from TableGen source. It |
| 141 | can also contain hook definitions (see `below`__). |
| 142 | |
| 143 | __ hooks_ |
| 144 | |
| 145 | The first thing that you should do is to change the ``LLVMC_PLUGIN`` |
| 146 | variable in the ``Makefile`` to avoid conflicts (since this variable |
| 147 | is used to name the resulting library):: |
| 148 | |
| 149 | LLVMC_PLUGIN=MyPlugin |
| 150 | |
| 151 | It is also a good idea to rename ``Simple.td`` to something less |
| 152 | generic:: |
| 153 | |
| 154 | $ mv Simple.td MyPlugin.td |
| 155 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 156 | To build your plugin as a dynamic library, just ``cd`` to its source |
| 157 | directory and run ``make``. The resulting file will be called |
Mikhail Glushenkov | 4aecec1 | 2009-06-17 02:56:08 +0000 | [diff] [blame] | 158 | ``plugin_llvmc_$(LLVMC_PLUGIN).$(DLL_EXTENSION)`` (in our case, |
| 159 | ``plugin_llvmc_MyPlugin.so``). This library can be then loaded in with the |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 160 | ``-load`` option. Example:: |
| 161 | |
| 162 | $ cd $LLVMC_DIR/plugins/Simple |
| 163 | $ make |
Mikhail Glushenkov | 4aecec1 | 2009-06-17 02:56:08 +0000 | [diff] [blame] | 164 | $ llvmc -load $LLVM_DIR/Release/lib/plugin_llvmc_Simple.so |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 165 | |
Mikhail Glushenkov | 530f399 | 2009-06-16 00:13:52 +0000 | [diff] [blame] | 166 | Compiling standalone LLVMC-based drivers |
| 167 | ======================================== |
| 168 | |
| 169 | By default, the ``llvmc`` executable consists of a driver core plus several |
| 170 | statically linked plugins (``Base`` and ``Clang`` at the moment). You can |
| 171 | produce a standalone LLVMC-based driver executable by linking the core with your |
| 172 | own plugins. The recommended way to do this is by starting with the provided |
| 173 | ``Skeleton`` example (``$LLVMC_DIR/example/Skeleton``):: |
| 174 | |
| 175 | $ cd $LLVMC_DIR/example/ |
| 176 | $ cp -r Skeleton mydriver |
| 177 | $ cd mydriver |
| 178 | $ vim Makefile |
| 179 | [...] |
| 180 | $ make |
| 181 | |
| 182 | If you're compiling LLVM with different source and object directories, then you |
| 183 | must perform the following additional steps before running ``make``:: |
| 184 | |
| 185 | # LLVMC_SRC_DIR = $LLVM_SRC_DIR/tools/llvmc/ |
| 186 | # LLVMC_OBJ_DIR = $LLVM_OBJ_DIR/tools/llvmc/ |
| 187 | $ cp $LLVMC_SRC_DIR/example/mydriver/Makefile \ |
| 188 | $LLVMC_OBJ_DIR/example/mydriver/ |
| 189 | $ cd $LLVMC_OBJ_DIR/example/mydriver |
| 190 | $ make |
| 191 | |
| 192 | Another way to do the same thing is by using the following command:: |
| 193 | |
| 194 | $ cd $LLVMC_DIR |
| 195 | $ make LLVMC_BUILTIN_PLUGINS=MyPlugin LLVMC_BASED_DRIVER_NAME=mydriver |
| 196 | |
Mikhail Glushenkov | 4aecec1 | 2009-06-17 02:56:08 +0000 | [diff] [blame] | 197 | This works with both srcdir == objdir and srcdir != objdir, but assumes that the |
Mikhail Glushenkov | 530f399 | 2009-06-16 00:13:52 +0000 | [diff] [blame] | 198 | plugin source directory was placed under ``$LLVMC_DIR/plugins``. |
| 199 | |
Mikhail Glushenkov | f80f0aa | 2008-11-25 21:34:01 +0000 | [diff] [blame] | 200 | Sometimes, you will want a 'bare-bones' version of LLVMC that has no |
| 201 | built-in plugins. It can be compiled with the following command:: |
| 202 | |
| 203 | $ cd $LLVMC_DIR |
Mikhail Glushenkov | 530f399 | 2009-06-16 00:13:52 +0000 | [diff] [blame] | 204 | $ make LLVMC_BUILTIN_PLUGINS="" |
Mikhail Glushenkov | f80f0aa | 2008-11-25 21:34:01 +0000 | [diff] [blame] | 205 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 206 | |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 207 | Customizing LLVMC: the compilation graph |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 208 | ======================================== |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 209 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 210 | Each TableGen configuration file should include the common |
| 211 | definitions:: |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 212 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 213 | include "llvm/CompilerDriver/Common.td" |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 214 | |
| 215 | Internally, LLVMC stores information about possible source |
| 216 | transformations in form of a graph. Nodes in this graph represent |
| 217 | tools, and edges between two nodes represent a transformation path. A |
| 218 | special "root" node is used to mark entry points for the |
| 219 | transformations. LLVMC also assigns a weight to each edge (more on |
| 220 | this later) to choose between several alternative edges. |
| 221 | |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 222 | The definition of the compilation graph (see file |
| 223 | ``plugins/Base/Base.td`` for an example) is just a list of edges:: |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 224 | |
| 225 | def CompilationGraph : CompilationGraph<[ |
Mikhail Glushenkov | 0108877 | 2008-11-17 17:29:18 +0000 | [diff] [blame] | 226 | Edge<"root", "llvm_gcc_c">, |
| 227 | Edge<"root", "llvm_gcc_assembler">, |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 228 | ... |
| 229 | |
Mikhail Glushenkov | 0108877 | 2008-11-17 17:29:18 +0000 | [diff] [blame] | 230 | Edge<"llvm_gcc_c", "llc">, |
| 231 | Edge<"llvm_gcc_cpp", "llc">, |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 232 | ... |
| 233 | |
Mikhail Glushenkov | 536637f | 2008-11-25 21:34:53 +0000 | [diff] [blame] | 234 | OptionalEdge<"llvm_gcc_c", "opt", (case (switch_on "opt"), |
| 235 | (inc_weight))>, |
| 236 | OptionalEdge<"llvm_gcc_cpp", "opt", (case (switch_on "opt"), |
| 237 | (inc_weight))>, |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 238 | ... |
| 239 | |
Mikhail Glushenkov | 0108877 | 2008-11-17 17:29:18 +0000 | [diff] [blame] | 240 | OptionalEdge<"llvm_gcc_assembler", "llvm_gcc_cpp_linker", |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 241 | (case (input_languages_contain "c++"), (inc_weight), |
| 242 | (or (parameter_equals "linker", "g++"), |
| 243 | (parameter_equals "linker", "c++")), (inc_weight))>, |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 244 | ... |
| 245 | |
| 246 | ]>; |
| 247 | |
| 248 | As you can see, the edges can be either default or optional, where |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 249 | optional edges are differentiated by an additional ``case`` expression |
Mikhail Glushenkov | 0108877 | 2008-11-17 17:29:18 +0000 | [diff] [blame] | 250 | used to calculate the weight of this edge. Notice also that we refer |
Mikhail Glushenkov | f80f0aa | 2008-11-25 21:34:01 +0000 | [diff] [blame] | 251 | to tools via their names (as strings). This makes it possible to add |
| 252 | edges to an existing compilation graph in plugins without having to |
| 253 | know about all tool definitions used in the graph. |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 254 | |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 255 | The default edges are assigned a weight of 1, and optional edges get a |
| 256 | weight of 0 + 2*N where N is the number of tests that evaluated to |
| 257 | true in the ``case`` expression. It is also possible to provide an |
| 258 | integer parameter to ``inc_weight`` and ``dec_weight`` - in this case, |
| 259 | the weight is increased (or decreased) by the provided value instead |
Mikhail Glushenkov | 7e6d70a | 2008-11-26 22:59:45 +0000 | [diff] [blame] | 260 | of the default 2. It is also possible to change the default weight of |
| 261 | an optional edge by using the ``default`` clause of the ``case`` |
| 262 | construct. |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 263 | |
| 264 | When passing an input file through the graph, LLVMC picks the edge |
| 265 | with the maximum weight. To avoid ambiguity, there should be only one |
| 266 | default edge between two nodes (with the exception of the root node, |
| 267 | which gets a special treatment - there you are allowed to specify one |
| 268 | default edge *per language*). |
| 269 | |
Mikhail Glushenkov | 7e6d70a | 2008-11-26 22:59:45 +0000 | [diff] [blame] | 270 | When multiple plugins are loaded, their compilation graphs are merged |
Mikhail Glushenkov | 3321b0f | 2008-11-28 00:12:09 +0000 | [diff] [blame] | 271 | together. Since multiple edges that have the same end nodes are not |
| 272 | allowed (i.e. the graph is not a multigraph), an edge defined in |
Mikhail Glushenkov | 7e6d70a | 2008-11-26 22:59:45 +0000 | [diff] [blame] | 273 | several plugins will be replaced by the definition from the plugin |
| 274 | that was loaded last. Plugin load order can be controlled by using the |
| 275 | plugin priority feature described above. |
| 276 | |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 277 | To get a visual representation of the compilation graph (useful for |
Mikhail Glushenkov | 113ec35 | 2008-11-25 21:38:12 +0000 | [diff] [blame] | 278 | debugging), run ``llvmc --view-graph``. You will need ``dot`` and |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 279 | ``gsview`` installed for this to work properly. |
| 280 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 281 | Describing options |
| 282 | ================== |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 283 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 284 | Command-line options that the plugin supports are defined by using an |
| 285 | ``OptionList``:: |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 286 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 287 | def Options : OptionList<[ |
| 288 | (switch_option "E", (help "Help string")), |
| 289 | (alias_option "quiet", "q") |
| 290 | ... |
| 291 | ]>; |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 292 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 293 | As you can see, the option list is just a list of DAGs, where each DAG |
| 294 | is an option description consisting of the option name and some |
| 295 | properties. A plugin can define more than one option list (they are |
| 296 | all merged together in the end), which can be handy if one wants to |
| 297 | separate option groups syntactically. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 298 | |
| 299 | * Possible option types: |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 300 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 301 | - ``switch_option`` - a simple boolean switch without arguments, for example |
| 302 | ``-O2`` or ``-time``. At most one occurrence is allowed. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 303 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 304 | - ``parameter_option`` - option that takes one argument, for example |
| 305 | ``-std=c99``. It is also allowed to use spaces instead of the equality |
| 306 | sign: ``-std c99``. At most one occurrence is allowed. |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 307 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 308 | - ``parameter_list_option`` - same as the above, but more than one option |
| 309 | occurence is allowed. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 310 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 311 | - ``prefix_option`` - same as the parameter_option, but the option name and |
| 312 | argument do not have to be separated. Example: ``-ofile``. This can be also |
| 313 | specified as ``-o file``; however, ``-o=file`` will be parsed incorrectly |
| 314 | (``=file`` will be interpreted as option value). At most one occurrence is |
| 315 | allowed. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 316 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 317 | - ``prefix_list_option`` - same as the above, but more than one occurence of |
| 318 | the option is allowed; example: ``-lm -lpthread``. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 319 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 320 | - ``alias_option`` - a special option type for creating aliases. Unlike other |
| 321 | option types, aliases are not allowed to have any properties besides the |
| 322 | aliased option name. Usage example: ``(alias_option "preprocess", "E")`` |
Mikhail Glushenkov | 0ab8ac3 | 2008-05-30 06:28:00 +0000 | [diff] [blame] | 323 | |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 324 | |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 325 | * Possible option properties: |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 326 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 327 | - ``help`` - help string associated with this option. Used for ``--help`` |
| 328 | output. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 329 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 330 | - ``required`` - this option must be specified exactly once (or, in case of |
| 331 | the list options without the ``multi_val`` property, at least |
| 332 | once). Incompatible with ``zero_or_one`` and ``one_or_more``. |
| 333 | |
| 334 | - ``one_or_more`` - the option must be specified at least one time. Useful |
| 335 | only for list options in conjunction with ``multi_val``; for ordinary lists |
| 336 | it is synonymous with ``required``. Incompatible with ``required`` and |
| 337 | ``zero_or_one``. |
| 338 | |
| 339 | - ``zero_or_one`` - the option can be specified zero or one times. Useful |
| 340 | only for list options in conjunction with ``multi_val``. Incompatible with |
| 341 | ``required`` and ``one_or_more``. |
Mikhail Glushenkov | 77ddce9 | 2008-05-06 18:17:19 +0000 | [diff] [blame] | 342 | |
Mikhail Glushenkov | f9b1d79 | 2009-01-15 02:42:40 +0000 | [diff] [blame] | 343 | - ``hidden`` - the description of this option will not appear in |
| 344 | the ``--help`` output (but will appear in the ``--help-hidden`` |
| 345 | output). |
Mikhail Glushenkov | 739c720 | 2008-11-28 00:13:25 +0000 | [diff] [blame] | 346 | |
Mikhail Glushenkov | f9b1d79 | 2009-01-15 02:42:40 +0000 | [diff] [blame] | 347 | - ``really_hidden`` - the option will not be mentioned in any help |
Mikhail Glushenkov | 739c720 | 2008-11-28 00:13:25 +0000 | [diff] [blame] | 348 | output. |
| 349 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 350 | - ``comma_separated`` - Indicates that any commas specified for an option's |
| 351 | value should be used to split the value up into multiple values for the |
| 352 | option. This property is valid only for list options. In conjunction with |
| 353 | ``forward_value`` can be used to implement option forwarding in style of |
| 354 | gcc's ``-Wa,``. |
| 355 | |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 356 | - ``multi_val n`` - this option takes *n* arguments (can be useful in some |
| 357 | special cases). Usage example: ``(parameter_list_option "foo", (multi_val |
Mikhail Glushenkov | 4e61387 | 2009-10-21 02:13:52 +0000 | [diff] [blame] | 358 | 3))``; the command-line syntax is '-foo a b c'. Only list options can have |
| 359 | this attribute; you can, however, use the ``one_or_more``, ``zero_or_one`` |
| 360 | and ``required`` properties. |
Mikhail Glushenkov | 19d3e82 | 2009-01-28 03:47:20 +0000 | [diff] [blame] | 361 | |
Mikhail Glushenkov | dad7820 | 2009-07-07 16:09:29 +0000 | [diff] [blame] | 362 | - ``init`` - this option has a default value, either a string (if it is a |
| 363 | parameter), or a boolean (if it is a switch; boolean constants are called |
| 364 | ``true`` and ``false``). List options can't have this attribute. Usage |
| 365 | examples: ``(switch_option "foo", (init true))``; ``(prefix_option "bar", |
| 366 | (init "baz"))``. |
| 367 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 368 | - ``extern`` - this option is defined in some other plugin, see `below`__. |
| 369 | |
| 370 | __ extern_ |
| 371 | |
| 372 | .. _extern: |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 373 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 374 | External options |
| 375 | ---------------- |
Mikhail Glushenkov | 0ab8ac3 | 2008-05-30 06:28:00 +0000 | [diff] [blame] | 376 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 377 | Sometimes, when linking several plugins together, one plugin needs to |
| 378 | access options defined in some other plugin. Because of the way |
Mikhail Glushenkov | f9b1d79 | 2009-01-15 02:42:40 +0000 | [diff] [blame] | 379 | options are implemented, such options must be marked as |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 380 | ``extern``. This is what the ``extern`` option property is |
| 381 | for. Example:: |
Mikhail Glushenkov | 0ab8ac3 | 2008-05-30 06:28:00 +0000 | [diff] [blame] | 382 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 383 | ... |
| 384 | (switch_option "E", (extern)) |
| 385 | ... |
Mikhail Glushenkov | 0ab8ac3 | 2008-05-30 06:28:00 +0000 | [diff] [blame] | 386 | |
Mikhail Glushenkov | bb41b2d | 2009-07-07 16:43:49 +0000 | [diff] [blame] | 387 | If an external option has additional attributes besides 'extern', they are |
| 388 | ignored. See also the section on plugin `priorities`__. |
Mikhail Glushenkov | 0ab8ac3 | 2008-05-30 06:28:00 +0000 | [diff] [blame] | 389 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 390 | __ priorities_ |
Mikhail Glushenkov | 0ab8ac3 | 2008-05-30 06:28:00 +0000 | [diff] [blame] | 391 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 392 | .. _case: |
Mikhail Glushenkov | 8323748 | 2008-10-15 09:29:13 +0000 | [diff] [blame] | 393 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 394 | Conditional evaluation |
| 395 | ====================== |
Mikhail Glushenkov | 0ab8ac3 | 2008-05-30 06:28:00 +0000 | [diff] [blame] | 396 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 397 | The 'case' construct is the main means by which programmability is |
| 398 | achieved in LLVMC. It can be used to calculate edge weights, program |
| 399 | actions and modify the shell commands to be executed. The 'case' |
| 400 | expression is designed after the similarly-named construct in |
| 401 | functional languages and takes the form ``(case (test_1), statement_1, |
| 402 | (test_2), statement_2, ... (test_N), statement_N)``. The statements |
| 403 | are evaluated only if the corresponding tests evaluate to true. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 404 | |
| 405 | Examples:: |
| 406 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 407 | // Edge weight calculation |
| 408 | |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 409 | // Increases edge weight by 5 if "-A" is provided on the |
| 410 | // command-line, and by 5 more if "-B" is also provided. |
| 411 | (case |
| 412 | (switch_on "A"), (inc_weight 5), |
| 413 | (switch_on "B"), (inc_weight 5)) |
| 414 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 415 | |
| 416 | // Tool command line specification |
| 417 | |
| 418 | // Evaluates to "cmdline1" if the option "-A" is provided on the |
| 419 | // command line; to "cmdline2" if "-B" is provided; |
| 420 | // otherwise to "cmdline3". |
| 421 | |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 422 | (case |
| 423 | (switch_on "A"), "cmdline1", |
| 424 | (switch_on "B"), "cmdline2", |
| 425 | (default), "cmdline3") |
| 426 | |
| 427 | Note the slight difference in 'case' expression handling in contexts |
| 428 | of edge weights and command line specification - in the second example |
| 429 | the value of the ``"B"`` switch is never checked when switch ``"A"`` is |
| 430 | enabled, and the whole expression always evaluates to ``"cmdline1"`` in |
| 431 | that case. |
| 432 | |
| 433 | Case expressions can also be nested, i.e. the following is legal:: |
| 434 | |
| 435 | (case (switch_on "E"), (case (switch_on "o"), ..., (default), ...) |
| 436 | (default), ...) |
| 437 | |
| 438 | You should, however, try to avoid doing that because it hurts |
| 439 | readability. It is usually better to split tool descriptions and/or |
| 440 | use TableGen inheritance instead. |
| 441 | |
| 442 | * Possible tests are: |
| 443 | |
Mikhail Glushenkov | 3e4102e | 2009-10-25 01:44:11 +0000 | [diff] [blame] | 444 | - ``switch_on`` - Returns true if a given command-line switch is provided by |
| 445 | the user. Can be given a list as argument, in that case ``(switch_on ["foo", |
| 446 | "bar", "baz"])`` is equivalent to ``(and (switch_on "foo"), (switch_on |
| 447 | "bar"), (switch_on "baz"))``. |
| 448 | Example: ``(switch_on "opt")``. |
| 449 | |
| 450 | - ``any_switch_on`` - Given a list of switch options, returns true if any of |
| 451 | the switches is turned on. |
| 452 | Example: ``(any_switch_on ["foo", "bar", "baz"])`` is equivalent to ``(or |
| 453 | (switch_on "foo"), (switch_on "bar"), (switch_on "baz"))``. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 454 | |
| 455 | - ``parameter_equals`` - Returns true if a command-line parameter equals |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 456 | a given value. |
| 457 | Example: ``(parameter_equals "W", "all")``. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 458 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 459 | - ``element_in_list`` - Returns true if a command-line parameter |
| 460 | list contains a given value. |
Mikhail Glushenkov | 4227c0f | 2009-12-01 09:19:09 +0000 | [diff] [blame] | 461 | Example: ``(element_in_list "l", "pthread")``. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 462 | |
| 463 | - ``input_languages_contain`` - Returns true if a given language |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 464 | belongs to the current input language set. |
| 465 | Example: ``(input_languages_contain "c++")``. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 466 | |
Mikhail Glushenkov | 3e4102e | 2009-10-25 01:44:11 +0000 | [diff] [blame] | 467 | - ``in_language`` - Evaluates to true if the input file language is equal to |
| 468 | the argument. At the moment works only with ``cmd_line`` and ``actions`` (on |
| 469 | non-join nodes). |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 470 | Example: ``(in_language "c++")``. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 471 | |
Mikhail Glushenkov | 3e4102e | 2009-10-25 01:44:11 +0000 | [diff] [blame] | 472 | - ``not_empty`` - Returns true if a given option (which should be either a |
| 473 | parameter or a parameter list) is set by the user. Like ``switch_on``, can |
| 474 | be also given a list as argument. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 475 | Example: ``(not_empty "o")``. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 476 | |
Mikhail Glushenkov | 3e4102e | 2009-10-25 01:44:11 +0000 | [diff] [blame] | 477 | - ``any_not_empty`` - Returns true if ``not_empty`` returns true for any of |
| 478 | the options in the list. |
| 479 | Example: ``(any_not_empty ["foo", "bar", "baz"])`` is equivalent to ``(or |
| 480 | (not_empty "foo"), (not_empty "bar"), (not_empty "baz"))``. |
| 481 | |
Mikhail Glushenkov | 5c2b6b2 | 2008-12-17 02:47:01 +0000 | [diff] [blame] | 482 | - ``empty`` - The opposite of ``not_empty``. Equivalent to ``(not (not_empty |
Mikhail Glushenkov | 3e4102e | 2009-10-25 01:44:11 +0000 | [diff] [blame] | 483 | X))``. Provided for convenience. Can be given a list as argument. |
| 484 | |
| 485 | - ``any_not_empty`` - Returns true if ``not_empty`` returns true for any of |
| 486 | the options in the list. |
| 487 | Example: ``(any_empty ["foo", "bar", "baz"])`` is equivalent to ``(not (and |
| 488 | (not_empty "foo"), (not_empty "bar"), (not_empty "baz")))``. |
Mikhail Glushenkov | 5c2b6b2 | 2008-12-17 02:47:01 +0000 | [diff] [blame] | 489 | |
Mikhail Glushenkov | ad981bf | 2009-09-28 01:16:42 +0000 | [diff] [blame] | 490 | - ``single_input_file`` - Returns true if there was only one input file |
| 491 | provided on the command-line. Used without arguments: |
| 492 | ``(single_input_file)``. |
| 493 | |
| 494 | - ``multiple_input_files`` - Equivalent to ``(not (single_input_file))`` (the |
| 495 | case of zero input files is considered an error). |
| 496 | |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 497 | - ``default`` - Always evaluates to true. Should always be the last |
| 498 | test in the ``case`` expression. |
| 499 | |
Mikhail Glushenkov | d66e8de | 2009-09-28 01:16:07 +0000 | [diff] [blame] | 500 | - ``and`` - A standard binary logical combinator that returns true iff all of |
| 501 | its arguments return true. Used like this: ``(and (test1), (test2), |
| 502 | ... (testN))``. Nesting of ``and`` and ``or`` is allowed, but not |
| 503 | encouraged. |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 504 | |
Mikhail Glushenkov | d66e8de | 2009-09-28 01:16:07 +0000 | [diff] [blame] | 505 | - ``or`` - A binary logical combinator that returns true iff any of its |
| 506 | arguments returns true. Example: ``(or (test1), (test2), ... (testN))``. |
| 507 | |
| 508 | - ``not`` - Standard unary logical combinator that negates its |
| 509 | argument. Example: ``(not (or (test1), (test2), ... (testN)))``. |
| 510 | |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 511 | |
Mikhail Glushenkov | cd0858e | 2008-05-30 06:14:42 +0000 | [diff] [blame] | 512 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 513 | Writing a tool description |
| 514 | ========================== |
| 515 | |
| 516 | As was said earlier, nodes in the compilation graph represent tools, |
| 517 | which are described separately. A tool definition looks like this |
| 518 | (taken from the ``include/llvm/CompilerDriver/Tools.td`` file):: |
| 519 | |
| 520 | def llvm_gcc_cpp : Tool<[ |
| 521 | (in_language "c++"), |
| 522 | (out_language "llvm-assembler"), |
| 523 | (output_suffix "bc"), |
| 524 | (cmd_line "llvm-g++ -c $INFILE -o $OUTFILE -emit-llvm"), |
| 525 | (sink) |
| 526 | ]>; |
| 527 | |
| 528 | This defines a new tool called ``llvm_gcc_cpp``, which is an alias for |
| 529 | ``llvm-g++``. As you can see, a tool definition is just a list of |
| 530 | properties; most of them should be self-explanatory. The ``sink`` |
| 531 | property means that this tool should be passed all command-line |
| 532 | options that aren't mentioned in the option list. |
| 533 | |
| 534 | The complete list of all currently implemented tool properties follows. |
| 535 | |
| 536 | * Possible tool properties: |
| 537 | |
| 538 | - ``in_language`` - input language name. Can be either a string or a |
| 539 | list, in case the tool supports multiple input languages. |
| 540 | |
Mikhail Glushenkov | aba210b | 2009-10-09 05:45:38 +0000 | [diff] [blame] | 541 | - ``out_language`` - output language name. Multiple output languages are not |
| 542 | allowed. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 543 | |
| 544 | - ``output_suffix`` - output file suffix. Can also be changed |
| 545 | dynamically, see documentation on actions. |
| 546 | |
| 547 | - ``cmd_line`` - the actual command used to run the tool. You can |
| 548 | use ``$INFILE`` and ``$OUTFILE`` variables, output redirection |
| 549 | with ``>``, hook invocations (``$CALL``), environment variables |
| 550 | (via ``$ENV``) and the ``case`` construct. |
| 551 | |
| 552 | - ``join`` - this tool is a "join node" in the graph, i.e. it gets a |
| 553 | list of input files and joins them together. Used for linkers. |
| 554 | |
| 555 | - ``sink`` - all command-line options that are not handled by other |
| 556 | tools are passed to this tool. |
| 557 | |
| 558 | - ``actions`` - A single big ``case`` expression that specifies how |
| 559 | this tool reacts on command-line options (described in more detail |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 560 | `below`__). |
| 561 | |
| 562 | __ actions_ |
| 563 | |
| 564 | .. _actions: |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 565 | |
| 566 | Actions |
| 567 | ------- |
| 568 | |
| 569 | A tool often needs to react to command-line options, and this is |
| 570 | precisely what the ``actions`` property is for. The next example |
| 571 | illustrates this feature:: |
| 572 | |
| 573 | def llvm_gcc_linker : Tool<[ |
| 574 | (in_language "object-code"), |
| 575 | (out_language "executable"), |
| 576 | (output_suffix "out"), |
| 577 | (cmd_line "llvm-gcc $INFILE -o $OUTFILE"), |
| 578 | (join), |
| 579 | (actions (case (not_empty "L"), (forward "L"), |
| 580 | (not_empty "l"), (forward "l"), |
| 581 | (not_empty "dummy"), |
| 582 | [(append_cmd "-dummy1"), (append_cmd "-dummy2")]) |
| 583 | ]>; |
| 584 | |
| 585 | The ``actions`` tool property is implemented on top of the omnipresent |
| 586 | ``case`` expression. It associates one or more different *actions* |
| 587 | with given conditions - in the example, the actions are ``forward``, |
| 588 | which forwards a given option unchanged, and ``append_cmd``, which |
| 589 | appends a given string to the tool execution command. Multiple actions |
| 590 | can be associated with a single condition by using a list of actions |
| 591 | (used in the example to append some dummy options). The same ``case`` |
| 592 | construct can also be used in the ``cmd_line`` property to modify the |
| 593 | tool command line. |
| 594 | |
| 595 | The "join" property used in the example means that this tool behaves |
| 596 | like a linker. |
| 597 | |
| 598 | The list of all possible actions follows. |
| 599 | |
| 600 | * Possible actions: |
| 601 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 602 | - ``append_cmd`` - Append a string to the tool invocation command. |
| 603 | Example: ``(case (switch_on "pthread"), (append_cmd "-lpthread"))``. |
Mikhail Glushenkov | 5c2b6b2 | 2008-12-17 02:47:01 +0000 | [diff] [blame] | 604 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 605 | - ``error`` - Exit with error. |
Mikhail Glushenkov | 5c2b6b2 | 2008-12-17 02:47:01 +0000 | [diff] [blame] | 606 | Example: ``(error "Mixing -c and -S is not allowed!")``. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 607 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 608 | - ``warning`` - Print a warning. |
Mikhail Glushenkov | 3e4102e | 2009-10-25 01:44:11 +0000 | [diff] [blame] | 609 | Example: ``(warning "Specifying both -O1 and -O2 is meaningless!")``. |
| 610 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 611 | - ``forward`` - Forward the option unchanged. |
| 612 | Example: ``(forward "Wall")``. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 613 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 614 | - ``forward_as`` - Change the option's name, but forward the argument |
| 615 | unchanged. |
Mikhail Glushenkov | e89331b | 2009-05-06 01:41:19 +0000 | [diff] [blame] | 616 | Example: ``(forward_as "O0", "--disable-optimization")``. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 617 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 618 | - ``forward_value`` - Forward only option's value. Cannot be used with switch |
| 619 | options (since they don't have values), but works fine with lists. |
| 620 | Example: ``(forward_value "Wa,")``. |
| 621 | |
| 622 | - ``forward_transformed_value`` - As above, but applies a hook to the |
| 623 | option's value before forwarding (see `below`__). When |
| 624 | ``forward_transformed_value`` is applied to a list |
| 625 | option, the hook must have signature |
| 626 | ``std::string hooks::HookName (const std::vector<std::string>&)``. |
| 627 | Example: ``(forward_transformed_value "m", "ConvertToMAttr")``. |
| 628 | |
| 629 | __ hooks_ |
| 630 | |
| 631 | - ``output_suffix`` - Modify the output suffix of this tool. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 632 | Example: ``(output_suffix "i")``. |
| 633 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 634 | - ``stop_compilation`` - Stop compilation after this tool processes its |
| 635 | input. Used without arguments. |
| 636 | Example: ``(stop_compilation)``. |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 637 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 638 | |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 639 | Language map |
Mikhail Glushenkov | 270cae3 | 2008-05-30 06:25:24 +0000 | [diff] [blame] | 640 | ============ |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 641 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 642 | If you are adding support for a new language to LLVMC, you'll need to |
| 643 | modify the language map, which defines mappings from file extensions |
| 644 | to language names. It is used to choose the proper toolchain(s) for a |
| 645 | given input file set. Language map definition looks like this:: |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 646 | |
| 647 | def LanguageMap : LanguageMap< |
| 648 | [LangToSuffixes<"c++", ["cc", "cp", "cxx", "cpp", "CPP", "c++", "C"]>, |
| 649 | LangToSuffixes<"c", ["c"]>, |
| 650 | ... |
| 651 | ]>; |
| 652 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 653 | For example, without those definitions the following command wouldn't work:: |
| 654 | |
| 655 | $ llvmc hello.cpp |
| 656 | llvmc: Unknown suffix: cpp |
| 657 | |
| 658 | The language map entries should be added only for tools that are |
| 659 | linked with the root node. Since tools are not allowed to have |
| 660 | multiple output languages, for nodes "inside" the graph the input and |
| 661 | output languages should match. This is enforced at compile-time. |
| 662 | |
Mikhail Glushenkov | 3e4102e | 2009-10-25 01:44:11 +0000 | [diff] [blame] | 663 | Option preprocessor |
| 664 | =================== |
| 665 | |
| 666 | It is sometimes useful to run error-checking code before processing the |
| 667 | compilation graph. For example, if optimization options "-O1" and "-O2" are |
| 668 | implemented as switches, we might want to output a warning if the user invokes |
| 669 | the driver with both of these options enabled. |
| 670 | |
| 671 | The ``OptionPreprocessor`` feature is reserved specially for these |
| 672 | occasions. Example (adapted from the built-in Base plugin):: |
| 673 | |
| 674 | def Preprocess : OptionPreprocessor< |
| 675 | (case (and (switch_on "O3"), (any_switch_on ["O0", "O1", "O2"])), |
| 676 | [(unset_option ["O0", "O1", "O2"]), |
| 677 | (warning "Multiple -O options specified, defaulted to -O3.")], |
| 678 | (and (switch_on "O2"), (any_switch_on ["O0", "O1"])), |
| 679 | (unset_option ["O0", "O1"]), |
| 680 | (and (switch_on "O1"), (switch_on "O0")), |
| 681 | (unset_option "O0")) |
| 682 | >; |
| 683 | |
| 684 | Here, ``OptionPreprocessor`` is used to unset all spurious optimization options |
| 685 | (so that they are not forwarded to the compiler). |
| 686 | |
| 687 | ``OptionPreprocessor`` is basically a single big ``case`` expression, which is |
| 688 | evaluated only once right after the plugin is loaded. The only allowed actions |
| 689 | in ``OptionPreprocessor`` are ``error``, ``warning`` and a special action |
| 690 | ``unset_option``, which, as the name suggests, unsets a given option. For |
| 691 | convenience, ``unset_option`` also works on lists. |
| 692 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 693 | |
| 694 | More advanced topics |
| 695 | ==================== |
| 696 | |
| 697 | .. _hooks: |
| 698 | |
| 699 | Hooks and environment variables |
| 700 | ------------------------------- |
| 701 | |
| 702 | Normally, LLVMC executes programs from the system ``PATH``. Sometimes, |
Mikhail Glushenkov | a298bb7 | 2009-01-21 13:04:00 +0000 | [diff] [blame] | 703 | this is not sufficient: for example, we may want to specify tool paths |
| 704 | or names in the configuration file. This can be easily achieved via |
| 705 | the hooks mechanism. To write your own hooks, just add their |
| 706 | definitions to the ``PluginMain.cpp`` or drop a ``.cpp`` file into the |
| 707 | your plugin directory. Hooks should live in the ``hooks`` namespace |
Mikhail Glushenkov | b6b5141 | 2009-01-21 13:04:33 +0000 | [diff] [blame] | 708 | and have the signature ``std::string hooks::MyHookName ([const char* |
Mikhail Glushenkov | a298bb7 | 2009-01-21 13:04:00 +0000 | [diff] [blame] | 709 | Arg0 [ const char* Arg2 [, ...]]])``. They can be used from the |
| 710 | ``cmd_line`` tool property:: |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 711 | |
| 712 | (cmd_line "$CALL(MyHook)/path/to/file -o $CALL(AnotherHook)") |
| 713 | |
Mikhail Glushenkov | a298bb7 | 2009-01-21 13:04:00 +0000 | [diff] [blame] | 714 | To pass arguments to hooks, use the following syntax:: |
| 715 | |
| 716 | (cmd_line "$CALL(MyHook, 'Arg1', 'Arg2', 'Arg # 3')/path/to/file -o1 -o2") |
| 717 | |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 718 | It is also possible to use environment variables in the same manner:: |
| 719 | |
| 720 | (cmd_line "$ENV(VAR1)/path/to/file -o $ENV(VAR2)") |
| 721 | |
| 722 | To change the command line string based on user-provided options use |
| 723 | the ``case`` expression (documented `above`__):: |
| 724 | |
| 725 | (cmd_line |
| 726 | (case |
| 727 | (switch_on "E"), |
| 728 | "llvm-g++ -E -x c $INFILE -o $OUTFILE", |
| 729 | (default), |
| 730 | "llvm-g++ -c -x c $INFILE -o $OUTFILE -emit-llvm")) |
| 731 | |
| 732 | __ case_ |
| 733 | |
| 734 | .. _priorities: |
| 735 | |
| 736 | How plugins are loaded |
| 737 | ---------------------- |
| 738 | |
| 739 | It is possible for LLVMC plugins to depend on each other. For example, |
| 740 | one can create edges between nodes defined in some other plugin. To |
| 741 | make this work, however, that plugin should be loaded first. To |
| 742 | achieve this, the concept of plugin priority was introduced. By |
| 743 | default, every plugin has priority zero; to specify the priority |
| 744 | explicitly, put the following line in your plugin's TableGen file:: |
| 745 | |
| 746 | def Priority : PluginPriority<$PRIORITY_VALUE>; |
| 747 | # Where PRIORITY_VALUE is some integer > 0 |
| 748 | |
| 749 | Plugins are loaded in order of their (increasing) priority, starting |
| 750 | with 0. Therefore, the plugin with the highest priority value will be |
| 751 | loaded last. |
| 752 | |
Mikhail Glushenkov | 9ecd30c | 2008-09-22 20:48:48 +0000 | [diff] [blame] | 753 | Debugging |
Mikhail Glushenkov | 4410e32 | 2008-12-07 16:47:42 +0000 | [diff] [blame] | 754 | --------- |
Mikhail Glushenkov | 9ecd30c | 2008-09-22 20:48:48 +0000 | [diff] [blame] | 755 | |
| 756 | When writing LLVMC plugins, it can be useful to get a visual view of |
| 757 | the resulting compilation graph. This can be achieved via the command |
Mikhail Glushenkov | d565203 | 2008-12-13 02:28:58 +0000 | [diff] [blame] | 758 | line option ``--view-graph``. This command assumes that Graphviz_ and |
Mikhail Glushenkov | 4ad0d57 | 2009-03-27 12:58:29 +0000 | [diff] [blame] | 759 | Ghostview_ are installed. There is also a ``--write-graph`` option that |
Mikhail Glushenkov | d565203 | 2008-12-13 02:28:58 +0000 | [diff] [blame] | 760 | creates a Graphviz source file (``compilation-graph.dot``) in the |
Mikhail Glushenkov | 9ecd30c | 2008-09-22 20:48:48 +0000 | [diff] [blame] | 761 | current directory. |
| 762 | |
Mikhail Glushenkov | f9b1d79 | 2009-01-15 02:42:40 +0000 | [diff] [blame] | 763 | Another useful ``llvmc`` option is ``--check-graph``. It checks the |
| 764 | compilation graph for common errors like mismatched output/input |
| 765 | language names, multiple default edges and cycles. These checks can't |
| 766 | be performed at compile-time because the plugins can load code |
| 767 | dynamically. When invoked with ``--check-graph``, ``llvmc`` doesn't |
| 768 | perform any compilation tasks and returns the number of encountered |
| 769 | errors as its status code. |
Mikhail Glushenkov | f8c430b | 2009-01-09 16:16:27 +0000 | [diff] [blame] | 770 | |
Mikhail Glushenkov | d565203 | 2008-12-13 02:28:58 +0000 | [diff] [blame] | 771 | .. _Graphviz: http://www.graphviz.org/ |
| 772 | .. _Ghostview: http://pages.cs.wisc.edu/~ghost/ |
Mikhail Glushenkov | 68319f8 | 2008-12-11 23:24:40 +0000 | [diff] [blame] | 773 | |
Mikhail Glushenkov | 875ace5 | 2009-06-30 00:16:00 +0000 | [diff] [blame] | 774 | Conditioning on the executable name |
| 775 | ----------------------------------- |
| 776 | |
| 777 | For now, the executable name (the value passed to the driver in ``argv[0]``) is |
| 778 | accessible only in the C++ code (i.e. hooks). Use the following code:: |
| 779 | |
| 780 | namespace llvmc { |
| 781 | extern const char* ProgramName; |
| 782 | } |
| 783 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 784 | namespace hooks { |
| 785 | |
Mikhail Glushenkov | 875ace5 | 2009-06-30 00:16:00 +0000 | [diff] [blame] | 786 | std::string MyHook() { |
| 787 | //... |
| 788 | if (strcmp(ProgramName, "mydriver") == 0) { |
| 789 | //... |
| 790 | |
| 791 | } |
| 792 | |
Mikhail Glushenkov | b59b0f8 | 2009-12-07 18:26:11 +0000 | [diff] [blame] | 793 | } // end namespace hooks |
| 794 | |
Mikhail Glushenkov | 875ace5 | 2009-06-30 00:16:00 +0000 | [diff] [blame] | 795 | In general, you're encouraged not to make the behaviour dependent on the |
| 796 | executable file name, and use command-line switches instead. See for example how |
| 797 | the ``Base`` plugin behaves when it needs to choose the correct linker options |
| 798 | (think ``g++`` vs. ``gcc``). |
| 799 | |
Mikhail Glushenkov | 68319f8 | 2008-12-11 23:24:40 +0000 | [diff] [blame] | 800 | .. raw:: html |
Mikhail Glushenkov | d565203 | 2008-12-13 02:28:58 +0000 | [diff] [blame] | 801 | |
| 802 | <hr /> |
| 803 | <address> |
| 804 | <a href="http://jigsaw.w3.org/css-validator/check/referer"> |
| 805 | <img src="http://jigsaw.w3.org/css-validator/images/vcss-blue" |
| 806 | alt="Valid CSS" /></a> |
| 807 | <a href="http://validator.w3.org/check?uri=referer"> |
| 808 | <img src="http://www.w3.org/Icons/valid-xhtml10-blue" |
| 809 | alt="Valid XHTML 1.0 Transitional"/></a> |
| 810 | |
| 811 | <a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a><br /> |
| 812 | <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br /> |
| 813 | |
| 814 | Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $ |
| 815 | </address> |