Update documentation, add examples.
[oota-llvm.git] / tools / llvmc2 / doc / LLVMC-Reference.rst
1 Customizing LLVMC: Reference Manual
2 ===================================
3
4 LLVMC is a generic compiler driver, designed to be customizable and
5 extensible. It plays the same role for LLVM as the ``gcc`` program
6 does for GCC - LLVMC's job is essentially to transform a set of input
7 files into a set of targets depending on configuration rules and user
8 options. What makes LLVMC different is that these transformation rules
9 are completely customizable - in fact, LLVMC knows nothing about the
10 specifics of transformation (even the command-line options are mostly
11 not hard-coded) and regards the transformation structure as an
12 abstract graph. This makes it possible to adapt LLVMC for other
13 purposes - for example, as a build tool for game resources.
14
15 Because LLVMC employs TableGen [1]_ as its configuration language, you
16 need to be familiar with it to customize LLVMC.
17
18 Compiling with LLVMC
19 --------------------
20
21 LLVMC tries hard to be as compatible with ``gcc`` as possible,
22 although there are some small differences. Most of the time, however,
23 you shouldn't be able to notice them::
24
25      $ # This works as expected:
26      $ llvmc2 -O3 -Wall hello.cpp
27      $ ./a.out
28      hello
29
30 One nice feature of LLVMC is that one doesn't have to distinguish
31 between different compilers for different languages (think ``g++`` and
32 ``gcc``) - the right toolchain is chosen automatically based on input
33 language names (which are, in turn, determined from file
34 extensions). If you want to force files ending with ".c" to compile as
35 C++, use the ``-x`` option, just like you would do it with ``gcc``::
36
37       $ llvmc2 -x c hello.cpp
38       $ # hello.cpp is really a C file
39       $ ./a.out
40       hello
41
42 On the other hand, when using LLVMC as a linker to combine several C++
43 object files you should provide the ``--linker`` option since it's
44 impossible for LLVMC to choose the right linker in that case::
45
46     $ llvmc2 -c hello.cpp
47     $ llvmc2 hello.o
48     [A lot of link-time errors skipped]
49     $ llvmc2 --linker=c++ hello.o
50     $ ./a.out
51     hello
52
53
54 Customizing LLVMC: the compilation graph
55 ----------------------------------------
56
57 At the time of writing LLVMC does not support on-the-fly reloading of
58 configuration, so to customize LLVMC you'll have to recompile the
59 source code (which lives under ``$LLVM_DIR/tools/llvmc2``). The
60 default configuration files are ``Common.td`` (contains common
61 definitions, don't forget to ``include`` it in your configuration
62 files), ``Tools.td`` (tool descriptions) and ``Graph.td`` (compilation
63 graph definition).
64
65 To compile LLVMC with your own configuration file (say,``MyGraph.td``),
66 run ``make`` like this::
67
68     $ cd $LLVM_DIR/tools/llvmc2
69     $ make GRAPH=MyGraph.td TOOLNAME=my_llvmc
70
71 This will build an executable named ``my_llvmc``. There are also
72 several sample configuration files in the ``llvmc2/examples``
73 subdirectory that should help to get you started.
74
75 Internally, LLVMC stores information about possible source
76 transformations in form of a graph. Nodes in this graph represent
77 tools, and edges between two nodes represent a transformation path. A
78 special "root" node is used to mark entry points for the
79 transformations. LLVMC also assigns a weight to each edge (more on
80 this later) to choose between several alternative edges.
81
82 The definition of the compilation graph (see file ``Graph.td``) is
83 just a list of edges::
84
85     def CompilationGraph : CompilationGraph<[
86         Edge<root, llvm_gcc_c>,
87         Edge<root, llvm_gcc_assembler>,
88         ...
89
90         Edge<llvm_gcc_c, llc>,
91         Edge<llvm_gcc_cpp, llc>,
92         ...
93
94         OptionalEdge<llvm_gcc_c, opt, [(switch_on "opt")]>,
95         OptionalEdge<llvm_gcc_cpp, opt, [(switch_on "opt")]>,
96         ...
97
98         OptionalEdge<llvm_gcc_assembler, llvm_gcc_cpp_linker,
99             (case (input_languages_contain "c++"), (inc_weight),
100                   (or (parameter_equals "linker", "g++"),
101                       (parameter_equals "linker", "c++")), (inc_weight))>,
102         ...
103
104         ]>;
105
106 As you can see, the edges can be either default or optional, where
107 optional edges are differentiated by sporting a ``case`` expression
108 used to calculate the edge's weight.
109
110 The default edges are assigned a weight of 1, and optional edges get a
111 weight of 0 + 2*N where N is the number of tests that evaluated to
112 true in the ``case`` expression. It is also possible to provide an
113 integer parameter to ``inc_weight`` and ``dec_weight`` - in this case,
114 the weight is increased (or decreased) by the provided value instead
115 of the default 2.
116
117 When passing an input file through the graph, LLVMC picks the edge
118 with the maximum weight. To avoid ambiguity, there should be only one
119 default edge between two nodes (with the exception of the root node,
120 which gets a special treatment - there you are allowed to specify one
121 default edge *per language*).
122
123 To get a visual representation of the compilation graph (useful for
124 debugging), run ``llvmc2 --view-graph``. You will need ``dot`` and
125 ``gsview`` installed for this to work properly.
126
127
128 The 'case' construct
129 --------------------
130
131 The 'case' construct can be used to calculate weights for optional
132 edges and to choose between several alternative command line strings
133 in the ``cmd_line`` tool property. It is designed after the
134 similarly-named construct in functional languages and takes the
135 form ``(case (test_1), statement_1, (test_2), statement_2,
136 ... (test_N), statement_N)``.
137
138 * Possible tests are:
139
140   - ``switch_on`` - Returns true if a given command-line option is
141     provided by the user. Example: ``(switch_on "opt")``. Note that
142     you have to define all possible command-line options separately in
143     the tool descriptions. See the next section for the discussion of
144     different kinds of command-line options.
145
146   - ``parameter_equals`` - Returns true if a command-line parameter equals
147     a given value. Example: ``(parameter_equals "W", "all")``.
148
149   - ``element_in_list`` - Returns true if a command-line parameter list
150     includes a given value. Example: ``(parameter_in_list "l", "pthread")``.
151
152   - ``input_languages_contain`` - Returns true if a given language
153     belongs to the current input language set. Example:
154     ```(input_languages_contain "c++")``.
155
156   - ``default`` - Always evaluates to true. Should be used
157
158   - ``and`` - A standard logical combinator that returns true iff all
159     of its arguments return true. Used like this: ``(and (test1),
160     (test2), ... (testN))``. Nesting of ``and`` and ``or`` is allowed,
161     but not encouraged.
162
163   - ``or`` - Another logical combinator that returns true only if any
164     one of its arguments returns true. Example: ``(or (test1),
165     (test2), ... (testN))``.
166
167
168 Writing a tool description
169 --------------------------
170
171 As was said earlier, nodes in the compilation graph represent tools,
172 which are described separately. A tool definition looks like this
173 (taken from the ``Tools.td`` file)::
174
175   def llvm_gcc_cpp : Tool<[
176       (in_language "c++"),
177       (out_language "llvm-assembler"),
178       (output_suffix "bc"),
179       (cmd_line "llvm-g++ -c $INFILE -o $OUTFILE -emit-llvm"),
180       (sink)
181       ]>;
182
183 This defines a new tool called ``llvm_gcc_cpp``, which is an alias for
184 ``llvm-g++``. As you can see, a tool definition is just a list of
185 properties; most of them should be self-explanatory. The ``sink``
186 property means that this tool should be passed all command-line
187 options that lack explicit descriptions.
188
189 The complete list of the currently implemented tool properties follows:
190
191 * Possible tool properties:
192
193   - ``in_language`` - input language name.
194
195   - ``out_language`` - output language name.
196
197   - ``output_suffix`` - output file suffix.
198
199   - ``cmd_line`` - the actual command used to run the tool. You can
200     use ``$INFILE`` and ``$OUTFILE`` variables, output redirection
201     with ``>``, hook invocations (``$CALL``), environment variables
202     (via ``$ENV``) and the ``case`` construct (more on this below).
203
204   - ``join`` - this tool is a "join node" in the graph, i.e. it gets a
205     list of input files and joins them together. Used for linkers.
206
207   - ``sink`` - all command-line options that are not handled by other
208     tools are passed to this tool.
209
210 The next tool definition is slightly more complex::
211
212   def llvm_gcc_linker : Tool<[
213       (in_language "object-code"),
214       (out_language "executable"),
215       (output_suffix "out"),
216       (cmd_line "llvm-gcc $INFILE -o $OUTFILE"),
217       (join),
218       (prefix_list_option "L", (forward),
219                           (help "add a directory to link path")),
220       (prefix_list_option "l", (forward),
221                           (help "search a library when linking")),
222       (prefix_list_option "Wl", (unpack_values),
223                           (help "pass options to linker"))
224       ]>;
225
226 This tool has a "join" property, which means that it behaves like a
227 linker. This tool also defines several command-line options: ``-l``,
228 ``-L`` and ``-Wl`` which have their usual meaning. An option has two
229 attributes: a name and a (possibly empty) list of properties. All
230 currently implemented option types and properties are described below:
231
232 * Possible option types:
233
234    - ``switch_option`` - a simple boolean switch, for example ``-time``.
235
236    - ``parameter_option`` - option that takes an argument, for example
237      ``-std=c99``;
238
239    - ``parameter_list_option`` - same as the above, but more than one
240      occurence of the option is allowed.
241
242    - ``prefix_option`` - same as the parameter_option, but the option name
243      and parameter value are not separated.
244
245    - ``prefix_list_option`` - same as the above, but more than one
246      occurence of the option is allowed; example: ``-lm -lpthread``.
247
248
249 * Possible option properties:
250
251    - ``append_cmd`` - append a string to the tool invocation command.
252
253    - ``forward`` - forward this option unchanged.
254
255    - ``output_suffix`` - modify the output suffix of this
256      tool. Example : ``(switch "E", (output_suffix "i")``.
257
258    - ``stop_compilation`` - stop compilation after this phase.
259
260    - ``unpack_values`` - used for for splitting and forwarding
261      comma-separated lists of options, e.g. ``-Wa,-foo=bar,-baz`` is
262      converted to ``-foo=bar -baz`` and appended to the tool invocation
263      command.
264
265    - ``help`` - help string associated with this option. Used for
266      ``--help`` output.
267
268    - ``required`` - this option is obligatory.
269
270
271 Hooks and environment variables
272 -------------------------------
273
274 Normally, LLVMC executes programs from the system ``PATH``. Sometimes,
275 this is not sufficient: for example, we may want to specify tool names
276 in the configuration file. This can be achieved via the mechanism of
277 hooks - to compile LLVMC with your hooks, just drop a .cpp file into
278 ``tools/llvmc2`` directory. Hooks should live in the ``hooks``
279 namespace and have the signature ``std::string hooks::MyHookName
280 (void)``. They can be used from the ``cmd_line`` tool property::
281
282     (cmd_line "$CALL(MyHook)/path/to/file -o $CALL(AnotherHook)")
283
284 It is also possible to use environment variables in the same manner::
285
286    (cmd_line "$ENV(VAR1)/path/to/file -o $ENV(VAR2)")
287
288 To change the command line string based on user-provided options use
289 the ``case`` expression (which we have already seen before)::
290
291     (cmd_line
292       (case
293         (switch_on "E"),
294            "llvm-g++ -E -x c $INFILE -o $OUTFILE",
295         (default),
296            "llvm-g++ -c -x c $INFILE -o $OUTFILE -emit-llvm"))
297
298
299 Language map
300 ------------
301
302 One last thing that you will need to modify when adding support for a
303 new language to LLVMC is the language map, which defines mappings from
304 file extensions to language names. It is used to choose the proper
305 toolchain(s) for a given input file set. Language map definition is
306 located in the file ``Tools.td`` and looks like this::
307
308     def LanguageMap : LanguageMap<
309         [LangToSuffixes<"c++", ["cc", "cp", "cxx", "cpp", "CPP", "c++", "C"]>,
310          LangToSuffixes<"c", ["c"]>,
311          ...
312         ]>;
313
314
315 References
316 ==========
317
318 .. [1] TableGen Fundamentals
319        http://llvm.cs.uiuc.edu/docs/TableGenFundamentals.html