blob: 1c04ecc39ea9b99256314f3c20c55aef3d680215 [file] [log] [blame]
Mikhail Glushenkov270cae32008-05-30 06:25:24 +00001===================================
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +00002Customizing LLVMC: Reference Manual
3===================================
Mikhail Glushenkov23f522a2008-12-13 17:51:47 +00004..
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 Glushenkovd5652032008-12-13 02:28:58 +00008
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
17Introduction
18============
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000019
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000020LLVMC is a generic compiler driver, designed to be customizable and
21extensible. It plays the same role for LLVM as the ``gcc`` program
22does for GCC - LLVMC's job is essentially to transform a set of input
23files into a set of targets depending on configuration rules and user
24options. What makes LLVMC different is that these transformation rules
25are completely customizable - in fact, LLVMC knows nothing about the
26specifics of transformation (even the command-line options are mostly
27not hard-coded) and regards the transformation structure as an
Mikhail Glushenkov83237482008-10-15 09:29:13 +000028abstract graph. The structure of this graph is completely determined
29by plugins, which can be either statically or dynamically linked. This
30makes it possible to easily adapt LLVMC for other purposes - for
31example, as a build tool for game resources.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000032
Mikhail Glushenkovd5652032008-12-13 02:28:58 +000033Because LLVMC employs TableGen_ as its configuration language, you
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000034need to be familiar with it to customize LLVMC.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000035
Mikhail Glushenkovd5652032008-12-13 02:28:58 +000036.. _TableGen: http://llvm.cs.uiuc.edu/docs/TableGenFundamentals.html
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000037
38
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000039Compiling with LLVMC
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000040====================
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000041
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +000042LLVMC tries hard to be as compatible with ``gcc`` as possible,
43although there are some small differences. Most of the time, however,
44you shouldn't be able to notice them::
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000045
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +000046 $ # This works as expected:
Mikhail Glushenkov113ec352008-11-25 21:38:12 +000047 $ llvmc -O3 -Wall hello.cpp
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000048 $ ./a.out
49 hello
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000050
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +000051One nice feature of LLVMC is that one doesn't have to distinguish
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000052between different compilers for different languages (think ``g++`` and
53``gcc``) - the right toolchain is chosen automatically based on input
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +000054language names (which are, in turn, determined from file
55extensions). If you want to force files ending with ".c" to compile as
56C++, use the ``-x`` option, just like you would do it with ``gcc``::
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000057
Mikhail Glushenkovebdeca72008-11-25 21:34:29 +000058 $ # hello.c is really a C++ file
Mikhail Glushenkov113ec352008-11-25 21:38:12 +000059 $ llvmc -x c++ hello.c
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000060 $ ./a.out
61 hello
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000062
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000063On the other hand, when using LLVMC as a linker to combine several C++
64object files you should provide the ``--linker`` option since it's
65impossible for LLVMC to choose the right linker in that case::
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000066
Mikhail Glushenkov113ec352008-11-25 21:38:12 +000067 $ llvmc -c hello.cpp
68 $ llvmc hello.o
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000069 [A lot of link-time errors skipped]
Mikhail Glushenkov113ec352008-11-25 21:38:12 +000070 $ llvmc --linker=c++ hello.o
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +000071 $ ./a.out
72 hello
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000073
Mikhail Glushenkov4410e322008-12-07 16:47:42 +000074By default, LLVMC uses ``llvm-gcc`` to compile the source code. It is
75also possible to choose the work-in-progress ``clang`` compiler with
76the ``-clang`` option.
77
Mikhail Glushenkov83237482008-10-15 09:29:13 +000078
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000079Predefined options
80==================
81
82LLVMC has some built-in options that can't be overridden in the
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +000083configuration libraries:
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000084
85* ``-o FILE`` - Output file name.
86
87* ``-x LANGUAGE`` - Specify the language of the following input files
88 until the next -x option.
89
Mikhail Glushenkov83237482008-10-15 09:29:13 +000090* ``-load PLUGIN_NAME`` - Load the specified plugin DLL. Example:
91 ``-load $LLVM_DIR/Release/lib/LLVMCSimple.so``.
92
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000093* ``-v`` - Enable verbose mode, i.e. print out all executed commands.
94
Mikhail Glushenkov4ad0d572009-03-27 12:58:29 +000095* ``--check-graph`` - Check the compilation for common errors like mismatched
96 output/input language names, multiple default edges and cycles. Because of
Mikhail Glushenkov530f3992009-06-16 00:13:52 +000097 plugins, these checks can't be performed at compile-time. Exit with code zero
98 if no errors were found, and return the number of found errors
99 otherwise. Hidden option, useful for debugging LLVMC plugins.
Mikhail Glushenkovf8c430b2009-01-09 16:16:27 +0000100
Mikhail Glushenkov4ad0d572009-03-27 12:58:29 +0000101* ``--view-graph`` - Show a graphical representation of the compilation graph
102 and exit. Requires that you have ``dot`` and ``gv`` programs installed. Hidden
103 option, useful for debugging LLVMC plugins.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000104
Mikhail Glushenkov4ad0d572009-03-27 12:58:29 +0000105* ``--write-graph`` - Write a ``compilation-graph.dot`` file in the current
106 directory with the compilation graph description in Graphviz format (identical
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000107 to the file used by the ``--view-graph`` option). The ``-o`` option can be
108 used to set the output file name. Hidden option, useful for debugging LLVMC
109 plugins.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000110
Mikhail Glushenkov73296102008-05-30 06:29:17 +0000111* ``--save-temps`` - Write temporary files to the current directory
112 and do not delete them on exit. Hidden option, useful for debugging.
113
114* ``--help``, ``--help-hidden``, ``--version`` - These options have
115 their standard meaning.
116
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000117Compiling LLVMC plugins
118=======================
119
120It's easiest to start working on your own LLVMC plugin by copying the
121skeleton project which lives under ``$LLVMC_DIR/plugins/Simple``::
122
123 $ cd $LLVMC_DIR/plugins
124 $ cp -r Simple MyPlugin
125 $ cd MyPlugin
126 $ ls
127 Makefile PluginMain.cpp Simple.td
128
129As you can see, our basic plugin consists of only two files (not
130counting the build script). ``Simple.td`` contains TableGen
131description of the compilation graph; its format is documented in the
132following sections. ``PluginMain.cpp`` is just a helper file used to
133compile the auto-generated C++ code produced from TableGen source. It
134can also contain hook definitions (see `below`__).
135
136__ hooks_
137
138The first thing that you should do is to change the ``LLVMC_PLUGIN``
139variable in the ``Makefile`` to avoid conflicts (since this variable
140is used to name the resulting library)::
141
142 LLVMC_PLUGIN=MyPlugin
143
144It is also a good idea to rename ``Simple.td`` to something less
145generic::
146
147 $ mv Simple.td MyPlugin.td
148
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000149To build your plugin as a dynamic library, just ``cd`` to its source
150directory and run ``make``. The resulting file will be called
151``LLVMC$(LLVMC_PLUGIN).$(DLL_EXTENSION)`` (in our case,
152``LLVMCMyPlugin.so``). This library can be then loaded in with the
153``-load`` option. Example::
154
155 $ cd $LLVMC_DIR/plugins/Simple
156 $ make
Mikhail Glushenkov113ec352008-11-25 21:38:12 +0000157 $ llvmc -load $LLVM_DIR/Release/lib/LLVMCSimple.so
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000158
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000159Compiling standalone LLVMC-based drivers
160========================================
161
162By default, the ``llvmc`` executable consists of a driver core plus several
163statically linked plugins (``Base`` and ``Clang`` at the moment). You can
164produce a standalone LLVMC-based driver executable by linking the core with your
165own plugins. The recommended way to do this is by starting with the provided
166``Skeleton`` example (``$LLVMC_DIR/example/Skeleton``)::
167
168 $ cd $LLVMC_DIR/example/
169 $ cp -r Skeleton mydriver
170 $ cd mydriver
171 $ vim Makefile
172 [...]
173 $ make
174
175If you're compiling LLVM with different source and object directories, then you
176must perform the following additional steps before running ``make``::
177
178 # LLVMC_SRC_DIR = $LLVM_SRC_DIR/tools/llvmc/
179 # LLVMC_OBJ_DIR = $LLVM_OBJ_DIR/tools/llvmc/
180 $ cp $LLVMC_SRC_DIR/example/mydriver/Makefile \
181 $LLVMC_OBJ_DIR/example/mydriver/
182 $ cd $LLVMC_OBJ_DIR/example/mydriver
183 $ make
184
185Another way to do the same thing is by using the following command::
186
187 $ cd $LLVMC_DIR
188 $ make LLVMC_BUILTIN_PLUGINS=MyPlugin LLVMC_BASED_DRIVER_NAME=mydriver
189
190This works with both srcdir==objdir and srcdir != objdir, but assumes that the
191plugin source directory was placed under ``$LLVMC_DIR/plugins``.
192
Mikhail Glushenkovf80f0aa2008-11-25 21:34:01 +0000193Sometimes, you will want a 'bare-bones' version of LLVMC that has no
194built-in plugins. It can be compiled with the following command::
195
196 $ cd $LLVMC_DIR
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000197 $ make LLVMC_BUILTIN_PLUGINS=""
Mikhail Glushenkovf80f0aa2008-11-25 21:34:01 +0000198
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000199
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000200Customizing LLVMC: the compilation graph
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000201========================================
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000202
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000203Each TableGen configuration file should include the common
204definitions::
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000205
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000206 include "llvm/CompilerDriver/Common.td"
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000207
208Internally, LLVMC stores information about possible source
209transformations in form of a graph. Nodes in this graph represent
210tools, and edges between two nodes represent a transformation path. A
211special "root" node is used to mark entry points for the
212transformations. LLVMC also assigns a weight to each edge (more on
213this later) to choose between several alternative edges.
214
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000215The definition of the compilation graph (see file
216``plugins/Base/Base.td`` for an example) is just a list of edges::
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000217
218 def CompilationGraph : CompilationGraph<[
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000219 Edge<"root", "llvm_gcc_c">,
220 Edge<"root", "llvm_gcc_assembler">,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000221 ...
222
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000223 Edge<"llvm_gcc_c", "llc">,
224 Edge<"llvm_gcc_cpp", "llc">,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000225 ...
226
Mikhail Glushenkov536637f2008-11-25 21:34:53 +0000227 OptionalEdge<"llvm_gcc_c", "opt", (case (switch_on "opt"),
228 (inc_weight))>,
229 OptionalEdge<"llvm_gcc_cpp", "opt", (case (switch_on "opt"),
230 (inc_weight))>,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000231 ...
232
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000233 OptionalEdge<"llvm_gcc_assembler", "llvm_gcc_cpp_linker",
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000234 (case (input_languages_contain "c++"), (inc_weight),
235 (or (parameter_equals "linker", "g++"),
236 (parameter_equals "linker", "c++")), (inc_weight))>,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000237 ...
238
239 ]>;
240
241As you can see, the edges can be either default or optional, where
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000242optional edges are differentiated by an additional ``case`` expression
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000243used to calculate the weight of this edge. Notice also that we refer
Mikhail Glushenkovf80f0aa2008-11-25 21:34:01 +0000244to tools via their names (as strings). This makes it possible to add
245edges to an existing compilation graph in plugins without having to
246know about all tool definitions used in the graph.
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000247
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000248The default edges are assigned a weight of 1, and optional edges get a
249weight of 0 + 2*N where N is the number of tests that evaluated to
250true in the ``case`` expression. It is also possible to provide an
251integer parameter to ``inc_weight`` and ``dec_weight`` - in this case,
252the weight is increased (or decreased) by the provided value instead
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +0000253of the default 2. It is also possible to change the default weight of
254an optional edge by using the ``default`` clause of the ``case``
255construct.
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000256
257When passing an input file through the graph, LLVMC picks the edge
258with the maximum weight. To avoid ambiguity, there should be only one
259default edge between two nodes (with the exception of the root node,
260which gets a special treatment - there you are allowed to specify one
261default edge *per language*).
262
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +0000263When multiple plugins are loaded, their compilation graphs are merged
Mikhail Glushenkov3321b0f2008-11-28 00:12:09 +0000264together. Since multiple edges that have the same end nodes are not
265allowed (i.e. the graph is not a multigraph), an edge defined in
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +0000266several plugins will be replaced by the definition from the plugin
267that was loaded last. Plugin load order can be controlled by using the
268plugin priority feature described above.
269
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000270To get a visual representation of the compilation graph (useful for
Mikhail Glushenkov113ec352008-11-25 21:38:12 +0000271debugging), run ``llvmc --view-graph``. You will need ``dot`` and
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000272``gsview`` installed for this to work properly.
273
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000274Describing options
275==================
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000276
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000277Command-line options that the plugin supports are defined by using an
278``OptionList``::
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000279
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000280 def Options : OptionList<[
281 (switch_option "E", (help "Help string")),
282 (alias_option "quiet", "q")
283 ...
284 ]>;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000285
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000286As you can see, the option list is just a list of DAGs, where each DAG
287is an option description consisting of the option name and some
288properties. A plugin can define more than one option list (they are
289all merged together in the end), which can be handy if one wants to
290separate option groups syntactically.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000291
292* Possible option types:
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000293
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000294 - ``switch_option`` - a simple boolean switch without arguments, for example
295 ``-O2`` or ``-time``. At most one occurrence is allowed.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000296
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000297 - ``parameter_option`` - option that takes one argument, for example
298 ``-std=c99``. It is also allowed to use spaces instead of the equality
299 sign: ``-std c99``. At most one occurrence is allowed.
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000300
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000301 - ``parameter_list_option`` - same as the above, but more than one option
302 occurence is allowed.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000303
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000304 - ``prefix_option`` - same as the parameter_option, but the option name and
305 argument do not have to be separated. Example: ``-ofile``. This can be also
306 specified as ``-o file``; however, ``-o=file`` will be parsed incorrectly
307 (``=file`` will be interpreted as option value). At most one occurrence is
308 allowed.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000309
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000310 - ``prefix_list_option`` - same as the above, but more than one occurence of
311 the option is allowed; example: ``-lm -lpthread``.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000312
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000313 - ``alias_option`` - a special option type for creating aliases. Unlike other
314 option types, aliases are not allowed to have any properties besides the
315 aliased option name. Usage example: ``(alias_option "preprocess", "E")``
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000316
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000317
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000318* Possible option properties:
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000319
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000320 - ``help`` - help string associated with this option. Used for ``--help``
321 output.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000322
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000323 - ``required`` - this option must be specified exactly once (or, in case of
324 the list options without the ``multi_val`` property, at least
325 once). Incompatible with ``zero_or_one`` and ``one_or_more``.
326
327 - ``one_or_more`` - the option must be specified at least one time. Useful
328 only for list options in conjunction with ``multi_val``; for ordinary lists
329 it is synonymous with ``required``. Incompatible with ``required`` and
330 ``zero_or_one``.
331
332 - ``zero_or_one`` - the option can be specified zero or one times. Useful
333 only for list options in conjunction with ``multi_val``. Incompatible with
334 ``required`` and ``one_or_more``.
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000335
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000336 - ``hidden`` - the description of this option will not appear in
337 the ``--help`` output (but will appear in the ``--help-hidden``
338 output).
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000339
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000340 - ``really_hidden`` - the option will not be mentioned in any help
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000341 output.
342
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000343 - ``multi_val n`` - this option takes *n* arguments (can be useful in some
344 special cases). Usage example: ``(parameter_list_option "foo", (multi_val
345 3))``. Only list options can have this attribute; you can, however, use
346 the ``one_or_more`` and ``zero_or_one`` properties.
347
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000348 - ``extern`` - this option is defined in some other plugin, see below.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000349
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000350External options
351----------------
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000352
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000353Sometimes, when linking several plugins together, one plugin needs to
354access options defined in some other plugin. Because of the way
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000355options are implemented, such options must be marked as
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000356``extern``. This is what the ``extern`` option property is
357for. Example::
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000358
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000359 ...
360 (switch_option "E", (extern))
361 ...
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000362
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000363See also the section on plugin `priorities`__.
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000364
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000365__ priorities_
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000366
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000367.. _case:
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000368
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000369Conditional evaluation
370======================
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000371
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000372The 'case' construct is the main means by which programmability is
373achieved in LLVMC. It can be used to calculate edge weights, program
374actions and modify the shell commands to be executed. The 'case'
375expression is designed after the similarly-named construct in
376functional languages and takes the form ``(case (test_1), statement_1,
377(test_2), statement_2, ... (test_N), statement_N)``. The statements
378are evaluated only if the corresponding tests evaluate to true.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000379
380Examples::
381
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000382 // Edge weight calculation
383
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000384 // Increases edge weight by 5 if "-A" is provided on the
385 // command-line, and by 5 more if "-B" is also provided.
386 (case
387 (switch_on "A"), (inc_weight 5),
388 (switch_on "B"), (inc_weight 5))
389
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000390
391 // Tool command line specification
392
393 // Evaluates to "cmdline1" if the option "-A" is provided on the
394 // command line; to "cmdline2" if "-B" is provided;
395 // otherwise to "cmdline3".
396
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000397 (case
398 (switch_on "A"), "cmdline1",
399 (switch_on "B"), "cmdline2",
400 (default), "cmdline3")
401
402Note the slight difference in 'case' expression handling in contexts
403of edge weights and command line specification - in the second example
404the value of the ``"B"`` switch is never checked when switch ``"A"`` is
405enabled, and the whole expression always evaluates to ``"cmdline1"`` in
406that case.
407
408Case expressions can also be nested, i.e. the following is legal::
409
410 (case (switch_on "E"), (case (switch_on "o"), ..., (default), ...)
411 (default), ...)
412
413You should, however, try to avoid doing that because it hurts
414readability. It is usually better to split tool descriptions and/or
415use TableGen inheritance instead.
416
417* Possible tests are:
418
Mikhail Glushenkov536637f2008-11-25 21:34:53 +0000419 - ``switch_on`` - Returns true if a given command-line switch is
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000420 provided by the user. Example: ``(switch_on "opt")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000421
422 - ``parameter_equals`` - Returns true if a command-line parameter equals
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000423 a given value.
424 Example: ``(parameter_equals "W", "all")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000425
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000426 - ``element_in_list`` - Returns true if a command-line parameter
427 list contains a given value.
428 Example: ``(parameter_in_list "l", "pthread")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000429
430 - ``input_languages_contain`` - Returns true if a given language
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000431 belongs to the current input language set.
432 Example: ``(input_languages_contain "c++")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000433
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000434 - ``in_language`` - Evaluates to true if the input file language
435 equals to the argument. At the moment works only with ``cmd_line``
436 and ``actions`` (on non-join nodes).
437 Example: ``(in_language "c++")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000438
439 - ``not_empty`` - Returns true if a given option (which should be
440 either a parameter or a parameter list) is set by the
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000441 user.
442 Example: ``(not_empty "o")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000443
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +0000444 - ``empty`` - The opposite of ``not_empty``. Equivalent to ``(not (not_empty
445 X))``. Provided for convenience.
446
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000447 - ``default`` - Always evaluates to true. Should always be the last
448 test in the ``case`` expression.
449
450 - ``and`` - A standard logical combinator that returns true iff all
451 of its arguments return true. Used like this: ``(and (test1),
452 (test2), ... (testN))``. Nesting of ``and`` and ``or`` is allowed,
453 but not encouraged.
454
455 - ``or`` - Another logical combinator that returns true only if any
456 one of its arguments returns true. Example: ``(or (test1),
457 (test2), ... (testN))``.
458
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000459
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000460Writing a tool description
461==========================
462
463As was said earlier, nodes in the compilation graph represent tools,
464which are described separately. A tool definition looks like this
465(taken from the ``include/llvm/CompilerDriver/Tools.td`` file)::
466
467 def llvm_gcc_cpp : Tool<[
468 (in_language "c++"),
469 (out_language "llvm-assembler"),
470 (output_suffix "bc"),
471 (cmd_line "llvm-g++ -c $INFILE -o $OUTFILE -emit-llvm"),
472 (sink)
473 ]>;
474
475This defines a new tool called ``llvm_gcc_cpp``, which is an alias for
476``llvm-g++``. As you can see, a tool definition is just a list of
477properties; most of them should be self-explanatory. The ``sink``
478property means that this tool should be passed all command-line
479options that aren't mentioned in the option list.
480
481The complete list of all currently implemented tool properties follows.
482
483* Possible tool properties:
484
485 - ``in_language`` - input language name. Can be either a string or a
486 list, in case the tool supports multiple input languages.
487
488 - ``out_language`` - output language name. Tools are not allowed to
489 have multiple output languages.
490
491 - ``output_suffix`` - output file suffix. Can also be changed
492 dynamically, see documentation on actions.
493
494 - ``cmd_line`` - the actual command used to run the tool. You can
495 use ``$INFILE`` and ``$OUTFILE`` variables, output redirection
496 with ``>``, hook invocations (``$CALL``), environment variables
497 (via ``$ENV``) and the ``case`` construct.
498
499 - ``join`` - this tool is a "join node" in the graph, i.e. it gets a
500 list of input files and joins them together. Used for linkers.
501
502 - ``sink`` - all command-line options that are not handled by other
503 tools are passed to this tool.
504
505 - ``actions`` - A single big ``case`` expression that specifies how
506 this tool reacts on command-line options (described in more detail
507 below).
508
509Actions
510-------
511
512A tool often needs to react to command-line options, and this is
513precisely what the ``actions`` property is for. The next example
514illustrates this feature::
515
516 def llvm_gcc_linker : Tool<[
517 (in_language "object-code"),
518 (out_language "executable"),
519 (output_suffix "out"),
520 (cmd_line "llvm-gcc $INFILE -o $OUTFILE"),
521 (join),
522 (actions (case (not_empty "L"), (forward "L"),
523 (not_empty "l"), (forward "l"),
524 (not_empty "dummy"),
525 [(append_cmd "-dummy1"), (append_cmd "-dummy2")])
526 ]>;
527
528The ``actions`` tool property is implemented on top of the omnipresent
529``case`` expression. It associates one or more different *actions*
530with given conditions - in the example, the actions are ``forward``,
531which forwards a given option unchanged, and ``append_cmd``, which
532appends a given string to the tool execution command. Multiple actions
533can be associated with a single condition by using a list of actions
534(used in the example to append some dummy options). The same ``case``
535construct can also be used in the ``cmd_line`` property to modify the
536tool command line.
537
538The "join" property used in the example means that this tool behaves
539like a linker.
540
541The list of all possible actions follows.
542
543* Possible actions:
544
545 - ``append_cmd`` - append a string to the tool invocation
546 command.
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +0000547 Example: ``(case (switch_on "pthread"), (append_cmd
548 "-lpthread"))``
549
550 - ``error` - exit with error.
551 Example: ``(error "Mixing -c and -S is not allowed!")``.
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000552
553 - ``forward`` - forward an option unchanged.
554 Example: ``(forward "Wall")``.
555
556 - ``forward_as`` - Change the name of an option, but forward the
557 argument unchanged.
Mikhail Glushenkove89331b2009-05-06 01:41:19 +0000558 Example: ``(forward_as "O0", "--disable-optimization")``.
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000559
560 - ``output_suffix`` - modify the output suffix of this
561 tool.
562 Example: ``(output_suffix "i")``.
563
564 - ``stop_compilation`` - stop compilation after this tool processes
565 its input. Used without arguments.
566
567 - ``unpack_values`` - used for for splitting and forwarding
568 comma-separated lists of options, e.g. ``-Wa,-foo=bar,-baz`` is
569 converted to ``-foo=bar -baz`` and appended to the tool invocation
570 command.
571 Example: ``(unpack_values "Wa,")``.
572
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000573Language map
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000574============
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000575
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000576If you are adding support for a new language to LLVMC, you'll need to
577modify the language map, which defines mappings from file extensions
578to language names. It is used to choose the proper toolchain(s) for a
579given input file set. Language map definition looks like this::
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000580
581 def LanguageMap : LanguageMap<
582 [LangToSuffixes<"c++", ["cc", "cp", "cxx", "cpp", "CPP", "c++", "C"]>,
583 LangToSuffixes<"c", ["c"]>,
584 ...
585 ]>;
586
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000587For example, without those definitions the following command wouldn't work::
588
589 $ llvmc hello.cpp
590 llvmc: Unknown suffix: cpp
591
592The language map entries should be added only for tools that are
593linked with the root node. Since tools are not allowed to have
594multiple output languages, for nodes "inside" the graph the input and
595output languages should match. This is enforced at compile-time.
596
597
598More advanced topics
599====================
600
601.. _hooks:
602
603Hooks and environment variables
604-------------------------------
605
606Normally, LLVMC executes programs from the system ``PATH``. Sometimes,
Mikhail Glushenkova298bb72009-01-21 13:04:00 +0000607this is not sufficient: for example, we may want to specify tool paths
608or names in the configuration file. This can be easily achieved via
609the hooks mechanism. To write your own hooks, just add their
610definitions to the ``PluginMain.cpp`` or drop a ``.cpp`` file into the
611your plugin directory. Hooks should live in the ``hooks`` namespace
Mikhail Glushenkovb6b51412009-01-21 13:04:33 +0000612and have the signature ``std::string hooks::MyHookName ([const char*
Mikhail Glushenkova298bb72009-01-21 13:04:00 +0000613Arg0 [ const char* Arg2 [, ...]]])``. They can be used from the
614``cmd_line`` tool property::
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000615
616 (cmd_line "$CALL(MyHook)/path/to/file -o $CALL(AnotherHook)")
617
Mikhail Glushenkova298bb72009-01-21 13:04:00 +0000618To pass arguments to hooks, use the following syntax::
619
620 (cmd_line "$CALL(MyHook, 'Arg1', 'Arg2', 'Arg # 3')/path/to/file -o1 -o2")
621
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000622It is also possible to use environment variables in the same manner::
623
624 (cmd_line "$ENV(VAR1)/path/to/file -o $ENV(VAR2)")
625
626To change the command line string based on user-provided options use
627the ``case`` expression (documented `above`__)::
628
629 (cmd_line
630 (case
631 (switch_on "E"),
632 "llvm-g++ -E -x c $INFILE -o $OUTFILE",
633 (default),
634 "llvm-g++ -c -x c $INFILE -o $OUTFILE -emit-llvm"))
635
636__ case_
637
638.. _priorities:
639
640How plugins are loaded
641----------------------
642
643It is possible for LLVMC plugins to depend on each other. For example,
644one can create edges between nodes defined in some other plugin. To
645make this work, however, that plugin should be loaded first. To
646achieve this, the concept of plugin priority was introduced. By
647default, every plugin has priority zero; to specify the priority
648explicitly, put the following line in your plugin's TableGen file::
649
650 def Priority : PluginPriority<$PRIORITY_VALUE>;
651 # Where PRIORITY_VALUE is some integer > 0
652
653Plugins are loaded in order of their (increasing) priority, starting
654with 0. Therefore, the plugin with the highest priority value will be
655loaded last.
656
Mikhail Glushenkov9ecd30c2008-09-22 20:48:48 +0000657Debugging
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000658---------
Mikhail Glushenkov9ecd30c2008-09-22 20:48:48 +0000659
660When writing LLVMC plugins, it can be useful to get a visual view of
661the resulting compilation graph. This can be achieved via the command
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000662line option ``--view-graph``. This command assumes that Graphviz_ and
Mikhail Glushenkov4ad0d572009-03-27 12:58:29 +0000663Ghostview_ are installed. There is also a ``--write-graph`` option that
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000664creates a Graphviz source file (``compilation-graph.dot``) in the
Mikhail Glushenkov9ecd30c2008-09-22 20:48:48 +0000665current directory.
666
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000667Another useful ``llvmc`` option is ``--check-graph``. It checks the
668compilation graph for common errors like mismatched output/input
669language names, multiple default edges and cycles. These checks can't
670be performed at compile-time because the plugins can load code
671dynamically. When invoked with ``--check-graph``, ``llvmc`` doesn't
672perform any compilation tasks and returns the number of encountered
673errors as its status code.
Mikhail Glushenkovf8c430b2009-01-09 16:16:27 +0000674
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000675.. _Graphviz: http://www.graphviz.org/
676.. _Ghostview: http://pages.cs.wisc.edu/~ghost/
Mikhail Glushenkov68319f82008-12-11 23:24:40 +0000677
678.. raw:: html
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000679
680 <hr />
681 <address>
682 <a href="http://jigsaw.w3.org/css-validator/check/referer">
683 <img src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
684 alt="Valid CSS" /></a>
685 <a href="http://validator.w3.org/check?uri=referer">
686 <img src="http://www.w3.org/Icons/valid-xhtml10-blue"
687 alt="Valid XHTML 1.0 Transitional"/></a>
688
689 <a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a><br />
690 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br />
691
692 Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $
693 </address>