blob: f6d1843faaf52d5e3c17ef267a857243697057a4 [file] [log] [blame]
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +00001===================================
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +00002Customizing LLVMC: Reference Manual
3===================================
Mikhail Glushenkovb7677be2008-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 Glushenkov6d1e9282008-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 Korobeynikove9ffb5b2008-03-23 08:57:20 +000019
Mikhail Glushenkov2e6a8442008-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 Glushenkovbd51c232008-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 Korobeynikove9ffb5b2008-03-23 08:57:20 +000032
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +000033Because LLVMC employs TableGen_ as its configuration language, you
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +000034need to be familiar with it to customize LLVMC.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000035
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +000036.. _TableGen: http://llvm.cs.uiuc.edu/docs/TableGenFundamentals.html
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +000037
38
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +000039Compiling with LLVMC
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +000040====================
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000041
Mikhail Glushenkov1ce87222008-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 Korobeynikove9ffb5b2008-03-23 08:57:20 +000045
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +000046 $ # This works as expected:
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +000047 $ llvmc -O3 -Wall hello.cpp
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +000048 $ ./a.out
49 hello
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000050
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +000051One nice feature of LLVMC is that one doesn't have to distinguish
Mikhail Glushenkov2e6a8442008-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 Glushenkov1ce87222008-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 Korobeynikove9ffb5b2008-03-23 08:57:20 +000057
Mikhail Glushenkov99f10642008-11-25 21:34:29 +000058 $ # hello.c is really a C++ file
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +000059 $ llvmc -x c++ hello.c
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +000060 $ ./a.out
61 hello
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000062
Mikhail Glushenkov2e6a8442008-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 Korobeynikove9ffb5b2008-03-23 08:57:20 +000066
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +000067 $ llvmc -c hello.cpp
68 $ llvmc hello.o
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +000069 [A lot of link-time errors skipped]
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +000070 $ llvmc --linker=c++ hello.o
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +000071 $ ./a.out
72 hello
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000073
Mikhail Glushenkov8fdb3172008-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 Glushenkovbd51c232008-10-15 09:29:13 +000078
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +000079Predefined options
80==================
81
82LLVMC has some built-in options that can't be overridden in the
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +000083configuration libraries:
Mikhail Glushenkov772d9c92008-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 Glushenkovbd51c232008-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 Glushenkov772d9c92008-05-30 06:25:24 +000093* ``-v`` - Enable verbose mode, i.e. print out all executed commands.
94
Mikhail Glushenkove68a0052009-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
97 plugins, these checks can't be performed at compile-time. Exit with code zero if
98 no errors were found, and return the number of found errors otherwise. Hidden
99 option, useful for debugging LLVMC plugins.
Mikhail Glushenkovf300a822009-01-09 16:16:27 +0000100
Mikhail Glushenkove68a0052009-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 Glushenkov772d9c92008-05-30 06:25:24 +0000104
Mikhail Glushenkove68a0052009-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
107 to the file used by the ``--view-graph`` option). The ``-o`` option can be used
108 to set the output file name. Hidden option, useful for debugging LLVMC plugins.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000109
Mikhail Glushenkova5bdf6e2008-05-30 06:29:17 +0000110* ``--save-temps`` - Write temporary files to the current directory
111 and do not delete them on exit. Hidden option, useful for debugging.
112
113* ``--help``, ``--help-hidden``, ``--version`` - These options have
114 their standard meaning.
115
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000116
Mikhail Glushenkovbd51c232008-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 Glushenkovd333fce2008-11-25 21:34:01 +0000149Note that the plugin source directory must be placed under
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000150``$LLVMC_DIR/plugins`` to make use of the existing build
151infrastructure. To build a version of the LLVMC executable called
152``mydriver`` with your plugin compiled in, use the following command::
153
154 $ cd $LLVMC_DIR
155 $ make BUILTIN_PLUGINS=MyPlugin DRIVER_NAME=mydriver
156
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000157To build your plugin as a dynamic library, just ``cd`` to its source
158directory and run ``make``. The resulting file will be called
159``LLVMC$(LLVMC_PLUGIN).$(DLL_EXTENSION)`` (in our case,
160``LLVMCMyPlugin.so``). This library can be then loaded in with the
161``-load`` option. Example::
162
163 $ cd $LLVMC_DIR/plugins/Simple
164 $ make
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +0000165 $ llvmc -load $LLVM_DIR/Release/lib/LLVMCSimple.so
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000166
Mikhail Glushenkovd333fce2008-11-25 21:34:01 +0000167Sometimes, you will want a 'bare-bones' version of LLVMC that has no
168built-in plugins. It can be compiled with the following command::
169
170 $ cd $LLVMC_DIR
171 $ make BUILTIN_PLUGINS=""
172
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000173
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000174Customizing LLVMC: the compilation graph
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000175========================================
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000176
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000177Each TableGen configuration file should include the common
178definitions::
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000179
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000180 include "llvm/CompilerDriver/Common.td"
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000181
182Internally, LLVMC stores information about possible source
183transformations in form of a graph. Nodes in this graph represent
184tools, and edges between two nodes represent a transformation path. A
185special "root" node is used to mark entry points for the
186transformations. LLVMC also assigns a weight to each edge (more on
187this later) to choose between several alternative edges.
188
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000189The definition of the compilation graph (see file
190``plugins/Base/Base.td`` for an example) is just a list of edges::
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000191
192 def CompilationGraph : CompilationGraph<[
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000193 Edge<"root", "llvm_gcc_c">,
194 Edge<"root", "llvm_gcc_assembler">,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000195 ...
196
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000197 Edge<"llvm_gcc_c", "llc">,
198 Edge<"llvm_gcc_cpp", "llc">,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000199 ...
200
Mikhail Glushenkov817b2f42008-11-25 21:34:53 +0000201 OptionalEdge<"llvm_gcc_c", "opt", (case (switch_on "opt"),
202 (inc_weight))>,
203 OptionalEdge<"llvm_gcc_cpp", "opt", (case (switch_on "opt"),
204 (inc_weight))>,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000205 ...
206
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000207 OptionalEdge<"llvm_gcc_assembler", "llvm_gcc_cpp_linker",
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000208 (case (input_languages_contain "c++"), (inc_weight),
209 (or (parameter_equals "linker", "g++"),
210 (parameter_equals "linker", "c++")), (inc_weight))>,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000211 ...
212
213 ]>;
214
215As you can see, the edges can be either default or optional, where
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000216optional edges are differentiated by an additional ``case`` expression
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000217used to calculate the weight of this edge. Notice also that we refer
Mikhail Glushenkovd333fce2008-11-25 21:34:01 +0000218to tools via their names (as strings). This makes it possible to add
219edges to an existing compilation graph in plugins without having to
220know about all tool definitions used in the graph.
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000221
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000222The default edges are assigned a weight of 1, and optional edges get a
223weight of 0 + 2*N where N is the number of tests that evaluated to
224true in the ``case`` expression. It is also possible to provide an
225integer parameter to ``inc_weight`` and ``dec_weight`` - in this case,
226the weight is increased (or decreased) by the provided value instead
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +0000227of the default 2. It is also possible to change the default weight of
228an optional edge by using the ``default`` clause of the ``case``
229construct.
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000230
231When passing an input file through the graph, LLVMC picks the edge
232with the maximum weight. To avoid ambiguity, there should be only one
233default edge between two nodes (with the exception of the root node,
234which gets a special treatment - there you are allowed to specify one
235default edge *per language*).
236
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +0000237When multiple plugins are loaded, their compilation graphs are merged
Mikhail Glushenkov642e9a12008-11-28 00:12:09 +0000238together. Since multiple edges that have the same end nodes are not
239allowed (i.e. the graph is not a multigraph), an edge defined in
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +0000240several plugins will be replaced by the definition from the plugin
241that was loaded last. Plugin load order can be controlled by using the
242plugin priority feature described above.
243
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000244To get a visual representation of the compilation graph (useful for
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +0000245debugging), run ``llvmc --view-graph``. You will need ``dot`` and
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000246``gsview`` installed for this to work properly.
247
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000248Describing options
249==================
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000250
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000251Command-line options that the plugin supports are defined by using an
252``OptionList``::
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000253
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000254 def Options : OptionList<[
255 (switch_option "E", (help "Help string")),
256 (alias_option "quiet", "q")
257 ...
258 ]>;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000259
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000260As you can see, the option list is just a list of DAGs, where each DAG
261is an option description consisting of the option name and some
262properties. A plugin can define more than one option list (they are
263all merged together in the end), which can be handy if one wants to
264separate option groups syntactically.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000265
266* Possible option types:
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000267
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000268 - ``switch_option`` - a simple boolean switch without arguments, for example
269 ``-O2`` or ``-time``. At most one occurrence is allowed.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000270
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000271 - ``parameter_option`` - option that takes one argument, for example
272 ``-std=c99``. It is also allowed to use spaces instead of the equality
273 sign: ``-std c99``. At most one occurrence is allowed.
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000274
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000275 - ``parameter_list_option`` - same as the above, but more than one option
276 occurence is allowed.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000277
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000278 - ``prefix_option`` - same as the parameter_option, but the option name and
279 argument do not have to be separated. Example: ``-ofile``. This can be also
280 specified as ``-o file``; however, ``-o=file`` will be parsed incorrectly
281 (``=file`` will be interpreted as option value). At most one occurrence is
282 allowed.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000283
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000284 - ``prefix_list_option`` - same as the above, but more than one occurence of
285 the option is allowed; example: ``-lm -lpthread``.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000286
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000287 - ``alias_option`` - a special option type for creating aliases. Unlike other
288 option types, aliases are not allowed to have any properties besides the
289 aliased option name. Usage example: ``(alias_option "preprocess", "E")``
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000290
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000291
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000292* Possible option properties:
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000293
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000294 - ``help`` - help string associated with this option. Used for ``--help``
295 output.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000296
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000297 - ``required`` - this option must be specified exactly once (or, in case of
298 the list options without the ``multi_val`` property, at least
299 once). Incompatible with ``zero_or_one`` and ``one_or_more``.
300
301 - ``one_or_more`` - the option must be specified at least one time. Useful
302 only for list options in conjunction with ``multi_val``; for ordinary lists
303 it is synonymous with ``required``. Incompatible with ``required`` and
304 ``zero_or_one``.
305
306 - ``zero_or_one`` - the option can be specified zero or one times. Useful
307 only for list options in conjunction with ``multi_val``. Incompatible with
308 ``required`` and ``one_or_more``.
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000309
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000310 - ``hidden`` - the description of this option will not appear in
311 the ``--help`` output (but will appear in the ``--help-hidden``
312 output).
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000313
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000314 - ``really_hidden`` - the option will not be mentioned in any help
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000315 output.
316
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000317 - ``multi_val n`` - this option takes *n* arguments (can be useful in some
318 special cases). Usage example: ``(parameter_list_option "foo", (multi_val
319 3))``. Only list options can have this attribute; you can, however, use
320 the ``one_or_more`` and ``zero_or_one`` properties.
321
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000322 - ``extern`` - this option is defined in some other plugin, see below.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000323
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000324External options
325----------------
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000326
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000327Sometimes, when linking several plugins together, one plugin needs to
328access options defined in some other plugin. Because of the way
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000329options are implemented, such options must be marked as
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000330``extern``. This is what the ``extern`` option property is
331for. Example::
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000332
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000333 ...
334 (switch_option "E", (extern))
335 ...
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000336
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000337See also the section on plugin `priorities`__.
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000338
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000339__ priorities_
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000340
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000341.. _case:
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000342
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000343Conditional evaluation
344======================
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000345
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000346The 'case' construct is the main means by which programmability is
347achieved in LLVMC. It can be used to calculate edge weights, program
348actions and modify the shell commands to be executed. The 'case'
349expression is designed after the similarly-named construct in
350functional languages and takes the form ``(case (test_1), statement_1,
351(test_2), statement_2, ... (test_N), statement_N)``. The statements
352are evaluated only if the corresponding tests evaluate to true.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000353
354Examples::
355
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000356 // Edge weight calculation
357
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000358 // Increases edge weight by 5 if "-A" is provided on the
359 // command-line, and by 5 more if "-B" is also provided.
360 (case
361 (switch_on "A"), (inc_weight 5),
362 (switch_on "B"), (inc_weight 5))
363
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000364
365 // Tool command line specification
366
367 // Evaluates to "cmdline1" if the option "-A" is provided on the
368 // command line; to "cmdline2" if "-B" is provided;
369 // otherwise to "cmdline3".
370
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000371 (case
372 (switch_on "A"), "cmdline1",
373 (switch_on "B"), "cmdline2",
374 (default), "cmdline3")
375
376Note the slight difference in 'case' expression handling in contexts
377of edge weights and command line specification - in the second example
378the value of the ``"B"`` switch is never checked when switch ``"A"`` is
379enabled, and the whole expression always evaluates to ``"cmdline1"`` in
380that case.
381
382Case expressions can also be nested, i.e. the following is legal::
383
384 (case (switch_on "E"), (case (switch_on "o"), ..., (default), ...)
385 (default), ...)
386
387You should, however, try to avoid doing that because it hurts
388readability. It is usually better to split tool descriptions and/or
389use TableGen inheritance instead.
390
391* Possible tests are:
392
Mikhail Glushenkov817b2f42008-11-25 21:34:53 +0000393 - ``switch_on`` - Returns true if a given command-line switch is
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000394 provided by the user. Example: ``(switch_on "opt")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000395
396 - ``parameter_equals`` - Returns true if a command-line parameter equals
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000397 a given value.
398 Example: ``(parameter_equals "W", "all")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000399
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000400 - ``element_in_list`` - Returns true if a command-line parameter
401 list contains a given value.
402 Example: ``(parameter_in_list "l", "pthread")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000403
404 - ``input_languages_contain`` - Returns true if a given language
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000405 belongs to the current input language set.
406 Example: ``(input_languages_contain "c++")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000407
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000408 - ``in_language`` - Evaluates to true if the input file language
409 equals to the argument. At the moment works only with ``cmd_line``
410 and ``actions`` (on non-join nodes).
411 Example: ``(in_language "c++")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000412
413 - ``not_empty`` - Returns true if a given option (which should be
414 either a parameter or a parameter list) is set by the
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000415 user.
416 Example: ``(not_empty "o")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000417
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +0000418 - ``empty`` - The opposite of ``not_empty``. Equivalent to ``(not (not_empty
419 X))``. Provided for convenience.
420
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000421 - ``default`` - Always evaluates to true. Should always be the last
422 test in the ``case`` expression.
423
424 - ``and`` - A standard logical combinator that returns true iff all
425 of its arguments return true. Used like this: ``(and (test1),
426 (test2), ... (testN))``. Nesting of ``and`` and ``or`` is allowed,
427 but not encouraged.
428
429 - ``or`` - Another logical combinator that returns true only if any
430 one of its arguments returns true. Example: ``(or (test1),
431 (test2), ... (testN))``.
432
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000433
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000434Writing a tool description
435==========================
436
437As was said earlier, nodes in the compilation graph represent tools,
438which are described separately. A tool definition looks like this
439(taken from the ``include/llvm/CompilerDriver/Tools.td`` file)::
440
441 def llvm_gcc_cpp : Tool<[
442 (in_language "c++"),
443 (out_language "llvm-assembler"),
444 (output_suffix "bc"),
445 (cmd_line "llvm-g++ -c $INFILE -o $OUTFILE -emit-llvm"),
446 (sink)
447 ]>;
448
449This defines a new tool called ``llvm_gcc_cpp``, which is an alias for
450``llvm-g++``. As you can see, a tool definition is just a list of
451properties; most of them should be self-explanatory. The ``sink``
452property means that this tool should be passed all command-line
453options that aren't mentioned in the option list.
454
455The complete list of all currently implemented tool properties follows.
456
457* Possible tool properties:
458
459 - ``in_language`` - input language name. Can be either a string or a
460 list, in case the tool supports multiple input languages.
461
462 - ``out_language`` - output language name. Tools are not allowed to
463 have multiple output languages.
464
465 - ``output_suffix`` - output file suffix. Can also be changed
466 dynamically, see documentation on actions.
467
468 - ``cmd_line`` - the actual command used to run the tool. You can
469 use ``$INFILE`` and ``$OUTFILE`` variables, output redirection
470 with ``>``, hook invocations (``$CALL``), environment variables
471 (via ``$ENV``) and the ``case`` construct.
472
473 - ``join`` - this tool is a "join node" in the graph, i.e. it gets a
474 list of input files and joins them together. Used for linkers.
475
476 - ``sink`` - all command-line options that are not handled by other
477 tools are passed to this tool.
478
479 - ``actions`` - A single big ``case`` expression that specifies how
480 this tool reacts on command-line options (described in more detail
481 below).
482
483Actions
484-------
485
486A tool often needs to react to command-line options, and this is
487precisely what the ``actions`` property is for. The next example
488illustrates this feature::
489
490 def llvm_gcc_linker : Tool<[
491 (in_language "object-code"),
492 (out_language "executable"),
493 (output_suffix "out"),
494 (cmd_line "llvm-gcc $INFILE -o $OUTFILE"),
495 (join),
496 (actions (case (not_empty "L"), (forward "L"),
497 (not_empty "l"), (forward "l"),
498 (not_empty "dummy"),
499 [(append_cmd "-dummy1"), (append_cmd "-dummy2")])
500 ]>;
501
502The ``actions`` tool property is implemented on top of the omnipresent
503``case`` expression. It associates one or more different *actions*
504with given conditions - in the example, the actions are ``forward``,
505which forwards a given option unchanged, and ``append_cmd``, which
506appends a given string to the tool execution command. Multiple actions
507can be associated with a single condition by using a list of actions
508(used in the example to append some dummy options). The same ``case``
509construct can also be used in the ``cmd_line`` property to modify the
510tool command line.
511
512The "join" property used in the example means that this tool behaves
513like a linker.
514
515The list of all possible actions follows.
516
517* Possible actions:
518
519 - ``append_cmd`` - append a string to the tool invocation
520 command.
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +0000521 Example: ``(case (switch_on "pthread"), (append_cmd
522 "-lpthread"))``
523
524 - ``error` - exit with error.
525 Example: ``(error "Mixing -c and -S is not allowed!")``.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000526
527 - ``forward`` - forward an option unchanged.
528 Example: ``(forward "Wall")``.
529
530 - ``forward_as`` - Change the name of an option, but forward the
531 argument unchanged.
532 Example: ``(forward_as "O0" "--disable-optimization")``.
533
534 - ``output_suffix`` - modify the output suffix of this
535 tool.
536 Example: ``(output_suffix "i")``.
537
538 - ``stop_compilation`` - stop compilation after this tool processes
539 its input. Used without arguments.
540
541 - ``unpack_values`` - used for for splitting and forwarding
542 comma-separated lists of options, e.g. ``-Wa,-foo=bar,-baz`` is
543 converted to ``-foo=bar -baz`` and appended to the tool invocation
544 command.
545 Example: ``(unpack_values "Wa,")``.
546
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000547Language map
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000548============
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000549
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000550If you are adding support for a new language to LLVMC, you'll need to
551modify the language map, which defines mappings from file extensions
552to language names. It is used to choose the proper toolchain(s) for a
553given input file set. Language map definition looks like this::
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000554
555 def LanguageMap : LanguageMap<
556 [LangToSuffixes<"c++", ["cc", "cp", "cxx", "cpp", "CPP", "c++", "C"]>,
557 LangToSuffixes<"c", ["c"]>,
558 ...
559 ]>;
560
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000561For example, without those definitions the following command wouldn't work::
562
563 $ llvmc hello.cpp
564 llvmc: Unknown suffix: cpp
565
566The language map entries should be added only for tools that are
567linked with the root node. Since tools are not allowed to have
568multiple output languages, for nodes "inside" the graph the input and
569output languages should match. This is enforced at compile-time.
570
571
572More advanced topics
573====================
574
575.. _hooks:
576
577Hooks and environment variables
578-------------------------------
579
580Normally, LLVMC executes programs from the system ``PATH``. Sometimes,
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +0000581this is not sufficient: for example, we may want to specify tool paths
582or names in the configuration file. This can be easily achieved via
583the hooks mechanism. To write your own hooks, just add their
584definitions to the ``PluginMain.cpp`` or drop a ``.cpp`` file into the
585your plugin directory. Hooks should live in the ``hooks`` namespace
Mikhail Glushenkoved765fe2009-01-21 13:04:33 +0000586and have the signature ``std::string hooks::MyHookName ([const char*
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +0000587Arg0 [ const char* Arg2 [, ...]]])``. They can be used from the
588``cmd_line`` tool property::
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000589
590 (cmd_line "$CALL(MyHook)/path/to/file -o $CALL(AnotherHook)")
591
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +0000592To pass arguments to hooks, use the following syntax::
593
594 (cmd_line "$CALL(MyHook, 'Arg1', 'Arg2', 'Arg # 3')/path/to/file -o1 -o2")
595
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000596It is also possible to use environment variables in the same manner::
597
598 (cmd_line "$ENV(VAR1)/path/to/file -o $ENV(VAR2)")
599
600To change the command line string based on user-provided options use
601the ``case`` expression (documented `above`__)::
602
603 (cmd_line
604 (case
605 (switch_on "E"),
606 "llvm-g++ -E -x c $INFILE -o $OUTFILE",
607 (default),
608 "llvm-g++ -c -x c $INFILE -o $OUTFILE -emit-llvm"))
609
610__ case_
611
612.. _priorities:
613
614How plugins are loaded
615----------------------
616
617It is possible for LLVMC plugins to depend on each other. For example,
618one can create edges between nodes defined in some other plugin. To
619make this work, however, that plugin should be loaded first. To
620achieve this, the concept of plugin priority was introduced. By
621default, every plugin has priority zero; to specify the priority
622explicitly, put the following line in your plugin's TableGen file::
623
624 def Priority : PluginPriority<$PRIORITY_VALUE>;
625 # Where PRIORITY_VALUE is some integer > 0
626
627Plugins are loaded in order of their (increasing) priority, starting
628with 0. Therefore, the plugin with the highest priority value will be
629loaded last.
630
Mikhail Glushenkovf74495a2008-09-22 20:48:48 +0000631Debugging
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000632---------
Mikhail Glushenkovf74495a2008-09-22 20:48:48 +0000633
634When writing LLVMC plugins, it can be useful to get a visual view of
635the resulting compilation graph. This can be achieved via the command
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000636line option ``--view-graph``. This command assumes that Graphviz_ and
Mikhail Glushenkove68a0052009-03-27 12:58:29 +0000637Ghostview_ are installed. There is also a ``--write-graph`` option that
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000638creates a Graphviz source file (``compilation-graph.dot``) in the
Mikhail Glushenkovf74495a2008-09-22 20:48:48 +0000639current directory.
640
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000641Another useful ``llvmc`` option is ``--check-graph``. It checks the
642compilation graph for common errors like mismatched output/input
643language names, multiple default edges and cycles. These checks can't
644be performed at compile-time because the plugins can load code
645dynamically. When invoked with ``--check-graph``, ``llvmc`` doesn't
646perform any compilation tasks and returns the number of encountered
647errors as its status code.
Mikhail Glushenkovf300a822009-01-09 16:16:27 +0000648
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000649.. _Graphviz: http://www.graphviz.org/
650.. _Ghostview: http://pages.cs.wisc.edu/~ghost/
Mikhail Glushenkovac251f22008-12-11 23:24:40 +0000651
652.. raw:: html
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000653
654 <hr />
655 <address>
656 <a href="http://jigsaw.w3.org/css-validator/check/referer">
657 <img src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
658 alt="Valid CSS" /></a>
659 <a href="http://validator.w3.org/check?uri=referer">
660 <img src="http://www.w3.org/Icons/valid-xhtml10-blue"
661 alt="Valid XHTML 1.0 Transitional"/></a>
662
663 <a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a><br />
664 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br />
665
666 Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $
667 </address>