blob: b43c3e3525c11c6e344112355b93b04a21b4d420 [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 Glushenkov4aecec12009-06-17 02:56:08 +000036.. _TableGen: http://llvm.org/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 Glushenkov4aecec12009-06-17 02:56:08 +000051One nice feature of LLVMC is that one doesn't have to distinguish between
52different compilers for different languages (think ``g++`` vs. ``gcc``) - the
53right toolchain is chosen automatically based on input language names (which
54are, in turn, determined from file extensions). If you want to force files
55ending with ".c" to compile as C++, use the ``-x`` option, just like you would
56do 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 Glushenkove8e4d582009-06-30 00:16:22 +000074By default, LLVMC uses ``llvm-gcc`` to compile the source code. It is also
75possible to choose the ``clang`` compiler with the ``-clang`` option.
Mikhail Glushenkov4410e322008-12-07 16:47:42 +000076
Mikhail Glushenkov83237482008-10-15 09:29:13 +000077
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000078Predefined options
79==================
80
81LLVMC has some built-in options that can't be overridden in the
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +000082configuration libraries:
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000083
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 Glushenkov83237482008-10-15 09:29:13 +000089* ``-load PLUGIN_NAME`` - Load the specified plugin DLL. Example:
90 ``-load $LLVM_DIR/Release/lib/LLVMCSimple.so``.
91
Mikhail Glushenkov270cae32008-05-30 06:25:24 +000092* ``-v`` - Enable verbose mode, i.e. print out all executed commands.
93
Mikhail Glushenkov294f5072009-06-25 18:20:44 +000094* ``--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 Glushenkov4ad0d572009-03-27 12:58:29 +0000100* ``--check-graph`` - Check the compilation for common errors like mismatched
101 output/input language names, multiple default edges and cycles. Because of
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000102 plugins, these checks can't be performed at compile-time. Exit with code zero
103 if no errors were found, and return the number of found errors
104 otherwise. Hidden option, useful for debugging LLVMC plugins.
Mikhail Glushenkovf8c430b2009-01-09 16:16:27 +0000105
Mikhail Glushenkov4ad0d572009-03-27 12:58:29 +0000106* ``--view-graph`` - Show a graphical representation of the compilation graph
107 and exit. Requires that you have ``dot`` and ``gv`` programs installed. Hidden
108 option, useful for debugging LLVMC plugins.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000109
Mikhail Glushenkov4ad0d572009-03-27 12:58:29 +0000110* ``--write-graph`` - Write a ``compilation-graph.dot`` file in the current
111 directory with the compilation graph description in Graphviz format (identical
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000112 to the file used by the ``--view-graph`` option). The ``-o`` option can be
113 used to set the output file name. Hidden option, useful for debugging LLVMC
114 plugins.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000115
Mikhail Glushenkov73296102008-05-30 06:29:17 +0000116* ``--help``, ``--help-hidden``, ``--version`` - These options have
117 their standard meaning.
118
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000119Compiling LLVMC plugins
120=======================
121
122It's easiest to start working on your own LLVMC plugin by copying the
123skeleton project which lives under ``$LLVMC_DIR/plugins/Simple``::
124
125 $ cd $LLVMC_DIR/plugins
126 $ cp -r Simple MyPlugin
127 $ cd MyPlugin
128 $ ls
129 Makefile PluginMain.cpp Simple.td
130
131As you can see, our basic plugin consists of only two files (not
132counting the build script). ``Simple.td`` contains TableGen
133description of the compilation graph; its format is documented in the
134following sections. ``PluginMain.cpp`` is just a helper file used to
135compile the auto-generated C++ code produced from TableGen source. It
136can also contain hook definitions (see `below`__).
137
138__ hooks_
139
140The first thing that you should do is to change the ``LLVMC_PLUGIN``
141variable in the ``Makefile`` to avoid conflicts (since this variable
142is used to name the resulting library)::
143
144 LLVMC_PLUGIN=MyPlugin
145
146It is also a good idea to rename ``Simple.td`` to something less
147generic::
148
149 $ mv Simple.td MyPlugin.td
150
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000151To build your plugin as a dynamic library, just ``cd`` to its source
152directory and run ``make``. The resulting file will be called
Mikhail Glushenkov4aecec12009-06-17 02:56:08 +0000153``plugin_llvmc_$(LLVMC_PLUGIN).$(DLL_EXTENSION)`` (in our case,
154``plugin_llvmc_MyPlugin.so``). This library can be then loaded in with the
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000155``-load`` option. Example::
156
157 $ cd $LLVMC_DIR/plugins/Simple
158 $ make
Mikhail Glushenkov4aecec12009-06-17 02:56:08 +0000159 $ llvmc -load $LLVM_DIR/Release/lib/plugin_llvmc_Simple.so
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000160
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000161Compiling standalone LLVMC-based drivers
162========================================
163
164By default, the ``llvmc`` executable consists of a driver core plus several
165statically linked plugins (``Base`` and ``Clang`` at the moment). You can
166produce a standalone LLVMC-based driver executable by linking the core with your
167own plugins. The recommended way to do this is by starting with the provided
168``Skeleton`` example (``$LLVMC_DIR/example/Skeleton``)::
169
170 $ cd $LLVMC_DIR/example/
171 $ cp -r Skeleton mydriver
172 $ cd mydriver
173 $ vim Makefile
174 [...]
175 $ make
176
177If you're compiling LLVM with different source and object directories, then you
178must perform the following additional steps before running ``make``::
179
180 # LLVMC_SRC_DIR = $LLVM_SRC_DIR/tools/llvmc/
181 # LLVMC_OBJ_DIR = $LLVM_OBJ_DIR/tools/llvmc/
182 $ cp $LLVMC_SRC_DIR/example/mydriver/Makefile \
183 $LLVMC_OBJ_DIR/example/mydriver/
184 $ cd $LLVMC_OBJ_DIR/example/mydriver
185 $ make
186
187Another way to do the same thing is by using the following command::
188
189 $ cd $LLVMC_DIR
190 $ make LLVMC_BUILTIN_PLUGINS=MyPlugin LLVMC_BASED_DRIVER_NAME=mydriver
191
Mikhail Glushenkov4aecec12009-06-17 02:56:08 +0000192This works with both srcdir == objdir and srcdir != objdir, but assumes that the
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000193plugin source directory was placed under ``$LLVMC_DIR/plugins``.
194
Mikhail Glushenkovf80f0aa2008-11-25 21:34:01 +0000195Sometimes, you will want a 'bare-bones' version of LLVMC that has no
196built-in plugins. It can be compiled with the following command::
197
198 $ cd $LLVMC_DIR
Mikhail Glushenkov530f3992009-06-16 00:13:52 +0000199 $ make LLVMC_BUILTIN_PLUGINS=""
Mikhail Glushenkovf80f0aa2008-11-25 21:34:01 +0000200
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000201
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000202Customizing LLVMC: the compilation graph
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000203========================================
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000204
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000205Each TableGen configuration file should include the common
206definitions::
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000207
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000208 include "llvm/CompilerDriver/Common.td"
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000209
210Internally, LLVMC stores information about possible source
211transformations in form of a graph. Nodes in this graph represent
212tools, and edges between two nodes represent a transformation path. A
213special "root" node is used to mark entry points for the
214transformations. LLVMC also assigns a weight to each edge (more on
215this later) to choose between several alternative edges.
216
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000217The definition of the compilation graph (see file
218``plugins/Base/Base.td`` for an example) is just a list of edges::
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000219
220 def CompilationGraph : CompilationGraph<[
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000221 Edge<"root", "llvm_gcc_c">,
222 Edge<"root", "llvm_gcc_assembler">,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000223 ...
224
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000225 Edge<"llvm_gcc_c", "llc">,
226 Edge<"llvm_gcc_cpp", "llc">,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000227 ...
228
Mikhail Glushenkov536637f2008-11-25 21:34:53 +0000229 OptionalEdge<"llvm_gcc_c", "opt", (case (switch_on "opt"),
230 (inc_weight))>,
231 OptionalEdge<"llvm_gcc_cpp", "opt", (case (switch_on "opt"),
232 (inc_weight))>,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000233 ...
234
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000235 OptionalEdge<"llvm_gcc_assembler", "llvm_gcc_cpp_linker",
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000236 (case (input_languages_contain "c++"), (inc_weight),
237 (or (parameter_equals "linker", "g++"),
238 (parameter_equals "linker", "c++")), (inc_weight))>,
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000239 ...
240
241 ]>;
242
243As you can see, the edges can be either default or optional, where
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000244optional edges are differentiated by an additional ``case`` expression
Mikhail Glushenkov01088772008-11-17 17:29:18 +0000245used to calculate the weight of this edge. Notice also that we refer
Mikhail Glushenkovf80f0aa2008-11-25 21:34:01 +0000246to tools via their names (as strings). This makes it possible to add
247edges to an existing compilation graph in plugins without having to
248know about all tool definitions used in the graph.
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000249
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000250The default edges are assigned a weight of 1, and optional edges get a
251weight of 0 + 2*N where N is the number of tests that evaluated to
252true in the ``case`` expression. It is also possible to provide an
253integer parameter to ``inc_weight`` and ``dec_weight`` - in this case,
254the weight is increased (or decreased) by the provided value instead
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +0000255of the default 2. It is also possible to change the default weight of
256an optional edge by using the ``default`` clause of the ``case``
257construct.
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000258
259When passing an input file through the graph, LLVMC picks the edge
260with the maximum weight. To avoid ambiguity, there should be only one
261default edge between two nodes (with the exception of the root node,
262which gets a special treatment - there you are allowed to specify one
263default edge *per language*).
264
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +0000265When multiple plugins are loaded, their compilation graphs are merged
Mikhail Glushenkov3321b0f2008-11-28 00:12:09 +0000266together. Since multiple edges that have the same end nodes are not
267allowed (i.e. the graph is not a multigraph), an edge defined in
Mikhail Glushenkov7e6d70a2008-11-26 22:59:45 +0000268several plugins will be replaced by the definition from the plugin
269that was loaded last. Plugin load order can be controlled by using the
270plugin priority feature described above.
271
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000272To get a visual representation of the compilation graph (useful for
Mikhail Glushenkov113ec352008-11-25 21:38:12 +0000273debugging), run ``llvmc --view-graph``. You will need ``dot`` and
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000274``gsview`` installed for this to work properly.
275
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000276Describing options
277==================
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000278
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000279Command-line options that the plugin supports are defined by using an
280``OptionList``::
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000281
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000282 def Options : OptionList<[
283 (switch_option "E", (help "Help string")),
284 (alias_option "quiet", "q")
285 ...
286 ]>;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000287
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000288As you can see, the option list is just a list of DAGs, where each DAG
289is an option description consisting of the option name and some
290properties. A plugin can define more than one option list (they are
291all merged together in the end), which can be handy if one wants to
292separate option groups syntactically.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000293
294* Possible option types:
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000295
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000296 - ``switch_option`` - a simple boolean switch without arguments, for example
297 ``-O2`` or ``-time``. At most one occurrence is allowed.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000298
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000299 - ``parameter_option`` - option that takes one argument, for example
300 ``-std=c99``. It is also allowed to use spaces instead of the equality
301 sign: ``-std c99``. At most one occurrence is allowed.
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000302
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000303 - ``parameter_list_option`` - same as the above, but more than one option
304 occurence is allowed.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000305
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000306 - ``prefix_option`` - same as the parameter_option, but the option name and
307 argument do not have to be separated. Example: ``-ofile``. This can be also
308 specified as ``-o file``; however, ``-o=file`` will be parsed incorrectly
309 (``=file`` will be interpreted as option value). At most one occurrence is
310 allowed.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000311
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000312 - ``prefix_list_option`` - same as the above, but more than one occurence of
313 the option is allowed; example: ``-lm -lpthread``.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000314
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000315 - ``alias_option`` - a special option type for creating aliases. Unlike other
316 option types, aliases are not allowed to have any properties besides the
317 aliased option name. Usage example: ``(alias_option "preprocess", "E")``
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000318
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000319
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000320* Possible option properties:
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000321
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000322 - ``help`` - help string associated with this option. Used for ``--help``
323 output.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000324
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000325 - ``required`` - this option must be specified exactly once (or, in case of
326 the list options without the ``multi_val`` property, at least
327 once). Incompatible with ``zero_or_one`` and ``one_or_more``.
328
329 - ``one_or_more`` - the option must be specified at least one time. Useful
330 only for list options in conjunction with ``multi_val``; for ordinary lists
331 it is synonymous with ``required``. Incompatible with ``required`` and
332 ``zero_or_one``.
333
334 - ``zero_or_one`` - the option can be specified zero or one times. Useful
335 only for list options in conjunction with ``multi_val``. Incompatible with
336 ``required`` and ``one_or_more``.
Mikhail Glushenkov77ddce92008-05-06 18:17:19 +0000337
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000338 - ``hidden`` - the description of this option will not appear in
339 the ``--help`` output (but will appear in the ``--help-hidden``
340 output).
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000341
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000342 - ``really_hidden`` - the option will not be mentioned in any help
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000343 output.
344
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000345 - ``multi_val n`` - this option takes *n* arguments (can be useful in some
346 special cases). Usage example: ``(parameter_list_option "foo", (multi_val
347 3))``. Only list options can have this attribute; you can, however, use
348 the ``one_or_more`` and ``zero_or_one`` properties.
349
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000350 - ``extern`` - this option is defined in some other plugin, see below.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000351
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000352External options
353----------------
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000354
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000355Sometimes, when linking several plugins together, one plugin needs to
356access options defined in some other plugin. Because of the way
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000357options are implemented, such options must be marked as
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000358``extern``. This is what the ``extern`` option property is
359for. Example::
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000360
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000361 ...
362 (switch_option "E", (extern))
363 ...
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000364
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000365See also the section on plugin `priorities`__.
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000366
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000367__ priorities_
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000368
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000369.. _case:
Mikhail Glushenkov83237482008-10-15 09:29:13 +0000370
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000371Conditional evaluation
372======================
Mikhail Glushenkov0ab8ac32008-05-30 06:28:00 +0000373
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000374The 'case' construct is the main means by which programmability is
375achieved in LLVMC. It can be used to calculate edge weights, program
376actions and modify the shell commands to be executed. The 'case'
377expression is designed after the similarly-named construct in
378functional languages and takes the form ``(case (test_1), statement_1,
379(test_2), statement_2, ... (test_N), statement_N)``. The statements
380are evaluated only if the corresponding tests evaluate to true.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000381
382Examples::
383
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000384 // Edge weight calculation
385
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000386 // Increases edge weight by 5 if "-A" is provided on the
387 // command-line, and by 5 more if "-B" is also provided.
388 (case
389 (switch_on "A"), (inc_weight 5),
390 (switch_on "B"), (inc_weight 5))
391
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000392
393 // Tool command line specification
394
395 // Evaluates to "cmdline1" if the option "-A" is provided on the
396 // command line; to "cmdline2" if "-B" is provided;
397 // otherwise to "cmdline3".
398
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000399 (case
400 (switch_on "A"), "cmdline1",
401 (switch_on "B"), "cmdline2",
402 (default), "cmdline3")
403
404Note the slight difference in 'case' expression handling in contexts
405of edge weights and command line specification - in the second example
406the value of the ``"B"`` switch is never checked when switch ``"A"`` is
407enabled, and the whole expression always evaluates to ``"cmdline1"`` in
408that case.
409
410Case expressions can also be nested, i.e. the following is legal::
411
412 (case (switch_on "E"), (case (switch_on "o"), ..., (default), ...)
413 (default), ...)
414
415You should, however, try to avoid doing that because it hurts
416readability. It is usually better to split tool descriptions and/or
417use TableGen inheritance instead.
418
419* Possible tests are:
420
Mikhail Glushenkov536637f2008-11-25 21:34:53 +0000421 - ``switch_on`` - Returns true if a given command-line switch is
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000422 provided by the user. Example: ``(switch_on "opt")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000423
424 - ``parameter_equals`` - Returns true if a command-line parameter equals
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000425 a given value.
426 Example: ``(parameter_equals "W", "all")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000427
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000428 - ``element_in_list`` - Returns true if a command-line parameter
429 list contains a given value.
430 Example: ``(parameter_in_list "l", "pthread")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000431
432 - ``input_languages_contain`` - Returns true if a given language
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000433 belongs to the current input language set.
434 Example: ``(input_languages_contain "c++")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000435
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000436 - ``in_language`` - Evaluates to true if the input file language
437 equals to the argument. At the moment works only with ``cmd_line``
438 and ``actions`` (on non-join nodes).
439 Example: ``(in_language "c++")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000440
441 - ``not_empty`` - Returns true if a given option (which should be
442 either a parameter or a parameter list) is set by the
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000443 user.
444 Example: ``(not_empty "o")``.
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000445
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +0000446 - ``empty`` - The opposite of ``not_empty``. Equivalent to ``(not (not_empty
447 X))``. Provided for convenience.
448
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000449 - ``default`` - Always evaluates to true. Should always be the last
450 test in the ``case`` expression.
451
452 - ``and`` - A standard logical combinator that returns true iff all
453 of its arguments return true. Used like this: ``(and (test1),
454 (test2), ... (testN))``. Nesting of ``and`` and ``or`` is allowed,
455 but not encouraged.
456
457 - ``or`` - Another logical combinator that returns true only if any
458 one of its arguments returns true. Example: ``(or (test1),
459 (test2), ... (testN))``.
460
Mikhail Glushenkovcd0858e2008-05-30 06:14:42 +0000461
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000462Writing a tool description
463==========================
464
465As was said earlier, nodes in the compilation graph represent tools,
466which are described separately. A tool definition looks like this
467(taken from the ``include/llvm/CompilerDriver/Tools.td`` file)::
468
469 def llvm_gcc_cpp : Tool<[
470 (in_language "c++"),
471 (out_language "llvm-assembler"),
472 (output_suffix "bc"),
473 (cmd_line "llvm-g++ -c $INFILE -o $OUTFILE -emit-llvm"),
474 (sink)
475 ]>;
476
477This defines a new tool called ``llvm_gcc_cpp``, which is an alias for
478``llvm-g++``. As you can see, a tool definition is just a list of
479properties; most of them should be self-explanatory. The ``sink``
480property means that this tool should be passed all command-line
481options that aren't mentioned in the option list.
482
483The complete list of all currently implemented tool properties follows.
484
485* Possible tool properties:
486
487 - ``in_language`` - input language name. Can be either a string or a
488 list, in case the tool supports multiple input languages.
489
490 - ``out_language`` - output language name. Tools are not allowed to
491 have multiple output languages.
492
493 - ``output_suffix`` - output file suffix. Can also be changed
494 dynamically, see documentation on actions.
495
496 - ``cmd_line`` - the actual command used to run the tool. You can
497 use ``$INFILE`` and ``$OUTFILE`` variables, output redirection
498 with ``>``, hook invocations (``$CALL``), environment variables
499 (via ``$ENV``) and the ``case`` construct.
500
501 - ``join`` - this tool is a "join node" in the graph, i.e. it gets a
502 list of input files and joins them together. Used for linkers.
503
504 - ``sink`` - all command-line options that are not handled by other
505 tools are passed to this tool.
506
507 - ``actions`` - A single big ``case`` expression that specifies how
508 this tool reacts on command-line options (described in more detail
509 below).
510
511Actions
512-------
513
514A tool often needs to react to command-line options, and this is
515precisely what the ``actions`` property is for. The next example
516illustrates this feature::
517
518 def llvm_gcc_linker : Tool<[
519 (in_language "object-code"),
520 (out_language "executable"),
521 (output_suffix "out"),
522 (cmd_line "llvm-gcc $INFILE -o $OUTFILE"),
523 (join),
524 (actions (case (not_empty "L"), (forward "L"),
525 (not_empty "l"), (forward "l"),
526 (not_empty "dummy"),
527 [(append_cmd "-dummy1"), (append_cmd "-dummy2")])
528 ]>;
529
530The ``actions`` tool property is implemented on top of the omnipresent
531``case`` expression. It associates one or more different *actions*
532with given conditions - in the example, the actions are ``forward``,
533which forwards a given option unchanged, and ``append_cmd``, which
534appends a given string to the tool execution command. Multiple actions
535can be associated with a single condition by using a list of actions
536(used in the example to append some dummy options). The same ``case``
537construct can also be used in the ``cmd_line`` property to modify the
538tool command line.
539
540The "join" property used in the example means that this tool behaves
541like a linker.
542
543The list of all possible actions follows.
544
545* Possible actions:
546
547 - ``append_cmd`` - append a string to the tool invocation
548 command.
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +0000549 Example: ``(case (switch_on "pthread"), (append_cmd
550 "-lpthread"))``
551
552 - ``error` - exit with error.
553 Example: ``(error "Mixing -c and -S is not allowed!")``.
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000554
555 - ``forward`` - forward an option unchanged.
556 Example: ``(forward "Wall")``.
557
558 - ``forward_as`` - Change the name of an option, but forward the
559 argument unchanged.
Mikhail Glushenkove89331b2009-05-06 01:41:19 +0000560 Example: ``(forward_as "O0", "--disable-optimization")``.
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000561
562 - ``output_suffix`` - modify the output suffix of this
563 tool.
564 Example: ``(output_suffix "i")``.
565
566 - ``stop_compilation`` - stop compilation after this tool processes
567 its input. Used without arguments.
568
569 - ``unpack_values`` - used for for splitting and forwarding
570 comma-separated lists of options, e.g. ``-Wa,-foo=bar,-baz`` is
571 converted to ``-foo=bar -baz`` and appended to the tool invocation
572 command.
573 Example: ``(unpack_values "Wa,")``.
574
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000575Language map
Mikhail Glushenkov270cae32008-05-30 06:25:24 +0000576============
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000577
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000578If you are adding support for a new language to LLVMC, you'll need to
579modify the language map, which defines mappings from file extensions
580to language names. It is used to choose the proper toolchain(s) for a
581given input file set. Language map definition looks like this::
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000582
583 def LanguageMap : LanguageMap<
584 [LangToSuffixes<"c++", ["cc", "cp", "cxx", "cpp", "CPP", "c++", "C"]>,
585 LangToSuffixes<"c", ["c"]>,
586 ...
587 ]>;
588
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000589For example, without those definitions the following command wouldn't work::
590
591 $ llvmc hello.cpp
592 llvmc: Unknown suffix: cpp
593
594The language map entries should be added only for tools that are
595linked with the root node. Since tools are not allowed to have
596multiple output languages, for nodes "inside" the graph the input and
597output languages should match. This is enforced at compile-time.
598
599
600More advanced topics
601====================
602
603.. _hooks:
604
605Hooks and environment variables
606-------------------------------
607
608Normally, LLVMC executes programs from the system ``PATH``. Sometimes,
Mikhail Glushenkova298bb72009-01-21 13:04:00 +0000609this is not sufficient: for example, we may want to specify tool paths
610or names in the configuration file. This can be easily achieved via
611the hooks mechanism. To write your own hooks, just add their
612definitions to the ``PluginMain.cpp`` or drop a ``.cpp`` file into the
613your plugin directory. Hooks should live in the ``hooks`` namespace
Mikhail Glushenkovb6b51412009-01-21 13:04:33 +0000614and have the signature ``std::string hooks::MyHookName ([const char*
Mikhail Glushenkova298bb72009-01-21 13:04:00 +0000615Arg0 [ const char* Arg2 [, ...]]])``. They can be used from the
616``cmd_line`` tool property::
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000617
618 (cmd_line "$CALL(MyHook)/path/to/file -o $CALL(AnotherHook)")
619
Mikhail Glushenkova298bb72009-01-21 13:04:00 +0000620To pass arguments to hooks, use the following syntax::
621
622 (cmd_line "$CALL(MyHook, 'Arg1', 'Arg2', 'Arg # 3')/path/to/file -o1 -o2")
623
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000624It is also possible to use environment variables in the same manner::
625
626 (cmd_line "$ENV(VAR1)/path/to/file -o $ENV(VAR2)")
627
628To change the command line string based on user-provided options use
629the ``case`` expression (documented `above`__)::
630
631 (cmd_line
632 (case
633 (switch_on "E"),
634 "llvm-g++ -E -x c $INFILE -o $OUTFILE",
635 (default),
636 "llvm-g++ -c -x c $INFILE -o $OUTFILE -emit-llvm"))
637
638__ case_
639
640.. _priorities:
641
642How plugins are loaded
643----------------------
644
645It is possible for LLVMC plugins to depend on each other. For example,
646one can create edges between nodes defined in some other plugin. To
647make this work, however, that plugin should be loaded first. To
648achieve this, the concept of plugin priority was introduced. By
649default, every plugin has priority zero; to specify the priority
650explicitly, put the following line in your plugin's TableGen file::
651
652 def Priority : PluginPriority<$PRIORITY_VALUE>;
653 # Where PRIORITY_VALUE is some integer > 0
654
655Plugins are loaded in order of their (increasing) priority, starting
656with 0. Therefore, the plugin with the highest priority value will be
657loaded last.
658
Mikhail Glushenkov9ecd30c2008-09-22 20:48:48 +0000659Debugging
Mikhail Glushenkov4410e322008-12-07 16:47:42 +0000660---------
Mikhail Glushenkov9ecd30c2008-09-22 20:48:48 +0000661
662When writing LLVMC plugins, it can be useful to get a visual view of
663the resulting compilation graph. This can be achieved via the command
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000664line option ``--view-graph``. This command assumes that Graphviz_ and
Mikhail Glushenkov4ad0d572009-03-27 12:58:29 +0000665Ghostview_ are installed. There is also a ``--write-graph`` option that
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000666creates a Graphviz source file (``compilation-graph.dot``) in the
Mikhail Glushenkov9ecd30c2008-09-22 20:48:48 +0000667current directory.
668
Mikhail Glushenkovf9b1d792009-01-15 02:42:40 +0000669Another useful ``llvmc`` option is ``--check-graph``. It checks the
670compilation graph for common errors like mismatched output/input
671language names, multiple default edges and cycles. These checks can't
672be performed at compile-time because the plugins can load code
673dynamically. When invoked with ``--check-graph``, ``llvmc`` doesn't
674perform any compilation tasks and returns the number of encountered
675errors as its status code.
Mikhail Glushenkovf8c430b2009-01-09 16:16:27 +0000676
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000677.. _Graphviz: http://www.graphviz.org/
678.. _Ghostview: http://pages.cs.wisc.edu/~ghost/
Mikhail Glushenkov68319f82008-12-11 23:24:40 +0000679
Mikhail Glushenkov875ace52009-06-30 00:16:00 +0000680Conditioning on the executable name
681-----------------------------------
682
683For now, the executable name (the value passed to the driver in ``argv[0]``) is
684accessible only in the C++ code (i.e. hooks). Use the following code::
685
686 namespace llvmc {
687 extern const char* ProgramName;
688 }
689
690 std::string MyHook() {
691 //...
692 if (strcmp(ProgramName, "mydriver") == 0) {
693 //...
694
695 }
696
697In general, you're encouraged not to make the behaviour dependent on the
698executable file name, and use command-line switches instead. See for example how
699the ``Base`` plugin behaves when it needs to choose the correct linker options
700(think ``g++`` vs. ``gcc``).
701
Mikhail Glushenkov68319f82008-12-11 23:24:40 +0000702.. raw:: html
Mikhail Glushenkovd5652032008-12-13 02:28:58 +0000703
704 <hr />
705 <address>
706 <a href="http://jigsaw.w3.org/css-validator/check/referer">
707 <img src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
708 alt="Valid CSS" /></a>
709 <a href="http://validator.w3.org/check?uri=referer">
710 <img src="http://www.w3.org/Icons/valid-xhtml10-blue"
711 alt="Valid XHTML 1.0 Transitional"/></a>
712
713 <a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a><br />
714 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br />
715
716 Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $
717 </address>