blob: 95e425aac66990b875816ccc83b62839966481d3 [file] [log] [blame]
Misha Brukmana6538852003-11-06 21:55:44 +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: Frequently Asked Questions</title>
Misha Brukman7ce62cc2004-06-01 18:51:03 +00006 <style type="text/css">
Misha Brukmana6538852003-11-06 21:55:44 +00007 @import url("llvm.css");
8 .question { font-weight: bold }
9 .answer { margin-left: 2em }
10 </style>
11</head>
12<body>
John Criswellc310f622003-10-13 16:13:06 +000013
Misha Brukmana6538852003-11-06 21:55:44 +000014<div class="doc_title">
15 LLVM: Frequently Asked Questions
16</div>
17
18<ol>
19 <li><a href="#license">License</a>
20 <ol>
21 <li>Why are the LLVM source code and the front-end distributed under different
22 licenses?</li>
23 <li>Does the University of Illinois Open Source License really qualify as an
24 "open source" license?</li>
25 <li>Can I modify LLVM source code and redistribute the modified source?</li>
26 <li>Can I modify LLVM source code and redistribute binaries or other tools
27 based on it, without redistributing the source?</li>
28 </ol></li>
29
30 <li><a href="#source">Source code</a>
31 <ol>
32 <li>In what language is LLVM written?</li>
33 <li>How portable is the LLVM source code?</li>
34 </ol></li>
35
36 <li><a href="#build">Build Problems</a>
37 <ol>
38 <li>When I run configure, it finds the wrong C compiler.</li>
Misha Brukmana6538852003-11-06 21:55:44 +000039 <li>The <tt>configure</tt> script finds the right C compiler, but it uses the
40 LLVM linker from a previous build. What do I do?</li>
41 <li>When creating a dynamic library, I get a strange GLIBC error.</li>
Reid Spencer669ed452007-07-09 08:04:31 +000042 <li>I've updated my source tree from Subversion, and now my build is trying
43 to use a file/directory that doesn't exist.</li>
Misha Brukmana6538852003-11-06 21:55:44 +000044 <li>I've modified a Makefile in my source tree, but my build tree keeps using
45 the old version. What do I do?</li>
46 <li>I've upgraded to a new version of LLVM, and I get strange build
47 errors.</li>
48 <li>I've built LLVM and am testing it, but the tests freeze.</li>
49 <li>Why do test results differ when I perform different types of builds?</li>
Chris Lattner306acee2003-12-22 04:06:12 +000050 <li>Compiling LLVM with GCC 3.3.2 fails, what should I do?</li>
John Criswelld1799612004-03-29 20:23:11 +000051 <li>When I use the test suite, all of the C Backend tests fail. What is
52 wrong?</li>
Reid Spencer669ed452007-07-09 08:04:31 +000053 <li>After Subversion update, rebuilding gives the error "No rule to make
Bill Wendling174d5782007-05-29 09:35:34 +000054 target".</li>
55 <li><a href="#llvmc">The <tt>llvmc</tt> program gives me errors/doesn't
Bill Wendlinge9a6c352007-09-22 09:54:47 +000056 work.</a></li>
Misha Brukmana6538852003-11-06 21:55:44 +000057 </ol></li>
John Criswell76c1e382003-11-18 16:08:49 +000058
Reid Spencer501bfee2006-04-26 14:52:19 +000059 <li><a href="#felangs">Source Languages</a>
60 <ol>
61 <li><a href="#langs">What source languages are supported?</a></li>
Gordon Henriksene5079052008-02-22 21:55:51 +000062 <li><a href="#langirgen">I'd like to write a self-hosting LLVM compiler. How
63 should I interface with the LLVM middle-end optimizers and back-end code
64 generators?</a></div>
Reid Spencer501bfee2006-04-26 14:52:19 +000065 <li><a href="#langhlsupp">What support is there for higher level source
66 language constructs for building a compiler?</a></li>
Reid Spencere00906f2006-08-10 20:15:58 +000067 <li><a href="GetElementPtr.html">I don't understand the GetElementPtr
68 instruction. Help!</a></li>
Reid Spencer501bfee2006-04-26 14:52:19 +000069 </ol>
70
Chris Lattnercc33d702003-11-19 05:53:12 +000071 <li><a href="#cfe">Using the GCC Front End</a>
John Criswell76c1e382003-11-18 16:08:49 +000072 <ol>
73 <li>
74 When I compile software that uses a configure script, the configure script
75 thinks my system has all of the header files and libraries it is testing
76 for. How do I get configure to work correctly?
77 </li>
78
79 <li>
80 When I compile code using the LLVM GCC front end, it complains that it
Chris Lattner7911ce22004-05-23 21:07:27 +000081 cannot find libcrtend.a.
John Criswell76c1e382003-11-18 16:08:49 +000082 </li>
Tanya Lattner14fc5c12005-04-25 20:36:56 +000083
84 <li>
85 How can I disable all optimizations when compiling code using the LLVM GCC front end?
86 </li>
87
Chris Lattneraf7fd202006-07-19 18:19:59 +000088 <li><a href="#translatec++">Can I use LLVM to convert C++ code to C code?</a></li>
89
John Criswell76c1e382003-11-18 16:08:49 +000090 </ol>
91 </li>
Chris Lattnercc33d702003-11-19 05:53:12 +000092
93 <li><a href="#cfe_code">Questions about code generated by the GCC front-end</a>
94 <ol>
Chris Lattner5a53c5d2005-02-25 20:30:21 +000095 <li><a href="#iosinit">What is this <tt>llvm.global_ctors</tt> and
Chris Lattnerc50bbc92004-03-29 19:14:35 +000096 <tt>_GLOBAL__I__tmp_webcompile...</tt> stuff that happens when I
Chris Lattner5a53c5d2005-02-25 20:30:21 +000097 #include &lt;iostream&gt;?</a></li>
98 <li><a href="#codedce">Where did all of my code go??</a></li>
99 <li><a href="#undef">What is this "<tt>undef</tt>" thing that shows up in my code?</a></li>
Chris Lattnercc33d702003-11-19 05:53:12 +0000100 </ol>
101 </li>
Misha Brukmana6538852003-11-06 21:55:44 +0000102</ol>
103
Chris Lattner7911ce22004-05-23 21:07:27 +0000104<div class="doc_author">
Reid Spencer05fe4b02006-03-14 05:39:39 +0000105 <p>Written by <a href="http://llvm.org">The LLVM Team</a></p>
Chris Lattner7911ce22004-05-23 21:07:27 +0000106</div>
107
108
Misha Brukmana6538852003-11-06 21:55:44 +0000109<!-- *********************************************************************** -->
110<div class="doc_section">
111 <a name="license">License</a>
112</div>
113<!-- *********************************************************************** -->
114
115<div class="question">
116<p>Why are the LLVM source code and the front-end distributed under different
117licenses?</p>
118</div>
119
120<div class="answer">
121<p>The C/C++ front-ends are based on GCC and must be distributed under the GPL.
122Our aim is to distribute LLVM source code under a <em>much less restrictive</em>
123license, in particular one that does not compel users who distribute tools based
124on modifying the source to redistribute the modified source code as well.</p>
125</div>
126
127<div class="question">
128<p>Does the University of Illinois Open Source License really qualify as an
129"open source" license?</p>
130</div>
131
132<div class="answer">
133<p>Yes, the license is <a
134href="http://www.opensource.org/licenses/UoI-NCSA.php">certified</a> by the Open
135Source Initiative (OSI).</p>
136</div>
137
138<div class="question">
139<p>Can I modify LLVM source code and redistribute the modified source?</p>
140</div>
141
142<div class="answer">
143<p>Yes. The modified source distribution must retain the copyright notice and
144follow the three bulletted conditions listed in the <a
Reid Spencer05fe4b02006-03-14 05:39:39 +0000145href="http://llvm.org/releases/1.3/LICENSE.TXT">LLVM license</a>.</p>
Misha Brukmana6538852003-11-06 21:55:44 +0000146</div>
147
148<div class="question">
149<p>Can I modify LLVM source code and redistribute binaries or other tools based
150on it, without redistributing the source?</p>
151</div>
152
153<div class="answer">
154<p>Yes, this is why we distribute LLVM under a less restrictive license than
155GPL, as explained in the first question above.</p>
156</div>
157
158<!-- *********************************************************************** -->
159<div class="doc_section">
160 <a name="source">Source Code</a>
161</div>
162<!-- *********************************************************************** -->
163
164<div class="question">
165<p>In what language is LLVM written?</p>
166</div>
167
168<div class="answer">
169<p>All of the LLVM tools and libraries are written in C++ with extensive use of
170the STL.</p>
171</div>
172
173<div class="question">
174<p>How portable is the LLVM source code?</p>
175</div>
176
177<div class="answer">
178<p>The LLVM source code should be portable to most modern UNIX-like operating
179systems. Most of the code is written in standard C++ with operating system
180services abstracted to a support library. The tools required to build and test
181LLVM have been ported to a plethora of platforms.</p>
182
183<p>Some porting problems may exist in the following areas:</p>
184
185<ul>
Misha Brukmana6538852003-11-06 21:55:44 +0000186 <li>The GCC front end code is not as portable as the LLVM suite, so it may not
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000187 compile as well on unsupported platforms.</li>
Misha Brukmana6538852003-11-06 21:55:44 +0000188
Misha Brukmana6538852003-11-06 21:55:44 +0000189 <li>The LLVM build system relies heavily on UNIX shell tools, like the Bourne
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000190 Shell and sed. Porting to systems without these tools (MacOS 9, Plan 9)
191 will require more effort.</li>
Misha Brukmana6538852003-11-06 21:55:44 +0000192</ul>
193
194</div>
195
196<!-- *********************************************************************** -->
197<div class="doc_section">
198 <a name="build">Build Problems</a>
199</div>
200<!-- *********************************************************************** -->
201
202<div class="question">
203<p>When I run configure, it finds the wrong C compiler.</p>
204</div>
205
206<div class="answer">
207
208<p>The <tt>configure</tt> script attempts to locate first <tt>gcc</tt> and then
209<tt>cc</tt>, unless it finds compiler paths set in <tt>CC</tt> and <tt>CXX</tt>
210for the C and C++ compiler, respectively.</p>
211
212<p>If <tt>configure</tt> finds the wrong compiler, either adjust your
213<tt>PATH</tt> environment variable or set <tt>CC</tt> and <tt>CXX</tt>
214explicitly.</p>
215
216</div>
217
218<div class="question">
Misha Brukmana6538852003-11-06 21:55:44 +0000219<p>The <tt>configure</tt> script finds the right C compiler, but it uses the
220LLVM linker from a previous build. What do I do?</p>
221</div>
222
223<div class="answer">
224<p>The <tt>configure</tt> script uses the <tt>PATH</tt> to find executables, so
225if it's grabbing the wrong linker/assembler/etc, there are two ways to fix
226it:</p>
227
228<ol>
Misha Brukmana6538852003-11-06 21:55:44 +0000229 <li><p>Adjust your <tt>PATH</tt> environment variable so that the correct
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000230 program appears first in the <tt>PATH</tt>. This may work, but may not be
231 convenient when you want them <i>first</i> in your path for other
232 work.</p></li>
Misha Brukmana6538852003-11-06 21:55:44 +0000233
234 <li><p>Run <tt>configure</tt> with an alternative <tt>PATH</tt> that is
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000235 correct. In a Borne compatible shell, the syntax would be:</p>
236
237<div class="doc_code">
238<pre>
239% PATH=[the path without the bad program] ./configure ...
240</pre>
241</div>
Misha Brukmana6538852003-11-06 21:55:44 +0000242
243 <p>This is still somewhat inconvenient, but it allows <tt>configure</tt>
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000244 to do its work without having to adjust your <tt>PATH</tt>
245 permanently.</p></li>
Misha Brukmana6538852003-11-06 21:55:44 +0000246</ol>
247
248</div>
249
250<div class="question">
251<p>When creating a dynamic library, I get a strange GLIBC error.</p>
252</div>
253
254<div class="answer">
255<p>Under some operating systems (i.e. Linux), libtool does not work correctly if
256GCC was compiled with the --disable-shared option. To work around this, install
257your own version of GCC that has shared libraries enabled by default.</p>
258</div>
259
260<div class="question">
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000261<p>I've updated my source tree from Subversion, and now my build is trying to
262use a file/directory that doesn't exist.</p>
Misha Brukmana6538852003-11-06 21:55:44 +0000263</div>
264
265<div class="answer">
266<p>You need to re-run configure in your object directory. When new Makefiles
267are added to the source tree, they have to be copied over to the object tree in
268order to be used by the build.</p>
269</div>
270
271<div class="question">
272<p>I've modified a Makefile in my source tree, but my build tree keeps using the
273old version. What do I do?</p>
274</div>
275
276<div class="answer">
Misha Brukmana6538852003-11-06 21:55:44 +0000277<p>If the Makefile already exists in your object tree, you
278can just run the following command in the top level directory of your object
279tree:</p>
280
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000281<div class="doc_code">
282<pre>% ./config.status &lt;relative path to Makefile&gt;</pre>
283</div>
Misha Brukmana6538852003-11-06 21:55:44 +0000284
285<p>If the Makefile is new, you will have to modify the configure script to copy
286it over.</p>
287
288</div>
289
290<div class="question">
291<p>I've upgraded to a new version of LLVM, and I get strange build errors.</p>
292</div>
293
294<div class="answer">
295
296<p>Sometimes, changes to the LLVM source code alters how the build system works.
297Changes in libtool, autoconf, or header file dependencies are especially prone
298to this sort of problem.</p>
299
300<p>The best thing to try is to remove the old files and re-build. In most
301cases, this takes care of the problem. To do this, just type <tt>make
302clean</tt> and then <tt>make</tt> in the directory that fails to build.</p>
303
304</div>
305
306<div class="question">
307<p>I've built LLVM and am testing it, but the tests freeze.</p>
308</div>
309
310<div class="answer">
311
312<p>This is most likely occurring because you built a profile or release
313(optimized) build of LLVM and have not specified the same information on the
314<tt>gmake</tt> command line.</p>
315
316<p>For example, if you built LLVM with the command:</p>
317
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000318<div class="doc_code">
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000319<pre>% gmake ENABLE_PROFILING=1</pre>
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000320</div>
Misha Brukmana6538852003-11-06 21:55:44 +0000321
322<p>...then you must run the tests with the following commands:</p>
323
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000324<div class="doc_code">
325<pre>
326% cd llvm/test
327% gmake ENABLE_PROFILING=1
328</pre>
329</div>
Misha Brukmana6538852003-11-06 21:55:44 +0000330
331</div>
332
333<div class="question">
334<p>Why do test results differ when I perform different types of builds?</p>
335</div>
336
337<div class="answer">
338
339<p>The LLVM test suite is dependent upon several features of the LLVM tools and
340libraries.</p>
341
342<p>First, the debugging assertions in code are not enabled in optimized or
343profiling builds. Hence, tests that used to fail may pass.</p>
344
345<p>Second, some tests may rely upon debugging options or behavior that is only
346available in the debug build. These tests will fail in an optimized or profile
347build.</p>
348
349</div>
350
Chris Lattner8a0b9242003-12-08 05:43:19 +0000351<div class="question">
Chris Lattner306acee2003-12-22 04:06:12 +0000352<p>Compiling LLVM with GCC 3.3.2 fails, what should I do?</p>
Chris Lattner8a0b9242003-12-08 05:43:19 +0000353</div>
354
355<div class="answer">
Chris Lattner306acee2003-12-22 04:06:12 +0000356<p>This is <a href="http://gcc.gnu.org/PR?13392">a bug in GCC</a>, and
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000357affects projects other than LLVM. Try upgrading or downgrading your GCC.</p>
Chris Lattner8a0b9242003-12-08 05:43:19 +0000358</div>
359
John Criswelld1799612004-03-29 20:23:11 +0000360<div class="question">
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000361<p>After Subversion update, rebuilding gives the error "No rule to make
362target".</p>
Misha Brukman1739aec2004-09-09 16:36:47 +0000363</div>
364
365<div class="answer">
366<p>If the error is of the form:</p>
367
368<div class="doc_code">
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000369<pre>
Misha Brukman1739aec2004-09-09 16:36:47 +0000370gmake[2]: *** No rule to make target `/path/to/somefile', needed by
371`/path/to/another/file.d'.<br>
372Stop.
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000373</pre>
Misha Brukman1739aec2004-09-09 16:36:47 +0000374</div>
375
Reid Spencer669ed452007-07-09 08:04:31 +0000376<p>This may occur anytime files are moved within the Subversion repository or
377removed entirely. In this case, the best solution is to erase all
378<tt>.d</tt> files, which list dependencies for source files, and rebuild:</p>
Misha Brukman1739aec2004-09-09 16:36:47 +0000379
380<div class="doc_code">
381<pre>
382% cd $LLVM_OBJ_DIR
383% rm -f `find . -name \*\.d`
384% gmake
385</pre>
386</div>
387
388<p>In other cases, it may be necessary to run <tt>make clean</tt> before
389rebuilding.</p>
390</div>
391
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000392<div class="question"><p><a name="llvmc">
393The <tt>llvmc</tt> program gives me errors/doesn't work.</a></p>
Bill Wendling174d5782007-05-29 09:35:34 +0000394</div>
395
396<div class="answer">
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000397<p><tt>llvmc</tt> is experimental and isn't really supported. We suggest
398using <tt>llvm-gcc</tt> instead.</p>
Bill Wendling174d5782007-05-29 09:35:34 +0000399</div>
400
Misha Brukmana6538852003-11-06 21:55:44 +0000401<!-- *********************************************************************** -->
Reid Spencerc87f4972006-04-26 15:46:53 +0000402<div class="doc_section"><a name="felangs">Source Languages</a></div>
Reid Spencer501bfee2006-04-26 14:52:19 +0000403
Reid Spencerc87f4972006-04-26 15:46:53 +0000404<div class="question"><p>
405 <a name="langs">What source languages are supported?</a></p>
406</div>
407<div class="answer">
Reid Spencer501bfee2006-04-26 14:52:19 +0000408 <p>LLVM currently has full support for C and C++ source languages. These are
409 available through a special version of GCC that LLVM calls the
410 <a href="#cfe">C Front End</a></p>
411 <p>There is an incomplete version of a Java front end available in the
Reid Spencer669ed452007-07-09 08:04:31 +0000412 <tt>java</tt> module. There is no documentation on this yet so
Reid Spencer501bfee2006-04-26 14:52:19 +0000413 you'll need to download the code, compile it, and try it.</p>
Reid Spencer669ed452007-07-09 08:04:31 +0000414 <p>In the <tt>stacker</tt> module is a compiler and runtime
Reid Spencer501bfee2006-04-26 14:52:19 +0000415 library for the Stacker language, a "toy" language loosely based on Forth.</p>
416 <p>The PyPy developers are working on integrating LLVM into the PyPy backend
417 so that PyPy language can translate to LLVM.</p>
418</div>
Gordon Henriksen58366822008-02-22 20:58:29 +0000419
420<div class="question"><p><a name="langirgen">
Gordon Henriksene5079052008-02-22 21:55:51 +0000421 I'd like to write a self-hosting LLVM compiler. How should I interface with
422 the LLVM middle-end optimizers and back-end code generators?
Gordon Henriksen58366822008-02-22 20:58:29 +0000423</a></p></div>
424<div class="answer">
425 <p>Your compiler front-end will communicate with LLVM by creating a module in
Gordon Henriksene5079052008-02-22 21:55:51 +0000426 the LLVM intermediate representation (IR) format. Assuming you want to
427 write your language's compiler in the language itself (rather than C++),
428 there are 3 major ways to tackle generating LLVM IR from a front-end:</p>
Gordon Henriksen58366822008-02-22 20:58:29 +0000429 <ul>
430 <li>
431 <strong>Call into the LLVM libraries code using your language's FFI
432 (foreign function interface).</strong>
433 <ul>
434 <li><em>for:</em> best tracks changes to the LLVM IR, .ll syntax,
435 and .bc format</li>
436 <li><em>for:</em> enables running LLVM optimization passes without a
437 emit/parse overhead</li>
438 <li><em>for:</em> adapts well to a JIT context</li>
439 <li><em>against:</em> lots of ugly glue code to write</li>
440 </ul>
441 </li>
442 <li>
443 <strong>Emit LLVM assembly from your compiler's native language.</strong>
444 <ul>
445 <li><em>for:</em> very straightforward to get started</li>
446 <li><em>against:</em> the .ll parser is slower than the bitcode reader
447 when interfacing to the middle end</li>
448 <li><em>against:</em> you'll have to re-engineer the LLVM IR object
449 model and asm writer in your language</li>
450 <li><em>against:</em> it may be harder to track changes to the IR</li>
451 </ul>
452 </li>
453 <li>
454 <strong>Emit LLVM bitcode from your compiler's native language.</strong>
455 <ul>
456 <li><em>for:</em> can use the more-efficient bitcode reader when
457 interfacing to the middle end</li>
458 <li><em>against:</em> you'll have to re-engineer the LLVM IR object
459 model and bitcode writer in your language</li>
460 <li><em>against:</em> it may be harder to track changes to the IR</li>
461 </ul>
462 </li>
463 </ul>
464 <p>If you go with the first option, the C bindings in include/llvm-c should
465 help a lot, since most languages have strong support for interfacing with
466 C. The most common hurdle with calling C from managed code is interfacing
467 with the garbage collector. The C interface was designed to require very
468 little memory management, and so is straightforward in this regard.</p>
469</div>
470
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000471<div class="question"><p><a name="langhlsupp">
472 What support is there for a higher level source language constructs for
Reid Spencerc87f4972006-04-26 15:46:53 +0000473 building a compiler?</a></p>
Reid Spencer501bfee2006-04-26 14:52:19 +0000474</div>
475<div class="answer">
476 <p>Currently, there isn't much. LLVM supports an intermediate representation
477 which is useful for code representation but will not support the high level
478 (abstract syntax tree) representation needed by most compilers. There are no
Jeff Cohen7b8229a2006-04-26 21:03:17 +0000479 facilities for lexical nor semantic analysis. There is, however, a <i>mostly
Reid Spencer501bfee2006-04-26 14:52:19 +0000480 implemented</i> configuration-driven
481 <a href="CompilerDriver.html">compiler driver</a> which simplifies the task
482 of running optimizations, linking, and executable generation.</p>
Reid Spencer501bfee2006-04-26 14:52:19 +0000483</div>
Chris Lattner33bef482006-08-15 00:43:35 +0000484
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000485<div class="question"><p><a name="langhlsupp">
486 I don't understand the GetElementPtr instruction. Help!</a></p>
Chris Lattner33bef482006-08-15 00:43:35 +0000487</div>
488<div class="answer">
489 <p>See <a href="GetElementPtr.html">The Often Misunderstood GEP
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000490 Instruction</a>.</p>
Chris Lattner33bef482006-08-15 00:43:35 +0000491</div>
492
Reid Spencer501bfee2006-04-26 14:52:19 +0000493<!-- *********************************************************************** -->
494<div class="doc_section">
Chris Lattnercc33d702003-11-19 05:53:12 +0000495 <a name="cfe">Using the GCC Front End</a>
John Criswell6ea30b02003-11-18 16:05:23 +0000496</div>
497
498<div class="question">
499<p>
500When I compile software that uses a configure script, the configure script
501thinks my system has all of the header files and libraries it is testing for.
502How do I get configure to work correctly?
503</p>
504</div>
505
506<div class="answer">
507<p>
508The configure script is getting things wrong because the LLVM linker allows
509symbols to be undefined at link time (so that they can be resolved during JIT
510or translation to the C back end). That is why configure thinks your system
511"has everything."
512</p>
513<p>
514To work around this, perform the following steps:
515</p>
John Criswell6ea30b02003-11-18 16:05:23 +0000516<ol>
Reid Spencer434262a2007-02-09 15:59:08 +0000517 <li>Make sure the CC and CXX environment variables contains the full path to
518 the LLVM GCC front end.</li>
John Criswell6ea30b02003-11-18 16:05:23 +0000519
Reid Spencer434262a2007-02-09 15:59:08 +0000520 <li>Make sure that the regular C compiler is first in your PATH. </li>
John Criswell6ea30b02003-11-18 16:05:23 +0000521
Reid Spencer434262a2007-02-09 15:59:08 +0000522 <li>Add the string "-Wl,-native" to your CFLAGS environment variable.</li>
John Criswell6ea30b02003-11-18 16:05:23 +0000523</ol>
524
525<p>
Reid Spencer434262a2007-02-09 15:59:08 +0000526This will allow the <tt>llvm-ld</tt> linker to create a native code executable
527instead of shell script that runs the JIT. Creating native code requires
528standard linkage, which in turn will allow the configure script to find out if
529code is not linking on your system because the feature isn't available on your
530system.</p>
John Criswell6ea30b02003-11-18 16:05:23 +0000531</div>
532
Chris Lattnercc33d702003-11-19 05:53:12 +0000533<div class="question">
John Criswell6ea30b02003-11-18 16:05:23 +0000534<p>
535When I compile code using the LLVM GCC front end, it complains that it cannot
John Criswellcd161192004-03-12 18:20:15 +0000536find libcrtend.a.
John Criswell6ea30b02003-11-18 16:05:23 +0000537</p>
538</div>
539
Chris Lattnercc33d702003-11-19 05:53:12 +0000540<div class="answer">
John Criswell6ea30b02003-11-18 16:05:23 +0000541<p>
Reid Spencerf96eb572004-12-15 00:14:01 +0000542The only way this can happen is if you haven't installed the runtime library. To
543correct this, do:</p>
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000544
545<div class="doc_code">
Reid Spencerf96eb572004-12-15 00:14:01 +0000546<pre>
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000547% cd llvm/runtime
548% make clean ; make install-bytecode
Reid Spencerf96eb572004-12-15 00:14:01 +0000549</pre>
John Criswell6ea30b02003-11-18 16:05:23 +0000550</div>
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000551</div>
Chris Lattnercc33d702003-11-19 05:53:12 +0000552
Tanya Lattner14fc5c12005-04-25 20:36:56 +0000553<div class="question">
554<p>
555How can I disable all optimizations when compiling code using the LLVM GCC front end?
556</p>
557</div>
558
559<div class="answer">
560<p>
561Passing "-Wa,-disable-opt -Wl,-disable-opt" will disable *all* cleanup and
562optimizations done at the llvm level, leaving you with the truly horrible
563code that you desire.
564</p>
565</div>
Chris Lattnercc33d702003-11-19 05:53:12 +0000566
Chris Lattneraf7fd202006-07-19 18:19:59 +0000567
568<div class="question">
569<p>
570<a name="translatec++">Can I use LLVM to convert C++ code to C code?</a>
571</p>
572</div>
573
574<div class="answer">
575<p>Yes, you can use LLVM to convert code from any language LLVM supports to C.
576Note that the generated C code will be very low level (all loops are lowered
577to gotos, etc) and not very pretty (comments are stripped, original source
578formatting is totally lost, variables are renamed, expressions are regrouped),
579so this may not be what you're looking for. However, this is a good way to add
580C++ support for a processor that does not otherwise have a C++ compiler.
581</p>
582
583<p>Use commands like this:</p>
584
585<ol>
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000586 <li><p>Compile your program as normal with llvm-g++:</p>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000587
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000588<div class="doc_code">
589<pre>
590% llvm-g++ x.cpp -o program
591</pre>
592</div>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000593
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000594 <p>or:</p>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000595
596<div class="doc_code">
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000597<pre>
598% llvm-g++ a.cpp -c
599% llvm-g++ b.cpp -c
600% llvm-g++ a.o b.o -o program
601</pre>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000602</div>
603
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000604 <p>With llvm-gcc3, this will generate program and program.bc. The .bc
605 file is the LLVM version of the program all linked together.</p></li>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000606
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000607 <li><p>Convert the LLVM code to C code, using the LLC tool with the C
608 backend:</p>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000609
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000610<div class="doc_code">
611<pre>
612% llc -march=c program.bc -o program.c
613</pre>
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000614</div></li>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000615
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000616<li><p>Finally, compile the C file:</p>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000617
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000618<div class="doc_code">
619<pre>
620% cc x.c
621</pre>
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000622</div></li>
Chris Lattneraf7fd202006-07-19 18:19:59 +0000623
624</ol>
625
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000626<p>Note that, by default, the C backend does not support exception handling. If
627you want/need it for a certain program, you can enable it by passing
628"-enable-correct-eh-support" to the llc program. The resultant code will use
629setjmp/longjmp to implement exception support that is correct but relatively
630slow.</p>
Chris Lattnerb495fb02006-08-31 04:26:31 +0000631
Bill Wendlinge9a6c352007-09-22 09:54:47 +0000632<p>Also note: this specific sequence of commands won't work if you use a
633function defined in the C++ runtime library (or any other C++ library). To
634access an external C++ library, you must manually compile libstdc++ to LLVM
635bitcode, statically link it into your program, then use the commands above to
636convert the whole result into C code. Alternatively, you can compile the
637libraries and your application into two different chunks of C code and link
638them.</p>
Chris Lattnerb495fb02006-08-31 04:26:31 +0000639
Chris Lattneraf7fd202006-07-19 18:19:59 +0000640</div>
641
Chris Lattnercc33d702003-11-19 05:53:12 +0000642<!-- *********************************************************************** -->
643<div class="doc_section">
644 <a name="cfe_code">Questions about code generated by the GCC front-end</a>
645</div>
646
Misha Brukman237dc2a2004-12-03 23:58:18 +0000647<div class="question">
Chris Lattner5a53c5d2005-02-25 20:30:21 +0000648<a name="iosinit"></a>
Misha Brukman237dc2a2004-12-03 23:58:18 +0000649<p> What is this <tt>llvm.global_ctors</tt> and
650<tt>_GLOBAL__I__tmp_webcompile...</tt> stuff that happens when I #include
651&lt;iostream&gt;?</p>
652</div>
Chris Lattnerc50bbc92004-03-29 19:14:35 +0000653
654<div class="answer">
Misha Brukman237dc2a2004-12-03 23:58:18 +0000655
656<p>If you #include the &lt;iostream&gt; header into a C++ translation unit, the
Chris Lattnerc50bbc92004-03-29 19:14:35 +0000657file will probably use the <tt>std::cin</tt>/<tt>std::cout</tt>/... global
658objects. However, C++ does not guarantee an order of initialization between
659static objects in different translation units, so if a static ctor/dtor in your
660.cpp file used <tt>std::cout</tt>, for example, the object would not necessarily
Misha Brukman237dc2a2004-12-03 23:58:18 +0000661be automatically initialized before your use.</p>
Chris Lattnerc50bbc92004-03-29 19:14:35 +0000662
Misha Brukman237dc2a2004-12-03 23:58:18 +0000663<p>To make <tt>std::cout</tt> and friends work correctly in these scenarios, the
Chris Lattnerc50bbc92004-03-29 19:14:35 +0000664STL that we use declares a static object that gets created in every translation
Misha Brukman237dc2a2004-12-03 23:58:18 +0000665unit that includes <tt>&lt;iostream&gt;</tt>. This object has a static
666constructor and destructor that initializes and destroys the global iostream
667objects before they could possibly be used in the file. The code that you see
668in the .ll file corresponds to the constructor and destructor registration code.
Chris Lattnerc50bbc92004-03-29 19:14:35 +0000669</p>
670
Misha Brukman237dc2a2004-12-03 23:58:18 +0000671<p>If you would like to make it easier to <b>understand</b> the LLVM code
672generated by the compiler in the demo page, consider using <tt>printf()</tt>
673instead of <tt>iostream</tt>s to print values.</p>
674
Chris Lattnerc50bbc92004-03-29 19:14:35 +0000675</div>
676
Chris Lattner5a53c5d2005-02-25 20:30:21 +0000677<!--=========================================================================-->
678
679<div class="question"><p>
680<a name="codedce"></a>
681Where did all of my code go??
682</p></div>
683
684<div class="answer">
685<p>
686If you are using the LLVM demo page, you may often wonder what happened to all
687of the code that you typed in. Remember that the demo script is running the
688code through the LLVM optimizers, so if your code doesn't actually do anything
689useful, it might all be deleted.
690</p>
691
692<p>
693To prevent this, make sure that the code is actually needed. For example, if
694you are computing some expression, return the value from the function instead of
695leaving it in a local variable. If you really want to constrain the optimizer,
696you can read from and assign to <tt>volatile</tt> global variables.
697</p>
698</div>
699
700<!--=========================================================================-->
701
702<div class="question"><p>
703<a name="undef"></a>
704<p>What is this "<tt>undef</tt>" thing that shows up in my code?
705</p></div>
706
707<div class="answer">
708<p>
709<a href="LangRef.html#undef"><tt>undef</tt></a> is the LLVM way of representing
710a value that is not defined. You can get these if you do not initialize a
711variable before you use it. For example, the C function:</p>
712
713<div class="doc_code">
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000714<pre>
715int X() { int i; return i; }
716</pre>
Chris Lattner5a53c5d2005-02-25 20:30:21 +0000717</div>
718
Bill Wendlingd6a68eb2007-05-29 09:24:33 +0000719<p>Is compiled to "<tt>ret i32 undef</tt>" because "<tt>i</tt>" never has
720a value specified for it.</p>
Chris Lattner5a53c5d2005-02-25 20:30:21 +0000721</div>
722
John Criswell6ea30b02003-11-18 16:05:23 +0000723<!-- *********************************************************************** -->
John Criswellc310f622003-10-13 16:13:06 +0000724
725<hr>
Misha Brukman7ce62cc2004-06-01 18:51:03 +0000726<address>
727 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
728 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
729 <a href="http://validator.w3.org/check/referer"><img
730 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
731
Reid Spencer05fe4b02006-03-14 05:39:39 +0000732 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
Misha Brukmana6538852003-11-06 21:55:44 +0000733 Last modified: $Date$
Misha Brukman7ce62cc2004-06-01 18:51:03 +0000734</address>
John Criswellf08c5d82003-10-24 22:48:20 +0000735
John Criswellc310f622003-10-13 16:13:06 +0000736</body>
737</html>