blob: 7ba11866278ae9d70480bfccf14f0166d6ec285d [file] [log] [blame]
Nick Lewyckyebc67652009-03-01 09:38:29 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
5 <title>LLVM gold plugin</title>
6 <link rel="stylesheet" href="llvm.css" type="text/css">
7</head>
8<body>
9
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000010<h1>LLVM gold plugin</h1>
Nick Lewyckyebc67652009-03-01 09:38:29 +000011<ol>
12 <li><a href="#introduction">Introduction</a></li>
13 <li><a href="#build">How to build it</a></li>
Nick Lewyckyf3888ba2009-03-01 21:55:10 +000014 <li><a href="#usage">Usage</a>
15 <ul>
16 <li><a href="#example1">Example of link time optimization</a></li>
Torok Edwin5641f8d2009-06-03 15:06:19 +000017 <li><a href="#lto_autotools">Quickstart for using LTO with autotooled projects</a></li>
Nick Lewyckyf3888ba2009-03-01 21:55:10 +000018 </ul></li>
Nick Lewyckyebc67652009-03-01 09:38:29 +000019 <li><a href="#licensing">Licensing</a></li>
20</ol>
21<div class="doc_author">Written by Nick Lewycky</div>
22
23<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000024<h2><a name="introduction">Introduction</a></h2>
Nick Lewyckyebc67652009-03-01 09:38:29 +000025<!--=========================================================================-->
26<div class="doc_text">
Duncan Sands10f06752009-03-01 15:19:03 +000027 <p>Building with link time optimization requires cooperation from the
Nick Lewyckyfd97aa22009-03-01 09:51:07 +000028system linker. LTO support on Linux systems requires that you use
Duncan Sands10f06752009-03-01 15:19:03 +000029the <a href="http://sourceware.org/binutils">gold linker</a> which supports
Nick Lewycky5c212802010-04-17 07:00:24 +000030LTO via plugins. This is the same mechanism used by the
Nick Lewyckyebc67652009-03-01 09:38:29 +000031<a href="http://gcc.gnu.org/wiki/LinkTimeOptimization">GCC LTO</a>
Duncan Sands10f06752009-03-01 15:19:03 +000032project.</p>
33 <p>The LLVM gold plugin implements the
34<a href="http://gcc.gnu.org/wiki/whopr/driver">gold plugin interface</a>
35on top of
NAKAMURA Takumi31c18062011-04-09 02:13:48 +000036<a href="LinkTimeOptimization.html#lto">libLTO</a>.
Nick Lewyckyebc67652009-03-01 09:38:29 +000037The same plugin can also be used by other tools such as <tt>ar</tt> and
38<tt>nm</tt>.
39</div>
40<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000041<h2><a name="build">How to build it</a></h2>
Nick Lewyckyebc67652009-03-01 09:38:29 +000042<!--=========================================================================-->
43<div class="doc_text">
Nick Lewycky5c212802010-04-17 07:00:24 +000044 <p>You need to have gold with plugin support and build the LLVMgold
45plugin. Check whether you have gold running <tt>/usr/bin/ld -v</tt>. It will
46report &#8220;GNU gold&#8221; or else &#8220GNU ld&#8221; if not. If you have
47gold, check for plugin support by running <tt>/usr/bin/ld -plugin</tt>. If it
48complains &#8220missing argument&#8221 then you have plugin support. If not,
49such as an &#8220;unknown option&#8221; error then you will either need to
50build gold or install a version with plugin support.</p>
Nick Lewyckyebc67652009-03-01 09:38:29 +000051<ul>
Nick Lewycky5c212802010-04-17 07:00:24 +000052 <li>To build gold with plugin support:
Nick Lewyckyebc67652009-03-01 09:38:29 +000053 <pre class="doc_code">
54mkdir binutils
55cd binutils
56cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src login
57<em>{enter "anoncvs" as the password}</em>
Duncan Sandsed7713d2010-10-06 06:45:11 +000058cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src co binutils
Nick Lewyckyebc67652009-03-01 09:38:29 +000059mkdir build
60cd build
61../src/configure --enable-gold --enable-plugins
62make all-gold
63</pre>
Nick Lewycky5c212802010-04-17 07:00:24 +000064 That should leave you with <tt>binutils/build/gold/ld-new</tt> which supports the <tt>-plugin</tt> option. It also built would have
65<tt>binutils/build/binutils/ar</tt> and <tt>nm-new</tt> which support plugins
66but don't have a visible -plugin option, instead relying on the gold plugin
67being present in <tt>../lib/bfd-plugins</tt> relative to where the binaries are
68placed.
Duncan Sands10f06752009-03-01 15:19:03 +000069 <li>Build the LLVMgold plugin: Configure LLVM with
Nick Lewyckyebc67652009-03-01 09:38:29 +000070 <tt>--with-binutils-include=/path/to/binutils/src/include</tt> and run
71 <tt>make</tt>.
72</ul>
73</div>
74<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000075<h2><a name="usage">Usage</a></h2>
Nick Lewyckyebc67652009-03-01 09:38:29 +000076<!--=========================================================================-->
77<div class="doc_text">
78 <p>The linker takes a <tt>-plugin</tt> option that points to the path of
79 the plugin <tt>.so</tt> file. To find out what link command <tt>gcc</tt>
80 would run in a given situation, run <tt>gcc -v <em>[...]</em></tt> and look
81 for the line where it runs <tt>collect2</tt>. Replace that with
Rafael Espindola53843f82010-08-08 21:14:26 +000082 <tt>ld-new -plugin /path/to/LLVMgold.so</tt> to test it out. Once you're
Nick Lewyckyebc67652009-03-01 09:38:29 +000083 ready to switch to using gold, backup your existing <tt>/usr/bin/ld</tt>
84 then replace it with <tt>ld-new</tt>.</p>
85 <p>You can produce bitcode files from <tt>llvm-gcc</tt> using
Nick Lewyckyd66ff0f2009-03-01 20:58:07 +000086 <tt>-emit-llvm</tt> or <tt>-flto</tt>, or the <tt>-O4</tt> flag which is
87 synonymous with <tt>-O3 -flto</tt>.</p>
Nick Lewyckyebc67652009-03-01 09:38:29 +000088 <p><tt>llvm-gcc</tt> has a <tt>-use-gold-plugin</tt> option which looks
Nick Lewycky050147c2009-03-01 18:48:53 +000089 for the gold plugin in the same directories as it looks for <tt>cc1</tt> and
90 passes the <tt>-plugin</tt> option to ld. It will not look for an alternate
91 linker, which is why you need gold to be the installed system linker in your
92 path.</p>
Nick Lewycky5c212802010-04-17 07:00:24 +000093 <p>If you want <tt>ar</tt> and <tt>nm</tt> to work seamlessly as well, install
Rafael Espindola53843f82010-08-08 21:14:26 +000094 <tt>LLVMgold.so</tt> to <tt>/usr/lib/bfd-plugins</tt>. If you built your
Nick Lewycky5c212802010-04-17 07:00:24 +000095 own gold, be sure to install the <tt>ar</tt> and <tt>nm-new</tt> you built to
96 <tt>/usr/bin</tt>.
97 <p>
Nick Lewyckyebc67652009-03-01 09:38:29 +000098</div>
Nick Lewyckyf3888ba2009-03-01 21:55:10 +000099
100<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000101<h3>
Nick Lewyckyf3888ba2009-03-01 21:55:10 +0000102 <a name="example1">Example of link time optimization</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000103</h3>
Nick Lewyckyf3888ba2009-03-01 21:55:10 +0000104
105<div class="doc_text">
106 <p>The following example shows a worked example of the gold plugin mixing
107 LLVM bitcode and native code.
108<pre class="doc_code">
109--- a.c ---
110#include &lt;stdio.h&gt;
111
112extern void foo1(void);
113extern void foo4(void);
114
115void foo2(void) {
116 printf("Foo2\n");
117}
118
119void foo3(void) {
120 foo4();
121}
122
123int main(void) {
124 foo1();
125}
126
127--- b.c ---
128#include &lt;stdio.h&gt;
129
130extern void foo2(void);
131
132void foo1(void) {
133 foo2();
134}
135
136void foo4(void) {
137 printf("Foo4");
138}
139
140--- command lines ---
141$ llvm-gcc -flto a.c -c -o a.o # &lt;-- a.o is LLVM bitcode file
Rafael Espindola91f935e2009-07-08 11:13:34 +0000142$ ar q a.a a.o # &lt;-- a.a is an archive with LLVM bitcode
Nick Lewyckyf3888ba2009-03-01 21:55:10 +0000143$ llvm-gcc b.c -c -o b.o # &lt;-- b.o is native object file
Rafael Espindola91f935e2009-07-08 11:13:34 +0000144$ llvm-gcc -use-gold-plugin a.a b.o -o main # &lt;-- link with LLVMgold plugin
Nick Lewyckyf3888ba2009-03-01 21:55:10 +0000145</pre>
146 <p>Gold informs the plugin that foo3 is never referenced outside the IR,
147 leading LLVM to delete that function. However, unlike in the
NAKAMURA Takumi31c18062011-04-09 02:13:48 +0000148 <a href="LinkTimeOptimization.html#example1">libLTO
Nick Lewyckyf3888ba2009-03-01 21:55:10 +0000149 example</a> gold does not currently eliminate foo4.</p>
150</div>
151
Nick Lewyckyebc67652009-03-01 09:38:29 +0000152<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000153<h2>
154 <a name="lto_autotools">
155 Quickstart for using LTO with autotooled projects
156 </a>
157</h2>
Torok Edwin5641f8d2009-06-03 15:06:19 +0000158<!--=========================================================================-->
159<div class="doc_text">
Nick Lewycky5c212802010-04-17 07:00:24 +0000160 <p>Once your system <tt>ld</tt>, <tt>ar</tt> and <tt>nm</tt> all support LLVM
161 bitcode, everything is in place for an easy to use LTO build of autotooled
162 projects:</p>
Torok Edwin5641f8d2009-06-03 15:06:19 +0000163 <ul>
Rafael Espindola53843f82010-08-08 21:14:26 +0000164 <li>Follow the instructions <a href="#build">on how to build LLVMgold.so</a>.</li>
Torok Edwin5641f8d2009-06-03 15:06:19 +0000165 <li>Install the newly built binutils to <tt>$PREFIX</tt></li>
Rafael Espindola53843f82010-08-08 21:14:26 +0000166 <li>Copy <tt>Release/lib/LLVMgold.so</tt> to
Torok Edwin5641f8d2009-06-03 15:06:19 +0000167 <tt>$PREFIX/libexec/gcc/x86_64-unknown-linux-gnu/4.2.1/</tt> and
168 <tt>$PREFIX/lib/bfd-plugins/</tt></li>
169 <li>Set environment variables (<tt>$PREFIX</tt> is where you installed llvm-gcc and
170 binutils):
171 <pre class="doc_code">
172export CC="$PREFIX/bin/llvm-gcc -use-gold-plugin"
Torok Edwin4734ed82009-06-03 15:42:26 +0000173export CXX="$PREFIX/bin/llvm-g++ -use-gold-plugin"
Torok Edwin347c7bb2009-06-04 16:08:10 +0000174export AR="$PREFIX/bin/ar"
175export NM="$PREFIX/bin/nm"
Torok Edwin5641f8d2009-06-03 15:06:19 +0000176export RANLIB=/bin/true #ranlib is not needed, and doesn't support .bc files in .a
177export CFLAGS="-O4"
Nick Lewycky9d813df2009-06-06 18:14:04 +0000178</pre>
Torok Edwin5641f8d2009-06-03 15:06:19 +0000179 </li>
Torok Edwin347c7bb2009-06-04 16:08:10 +0000180 <li>Or you can just set your path:
181 <pre class="doc_code">
182export PATH="$PREFIX/bin:$PATH"
183export CC="llvm-gcc -use-gold-plugin"
184export CXX="llvm-g++ -use-gold-plugin"
185export RANLIB=/bin/true
186export CFLAGS="-O4"
Nick Lewycky9d813df2009-06-06 18:14:04 +0000187</pre>
Torok Edwin347c7bb2009-06-04 16:08:10 +0000188 </li>
Torok Edwin5641f8d2009-06-03 15:06:19 +0000189 <li>Configure &amp; build the project as usual: <tt>./configure &amp;&amp; make &amp;&amp; make check</tt> </li>
190 </ul>
191 <p> The environment variable settings may work for non-autotooled projects
192 too, but you may need to set the <tt>LD</tt> environment variable as well.</p>
193</div>
194
195<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000196<h2><a name="licensing">Licensing</a></h2>
Nick Lewyckyebc67652009-03-01 09:38:29 +0000197<!--=========================================================================-->
198<div class="doc_text">
Nick Lewyckyef5facd2009-04-13 02:03:40 +0000199 <p>Gold is licensed under the GPLv3. LLVMgold uses the interface file
Nick Lewyckyebc67652009-03-01 09:38:29 +0000200<tt>plugin-api.h</tt> from gold which means that the resulting LLVMgold.so
201binary is also GPLv3. This can still be used to link non-GPLv3 programs just
Nick Lewyckyef5facd2009-04-13 02:03:40 +0000202as much as gold could without the plugin.</p>
Nick Lewyckyebc67652009-03-01 09:38:29 +0000203</div>
204
205<!-- *********************************************************************** -->
206<hr>
207<address>
208 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
209 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
210 <a href="http://validator.w3.org/check/referer"><img
211 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
Nick Lewyckyebc67652009-03-01 09:38:29 +0000212 <a href="mailto:nicholas@metrix.on.ca">Nick Lewycky</a><br>
NAKAMURA Takumib9a33632011-04-09 02:13:37 +0000213 <a href="http://llvm.org/">The LLVM Compiler Infrastructure</a><br>
Nick Lewycky5c212802010-04-17 07:00:24 +0000214 Last modified: $Date: 2010-04-16 23:58:21 -0800 (Fri, 16 Apr 2010) $
Nick Lewyckyebc67652009-03-01 09:38:29 +0000215</address>
216</body>
217</html>