blob: d160e758ea6248da3d5d5791d76095731728b5c8 [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 Glushenkovb3e41962009-06-17 02:56:08 +000036.. _TableGen: http://llvm.org/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 Glushenkovb3e41962009-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 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 Glushenkov46518632009-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 Glushenkov8fdb3172008-12-07 16:47:42 +000076
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +000077
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +000078Predefined options
79==================
80
81LLVMC has some built-in options that can't be overridden in the
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +000082configuration libraries:
Mikhail Glushenkov772d9c92008-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 Glushenkovbd51c232008-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 Glushenkov772d9c92008-05-30 06:25:24 +000092* ``-v`` - Enable verbose mode, i.e. print out all executed commands.
93
Mikhail Glushenkovdddb2202009-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 Glushenkov57b06ba2009-07-11 19:27:40 +0000100* ``--temp-dir DIRECTORY`` - Store temporary files in the given directory. This
101 directory is deleted on exit unless ``--save-temps`` is specified. If
102 ``--save-temps=obj`` is also specified, ``--temp-dir`` is given the
103 precedence.
Mikhail Glushenkov588a7652009-07-09 19:39:16 +0000104
Mikhail Glushenkove68a0052009-03-27 12:58:29 +0000105* ``--check-graph`` - Check the compilation for common errors like mismatched
106 output/input language names, multiple default edges and cycles. Because of
Mikhail Glushenkovbc2a3d32009-06-16 00:13:52 +0000107 plugins, these checks can't be performed at compile-time. Exit with code zero
108 if no errors were found, and return the number of found errors
109 otherwise. Hidden option, useful for debugging LLVMC plugins.
Mikhail Glushenkovf300a822009-01-09 16:16:27 +0000110
Mikhail Glushenkove68a0052009-03-27 12:58:29 +0000111* ``--view-graph`` - Show a graphical representation of the compilation graph
112 and exit. Requires that you have ``dot`` and ``gv`` programs installed. Hidden
113 option, useful for debugging LLVMC plugins.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000114
Mikhail Glushenkove68a0052009-03-27 12:58:29 +0000115* ``--write-graph`` - Write a ``compilation-graph.dot`` file in the current
116 directory with the compilation graph description in Graphviz format (identical
Mikhail Glushenkovbc2a3d32009-06-16 00:13:52 +0000117 to the file used by the ``--view-graph`` option). The ``-o`` option can be
118 used to set the output file name. Hidden option, useful for debugging LLVMC
119 plugins.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000120
Mikhail Glushenkova5bdf6e2008-05-30 06:29:17 +0000121* ``--help``, ``--help-hidden``, ``--version`` - These options have
122 their standard meaning.
123
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000124Compiling LLVMC plugins
125=======================
126
127It's easiest to start working on your own LLVMC plugin by copying the
128skeleton project which lives under ``$LLVMC_DIR/plugins/Simple``::
129
130 $ cd $LLVMC_DIR/plugins
131 $ cp -r Simple MyPlugin
132 $ cd MyPlugin
133 $ ls
134 Makefile PluginMain.cpp Simple.td
135
136As you can see, our basic plugin consists of only two files (not
137counting the build script). ``Simple.td`` contains TableGen
138description of the compilation graph; its format is documented in the
139following sections. ``PluginMain.cpp`` is just a helper file used to
140compile the auto-generated C++ code produced from TableGen source. It
141can also contain hook definitions (see `below`__).
142
143__ hooks_
144
145The first thing that you should do is to change the ``LLVMC_PLUGIN``
146variable in the ``Makefile`` to avoid conflicts (since this variable
147is used to name the resulting library)::
148
149 LLVMC_PLUGIN=MyPlugin
150
151It is also a good idea to rename ``Simple.td`` to something less
152generic::
153
154 $ mv Simple.td MyPlugin.td
155
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000156To build your plugin as a dynamic library, just ``cd`` to its source
157directory and run ``make``. The resulting file will be called
Mikhail Glushenkovb3e41962009-06-17 02:56:08 +0000158``plugin_llvmc_$(LLVMC_PLUGIN).$(DLL_EXTENSION)`` (in our case,
159``plugin_llvmc_MyPlugin.so``). This library can be then loaded in with the
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000160``-load`` option. Example::
161
162 $ cd $LLVMC_DIR/plugins/Simple
163 $ make
Mikhail Glushenkovb3e41962009-06-17 02:56:08 +0000164 $ llvmc -load $LLVM_DIR/Release/lib/plugin_llvmc_Simple.so
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000165
Mikhail Glushenkovbc2a3d32009-06-16 00:13:52 +0000166Compiling standalone LLVMC-based drivers
167========================================
168
169By default, the ``llvmc`` executable consists of a driver core plus several
170statically linked plugins (``Base`` and ``Clang`` at the moment). You can
171produce a standalone LLVMC-based driver executable by linking the core with your
172own plugins. The recommended way to do this is by starting with the provided
173``Skeleton`` example (``$LLVMC_DIR/example/Skeleton``)::
174
175 $ cd $LLVMC_DIR/example/
176 $ cp -r Skeleton mydriver
177 $ cd mydriver
178 $ vim Makefile
179 [...]
180 $ make
181
182If you're compiling LLVM with different source and object directories, then you
183must perform the following additional steps before running ``make``::
184
185 # LLVMC_SRC_DIR = $LLVM_SRC_DIR/tools/llvmc/
186 # LLVMC_OBJ_DIR = $LLVM_OBJ_DIR/tools/llvmc/
187 $ cp $LLVMC_SRC_DIR/example/mydriver/Makefile \
188 $LLVMC_OBJ_DIR/example/mydriver/
189 $ cd $LLVMC_OBJ_DIR/example/mydriver
190 $ make
191
192Another way to do the same thing is by using the following command::
193
194 $ cd $LLVMC_DIR
195 $ make LLVMC_BUILTIN_PLUGINS=MyPlugin LLVMC_BASED_DRIVER_NAME=mydriver
196
Mikhail Glushenkovb3e41962009-06-17 02:56:08 +0000197This works with both srcdir == objdir and srcdir != objdir, but assumes that the
Mikhail Glushenkovbc2a3d32009-06-16 00:13:52 +0000198plugin source directory was placed under ``$LLVMC_DIR/plugins``.
199
Mikhail Glushenkovd333fce2008-11-25 21:34:01 +0000200Sometimes, you will want a 'bare-bones' version of LLVMC that has no
201built-in plugins. It can be compiled with the following command::
202
203 $ cd $LLVMC_DIR
Mikhail Glushenkovbc2a3d32009-06-16 00:13:52 +0000204 $ make LLVMC_BUILTIN_PLUGINS=""
Mikhail Glushenkovd333fce2008-11-25 21:34:01 +0000205
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000206
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000207Customizing LLVMC: the compilation graph
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000208========================================
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000209
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000210Each TableGen configuration file should include the common
211definitions::
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000212
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000213 include "llvm/CompilerDriver/Common.td"
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000214
215Internally, LLVMC stores information about possible source
216transformations in form of a graph. Nodes in this graph represent
217tools, and edges between two nodes represent a transformation path. A
218special "root" node is used to mark entry points for the
219transformations. LLVMC also assigns a weight to each edge (more on
220this later) to choose between several alternative edges.
221
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000222The definition of the compilation graph (see file
223``plugins/Base/Base.td`` for an example) is just a list of edges::
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000224
225 def CompilationGraph : CompilationGraph<[
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000226 Edge<"root", "llvm_gcc_c">,
227 Edge<"root", "llvm_gcc_assembler">,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000228 ...
229
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000230 Edge<"llvm_gcc_c", "llc">,
231 Edge<"llvm_gcc_cpp", "llc">,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000232 ...
233
Mikhail Glushenkov817b2f42008-11-25 21:34:53 +0000234 OptionalEdge<"llvm_gcc_c", "opt", (case (switch_on "opt"),
235 (inc_weight))>,
236 OptionalEdge<"llvm_gcc_cpp", "opt", (case (switch_on "opt"),
237 (inc_weight))>,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000238 ...
239
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000240 OptionalEdge<"llvm_gcc_assembler", "llvm_gcc_cpp_linker",
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000241 (case (input_languages_contain "c++"), (inc_weight),
242 (or (parameter_equals "linker", "g++"),
243 (parameter_equals "linker", "c++")), (inc_weight))>,
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000244 ...
245
246 ]>;
247
248As you can see, the edges can be either default or optional, where
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000249optional edges are differentiated by an additional ``case`` expression
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000250used to calculate the weight of this edge. Notice also that we refer
Mikhail Glushenkovd333fce2008-11-25 21:34:01 +0000251to tools via their names (as strings). This makes it possible to add
252edges to an existing compilation graph in plugins without having to
253know about all tool definitions used in the graph.
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000254
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000255The default edges are assigned a weight of 1, and optional edges get a
256weight of 0 + 2*N where N is the number of tests that evaluated to
257true in the ``case`` expression. It is also possible to provide an
258integer parameter to ``inc_weight`` and ``dec_weight`` - in this case,
259the weight is increased (or decreased) by the provided value instead
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +0000260of the default 2. It is also possible to change the default weight of
261an optional edge by using the ``default`` clause of the ``case``
262construct.
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000263
264When passing an input file through the graph, LLVMC picks the edge
265with the maximum weight. To avoid ambiguity, there should be only one
266default edge between two nodes (with the exception of the root node,
267which gets a special treatment - there you are allowed to specify one
268default edge *per language*).
269
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +0000270When multiple plugins are loaded, their compilation graphs are merged
Mikhail Glushenkov642e9a12008-11-28 00:12:09 +0000271together. Since multiple edges that have the same end nodes are not
272allowed (i.e. the graph is not a multigraph), an edge defined in
Mikhail Glushenkov4f82fda2008-11-26 22:59:45 +0000273several plugins will be replaced by the definition from the plugin
274that was loaded last. Plugin load order can be controlled by using the
275plugin priority feature described above.
276
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000277To get a visual representation of the compilation graph (useful for
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +0000278debugging), run ``llvmc --view-graph``. You will need ``dot`` and
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000279``gsview`` installed for this to work properly.
280
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000281Describing options
282==================
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000283
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000284Command-line options that the plugin supports are defined by using an
285``OptionList``::
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000286
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000287 def Options : OptionList<[
288 (switch_option "E", (help "Help string")),
289 (alias_option "quiet", "q")
290 ...
291 ]>;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000292
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000293As you can see, the option list is just a list of DAGs, where each DAG
294is an option description consisting of the option name and some
295properties. A plugin can define more than one option list (they are
296all merged together in the end), which can be handy if one wants to
297separate option groups syntactically.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000298
299* Possible option types:
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000300
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000301 - ``switch_option`` - a simple boolean switch without arguments, for example
Mikhail Glushenkov15b42992010-07-19 03:16:25 +0000302 ``-O2`` or ``-time``. At most one occurrence is allowed by default.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000303
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000304 - ``parameter_option`` - option that takes one argument, for example
305 ``-std=c99``. It is also allowed to use spaces instead of the equality
306 sign: ``-std c99``. At most one occurrence is allowed.
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000307
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000308 - ``parameter_list_option`` - same as the above, but more than one option
309 occurence is allowed.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000310
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000311 - ``prefix_option`` - same as the parameter_option, but the option name and
312 argument do not have to be separated. Example: ``-ofile``. This can be also
313 specified as ``-o file``; however, ``-o=file`` will be parsed incorrectly
314 (``=file`` will be interpreted as option value). At most one occurrence is
315 allowed.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000316
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000317 - ``prefix_list_option`` - same as the above, but more than one occurence of
318 the option is allowed; example: ``-lm -lpthread``.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000319
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000320 - ``alias_option`` - a special option type for creating aliases. Unlike other
321 option types, aliases are not allowed to have any properties besides the
322 aliased option name. Usage example: ``(alias_option "preprocess", "E")``
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000323
Mikhail Glushenkov15b42992010-07-19 03:16:25 +0000324 - ``switch_list_option`` - like ``switch_option`` with the ``zero_or_more``
325 property, but remembers how many times the switch was turned on. Useful
326 mostly for forwarding. Example: when ``-foo`` is a switch option (with the
327 ``zero_or_more`` property), the command ``driver -foo -foo`` is forwarded
328 as ``some-tool -foo``, but when ``-foo`` is a switch list, the same command
329 is forwarded as ``some-tool -foo -foo``.
330
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000331
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000332* Possible option properties:
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000333
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000334 - ``help`` - help string associated with this option. Used for ``--help``
335 output.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000336
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000337 - ``required`` - this option must be specified exactly once (or, in case of
338 the list options without the ``multi_val`` property, at least
Mikhail Glushenkov03299de2010-03-05 04:46:39 +0000339 once). Incompatible with ``optional`` and ``one_or_more``.
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000340
Mikhail Glushenkov03299de2010-03-05 04:46:39 +0000341 - ``optional`` - the option can be specified either zero times or exactly
342 once. The default for switch options. Useful only for list options in
343 conjunction with ``multi_val``. Incompatible with ``required``,
344 ``zero_or_more`` and ``one_or_more``.
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000345
Mikhail Glushenkov03299de2010-03-05 04:46:39 +0000346 - ``one_or_more`` - the option must be specified at least once. Can be useful
347 to allow switch options be both obligatory and be specified multiple
348 times. For list options is useful only in conjunction with ``multi_val``;
349 for ordinary it is synonymous with ``required``. Incompatible with
350 ``required``, ``optional`` and ``zero_or_more``.
351
352 - ``zero_or_more`` - the option can be specified zero or more times. Useful
353 to allow a single switch option to be specified more than
354 once. Incompatible with ``required``, ``optional`` and ``one_or_more``.
Mikhail Glushenkov2e6a8442008-05-06 18:17:19 +0000355
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000356 - ``hidden`` - the description of this option will not appear in
357 the ``--help`` output (but will appear in the ``--help-hidden``
358 output).
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000359
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000360 - ``really_hidden`` - the option will not be mentioned in any help
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000361 output.
362
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000363 - ``comma_separated`` - Indicates that any commas specified for an option's
364 value should be used to split the value up into multiple values for the
365 option. This property is valid only for list options. In conjunction with
366 ``forward_value`` can be used to implement option forwarding in style of
367 gcc's ``-Wa,``.
368
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000369 - ``multi_val n`` - this option takes *n* arguments (can be useful in some
370 special cases). Usage example: ``(parameter_list_option "foo", (multi_val
Mikhail Glushenkov83a8e222009-10-21 02:13:52 +0000371 3))``; the command-line syntax is '-foo a b c'. Only list options can have
Mikhail Glushenkov5ca00442009-12-15 03:04:52 +0000372 this attribute; you can, however, use the ``one_or_more``, ``optional``
Mikhail Glushenkov83a8e222009-10-21 02:13:52 +0000373 and ``required`` properties.
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000374
Mikhail Glushenkov89c18c42009-07-07 16:09:29 +0000375 - ``init`` - this option has a default value, either a string (if it is a
Mikhail Glushenkovff7c2e12009-12-15 03:03:37 +0000376 parameter), or a boolean (if it is a switch; as in C++, boolean constants
377 are called ``true`` and ``false``). List options can't have ``init``
378 attribute.
379 Usage examples: ``(switch_option "foo", (init true))``; ``(prefix_option
380 "bar", (init "baz"))``.
Mikhail Glushenkov89c18c42009-07-07 16:09:29 +0000381
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000382 - ``extern`` - this option is defined in some other plugin, see `below`__.
383
384 __ extern_
385
386.. _extern:
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000387
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000388External options
389----------------
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000390
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000391Sometimes, when linking several plugins together, one plugin needs to
392access options defined in some other plugin. Because of the way
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000393options are implemented, such options must be marked as
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000394``extern``. This is what the ``extern`` option property is
395for. Example::
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000396
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000397 ...
398 (switch_option "E", (extern))
399 ...
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000400
Mikhail Glushenkov647fcbc2009-07-07 16:43:49 +0000401If an external option has additional attributes besides 'extern', they are
402ignored. See also the section on plugin `priorities`__.
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000403
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000404__ priorities_
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000405
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000406.. _case:
Mikhail Glushenkovbd51c232008-10-15 09:29:13 +0000407
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000408Conditional evaluation
409======================
Mikhail Glushenkov75ade502008-05-30 06:28:00 +0000410
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000411The 'case' construct is the main means by which programmability is
412achieved in LLVMC. It can be used to calculate edge weights, program
413actions and modify the shell commands to be executed. The 'case'
414expression is designed after the similarly-named construct in
415functional languages and takes the form ``(case (test_1), statement_1,
416(test_2), statement_2, ... (test_N), statement_N)``. The statements
417are evaluated only if the corresponding tests evaluate to true.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000418
419Examples::
420
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000421 // Edge weight calculation
422
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000423 // Increases edge weight by 5 if "-A" is provided on the
424 // command-line, and by 5 more if "-B" is also provided.
425 (case
426 (switch_on "A"), (inc_weight 5),
427 (switch_on "B"), (inc_weight 5))
428
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000429
430 // Tool command line specification
431
432 // Evaluates to "cmdline1" if the option "-A" is provided on the
433 // command line; to "cmdline2" if "-B" is provided;
434 // otherwise to "cmdline3".
435
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000436 (case
437 (switch_on "A"), "cmdline1",
438 (switch_on "B"), "cmdline2",
439 (default), "cmdline3")
440
441Note the slight difference in 'case' expression handling in contexts
442of edge weights and command line specification - in the second example
443the value of the ``"B"`` switch is never checked when switch ``"A"`` is
444enabled, and the whole expression always evaluates to ``"cmdline1"`` in
445that case.
446
447Case expressions can also be nested, i.e. the following is legal::
448
449 (case (switch_on "E"), (case (switch_on "o"), ..., (default), ...)
450 (default), ...)
451
452You should, however, try to avoid doing that because it hurts
453readability. It is usually better to split tool descriptions and/or
454use TableGen inheritance instead.
455
456* Possible tests are:
457
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000458 - ``switch_on`` - Returns true if a given command-line switch is provided by
459 the user. Can be given a list as argument, in that case ``(switch_on ["foo",
460 "bar", "baz"])`` is equivalent to ``(and (switch_on "foo"), (switch_on
461 "bar"), (switch_on "baz"))``.
462 Example: ``(switch_on "opt")``.
463
464 - ``any_switch_on`` - Given a list of switch options, returns true if any of
465 the switches is turned on.
466 Example: ``(any_switch_on ["foo", "bar", "baz"])`` is equivalent to ``(or
467 (switch_on "foo"), (switch_on "bar"), (switch_on "baz"))``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000468
469 - ``parameter_equals`` - Returns true if a command-line parameter equals
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000470 a given value.
471 Example: ``(parameter_equals "W", "all")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000472
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000473 - ``element_in_list`` - Returns true if a command-line parameter
474 list contains a given value.
Mikhail Glushenkov977dffe2009-12-01 09:19:09 +0000475 Example: ``(element_in_list "l", "pthread")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000476
477 - ``input_languages_contain`` - Returns true if a given language
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000478 belongs to the current input language set.
479 Example: ``(input_languages_contain "c++")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000480
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000481 - ``in_language`` - Evaluates to true if the input file language is equal to
482 the argument. At the moment works only with ``cmd_line`` and ``actions`` (on
483 non-join nodes).
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000484 Example: ``(in_language "c++")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000485
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000486 - ``not_empty`` - Returns true if a given option (which should be either a
487 parameter or a parameter list) is set by the user. Like ``switch_on``, can
488 be also given a list as argument.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000489 Example: ``(not_empty "o")``.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000490
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000491 - ``any_not_empty`` - Returns true if ``not_empty`` returns true for any of
492 the options in the list.
493 Example: ``(any_not_empty ["foo", "bar", "baz"])`` is equivalent to ``(or
494 (not_empty "foo"), (not_empty "bar"), (not_empty "baz"))``.
495
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +0000496 - ``empty`` - The opposite of ``not_empty``. Equivalent to ``(not (not_empty
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000497 X))``. Provided for convenience. Can be given a list as argument.
498
499 - ``any_not_empty`` - Returns true if ``not_empty`` returns true for any of
500 the options in the list.
501 Example: ``(any_empty ["foo", "bar", "baz"])`` is equivalent to ``(not (and
502 (not_empty "foo"), (not_empty "bar"), (not_empty "baz")))``.
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +0000503
Mikhail Glushenkovd42557f2009-09-28 01:16:42 +0000504 - ``single_input_file`` - Returns true if there was only one input file
505 provided on the command-line. Used without arguments:
506 ``(single_input_file)``.
507
508 - ``multiple_input_files`` - Equivalent to ``(not (single_input_file))`` (the
509 case of zero input files is considered an error).
510
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000511 - ``default`` - Always evaluates to true. Should always be the last
512 test in the ``case`` expression.
513
Mikhail Glushenkov3c3e02c2009-09-28 01:16:07 +0000514 - ``and`` - A standard binary logical combinator that returns true iff all of
515 its arguments return true. Used like this: ``(and (test1), (test2),
516 ... (testN))``. Nesting of ``and`` and ``or`` is allowed, but not
517 encouraged.
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000518
Mikhail Glushenkov3c3e02c2009-09-28 01:16:07 +0000519 - ``or`` - A binary logical combinator that returns true iff any of its
520 arguments returns true. Example: ``(or (test1), (test2), ... (testN))``.
521
522 - ``not`` - Standard unary logical combinator that negates its
523 argument. Example: ``(not (or (test1), (test2), ... (testN)))``.
524
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000525
Mikhail Glushenkov1ce87222008-05-30 06:14:42 +0000526
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000527Writing a tool description
528==========================
529
530As was said earlier, nodes in the compilation graph represent tools,
531which are described separately. A tool definition looks like this
532(taken from the ``include/llvm/CompilerDriver/Tools.td`` file)::
533
534 def llvm_gcc_cpp : Tool<[
535 (in_language "c++"),
536 (out_language "llvm-assembler"),
537 (output_suffix "bc"),
538 (cmd_line "llvm-g++ -c $INFILE -o $OUTFILE -emit-llvm"),
539 (sink)
540 ]>;
541
542This defines a new tool called ``llvm_gcc_cpp``, which is an alias for
543``llvm-g++``. As you can see, a tool definition is just a list of
544properties; most of them should be self-explanatory. The ``sink``
545property means that this tool should be passed all command-line
546options that aren't mentioned in the option list.
547
548The complete list of all currently implemented tool properties follows.
549
550* Possible tool properties:
551
552 - ``in_language`` - input language name. Can be either a string or a
553 list, in case the tool supports multiple input languages.
554
Mikhail Glushenkov3a22d572009-10-09 05:45:38 +0000555 - ``out_language`` - output language name. Multiple output languages are not
556 allowed.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000557
558 - ``output_suffix`` - output file suffix. Can also be changed
559 dynamically, see documentation on actions.
560
561 - ``cmd_line`` - the actual command used to run the tool. You can
562 use ``$INFILE`` and ``$OUTFILE`` variables, output redirection
563 with ``>``, hook invocations (``$CALL``), environment variables
564 (via ``$ENV``) and the ``case`` construct.
565
566 - ``join`` - this tool is a "join node" in the graph, i.e. it gets a
567 list of input files and joins them together. Used for linkers.
568
569 - ``sink`` - all command-line options that are not handled by other
570 tools are passed to this tool.
571
572 - ``actions`` - A single big ``case`` expression that specifies how
573 this tool reacts on command-line options (described in more detail
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000574 `below`__).
575
576__ actions_
577
578.. _actions:
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000579
580Actions
581-------
582
583A tool often needs to react to command-line options, and this is
584precisely what the ``actions`` property is for. The next example
585illustrates this feature::
586
587 def llvm_gcc_linker : Tool<[
588 (in_language "object-code"),
589 (out_language "executable"),
590 (output_suffix "out"),
591 (cmd_line "llvm-gcc $INFILE -o $OUTFILE"),
592 (join),
593 (actions (case (not_empty "L"), (forward "L"),
594 (not_empty "l"), (forward "l"),
595 (not_empty "dummy"),
596 [(append_cmd "-dummy1"), (append_cmd "-dummy2")])
597 ]>;
598
599The ``actions`` tool property is implemented on top of the omnipresent
600``case`` expression. It associates one or more different *actions*
601with given conditions - in the example, the actions are ``forward``,
602which forwards a given option unchanged, and ``append_cmd``, which
603appends a given string to the tool execution command. Multiple actions
604can be associated with a single condition by using a list of actions
605(used in the example to append some dummy options). The same ``case``
606construct can also be used in the ``cmd_line`` property to modify the
607tool command line.
608
609The "join" property used in the example means that this tool behaves
610like a linker.
611
612The list of all possible actions follows.
613
614* Possible actions:
615
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000616 - ``append_cmd`` - Append a string to the tool invocation command.
617 Example: ``(case (switch_on "pthread"), (append_cmd "-lpthread"))``.
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +0000618
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000619 - ``error`` - Exit with error.
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +0000620 Example: ``(error "Mixing -c and -S is not allowed!")``.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000621
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000622 - ``warning`` - Print a warning.
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000623 Example: ``(warning "Specifying both -O1 and -O2 is meaningless!")``.
624
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000625 - ``forward`` - Forward the option unchanged.
626 Example: ``(forward "Wall")``.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000627
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000628 - ``forward_as`` - Change the option's name, but forward the argument
629 unchanged.
Mikhail Glushenkov09699552009-05-06 01:41:19 +0000630 Example: ``(forward_as "O0", "--disable-optimization")``.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000631
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000632 - ``forward_value`` - Forward only option's value. Cannot be used with switch
633 options (since they don't have values), but works fine with lists.
634 Example: ``(forward_value "Wa,")``.
635
636 - ``forward_transformed_value`` - As above, but applies a hook to the
637 option's value before forwarding (see `below`__). When
638 ``forward_transformed_value`` is applied to a list
639 option, the hook must have signature
640 ``std::string hooks::HookName (const std::vector<std::string>&)``.
641 Example: ``(forward_transformed_value "m", "ConvertToMAttr")``.
642
643 __ hooks_
644
645 - ``output_suffix`` - Modify the output suffix of this tool.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000646 Example: ``(output_suffix "i")``.
647
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000648 - ``stop_compilation`` - Stop compilation after this tool processes its
649 input. Used without arguments.
650 Example: ``(stop_compilation)``.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000651
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000652
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000653Language map
Mikhail Glushenkov772d9c92008-05-30 06:25:24 +0000654============
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000655
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000656If you are adding support for a new language to LLVMC, you'll need to
657modify the language map, which defines mappings from file extensions
658to language names. It is used to choose the proper toolchain(s) for a
659given input file set. Language map definition looks like this::
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000660
661 def LanguageMap : LanguageMap<
662 [LangToSuffixes<"c++", ["cc", "cp", "cxx", "cpp", "CPP", "c++", "C"]>,
663 LangToSuffixes<"c", ["c"]>,
664 ...
665 ]>;
666
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000667For example, without those definitions the following command wouldn't work::
668
669 $ llvmc hello.cpp
670 llvmc: Unknown suffix: cpp
671
Mikhail Glushenkov098d20a2009-12-17 07:49:16 +0000672The language map entries are needed only for the tools that are linked from the
673root node. Since a tool can't have multiple output languages, for inner nodes of
674the graph the input and output languages should match. This is enforced at
675compile-time.
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000676
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000677Option preprocessor
678===================
679
680It is sometimes useful to run error-checking code before processing the
681compilation graph. For example, if optimization options "-O1" and "-O2" are
682implemented as switches, we might want to output a warning if the user invokes
683the driver with both of these options enabled.
684
685The ``OptionPreprocessor`` feature is reserved specially for these
686occasions. Example (adapted from the built-in Base plugin)::
687
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000688
Mikhail Glushenkov098d20a2009-12-17 07:49:16 +0000689 def Preprocess : OptionPreprocessor<
690 (case (not (any_switch_on ["O0", "O1", "O2", "O3"])),
691 (set_option "O2"),
692 (and (switch_on "O3"), (any_switch_on ["O0", "O1", "O2"])),
693 (unset_option ["O0", "O1", "O2"]),
694 (and (switch_on "O2"), (any_switch_on ["O0", "O1"])),
695 (unset_option ["O0", "O1"]),
696 (and (switch_on "O1"), (switch_on "O0")),
697 (unset_option "O0"))
698 >;
699
700Here, ``OptionPreprocessor`` is used to unset all spurious ``-O`` options so
701that they are not forwarded to the compiler. If no optimization options are
702specified, ``-O2`` is enabled.
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000703
704``OptionPreprocessor`` is basically a single big ``case`` expression, which is
705evaluated only once right after the plugin is loaded. The only allowed actions
Mikhail Glushenkov2af08cd2009-12-23 12:49:30 +0000706in ``OptionPreprocessor`` are ``error``, ``warning``, and two special actions:
Mikhail Glushenkov098d20a2009-12-17 07:49:16 +0000707``unset_option`` and ``set_option``. As their names suggest, they can be used to
Mikhail Glushenkov2af08cd2009-12-23 12:49:30 +0000708set or unset a given option. To set an option with ``set_option``, use the
709two-argument form: ``(set_option "parameter", VALUE)``. Here, ``VALUE`` can be
710either a string, a string list, or a boolean constant.
711
712For convenience, ``set_option`` and ``unset_option`` also work on lists. That
713is, instead of ``[(unset_option "A"), (unset_option "B")]`` you can use
714``(unset_option ["A", "B"])``. Obviously, ``(set_option ["A", "B"])`` is valid
715only if both ``A`` and ``B`` are switches.
Mikhail Glushenkov01b49d0c2009-10-25 01:44:11 +0000716
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000717
718More advanced topics
719====================
720
721.. _hooks:
722
723Hooks and environment variables
724-------------------------------
725
726Normally, LLVMC executes programs from the system ``PATH``. Sometimes,
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +0000727this is not sufficient: for example, we may want to specify tool paths
728or names in the configuration file. This can be easily achieved via
729the hooks mechanism. To write your own hooks, just add their
730definitions to the ``PluginMain.cpp`` or drop a ``.cpp`` file into the
731your plugin directory. Hooks should live in the ``hooks`` namespace
Mikhail Glushenkoved765fe2009-01-21 13:04:33 +0000732and have the signature ``std::string hooks::MyHookName ([const char*
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +0000733Arg0 [ const char* Arg2 [, ...]]])``. They can be used from the
734``cmd_line`` tool property::
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000735
736 (cmd_line "$CALL(MyHook)/path/to/file -o $CALL(AnotherHook)")
737
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +0000738To pass arguments to hooks, use the following syntax::
739
740 (cmd_line "$CALL(MyHook, 'Arg1', 'Arg2', 'Arg # 3')/path/to/file -o1 -o2")
741
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000742It is also possible to use environment variables in the same manner::
743
744 (cmd_line "$ENV(VAR1)/path/to/file -o $ENV(VAR2)")
745
746To change the command line string based on user-provided options use
747the ``case`` expression (documented `above`__)::
748
749 (cmd_line
750 (case
751 (switch_on "E"),
752 "llvm-g++ -E -x c $INFILE -o $OUTFILE",
753 (default),
754 "llvm-g++ -c -x c $INFILE -o $OUTFILE -emit-llvm"))
755
756__ case_
757
758.. _priorities:
759
760How plugins are loaded
761----------------------
762
763It is possible for LLVMC plugins to depend on each other. For example,
764one can create edges between nodes defined in some other plugin. To
765make this work, however, that plugin should be loaded first. To
766achieve this, the concept of plugin priority was introduced. By
767default, every plugin has priority zero; to specify the priority
768explicitly, put the following line in your plugin's TableGen file::
769
770 def Priority : PluginPriority<$PRIORITY_VALUE>;
771 # Where PRIORITY_VALUE is some integer > 0
772
773Plugins are loaded in order of their (increasing) priority, starting
774with 0. Therefore, the plugin with the highest priority value will be
775loaded last.
776
Mikhail Glushenkovf74495a2008-09-22 20:48:48 +0000777Debugging
Mikhail Glushenkov8fdb3172008-12-07 16:47:42 +0000778---------
Mikhail Glushenkovf74495a2008-09-22 20:48:48 +0000779
780When writing LLVMC plugins, it can be useful to get a visual view of
781the resulting compilation graph. This can be achieved via the command
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000782line option ``--view-graph``. This command assumes that Graphviz_ and
Mikhail Glushenkove68a0052009-03-27 12:58:29 +0000783Ghostview_ are installed. There is also a ``--write-graph`` option that
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000784creates a Graphviz source file (``compilation-graph.dot``) in the
Mikhail Glushenkovf74495a2008-09-22 20:48:48 +0000785current directory.
786
Mikhail Glushenkov336ad702009-01-15 02:42:40 +0000787Another useful ``llvmc`` option is ``--check-graph``. It checks the
788compilation graph for common errors like mismatched output/input
789language names, multiple default edges and cycles. These checks can't
790be performed at compile-time because the plugins can load code
791dynamically. When invoked with ``--check-graph``, ``llvmc`` doesn't
792perform any compilation tasks and returns the number of encountered
793errors as its status code.
Mikhail Glushenkovf300a822009-01-09 16:16:27 +0000794
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000795.. _Graphviz: http://www.graphviz.org/
796.. _Ghostview: http://pages.cs.wisc.edu/~ghost/
Mikhail Glushenkovac251f22008-12-11 23:24:40 +0000797
Mikhail Glushenkova80a3872009-06-30 00:16:00 +0000798Conditioning on the executable name
799-----------------------------------
800
801For now, the executable name (the value passed to the driver in ``argv[0]``) is
802accessible only in the C++ code (i.e. hooks). Use the following code::
803
804 namespace llvmc {
805 extern const char* ProgramName;
806 }
807
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000808 namespace hooks {
809
Mikhail Glushenkova80a3872009-06-30 00:16:00 +0000810 std::string MyHook() {
811 //...
812 if (strcmp(ProgramName, "mydriver") == 0) {
813 //...
814
815 }
816
Mikhail Glushenkovb045d742009-12-07 18:26:11 +0000817 } // end namespace hooks
818
Mikhail Glushenkova80a3872009-06-30 00:16:00 +0000819In general, you're encouraged not to make the behaviour dependent on the
820executable file name, and use command-line switches instead. See for example how
821the ``Base`` plugin behaves when it needs to choose the correct linker options
822(think ``g++`` vs. ``gcc``).
823
Mikhail Glushenkovac251f22008-12-11 23:24:40 +0000824.. raw:: html
Mikhail Glushenkov6d1e9282008-12-13 02:28:58 +0000825
826 <hr />
827 <address>
828 <a href="http://jigsaw.w3.org/css-validator/check/referer">
829 <img src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
830 alt="Valid CSS" /></a>
831 <a href="http://validator.w3.org/check?uri=referer">
832 <img src="http://www.w3.org/Icons/valid-xhtml10-blue"
833 alt="Valid XHTML 1.0 Transitional"/></a>
834
835 <a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a><br />
836 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br />
837
838 Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $
839 </address>