blob: a5780173795705a4154345c64f1957f920cab344 [file] [log] [blame]
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +00001<?xml version="1.0" encoding="utf-8" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Mikhail Glushenkov4707bf42009-05-06 01:41:47 +00006<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/" />
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +00007<title>Tutorial - Using LLVMC</title>
Mikhail Glushenkov60279922008-12-13 17:50:58 +00008<link rel="stylesheet" href="llvm.css" type="text/css" />
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +00009</head>
10<body>
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000011<div class="document" id="tutorial-using-llvmc">
12<h1 class="title">Tutorial - Using LLVMC</h1>
Mikhail Glushenkov4707bf42009-05-06 01:41:47 +000013
Mikhail Glushenkove04b5bf2008-12-13 17:51:47 +000014<!-- This file was automatically generated by rst2html.
15Please do not edit directly!
16The ReST source lives in the directory 'tools/llvmc/doc'. -->
Mikhail Glushenkov4707bf42009-05-06 01:41:47 +000017<div class="contents topic" id="contents">
18<p class="topic-title first">Contents</p>
Mikhail Glushenkovc0363fc2008-12-13 02:28:58 +000019<ul class="simple">
Mikhail Glushenkov4707bf42009-05-06 01:41:47 +000020<li><a class="reference internal" href="#introduction" id="id1">Introduction</a></li>
21<li><a class="reference internal" href="#compiling-with-llvmc" id="id2">Compiling with LLVMC</a></li>
22<li><a class="reference internal" href="#using-llvmc-to-generate-toolchain-drivers" id="id3">Using LLVMC to generate toolchain drivers</a></li>
Mikhail Glushenkovc0363fc2008-12-13 02:28:58 +000023</ul>
24</div>
25<div class="doc_author">
26<p>Written by <a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a></p>
Mikhail Glushenkov4707bf42009-05-06 01:41:47 +000027</div><div class="section" id="introduction">
28<h1><a class="toc-backref" href="#id1">Introduction</a></h1>
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000029<p>LLVMC is a generic compiler driver, which plays the same role for LLVM
30as the <tt class="docutils literal"><span class="pre">gcc</span></tt> program does for GCC - the difference being that LLVMC
31is designed to be more adaptable and easier to customize. Most of
32LLVMC functionality is implemented via plugins, which can be loaded
33dynamically or compiled in. This tutorial describes the basic usage
34and configuration of LLVMC.</p>
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000035</div>
Mikhail Glushenkov4707bf42009-05-06 01:41:47 +000036<div class="section" id="compiling-with-llvmc">
37<h1><a class="toc-backref" href="#id2">Compiling with LLVMC</a></h1>
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000038<p>In general, LLVMC tries to be command-line compatible with <tt class="docutils literal"><span class="pre">gcc</span></tt> as
39much as possible, so most of the familiar options work:</p>
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000040<pre class="literal-block">
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000041$ llvmc -O3 -Wall hello.cpp
42$ ./a.out
43hello
44</pre>
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000045<p>This will invoke <tt class="docutils literal"><span class="pre">llvm-g++</span></tt> under the hood (you can see which
46commands are executed by using the <tt class="docutils literal"><span class="pre">-v</span></tt> option). For further help on
47command-line LLVMC usage, refer to the <tt class="docutils literal"><span class="pre">llvmc</span> <span class="pre">--help</span></tt> output.</p>
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000048</div>
Mikhail Glushenkov4707bf42009-05-06 01:41:47 +000049<div class="section" id="using-llvmc-to-generate-toolchain-drivers">
50<h1><a class="toc-backref" href="#id3">Using LLVMC to generate toolchain drivers</a></h1>
51<p>LLVMC plugins are written mostly using <a class="reference external" href="http://llvm.cs.uiuc.edu/docs/TableGenFundamentals.html">TableGen</a>, so you need to
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000052be familiar with it to get anything done.</p>
53<p>Start by compiling <tt class="docutils literal"><span class="pre">plugins/Simple/Simple.td</span></tt>, which is a primitive
54wrapper for <tt class="docutils literal"><span class="pre">gcc</span></tt>:</p>
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000055<pre class="literal-block">
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000056$ cd $LLVM_DIR/tools/llvmc
57$ make DRIVER_NAME=mygcc BUILTIN_PLUGINS=Simple
58$ cat &gt; hello.c
59[...]
60$ mygcc hello.c
61$ ./hello.out
62Hello
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000063</pre>
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000064<p>Here we link our plugin with the LLVMC core statically to form an
65executable file called <tt class="docutils literal"><span class="pre">mygcc</span></tt>. It is also possible to build our
66plugin as a standalone dynamic library; this is described in the
67reference manual.</p>
68<p>Contents of the file <tt class="docutils literal"><span class="pre">Simple.td</span></tt> look like this:</p>
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000069<pre class="literal-block">
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000070// Include common definitions
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000071include &quot;llvm/CompilerDriver/Common.td&quot;
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000072
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000073// Tool descriptions
74def gcc : Tool&lt;
75[(in_language &quot;c&quot;),
76 (out_language &quot;executable&quot;),
77 (output_suffix &quot;out&quot;),
78 (cmd_line &quot;gcc $INFILE -o $OUTFILE&quot;),
79 (sink)
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000080]&gt;;
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000081
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000082// Language map
83def LanguageMap : LanguageMap&lt;[LangToSuffixes&lt;&quot;c&quot;, [&quot;c&quot;]&gt;]&gt;;
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000084
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000085// Compilation graph
86def CompilationGraph : CompilationGraph&lt;[Edge&lt;&quot;root&quot;, &quot;gcc&quot;&gt;]&gt;;
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +000087</pre>
Mikhail Glushenkovd9a77952008-12-11 23:33:33 +000088<p>As you can see, this file consists of three parts: tool descriptions,
89language map, and the compilation graph definition.</p>
90<p>At the heart of LLVMC is the idea of a compilation graph: vertices in
91this graph are tools, and edges represent a transformation path
92between two tools (for example, assembly source produced by the
93compiler can be transformed into executable code by an assembler). The
94compilation graph is basically a list of edges; a special node named
95<tt class="docutils literal"><span class="pre">root</span></tt> is used to mark graph entry points.</p>
96<p>Tool descriptions are represented as property lists: most properties
97in the example above should be self-explanatory; the <tt class="docutils literal"><span class="pre">sink</span></tt> property
98means that all options lacking an explicit description should be
99forwarded to this tool.</p>
100<p>The <tt class="docutils literal"><span class="pre">LanguageMap</span></tt> associates a language name with a list of suffixes
101and is used for deciding which toolchain corresponds to a given input
102file.</p>
103<p>To learn more about LLVMC customization, refer to the reference
104manual and plugin source code in the <tt class="docutils literal"><span class="pre">plugins</span></tt> directory.</p>
Mikhail Glushenkov6932e2f2008-12-11 23:43:14 +0000105<hr />
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +0000106<address>
Mikhail Glushenkovc0363fc2008-12-13 02:28:58 +0000107<a href="http://jigsaw.w3.org/css-validator/check/referer">
108<img src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
109 alt="Valid CSS" /></a>
110<a href="http://validator.w3.org/check?uri=referer">
111<img src="http://www.w3.org/Icons/valid-xhtml10-blue"
112 alt="Valid XHTML 1.0 Transitional"/></a>
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +0000113
Mikhail Glushenkovc0363fc2008-12-13 02:28:58 +0000114<a href="mailto:foldr@codedgers.com">Mikhail Glushenkov</a><br />
115<a href="http://llvm.org">LLVM Compiler Infrastructure</a><br />
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +0000116
Mikhail Glushenkovc0363fc2008-12-13 02:28:58 +0000117Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $
118</address></div>
Mikhail Glushenkov6fd55132008-12-11 23:24:40 +0000119</div>
120</body>
121</html>