blob: 7b8c6c7e7b80ebe466b082d95f3beab0439b2b45 [file] [log] [blame]
Chris Lattner261efe92003-11-25 01:02:51 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Misha Brukman9d0919f2003-11-08 01:05:38 +00002<html>
3<head>
4 <title>LLVM Assembly Language Reference Manual</title>
5 <link rel="stylesheet" href="llvm.css" type="text/css">
6</head>
7<body>
Chris Lattner261efe92003-11-25 01:02:51 +00008<div class="doc_title"> LLVM Language Reference Manual </div>
Chris Lattner00950542001-06-06 20:29:01 +00009<ol>
Misha Brukman9d0919f2003-11-08 01:05:38 +000010 <li><a href="#abstract">Abstract</a></li>
11 <li><a href="#introduction">Introduction</a></li>
12 <li><a href="#identifiers">Identifiers</a></li>
Chris Lattner00950542001-06-06 20:29:01 +000013 <li><a href="#typesystem">Type System</a>
14 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000015 <li><a href="#t_primitive">Primitive Types</a>
16 <ol>
Misha Brukman9d0919f2003-11-08 01:05:38 +000017 <li><a href="#t_classifications">Type Classifications</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000018 </ol>
19 </li>
Chris Lattner00950542001-06-06 20:29:01 +000020 <li><a href="#t_derived">Derived Types</a>
21 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000022 <li><a href="#t_array">Array Type</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000023 <li><a href="#t_function">Function Type</a></li>
24 <li><a href="#t_pointer">Pointer Type</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000025 <li><a href="#t_struct">Structure Type</a></li>
26<!-- <li><a href="#t_packed" >Packed Type</a> -->
27 </ol>
28 </li>
29 </ol>
30 </li>
Chris Lattner00950542001-06-06 20:29:01 +000031 <li><a href="#highlevel">High Level Structure</a>
32 <ol>
Misha Brukman9d0919f2003-11-08 01:05:38 +000033 <li><a href="#modulestructure">Module Structure</a></li>
34 <li><a href="#globalvars">Global Variables</a></li>
35 <li><a href="#functionstructure">Function Structure</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000036 </ol>
37 </li>
Chris Lattner00950542001-06-06 20:29:01 +000038 <li><a href="#instref">Instruction Reference</a>
39 <ol>
40 <li><a href="#terminators">Terminator Instructions</a>
41 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000042 <li><a href="#i_ret">'<tt>ret</tt>' Instruction</a></li>
43 <li><a href="#i_br">'<tt>br</tt>' Instruction</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000044 <li><a href="#i_switch">'<tt>switch</tt>' Instruction</a></li>
45 <li><a href="#i_invoke">'<tt>invoke</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000046 <li><a href="#i_unwind">'<tt>unwind</tt>' Instruction</a></li>
47 </ol>
48 </li>
Chris Lattner00950542001-06-06 20:29:01 +000049 <li><a href="#binaryops">Binary Operations</a>
50 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000051 <li><a href="#i_add">'<tt>add</tt>' Instruction</a></li>
52 <li><a href="#i_sub">'<tt>sub</tt>' Instruction</a></li>
53 <li><a href="#i_mul">'<tt>mul</tt>' Instruction</a></li>
54 <li><a href="#i_div">'<tt>div</tt>' Instruction</a></li>
55 <li><a href="#i_rem">'<tt>rem</tt>' Instruction</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000056 <li><a href="#i_setcc">'<tt>set<i>cc</i></tt>' Instructions</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000057 </ol>
58 </li>
Chris Lattner00950542001-06-06 20:29:01 +000059 <li><a href="#bitwiseops">Bitwise Binary Operations</a>
60 <ol>
Misha Brukman9d0919f2003-11-08 01:05:38 +000061 <li><a href="#i_and">'<tt>and</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000062 <li><a href="#i_or">'<tt>or</tt>' Instruction</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000063 <li><a href="#i_xor">'<tt>xor</tt>' Instruction</a></li>
64 <li><a href="#i_shl">'<tt>shl</tt>' Instruction</a></li>
65 <li><a href="#i_shr">'<tt>shr</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000066 </ol>
67 </li>
Chris Lattner00950542001-06-06 20:29:01 +000068 <li><a href="#memoryops">Memory Access Operations</a>
69 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000070 <li><a href="#i_malloc">'<tt>malloc</tt>' Instruction</a></li>
71 <li><a href="#i_free">'<tt>free</tt>' Instruction</a></li>
72 <li><a href="#i_alloca">'<tt>alloca</tt>' Instruction</a></li>
73 <li><a href="#i_load">'<tt>load</tt>' Instruction</a></li>
74 <li><a href="#i_store">'<tt>store</tt>' Instruction</a></li>
75 <li><a href="#i_getelementptr">'<tt>getelementptr</tt>' Instruction</a></li>
76 </ol>
77 </li>
Chris Lattner00950542001-06-06 20:29:01 +000078 <li><a href="#otherops">Other Operations</a>
79 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000080 <li><a href="#i_phi">'<tt>phi</tt>' Instruction</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000081 <li><a href="#i_cast">'<tt>cast .. to</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000082 <li><a href="#i_call">'<tt>call</tt>' Instruction</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000083 <li><a href="#i_vanext">'<tt>vanext</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000084 <li><a href="#i_vaarg">'<tt>vaarg</tt>' Instruction</a></li>
Chris Lattner00950542001-06-06 20:29:01 +000085 </ol>
Chris Lattner261efe92003-11-25 01:02:51 +000086 </li>
Chris Lattner00950542001-06-06 20:29:01 +000087 </ol>
Chris Lattner261efe92003-11-25 01:02:51 +000088 </li>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +000089 <li><a href="#intrinsics">Intrinsic Functions</a>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +000090 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000091 <li><a href="#int_varargs">Variable Argument Handling Intrinsics</a>
92 <ol>
93 <li><a href="#i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a></li>
94 <li><a href="#i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a></li>
95 <li><a href="#i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a></li>
96 </ol>
97 </li>
Chris Lattner10610642004-02-14 04:08:35 +000098 <li><a href="#int_codegen">Code Generator Intrinsics</a>
99 <ol>
100 <li><a href="#i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a></li>
101 <li><a href="#i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a></li>
102 </ol>
103 </li>
Chris Lattner33aec9e2004-02-12 17:01:32 +0000104 <li><a href="#int_libc">Standard C Library Intrinsics</a>
105 <ol>
106 <li><a href="#i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a></li>
Chris Lattner0eb51b42004-02-12 18:10:10 +0000107 <li><a href="#i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a></li>
Chris Lattner10610642004-02-14 04:08:35 +0000108 <li><a href="#i_memset">'<tt>llvm.memset</tt>' Intrinsic</a></li>
Chris Lattner33aec9e2004-02-12 17:01:32 +0000109 </ol>
110 </li>
Chris Lattner8ff75902004-01-06 05:31:32 +0000111 <li><a href="#int_debugger">Debugger intrinsics</a>
Chris Lattner261efe92003-11-25 01:02:51 +0000112 </ol>
113 </li>
Chris Lattner00950542001-06-06 20:29:01 +0000114</ol>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000115<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000116<p><b>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
117and <a href="mailto:vadve@cs.uiuc.edu">Vikram Adve</a></b></p>
118<p> </p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000119</div>
Chris Lattner00950542001-06-06 20:29:01 +0000120<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000121<div class="doc_section"> <a name="abstract">Abstract </a></div>
122<!-- *********************************************************************** -->
Misha Brukman9d0919f2003-11-08 01:05:38 +0000123<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000124<p>This document is a reference manual for the LLVM assembly language.
125LLVM is an SSA based representation that provides type safety,
126low-level operations, flexibility, and the capability of representing
127'all' high-level languages cleanly. It is the common code
128representation used throughout all phases of the LLVM compilation
129strategy.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000130</div>
Chris Lattner00950542001-06-06 20:29:01 +0000131<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000132<div class="doc_section"> <a name="introduction">Introduction</a> </div>
133<!-- *********************************************************************** -->
Misha Brukman9d0919f2003-11-08 01:05:38 +0000134<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000135<p>The LLVM code representation is designed to be used in three
136different forms: as an in-memory compiler IR, as an on-disk bytecode
137representation (suitable for fast loading by a Just-In-Time compiler),
138and as a human readable assembly language representation. This allows
139LLVM to provide a powerful intermediate representation for efficient
140compiler transformations and analysis, while providing a natural means
141to debug and visualize the transformations. The three different forms
142of LLVM are all equivalent. This document describes the human readable
143representation and notation.</p>
144<p>The LLVM representation aims to be a light-weight and low-level
145while being expressive, typed, and extensible at the same time. It
146aims to be a "universal IR" of sorts, by being at a low enough level
147that high-level ideas may be cleanly mapped to it (similar to how
148microprocessors are "universal IR's", allowing many source languages to
149be mapped to them). By providing type information, LLVM can be used as
150the target of optimizations: for example, through pointer analysis, it
151can be proven that a C automatic variable is never accessed outside of
152the current function... allowing it to be promoted to a simple SSA
153value instead of a memory location.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000154</div>
Chris Lattner00950542001-06-06 20:29:01 +0000155<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000156<div class="doc_subsubsection"> <a name="wellformed">Well-Formedness</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000157<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000158<p>It is important to note that this document describes 'well formed'
159LLVM assembly language. There is a difference between what the parser
160accepts and what is considered 'well formed'. For example, the
161following instruction is syntactically okay, but not well formed:</p>
162<pre> %x = <a href="#i_add">add</a> int 1, %x<br></pre>
163<p>...because the definition of <tt>%x</tt> does not dominate all of
164its uses. The LLVM infrastructure provides a verification pass that may
165be used to verify that an LLVM module is well formed. This pass is
166automatically run by the parser after parsing input assembly, and by
167the optimizer before it outputs bytecode. The violations pointed out
168by the verifier pass indicate bugs in transformation passes or input to
169the parser.</p>
170<!-- Describe the typesetting conventions here. --> </div>
Chris Lattner00950542001-06-06 20:29:01 +0000171<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000172<div class="doc_section"> <a name="identifiers">Identifiers</a> </div>
Chris Lattner00950542001-06-06 20:29:01 +0000173<!-- *********************************************************************** -->
Misha Brukman9d0919f2003-11-08 01:05:38 +0000174<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000175<p>LLVM uses three different forms of identifiers, for different
176purposes:</p>
Chris Lattner00950542001-06-06 20:29:01 +0000177<ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000178 <li>Numeric constants are represented as you would expect: 12, -3
179123.421, etc. Floating point constants have an optional hexidecimal
180notation.</li>
181 <li>Named values are represented as a string of characters with a '%'
182prefix. For example, %foo, %DivisionByZero,
183%a.really.long.identifier. The actual regular expression used is '<tt>%[a-zA-Z$._][a-zA-Z$._0-9]*</tt>'.
184Identifiers which require other characters in their names can be
185surrounded with quotes. In this way, anything except a <tt>"</tt>
186character can be used in a name.</li>
187 <li>Unnamed values are represented as an unsigned numeric value with
188a '%' prefix. For example, %12, %2, %44.</li>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000189</ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000190<p>LLVM requires the values start with a '%' sign for two reasons:
191Compilers don't need to worry about name clashes with reserved words,
192and the set of reserved words may be expanded in the future without
193penalty. Additionally, unnamed identifiers allow a compiler to quickly
194come up with a temporary variable without having to avoid symbol table
195conflicts.</p>
196<p>Reserved words in LLVM are very similar to reserved words in other
197languages. There are keywords for different opcodes ('<tt><a
198 href="#i_add">add</a></tt>', '<tt><a href="#i_cast">cast</a></tt>', '<tt><a
199 href="#i_ret">ret</a></tt>', etc...), for primitive type names ('<tt><a
200 href="#t_void">void</a></tt>', '<tt><a href="#t_uint">uint</a></tt>',
201etc...), and others. These reserved words cannot conflict with
202variable names, because none of them start with a '%' character.</p>
203<p>Here is an example of LLVM code to multiply the integer variable '<tt>%X</tt>'
204by 8:</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000205<p>The easy way:</p>
Chris Lattner261efe92003-11-25 01:02:51 +0000206<pre> %result = <a href="#i_mul">mul</a> uint %X, 8<br></pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000207<p>After strength reduction:</p>
Chris Lattner261efe92003-11-25 01:02:51 +0000208<pre> %result = <a href="#i_shl">shl</a> uint %X, ubyte 3<br></pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000209<p>And the hard way:</p>
Chris Lattner261efe92003-11-25 01:02:51 +0000210<pre> <a href="#i_add">add</a> uint %X, %X <i>; yields {uint}:%0</i>
211 <a
212 href="#i_add">add</a> uint %0, %0 <i>; yields {uint}:%1</i>
213 %result = <a
214 href="#i_add">add</a> uint %1, %1<br></pre>
215<p>This last way of multiplying <tt>%X</tt> by 8 illustrates several
216important lexical features of LLVM:</p>
Chris Lattner00950542001-06-06 20:29:01 +0000217<ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000218 <li>Comments are delimited with a '<tt>;</tt>' and go until the end
219of line.</li>
220 <li>Unnamed temporaries are created when the result of a computation
221is not assigned to a named value.</li>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000222 <li>Unnamed temporaries are numbered sequentially</li>
223</ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000224<p>...and it also show a convention that we follow in this document.
225When demonstrating instructions, we will follow an instruction with a
226comment that defines the type and name of value produced. Comments are
227shown in italic text.</p>
228<p>The one non-intuitive notation for constants is the optional
229hexidecimal form of floating point constants. For example, the form '<tt>double
Chris Lattner2b7d3202002-05-06 03:03:22 +00002300x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double
Chris Lattner261efe92003-11-25 01:02:51 +00002314.5e+15</tt>' which is also supported by the parser. The only time
232hexadecimal floating point constants are useful (and the only time that
233they are generated by the disassembler) is when an FP constant has to
234be emitted that is not representable as a decimal floating point number
235exactly. For example, NaN's, infinities, and other special cases are
236represented in their IEEE hexadecimal format so that assembly and
237disassembly do not cause any bits to change in the constants.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000238</div>
Chris Lattner00950542001-06-06 20:29:01 +0000239<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000240<div class="doc_section"> <a name="typesystem">Type System</a> </div>
241<!-- *********************************************************************** -->
Misha Brukman9d0919f2003-11-08 01:05:38 +0000242<div class="doc_text">
Misha Brukman9d0919f2003-11-08 01:05:38 +0000243<p>The LLVM type system is one of the most important features of the
Chris Lattner261efe92003-11-25 01:02:51 +0000244intermediate representation. Being typed enables a number of
245optimizations to be performed on the IR directly, without having to do
246extra analyses on the side before the transformation. A strong type
247system makes it easier to read the generated code and enables novel
248analyses and transformations that are not feasible to perform on normal
249three address code representations.</p>
Chris Lattner7bae3952002-06-25 18:03:17 +0000250<!-- The written form for the type system was heavily influenced by the
251syntactic problems with types in the C language<sup><a
Chris Lattner261efe92003-11-25 01:02:51 +0000252href="#rw_stroustrup">1</a></sup>.<p> --> </div>
Chris Lattner00950542001-06-06 20:29:01 +0000253<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000254<div class="doc_subsection"> <a name="t_primitive">Primitive Types</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000255<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000256<p>The primitive types are the fundemental building blocks of the LLVM
257system. The current set of primitive types are as follows:</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000258<p>
259<table border="0" align="center">
Chris Lattner261efe92003-11-25 01:02:51 +0000260 <tbody>
261 <tr>
262 <td>
263 <table border="1" cellspacing="0" cellpadding="4" align="center">
264 <tbody>
265 <tr>
266 <td><tt>void</tt></td>
267 <td>No value</td>
268 </tr>
269 <tr>
270 <td><tt>ubyte</tt></td>
271 <td>Unsigned 8 bit value</td>
272 </tr>
273 <tr>
274 <td><tt>ushort</tt></td>
275 <td>Unsigned 16 bit value</td>
276 </tr>
277 <tr>
278 <td><tt>uint</tt></td>
279 <td>Unsigned 32 bit value</td>
280 </tr>
281 <tr>
282 <td><tt>ulong</tt></td>
283 <td>Unsigned 64 bit value</td>
284 </tr>
285 <tr>
286 <td><tt>float</tt></td>
287 <td>32 bit floating point value</td>
288 </tr>
289 <tr>
290 <td><tt>label</tt></td>
291 <td>Branch destination</td>
292 </tr>
293 </tbody>
294 </table>
295 </td>
296 <td valign="top">
297 <table border="1" cellspacing="0" cellpadding="4" align="center&quot;">
298 <tbody>
299 <tr>
300 <td><tt>bool</tt></td>
301 <td>True or False value</td>
302 </tr>
303 <tr>
304 <td><tt>sbyte</tt></td>
305 <td>Signed 8 bit value</td>
306 </tr>
307 <tr>
308 <td><tt>short</tt></td>
309 <td>Signed 16 bit value</td>
310 </tr>
311 <tr>
312 <td><tt>int</tt></td>
313 <td>Signed 32 bit value</td>
314 </tr>
315 <tr>
316 <td><tt>long</tt></td>
317 <td>Signed 64 bit value</td>
318 </tr>
319 <tr>
320 <td><tt>double</tt></td>
321 <td>64 bit floating point value</td>
322 </tr>
323 </tbody>
324 </table>
325 </td>
326 </tr>
327 </tbody>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000328</table>
329</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000330</div>
Chris Lattner00950542001-06-06 20:29:01 +0000331<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000332<div class="doc_subsubsection"> <a name="t_classifications">Type
333Classifications</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000334<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000335<p>These different primitive types fall into a few useful
336classifications:</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000337<p>
338<table border="1" cellspacing="0" cellpadding="4" align="center">
Chris Lattner261efe92003-11-25 01:02:51 +0000339 <tbody>
340 <tr>
341 <td><a name="t_signed">signed</a></td>
342 <td><tt>sbyte, short, int, long, float, double</tt></td>
343 </tr>
344 <tr>
345 <td><a name="t_unsigned">unsigned</a></td>
346 <td><tt>ubyte, ushort, uint, ulong</tt></td>
347 </tr>
348 <tr>
349 <td><a name="t_integer">integer</a></td>
350 <td><tt>ubyte, sbyte, ushort, short, uint, int, ulong, long</tt></td>
351 </tr>
352 <tr>
353 <td><a name="t_integral">integral</a></td>
354 <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long</tt></td>
355 </tr>
356 <tr>
357 <td><a name="t_floating">floating point</a></td>
358 <td><tt>float, double</tt></td>
359 </tr>
360 <tr>
361 <td><a name="t_firstclass">first class</a></td>
362 <td><tt>bool, ubyte, sbyte, ushort, short,<br>
363uint, int, ulong, long, float, double, <a href="#t_pointer">pointer</a></tt></td>
364 </tr>
365 </tbody>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000366</table>
367</p>
Chris Lattner261efe92003-11-25 01:02:51 +0000368<p>The <a href="#t_firstclass">first class</a> types are perhaps the
369most important. Values of these types are the only ones which can be
370produced by instructions, passed as arguments, or used as operands to
371instructions. This means that all structures and arrays must be
372manipulated either by pointer or by component.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000373</div>
Chris Lattner00950542001-06-06 20:29:01 +0000374<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000375<div class="doc_subsection"> <a name="t_derived">Derived Types</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000376<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000377<p>The real power in LLVM comes from the derived types in the system.
378This is what allows a programmer to represent arrays, functions,
379pointers, and other useful types. Note that these derived types may be
380recursive: For example, it is possible to have a two dimensional array.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000381</div>
Chris Lattner00950542001-06-06 20:29:01 +0000382<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000383<div class="doc_subsubsection"> <a name="t_array">Array Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000384<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000385<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000386<p>The array type is a very simple derived type that arranges elements
Chris Lattner261efe92003-11-25 01:02:51 +0000387sequentially in memory. The array type requires a size (number of
388elements) and an underlying data type.</p>
Chris Lattner7faa8832002-04-14 06:13:44 +0000389<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000390<pre> [&lt;# elements&gt; x &lt;elementtype&gt;]<br></pre>
391<p>The number of elements is a constant integer value, elementtype may
392be any type with a size.</p>
Chris Lattner7faa8832002-04-14 06:13:44 +0000393<h5>Examples:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000394<p> <tt>[40 x int ]</tt>: Array of 40 integer values.<br>
395<tt>[41 x int ]</tt>: Array of 41 integer values.<br>
396<tt>[40 x uint]</tt>: Array of 40 unsigned integer values.</p>
397<p> </p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000398<p>Here are some examples of multidimensional arrays:</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000399<p>
400<table border="0" cellpadding="0" cellspacing="0">
Chris Lattner261efe92003-11-25 01:02:51 +0000401 <tbody>
402 <tr>
403 <td><tt>[3 x [4 x int]]</tt></td>
404 <td>: 3x4 array integer values.</td>
405 </tr>
406 <tr>
407 <td><tt>[12 x [10 x float]]</tt></td>
408 <td>: 12x10 array of single precision floating point values.</td>
409 </tr>
410 <tr>
411 <td><tt>[2 x [3 x [4 x uint]]]</tt></td>
412 <td>: 2x3x4 array of unsigned integer values.</td>
413 </tr>
414 </tbody>
Chris Lattner00950542001-06-06 20:29:01 +0000415</table>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000416</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000417</div>
Chris Lattner00950542001-06-06 20:29:01 +0000418<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000419<div class="doc_subsubsection"> <a name="t_function">Function Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000420<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000421<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000422<p>The function type can be thought of as a function signature. It
423consists of a return type and a list of formal parameter types.
John Criswell009900b2003-11-25 21:45:46 +0000424Function types are usually used to build virtual function tables
Chris Lattner261efe92003-11-25 01:02:51 +0000425(which are structures of pointers to functions), for indirect function
426calls, and when defining a function.</p>
John Criswell009900b2003-11-25 21:45:46 +0000427<p>
428The return type of a function type cannot be an aggregate type.
429</p>
Chris Lattner00950542001-06-06 20:29:01 +0000430<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000431<pre> &lt;returntype&gt; (&lt;parameter list&gt;)<br></pre>
432<p>Where '<tt>&lt;parameter list&gt;</tt>' is a comma-separated list of
433type specifiers. Optionally, the parameter list may include a type <tt>...</tt>,
Chris Lattner27f71f22003-09-03 00:41:47 +0000434which indicates that the function takes a variable number of arguments.
435Variable argument functions can access their arguments with the <a
Chris Lattner261efe92003-11-25 01:02:51 +0000436 href="#int_varargs">variable argument handling intrinsic</a> functions.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000437<h5>Examples:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000438<p>
439<table border="0" cellpadding="0" cellspacing="0">
Chris Lattner261efe92003-11-25 01:02:51 +0000440 <tbody>
441 <tr>
442 <td><tt>int (int)</tt></td>
443 <td>: function taking an <tt>int</tt>, returning an <tt>int</tt></td>
444 </tr>
445 <tr>
446 <td><tt>float (int, int *) *</tt></td>
447 <td>: <a href="#t_pointer">Pointer</a> to a function that takes
448an <tt>int</tt> and a <a href="#t_pointer">pointer</a> to <tt>int</tt>,
449returning <tt>float</tt>.</td>
450 </tr>
451 <tr>
452 <td><tt>int (sbyte *, ...)</tt></td>
453 <td>: A vararg function that takes at least one <a
454 href="#t_pointer">pointer</a> to <tt>sbyte</tt> (signed char in C),
455which returns an integer. This is the signature for <tt>printf</tt>
456in LLVM.</td>
457 </tr>
458 </tbody>
Chris Lattner00950542001-06-06 20:29:01 +0000459</table>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000460</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000461</div>
Chris Lattner00950542001-06-06 20:29:01 +0000462<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000463<div class="doc_subsubsection"> <a name="t_struct">Structure Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000464<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000465<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000466<p>The structure type is used to represent a collection of data members
467together in memory. The packing of the field types is defined to match
468the ABI of the underlying processor. The elements of a structure may
469be any type that has a size.</p>
470<p>Structures are accessed using '<tt><a href="#i_load">load</a></tt>
471and '<tt><a href="#i_store">store</a></tt>' by getting a pointer to a
472field with the '<tt><a href="#i_getelementptr">getelementptr</a></tt>'
473instruction.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000474<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000475<pre> { &lt;type list&gt; }<br></pre>
Chris Lattner00950542001-06-06 20:29:01 +0000476<h5>Examples:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000477<p>
478<table border="0" cellpadding="0" cellspacing="0">
Chris Lattner261efe92003-11-25 01:02:51 +0000479 <tbody>
480 <tr>
481 <td><tt>{ int, int, int }</tt></td>
482 <td>: a triple of three <tt>int</tt> values</td>
483 </tr>
484 <tr>
485 <td><tt>{ float, int (int) * }</tt></td>
486 <td>: A pair, where the first element is a <tt>float</tt> and the
487second element is a <a href="#t_pointer">pointer</a> to a <a
488 href="t_function">function</a> that takes an <tt>int</tt>, returning
489an <tt>int</tt>.</td>
490 </tr>
491 </tbody>
Chris Lattner00950542001-06-06 20:29:01 +0000492</table>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000493</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000494</div>
Chris Lattner00950542001-06-06 20:29:01 +0000495<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000496<div class="doc_subsubsection"> <a name="t_pointer">Pointer Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000497<div class="doc_text">
Chris Lattner7faa8832002-04-14 06:13:44 +0000498<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000499<p>As in many languages, the pointer type represents a pointer or
500reference to another object, which must live in memory.</p>
Chris Lattner7faa8832002-04-14 06:13:44 +0000501<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000502<pre> &lt;type&gt; *<br></pre>
Chris Lattner7faa8832002-04-14 06:13:44 +0000503<h5>Examples:</h5>
Chris Lattner7faa8832002-04-14 06:13:44 +0000504<p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000505<table border="0" cellpadding="0" cellspacing="0">
Chris Lattner261efe92003-11-25 01:02:51 +0000506 <tbody>
507 <tr>
508 <td><tt>[4x int]*</tt></td>
509 <td>: <a href="#t_pointer">pointer</a> to <a href="#t_array">array</a>
510of four <tt>int</tt> values</td>
511 </tr>
512 <tr>
513 <td><tt>int (int *) *</tt></td>
514 <td>: A <a href="#t_pointer">pointer</a> to a <a
515 href="t_function">function</a> that takes an <tt>int</tt>, returning
516an <tt>int</tt>.</td>
517 </tr>
518 </tbody>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000519</table>
520</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000521</div>
Chris Lattner261efe92003-11-25 01:02:51 +0000522<!-- _______________________________________________________________________ --><!--
Misha Brukman9d0919f2003-11-08 01:05:38 +0000523<div class="doc_subsubsection">
524 <a name="t_packed">Packed Type</a>
525</div>
526
527<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000528
529Mention/decide that packed types work with saturation or not. Maybe have a packed+saturated type in addition to just a packed type.<p>
530
531Packed types should be 'nonsaturated' because standard data types are not saturated. Maybe have a saturated packed type?<p>
532
Misha Brukman9d0919f2003-11-08 01:05:38 +0000533</div>
534
Chris Lattner261efe92003-11-25 01:02:51 +0000535--><!-- *********************************************************************** -->
536<div class="doc_section"> <a name="highlevel">High Level Structure</a> </div>
537<!-- *********************************************************************** --><!-- ======================================================================= -->
538<div class="doc_subsection"> <a name="modulestructure">Module Structure</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000539<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000540<p>LLVM programs are composed of "Module"s, each of which is a
541translation unit of the input programs. Each module consists of
542functions, global variables, and symbol table entries. Modules may be
543combined together with the LLVM linker, which merges function (and
544global variable) definitions, resolves forward declarations, and merges
545symbol table entries. Here is an example of the "hello world" module:</p>
546<pre><i>; Declare the string constant as a global constant...</i>
547<a href="#identifiers">%.LC0</a> = <a href="#linkage_internal">internal</a> <a
548 href="#globalvars">constant</a> <a href="#t_array">[13 x sbyte]</a> c"hello world\0A\00" <i>; [13 x sbyte]*</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +0000549
Chris Lattner27f71f22003-09-03 00:41:47 +0000550<i>; External declaration of the puts function</i>
551<a href="#functionstructure">declare</a> int %puts(sbyte*) <i>; int(sbyte*)* </i>
Chris Lattner2b7d3202002-05-06 03:03:22 +0000552
553<i>; Definition of main function</i>
Chris Lattner27f71f22003-09-03 00:41:47 +0000554int %main() { <i>; int()* </i>
Chris Lattner2b7d3202002-05-06 03:03:22 +0000555 <i>; Convert [13x sbyte]* to sbyte *...</i>
Chris Lattner261efe92003-11-25 01:02:51 +0000556 %cast210 = <a
557 href="#i_getelementptr">getelementptr</a> [13 x sbyte]* %.LC0, long 0, long 0 <i>; sbyte*</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +0000558
559 <i>; Call puts function to write out the string to stdout...</i>
Chris Lattner261efe92003-11-25 01:02:51 +0000560 <a
561 href="#i_call">call</a> int %puts(sbyte* %cast210) <i>; int</i>
562 <a
563 href="#i_ret">ret</a> int 0<br>}<br></pre>
564<p>This example is made up of a <a href="#globalvars">global variable</a>
565named "<tt>.LC0</tt>", an external declaration of the "<tt>puts</tt>"
566function, and a <a href="#functionstructure">function definition</a>
567for "<tt>main</tt>".</p>
568<a name="linkage"> In general, a module is made up of a list of global
569values, where both functions and global variables are global values.
570Global values are represented by a pointer to a memory location (in
571this case, a pointer to an array of char, and a pointer to a function),
572and have one of the following linkage types:</a>
573<p> </p>
Chris Lattner27f71f22003-09-03 00:41:47 +0000574<dl>
Chris Lattner261efe92003-11-25 01:02:51 +0000575 <a name="linkage_internal"> <dt><tt><b>internal</b></tt> </dt>
576 <dd>Global values with internal linkage are only directly accessible
577by objects in the current module. In particular, linking code into a
578module with an internal global value may cause the internal to be
579renamed as necessary to avoid collisions. Because the symbol is
580internal to the module, all references can be updated. This
581corresponds to the notion of the '<tt>static</tt>' keyword in C, or the
582idea of "anonymous namespaces" in C++.
583 <p> </p>
584 </dd>
585 </a><a name="linkage_linkonce"> <dt><tt><b>linkonce</b></tt>: </dt>
586 <dd>"<tt>linkonce</tt>" linkage is similar to <tt>internal</tt>
587linkage, with the twist that linking together two modules defining the
588same <tt>linkonce</tt> globals will cause one of the globals to be
589discarded. This is typically used to implement inline functions.
590Unreferenced <tt>linkonce</tt> globals are allowed to be discarded.
591 <p> </p>
592 </dd>
593 </a><a name="linkage_weak"> <dt><tt><b>weak</b></tt>: </dt>
594 <dd>"<tt>weak</tt>" linkage is exactly the same as <tt>linkonce</tt>
595linkage, except that unreferenced <tt>weak</tt> globals may not be
596discarded. This is used to implement constructs in C such as "<tt>int
597X;</tt>" at global scope.
598 <p> </p>
599 </dd>
600 </a><a name="linkage_appending"> <dt><tt><b>appending</b></tt>: </dt>
601 <dd>"<tt>appending</tt>" linkage may only be applied to global
602variables of pointer to array type. When two global variables with
603appending linkage are linked together, the two global arrays are
604appended together. This is the LLVM, typesafe, equivalent of having
605the system linker append together "sections" with identical names when
606.o files are linked.
607 <p> </p>
608 </dd>
609 </a><a name="linkage_external"> <dt><tt><b>externally visible</b></tt>:</dt>
610 <dd>If none of the above identifiers are used, the global is
611externally visible, meaning that it participates in linkage and can be
612used to resolve external symbol references.
613 <p> </p>
614 </dd>
615 </a>
616</dl>
617<p> </p>
618<p><a name="linkage_external">For example, since the "<tt>.LC0</tt>"
619variable is defined to be internal, if another module defined a "<tt>.LC0</tt>"
620variable and was linked with this one, one of the two would be renamed,
621preventing a collision. Since "<tt>main</tt>" and "<tt>puts</tt>" are
622external (i.e., lacking any linkage declarations), they are accessible
623outside of the current module. It is illegal for a function <i>declaration</i>
624to have any linkage type other than "externally visible".</a></p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000625</div>
Chris Lattner00950542001-06-06 20:29:01 +0000626<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000627<div class="doc_subsection"> <a name="globalvars">Global Variables</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000628<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000629<p>Global variables define regions of memory allocated at compilation
630time instead of run-time. Global variables may optionally be
631initialized. A variable may be defined as a global "constant", which
632indicates that the contents of the variable will never be modified
633(opening options for optimization). Constants must always have an
634initial value.</p>
635<p>As SSA values, global variables define pointer values that are in
636scope (i.e. they dominate) for all basic blocks in the program. Global
637variables always define a pointer to their "content" type because they
638describe a region of memory, and all memory objects in LLVM are
639accessed through pointers.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000640</div>
Chris Lattner2b7d3202002-05-06 03:03:22 +0000641<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000642<div class="doc_subsection"> <a name="functionstructure">Functions</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000643<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000644<p>LLVM function definitions are composed of a (possibly empty)
645argument list, an opening curly brace, a list of basic blocks, and a
646closing curly brace. LLVM function declarations are defined with the "<tt>declare</tt>"
647keyword, a function name, and a function signature.</p>
648<p>A function definition contains a list of basic blocks, forming the
649CFG for the function. Each basic block may optionally start with a
650label (giving the basic block a symbol table entry), contains a list of
651instructions, and ends with a <a href="#terminators">terminator</a>
652instruction (such as a branch or function return).</p>
653<p>The first basic block in program is special in two ways: it is
654immediately executed on entrance to the function, and it is not allowed
655to have predecessor basic blocks (i.e. there can not be any branches to
656the entry block of a function). Because the block can have no
657predecessors, it also cannot have any <a href="#i_phi">PHI nodes</a>.</p>
John Criswell009900b2003-11-25 21:45:46 +0000658<p>
659LLVM functions are identified by their name and type signature. Hence, two
660functions with the same name but different parameter lists or return values
661are considered different functions, and LLVM will resolves references to each
662appropriately.
663</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000664</div>
Chris Lattner00950542001-06-06 20:29:01 +0000665<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000666<div class="doc_section"> <a name="instref">Instruction Reference</a> </div>
667<!-- *********************************************************************** -->
Misha Brukman9d0919f2003-11-08 01:05:38 +0000668<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000669<p>The LLVM instruction set consists of several different
670classifications of instructions: <a href="#terminators">terminator
671instructions</a>, <a href="#binaryops">binary instructions</a>, <a
672 href="#memoryops">memory instructions</a>, and <a href="#otherops">other
673instructions</a>.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000674</div>
Chris Lattner00950542001-06-06 20:29:01 +0000675<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000676<div class="doc_subsection"> <a name="terminators">Terminator
677Instructions</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000678<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000679<p>As mentioned <a href="#functionstructure">previously</a>, every
680basic block in a program ends with a "Terminator" instruction, which
681indicates which block should be executed after the current block is
682finished. These terminator instructions typically yield a '<tt>void</tt>'
683value: they produce control flow, not values (the one exception being
684the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction).</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000685<p>There are five different terminator instructions: the '<a
Chris Lattner261efe92003-11-25 01:02:51 +0000686 href="#i_ret"><tt>ret</tt></a>' instruction, the '<a href="#i_br"><tt>br</tt></a>'
687instruction, the '<a href="#i_switch"><tt>switch</tt></a>' instruction,
688the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction, and the '<a
689 href="#i_unwind"><tt>unwind</tt></a>' instruction.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000690</div>
Chris Lattner00950542001-06-06 20:29:01 +0000691<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000692<div class="doc_subsubsection"> <a name="i_ret">'<tt>ret</tt>'
693Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000694<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000695<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000696<pre> ret &lt;type&gt; &lt;value&gt; <i>; Return a value from a non-void function</i>
Chris Lattner7faa8832002-04-14 06:13:44 +0000697 ret void <i>; Return from void function</i>
Chris Lattner00950542001-06-06 20:29:01 +0000698</pre>
Chris Lattner00950542001-06-06 20:29:01 +0000699<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000700<p>The '<tt>ret</tt>' instruction is used to return control flow (and a
701value) from a function, back to the caller.</p>
702<p>There are two forms of the '<tt>ret</tt>' instructruction: one that
703returns a value and then causes control flow, and one that just causes
704control flow to occur.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000705<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000706<p>The '<tt>ret</tt>' instruction may return any '<a
707 href="#t_firstclass">first class</a>' type. Notice that a function is
708not <a href="#wellformed">well formed</a> if there exists a '<tt>ret</tt>'
709instruction inside of the function that returns a value that does not
710match the return type of the function.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000711<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000712<p>When the '<tt>ret</tt>' instruction is executed, control flow
713returns back to the calling function's context. If the caller is a "<a
714 href="#i_call"><tt>call</tt></a> instruction, execution continues at
715the instruction after the call. If the caller was an "<a
716 href="#i_invoke"><tt>invoke</tt></a>" instruction, execution continues
717at the beginning "normal" of the destination block. If the instruction
718returns a value, that value shall set the call or invoke instruction's
719return value.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000720<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000721<pre> ret int 5 <i>; Return an integer value of 5</i>
Chris Lattner7faa8832002-04-14 06:13:44 +0000722 ret void <i>; Return from a void function</i>
Chris Lattner00950542001-06-06 20:29:01 +0000723</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000724</div>
Chris Lattner00950542001-06-06 20:29:01 +0000725<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000726<div class="doc_subsubsection"> <a name="i_br">'<tt>br</tt>' Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000727<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000728<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000729<pre> br bool &lt;cond&gt;, label &lt;iftrue&gt;, label &lt;iffalse&gt;<br> br label &lt;dest&gt; <i>; Unconditional branch</i>
Chris Lattner00950542001-06-06 20:29:01 +0000730</pre>
Chris Lattner00950542001-06-06 20:29:01 +0000731<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000732<p>The '<tt>br</tt>' instruction is used to cause control flow to
733transfer to a different basic block in the current function. There are
734two forms of this instruction, corresponding to a conditional branch
735and an unconditional branch.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000736<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000737<p>The conditional branch form of the '<tt>br</tt>' instruction takes a
738single '<tt>bool</tt>' value and two '<tt>label</tt>' values. The
739unconditional form of the '<tt>br</tt>' instruction takes a single '<tt>label</tt>'
740value as a target.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000741<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000742<p>Upon execution of a conditional '<tt>br</tt>' instruction, the '<tt>bool</tt>'
743argument is evaluated. If the value is <tt>true</tt>, control flows
744to the '<tt>iftrue</tt>' <tt>label</tt> argument. If "cond" is <tt>false</tt>,
745control flows to the '<tt>iffalse</tt>' <tt>label</tt> argument.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000746<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000747<pre>Test:<br> %cond = <a href="#i_setcc">seteq</a> int %a, %b<br> br bool %cond, label %IfEqual, label %IfUnequal<br>IfEqual:<br> <a
748 href="#i_ret">ret</a> int 1<br>IfUnequal:<br> <a href="#i_ret">ret</a> int 0<br></pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000749</div>
Chris Lattner00950542001-06-06 20:29:01 +0000750<!-- _______________________________________________________________________ -->
Chris Lattnerc88c17b2004-02-24 04:54:45 +0000751<div class="doc_subsubsection">
752 <a name="i_switch">'<tt>switch</tt>' Instruction</a>
753</div>
754
Misha Brukman9d0919f2003-11-08 01:05:38 +0000755<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000756<h5>Syntax:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +0000757
758<pre>
759 switch &lt;intty&gt; &lt;value&gt;, label &lt;defaultdest&gt; [ &lt;intty&gt; &lt;val&gt;, label &lt;dest&gt; ... ]
760</pre>
761
Chris Lattner00950542001-06-06 20:29:01 +0000762<h5>Overview:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +0000763
764<p>The '<tt>switch</tt>' instruction is used to transfer control flow to one of
765several different places. It is a generalization of the '<tt>br</tt>'
Misha Brukman9d0919f2003-11-08 01:05:38 +0000766instruction, allowing a branch to occur to one of many possible
767destinations.</p>
Chris Lattnerc88c17b2004-02-24 04:54:45 +0000768
769
Chris Lattner00950542001-06-06 20:29:01 +0000770<h5>Arguments:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +0000771
772<p>The '<tt>switch</tt>' instruction uses three parameters: an integer
773comparison value '<tt>value</tt>', a default '<tt>label</tt>' destination, and
774an array of pairs of comparison value constants and '<tt>label</tt>'s. The
775table is not allowed to contain duplicate constant entries.</p>
776
Chris Lattner00950542001-06-06 20:29:01 +0000777<h5>Semantics:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +0000778
Chris Lattner261efe92003-11-25 01:02:51 +0000779<p>The <tt>switch</tt> instruction specifies a table of values and
780destinations. When the '<tt>switch</tt>' instruction is executed, this
781table is searched for the given value. If the value is found, the
782corresponding destination is branched to, otherwise the default value
783it transfered to.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000784
Chris Lattnerc88c17b2004-02-24 04:54:45 +0000785<h5>Implementation:</h5>
786
787<p>Depending on properties of the target machine and the particular
788<tt>switch</tt> instruction, this instruction may be code generated in different
789ways, for example as a series of chained conditional branches, or with a lookup
790table.</p>
791
792<h5>Example:</h5>
793
794<pre>
795 <i>; Emulate a conditional br instruction</i>
796 %Val = <a href="#i_cast">cast</a> bool %value to int
797 switch int %Val, label %truedest [int 0, label %falsedest ]
798
799 <i>; Emulate an unconditional br instruction</i>
800 switch uint 0, label %dest [ ]
801
802 <i>; Implement a jump table:</i>
803 switch uint %val, label %otherwise [ uint 0, label %onzero
804 uint 1, label %onone
805 uint 2, label %ontwo ]
Chris Lattner00950542001-06-06 20:29:01 +0000806</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000807</div>
Chris Lattner00950542001-06-06 20:29:01 +0000808<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000809<div class="doc_subsubsection"> <a name="i_invoke">'<tt>invoke</tt>'
810Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000811<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000812<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000813<pre> &lt;result&gt; = invoke &lt;ptr to function ty&gt; %&lt;function ptr val&gt;(&lt;function args&gt;)<br> to label &lt;normal label&gt; except label &lt;exception label&gt;<br></pre>
Chris Lattner6536cfe2002-05-06 22:08:29 +0000814<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000815<p>The '<tt>invoke</tt>' instruction causes control to transfer to a
816specified function, with the possibility of control flow transfer to
817either the '<tt>normal</tt>' <tt>label</tt> label or the '<tt>exception</tt>'<tt>label</tt>.
818If the callee function returns with the "<tt><a href="#i_ret">ret</a></tt>"
819instruction, control flow will return to the "normal" label. If the
820callee (or any indirect callees) returns with the "<a href="#i_unwind"><tt>unwind</tt></a>"
821instruction, control is interrupted, and continued at the dynamically
822nearest "except" label.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000823<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000824<p>This instruction requires several arguments:</p>
Chris Lattner00950542001-06-06 20:29:01 +0000825<ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000826 <li>'<tt>ptr to function ty</tt>': shall be the signature of the
827pointer to function value being invoked. In most cases, this is a
828direct function invocation, but indirect <tt>invoke</tt>s are just as
829possible, branching off an arbitrary pointer to function value. </li>
830 <li>'<tt>function ptr val</tt>': An LLVM value containing a pointer
831to a function to be invoked. </li>
832 <li>'<tt>function args</tt>': argument list whose types match the
833function signature argument types. If the function signature indicates
834the function accepts a variable number of arguments, the extra
835arguments can be specified. </li>
836 <li>'<tt>normal label</tt>': the label reached when the called
837function executes a '<tt><a href="#i_ret">ret</a></tt>' instruction. </li>
838 <li>'<tt>exception label</tt>': the label reached when a callee
839returns with the <a href="#i_unwind"><tt>unwind</tt></a> instruction. </li>
Chris Lattner00950542001-06-06 20:29:01 +0000840</ol>
Chris Lattner00950542001-06-06 20:29:01 +0000841<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000842<p>This instruction is designed to operate as a standard '<tt><a
Chris Lattner261efe92003-11-25 01:02:51 +0000843 href="#i_call">call</a></tt>' instruction in most regards. The
844primary difference is that it establishes an association with a label,
845which is used by the runtime library to unwind the stack.</p>
846<p>This instruction is used in languages with destructors to ensure
847that proper cleanup is performed in the case of either a <tt>longjmp</tt>
848or a thrown exception. Additionally, this is important for
849implementation of '<tt>catch</tt>' clauses in high-level languages that
850support them.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000851<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000852<pre> %retval = invoke int %Test(int 15)<br> to label %Continue<br> except label %TestCleanup <i>; {int}:retval set</i>
Chris Lattner00950542001-06-06 20:29:01 +0000853</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000854</div>
Chris Lattner27f71f22003-09-03 00:41:47 +0000855<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000856<div class="doc_subsubsection"> <a name="i_unwind">'<tt>unwind</tt>'
857Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000858<div class="doc_text">
Chris Lattner27f71f22003-09-03 00:41:47 +0000859<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000860<pre> unwind<br></pre>
Chris Lattner27f71f22003-09-03 00:41:47 +0000861<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000862<p>The '<tt>unwind</tt>' instruction unwinds the stack, continuing
863control flow at the first callee in the dynamic call stack which used
864an <a href="#i_invoke"><tt>invoke</tt></a> instruction to perform the
865call. This is primarily used to implement exception handling.</p>
Chris Lattner27f71f22003-09-03 00:41:47 +0000866<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000867<p>The '<tt>unwind</tt>' intrinsic causes execution of the current
868function to immediately halt. The dynamic call stack is then searched
869for the first <a href="#i_invoke"><tt>invoke</tt></a> instruction on
870the call stack. Once found, execution continues at the "exceptional"
871destination block specified by the <tt>invoke</tt> instruction. If
872there is no <tt>invoke</tt> instruction in the dynamic call chain,
873undefined behavior results.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000874</div>
Chris Lattner00950542001-06-06 20:29:01 +0000875<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000876<div class="doc_subsection"> <a name="binaryops">Binary Operations</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000877<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000878<p>Binary operators are used to do most of the computation in a
879program. They require two operands, execute an operation on them, and
880produce a single value. The result value of a binary operator is not
881necessarily the same type as its operands.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000882<p>There are several different binary operators:</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000883</div>
Chris Lattner00950542001-06-06 20:29:01 +0000884<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000885<div class="doc_subsubsection"> <a name="i_add">'<tt>add</tt>'
886Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000887<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000888<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000889<pre> &lt;result&gt; = add &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +0000890</pre>
Chris Lattner00950542001-06-06 20:29:01 +0000891<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000892<p>The '<tt>add</tt>' instruction returns the sum of its two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000893<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000894<p>The two arguments to the '<tt>add</tt>' instruction must be either <a
Chris Lattner261efe92003-11-25 01:02:51 +0000895 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
896values. Both arguments must have identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000897<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000898<p>The value produced is the integer or floating point sum of the two
899operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000900<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000901<pre> &lt;result&gt; = add int 4, %var <i>; yields {int}:result = 4 + %var</i>
Chris Lattner00950542001-06-06 20:29:01 +0000902</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000903</div>
Chris Lattner00950542001-06-06 20:29:01 +0000904<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000905<div class="doc_subsubsection"> <a name="i_sub">'<tt>sub</tt>'
906Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000907<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000908<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000909<pre> &lt;result&gt; = sub &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +0000910</pre>
Chris Lattner00950542001-06-06 20:29:01 +0000911<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000912<p>The '<tt>sub</tt>' instruction returns the difference of its two
913operands.</p>
Chris Lattner261efe92003-11-25 01:02:51 +0000914<p>Note that the '<tt>sub</tt>' instruction is used to represent the '<tt>neg</tt>'
915instruction present in most other intermediate representations.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000916<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000917<p>The two arguments to the '<tt>sub</tt>' instruction must be either <a
Chris Lattner261efe92003-11-25 01:02:51 +0000918 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
919values. Both arguments must have identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000920<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000921<p>The value produced is the integer or floating point difference of
922the two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000923<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000924<pre> &lt;result&gt; = sub int 4, %var <i>; yields {int}:result = 4 - %var</i>
Chris Lattner00950542001-06-06 20:29:01 +0000925 &lt;result&gt; = sub int 0, %val <i>; yields {int}:result = -%var</i>
926</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000927</div>
Chris Lattner00950542001-06-06 20:29:01 +0000928<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000929<div class="doc_subsubsection"> <a name="i_mul">'<tt>mul</tt>'
930Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000931<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000932<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000933<pre> &lt;result&gt; = mul &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +0000934</pre>
Chris Lattner00950542001-06-06 20:29:01 +0000935<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000936<p>The '<tt>mul</tt>' instruction returns the product of its two
937operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000938<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000939<p>The two arguments to the '<tt>mul</tt>' instruction must be either <a
Chris Lattner261efe92003-11-25 01:02:51 +0000940 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
941values. Both arguments must have identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000942<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000943<p>The value produced is the integer or floating point product of the
Misha Brukman9d0919f2003-11-08 01:05:38 +0000944two operands.</p>
Chris Lattner261efe92003-11-25 01:02:51 +0000945<p>There is no signed vs unsigned multiplication. The appropriate
946action is taken based on the type of the operand.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000947<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000948<pre> &lt;result&gt; = mul int 4, %var <i>; yields {int}:result = 4 * %var</i>
Chris Lattner00950542001-06-06 20:29:01 +0000949</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000950</div>
Chris Lattner00950542001-06-06 20:29:01 +0000951<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000952<div class="doc_subsubsection"> <a name="i_div">'<tt>div</tt>'
953Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000954<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000955<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000956<pre> &lt;result&gt; = div &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
957</pre>
958<h5>Overview:</h5>
959<p>The '<tt>div</tt>' instruction returns the quotient of its two
960operands.</p>
961<h5>Arguments:</h5>
962<p>The two arguments to the '<tt>div</tt>' instruction must be either <a
963 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
964values. Both arguments must have identical types.</p>
965<h5>Semantics:</h5>
966<p>The value produced is the integer or floating point quotient of the
967two operands.</p>
968<h5>Example:</h5>
969<pre> &lt;result&gt; = div int 4, %var <i>; yields {int}:result = 4 / %var</i>
970</pre>
971</div>
972<!-- _______________________________________________________________________ -->
973<div class="doc_subsubsection"> <a name="i_rem">'<tt>rem</tt>'
974Instruction</a> </div>
975<div class="doc_text">
976<h5>Syntax:</h5>
977<pre> &lt;result&gt; = rem &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
978</pre>
979<h5>Overview:</h5>
980<p>The '<tt>rem</tt>' instruction returns the remainder from the
981division of its two operands.</p>
982<h5>Arguments:</h5>
983<p>The two arguments to the '<tt>rem</tt>' instruction must be either <a
984 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
985values. Both arguments must have identical types.</p>
986<h5>Semantics:</h5>
987<p>This returns the <i>remainder</i> of a division (where the result
988has the same sign as the divisor), not the <i>modulus</i> (where the
989result has the same sign as the dividend) of a value. For more
990information about the difference, see: <a
991 href="http://mathforum.org/dr.math/problems/anne.4.28.99.html">The
992Math Forum</a>.</p>
993<h5>Example:</h5>
994<pre> &lt;result&gt; = rem int 4, %var <i>; yields {int}:result = 4 % %var</i>
995</pre>
996</div>
997<!-- _______________________________________________________________________ -->
998<div class="doc_subsubsection"> <a name="i_setcc">'<tt>set<i>cc</i></tt>'
999Instructions</a> </div>
1000<div class="doc_text">
1001<h5>Syntax:</h5>
1002<pre> &lt;result&gt; = seteq &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001003 &lt;result&gt; = setne &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1004 &lt;result&gt; = setlt &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1005 &lt;result&gt; = setgt &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1006 &lt;result&gt; = setle &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1007 &lt;result&gt; = setge &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1008</pre>
Chris Lattner261efe92003-11-25 01:02:51 +00001009<h5>Overview:</h5>
1010<p>The '<tt>set<i>cc</i></tt>' family of instructions returns a boolean
1011value based on a comparison of their two operands.</p>
1012<h5>Arguments:</h5>
1013<p>The two arguments to the '<tt>set<i>cc</i></tt>' instructions must
1014be of <a href="#t_firstclass">first class</a> type (it is not possible
1015to compare '<tt>label</tt>'s, '<tt>array</tt>'s, '<tt>structure</tt>'
1016or '<tt>void</tt>' values, etc...). Both arguments must have identical
1017types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001018<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001019<p>The '<tt>seteq</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1020value if both operands are equal.<br>
1021The '<tt>setne</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1022value if both operands are unequal.<br>
1023The '<tt>setlt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1024value if the first operand is less than the second operand.<br>
1025The '<tt>setgt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1026value if the first operand is greater than the second operand.<br>
1027The '<tt>setle</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1028value if the first operand is less than or equal to the second operand.<br>
1029The '<tt>setge</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1030value if the first operand is greater than or equal to the second
1031operand.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001032<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001033<pre> &lt;result&gt; = seteq int 4, 5 <i>; yields {bool}:result = false</i>
Chris Lattner00950542001-06-06 20:29:01 +00001034 &lt;result&gt; = setne float 4, 5 <i>; yields {bool}:result = true</i>
1035 &lt;result&gt; = setlt uint 4, 5 <i>; yields {bool}:result = true</i>
1036 &lt;result&gt; = setgt sbyte 4, 5 <i>; yields {bool}:result = false</i>
1037 &lt;result&gt; = setle sbyte 4, 5 <i>; yields {bool}:result = true</i>
1038 &lt;result&gt; = setge sbyte 4, 5 <i>; yields {bool}:result = false</i>
1039</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001040</div>
Chris Lattner00950542001-06-06 20:29:01 +00001041<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +00001042<div class="doc_subsection"> <a name="bitwiseops">Bitwise Binary
1043Operations</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001044<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +00001045<p>Bitwise binary operators are used to do various forms of
1046bit-twiddling in a program. They are generally very efficient
1047instructions, and can commonly be strength reduced from other
1048instructions. They require two operands, execute an operation on them,
1049and produce a single value. The resulting value of the bitwise binary
1050operators is always the same type as its first operand.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001051</div>
Chris Lattner00950542001-06-06 20:29:01 +00001052<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001053<div class="doc_subsubsection"> <a name="i_and">'<tt>and</tt>'
1054Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001055<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001056<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001057<pre> &lt;result&gt; = and &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001058</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001059<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001060<p>The '<tt>and</tt>' instruction returns the bitwise logical and of
1061its two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001062<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001063<p>The two arguments to the '<tt>and</tt>' instruction must be <a
Chris Lattner261efe92003-11-25 01:02:51 +00001064 href="#t_integral">integral</a> values. Both arguments must have
1065identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001066<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001067<p>The truth table used for the '<tt>and</tt>' instruction is:</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001068<p> </p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001069<center>
1070<table border="1" cellspacing="0" cellpadding="4">
Chris Lattner261efe92003-11-25 01:02:51 +00001071 <tbody>
1072 <tr>
1073 <td>In0</td>
1074 <td>In1</td>
1075 <td>Out</td>
1076 </tr>
1077 <tr>
1078 <td>0</td>
1079 <td>0</td>
1080 <td>0</td>
1081 </tr>
1082 <tr>
1083 <td>0</td>
1084 <td>1</td>
1085 <td>0</td>
1086 </tr>
1087 <tr>
1088 <td>1</td>
1089 <td>0</td>
1090 <td>0</td>
1091 </tr>
1092 <tr>
1093 <td>1</td>
1094 <td>1</td>
1095 <td>1</td>
1096 </tr>
1097 </tbody>
1098</table>
1099</center>
Chris Lattner00950542001-06-06 20:29:01 +00001100<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001101<pre> &lt;result&gt; = and int 4, %var <i>; yields {int}:result = 4 &amp; %var</i>
Chris Lattner00950542001-06-06 20:29:01 +00001102 &lt;result&gt; = and int 15, 40 <i>; yields {int}:result = 8</i>
1103 &lt;result&gt; = and int 4, 8 <i>; yields {int}:result = 0</i>
1104</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001105</div>
Chris Lattner00950542001-06-06 20:29:01 +00001106<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001107<div class="doc_subsubsection"> <a name="i_or">'<tt>or</tt>' Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001108<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001109<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001110<pre> &lt;result&gt; = or &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001111</pre>
Chris Lattner261efe92003-11-25 01:02:51 +00001112<h5>Overview:</h5>
1113<p>The '<tt>or</tt>' instruction returns the bitwise logical inclusive
1114or of its two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001115<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001116<p>The two arguments to the '<tt>or</tt>' instruction must be <a
Chris Lattner261efe92003-11-25 01:02:51 +00001117 href="#t_integral">integral</a> values. Both arguments must have
1118identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001119<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001120<p>The truth table used for the '<tt>or</tt>' instruction is:</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001121<p> </p>
1122<center>
1123<table border="1" cellspacing="0" cellpadding="4">
1124 <tbody>
1125 <tr>
1126 <td>In0</td>
1127 <td>In1</td>
1128 <td>Out</td>
1129 </tr>
1130 <tr>
1131 <td>0</td>
1132 <td>0</td>
1133 <td>0</td>
1134 </tr>
1135 <tr>
1136 <td>0</td>
1137 <td>1</td>
1138 <td>1</td>
1139 </tr>
1140 <tr>
1141 <td>1</td>
1142 <td>0</td>
1143 <td>1</td>
1144 </tr>
1145 <tr>
1146 <td>1</td>
1147 <td>1</td>
1148 <td>1</td>
1149 </tr>
1150 </tbody>
1151</table>
1152</center>
Chris Lattner00950542001-06-06 20:29:01 +00001153<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001154<pre> &lt;result&gt; = or int 4, %var <i>; yields {int}:result = 4 | %var</i>
Chris Lattner00950542001-06-06 20:29:01 +00001155 &lt;result&gt; = or int 15, 40 <i>; yields {int}:result = 47</i>
1156 &lt;result&gt; = or int 4, 8 <i>; yields {int}:result = 12</i>
1157</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001158</div>
Chris Lattner00950542001-06-06 20:29:01 +00001159<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001160<div class="doc_subsubsection"> <a name="i_xor">'<tt>xor</tt>'
1161Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001162<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001163<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001164<pre> &lt;result&gt; = xor &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001165</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001166<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001167<p>The '<tt>xor</tt>' instruction returns the bitwise logical exclusive
1168or of its two operands. The <tt>xor</tt> is used to implement the
1169"one's complement" operation, which is the "~" operator in C.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001170<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001171<p>The two arguments to the '<tt>xor</tt>' instruction must be <a
Chris Lattner261efe92003-11-25 01:02:51 +00001172 href="#t_integral">integral</a> values. Both arguments must have
1173identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001174<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001175<p>The truth table used for the '<tt>xor</tt>' instruction is:</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001176<p> </p>
1177<center>
1178<table border="1" cellspacing="0" cellpadding="4">
1179 <tbody>
1180 <tr>
1181 <td>In0</td>
1182 <td>In1</td>
1183 <td>Out</td>
1184 </tr>
1185 <tr>
1186 <td>0</td>
1187 <td>0</td>
1188 <td>0</td>
1189 </tr>
1190 <tr>
1191 <td>0</td>
1192 <td>1</td>
1193 <td>1</td>
1194 </tr>
1195 <tr>
1196 <td>1</td>
1197 <td>0</td>
1198 <td>1</td>
1199 </tr>
1200 <tr>
1201 <td>1</td>
1202 <td>1</td>
1203 <td>0</td>
1204 </tr>
1205 </tbody>
1206</table>
1207</center>
1208<p> </p>
Chris Lattner00950542001-06-06 20:29:01 +00001209<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001210<pre> &lt;result&gt; = xor int 4, %var <i>; yields {int}:result = 4 ^ %var</i>
Chris Lattner00950542001-06-06 20:29:01 +00001211 &lt;result&gt; = xor int 15, 40 <i>; yields {int}:result = 39</i>
1212 &lt;result&gt; = xor int 4, 8 <i>; yields {int}:result = 12</i>
Chris Lattner27f71f22003-09-03 00:41:47 +00001213 &lt;result&gt; = xor int %V, -1 <i>; yields {int}:result = ~%V</i>
Chris Lattner00950542001-06-06 20:29:01 +00001214</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001215</div>
Chris Lattner00950542001-06-06 20:29:01 +00001216<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001217<div class="doc_subsubsection"> <a name="i_shl">'<tt>shl</tt>'
1218Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001219<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001220<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001221<pre> &lt;result&gt; = shl &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001222</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001223<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001224<p>The '<tt>shl</tt>' instruction returns the first operand shifted to
1225the left a specified number of bits.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001226<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001227<p>The first argument to the '<tt>shl</tt>' instruction must be an <a
Chris Lattner261efe92003-11-25 01:02:51 +00001228 href="#t_integer">integer</a> type. The second argument must be an '<tt>ubyte</tt>'
1229type.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001230<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001231<p>The value produced is <tt>var1</tt> * 2<sup><tt>var2</tt></sup>.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001232<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001233<pre> &lt;result&gt; = shl int 4, ubyte %var <i>; yields {int}:result = 4 &lt;&lt; %var</i>
Chris Lattner00950542001-06-06 20:29:01 +00001234 &lt;result&gt; = shl int 4, ubyte 2 <i>; yields {int}:result = 16</i>
1235 &lt;result&gt; = shl int 1, ubyte 10 <i>; yields {int}:result = 1024</i>
1236</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001237</div>
Chris Lattner00950542001-06-06 20:29:01 +00001238<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001239<div class="doc_subsubsection"> <a name="i_shr">'<tt>shr</tt>'
1240Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001241<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001242<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001243<pre> &lt;result&gt; = shr &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001244</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001245<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001246<p>The '<tt>shr</tt>' instruction returns the first operand shifted to
1247the right a specified number of bits.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001248<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001249<p>The first argument to the '<tt>shr</tt>' instruction must be an <a
Chris Lattner261efe92003-11-25 01:02:51 +00001250 href="#t_integer">integer</a> type. The second argument must be an '<tt>ubyte</tt>'
1251type.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001252<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001253<p>If the first argument is a <a href="#t_signed">signed</a> type, the
1254most significant bit is duplicated in the newly free'd bit positions.
1255If the first argument is unsigned, zero bits shall fill the empty
1256positions.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001257<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001258<pre> &lt;result&gt; = shr int 4, ubyte %var <i>; yields {int}:result = 4 &gt;&gt; %var</i>
Chris Lattner8c6bb902003-06-18 21:30:51 +00001259 &lt;result&gt; = shr uint 4, ubyte 1 <i>; yields {uint}:result = 2</i>
Chris Lattner00950542001-06-06 20:29:01 +00001260 &lt;result&gt; = shr int 4, ubyte 2 <i>; yields {int}:result = 1</i>
Chris Lattner8c6bb902003-06-18 21:30:51 +00001261 &lt;result&gt; = shr sbyte 4, ubyte 3 <i>; yields {sbyte}:result = 0</i>
1262 &lt;result&gt; = shr sbyte -2, ubyte 1 <i>; yields {sbyte}:result = -1</i>
Chris Lattner00950542001-06-06 20:29:01 +00001263</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001264</div>
Chris Lattner00950542001-06-06 20:29:01 +00001265<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +00001266<div class="doc_subsection"> <a name="memoryops">Memory Access
1267Operations</a></div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001268<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +00001269<p>A key design point of an SSA-based representation is how it
1270represents memory. In LLVM, no memory locations are in SSA form, which
1271makes things very simple. This section describes how to read, write,
1272allocate and free memory in LLVM.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001273</div>
Chris Lattner00950542001-06-06 20:29:01 +00001274<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001275<div class="doc_subsubsection"> <a name="i_malloc">'<tt>malloc</tt>'
1276Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001277<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001278<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001279<pre> &lt;result&gt; = malloc &lt;type&gt;, uint &lt;NumElements&gt; <i>; yields {type*}:result</i>
Chris Lattner7faa8832002-04-14 06:13:44 +00001280 &lt;result&gt; = malloc &lt;type&gt; <i>; yields {type*}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001281</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001282<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001283<p>The '<tt>malloc</tt>' instruction allocates memory from the system
1284heap and returns a pointer to it.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001285<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001286<p>The the '<tt>malloc</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
1287bytes of memory from the operating system, and returns a pointer of the
1288appropriate type to the program. The second form of the instruction is
1289a shorter version of the first instruction that defaults to allocating
1290one element.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001291<p>'<tt>type</tt>' must be a sized type.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001292<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001293<p>Memory is allocated using the system "<tt>malloc</tt>" function, and
1294a pointer is returned.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001295<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001296<pre> %array = malloc [4 x ubyte ] <i>; yields {[%4 x ubyte]*}:array</i>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001297
Chris Lattner261efe92003-11-25 01:02:51 +00001298 %size = <a
1299 href="#i_add">add</a> uint 2, 2 <i>; yields {uint}:size = uint 4</i>
Chris Lattner7faa8832002-04-14 06:13:44 +00001300 %array1 = malloc ubyte, uint 4 <i>; yields {ubyte*}:array1</i>
1301 %array2 = malloc [12 x ubyte], uint %size <i>; yields {[12 x ubyte]*}:array2</i>
Chris Lattner00950542001-06-06 20:29:01 +00001302</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001303</div>
Chris Lattner00950542001-06-06 20:29:01 +00001304<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001305<div class="doc_subsubsection"> <a name="i_free">'<tt>free</tt>'
1306Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001307<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001308<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001309<pre> free &lt;type&gt; &lt;value&gt; <i>; yields {void}</i>
Chris Lattner00950542001-06-06 20:29:01 +00001310</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001311<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001312<p>The '<tt>free</tt>' instruction returns memory back to the unused
1313memory heap, to be reallocated in the future.</p>
1314<p> </p>
Chris Lattner00950542001-06-06 20:29:01 +00001315<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001316<p>'<tt>value</tt>' shall be a pointer value that points to a value
1317that was allocated with the '<tt><a href="#i_malloc">malloc</a></tt>'
1318instruction.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001319<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001320<p>Access to the memory pointed to by the pointer is not longer defined
1321after this instruction executes.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001322<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001323<pre> %array = <a href="#i_malloc">malloc</a> [4 x ubyte] <i>; yields {[4 x ubyte]*}:array</i>
Chris Lattner00950542001-06-06 20:29:01 +00001324 free [4 x ubyte]* %array
1325</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001326</div>
Chris Lattner00950542001-06-06 20:29:01 +00001327<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001328<div class="doc_subsubsection"> <a name="i_alloca">'<tt>alloca</tt>'
1329Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001330<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001331<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001332<pre> &lt;result&gt; = alloca &lt;type&gt;, uint &lt;NumElements&gt; <i>; yields {type*}:result</i>
Chris Lattner7faa8832002-04-14 06:13:44 +00001333 &lt;result&gt; = alloca &lt;type&gt; <i>; yields {type*}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001334</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001335<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001336<p>The '<tt>alloca</tt>' instruction allocates memory on the current
1337stack frame of the procedure that is live until the current function
1338returns to its caller.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001339<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001340<p>The the '<tt>alloca</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
1341bytes of memory on the runtime stack, returning a pointer of the
1342appropriate type to the program. The second form of the instruction is
1343a shorter version of the first that defaults to allocating one element.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001344<p>'<tt>type</tt>' may be any sized type.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001345<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001346<p>Memory is allocated, a pointer is returned. '<tt>alloca</tt>'d
1347memory is automatically released when the function returns. The '<tt>alloca</tt>'
1348instruction is commonly used to represent automatic variables that must
1349have an address available. When the function returns (either with the <tt><a
1350 href="#i_ret">ret</a></tt> or <tt><a href="#i_invoke">invoke</a></tt>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001351instructions), the memory is reclaimed.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001352<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001353<pre> %ptr = alloca int <i>; yields {int*}:ptr</i>
Chris Lattner7faa8832002-04-14 06:13:44 +00001354 %ptr = alloca int, uint 4 <i>; yields {int*}:ptr</i>
Chris Lattner00950542001-06-06 20:29:01 +00001355</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001356</div>
Chris Lattner00950542001-06-06 20:29:01 +00001357<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001358<div class="doc_subsubsection"> <a name="i_load">'<tt>load</tt>'
1359Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001360<div class="doc_text">
Chris Lattner2b7d3202002-05-06 03:03:22 +00001361<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001362<pre> &lt;result&gt; = load &lt;ty&gt;* &lt;pointer&gt;<br> &lt;result&gt; = volatile load &lt;ty&gt;* &lt;pointer&gt;<br></pre>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001363<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001364<p>The '<tt>load</tt>' instruction is used to read from memory.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001365<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001366<p>The argument to the '<tt>load</tt>' instruction specifies the memory
1367address to load from. The pointer must point to a <a
1368 href="t_firstclass">first class</a> type. If the <tt>load</tt> is
1369marked as <tt>volatile</tt> then the optimizer is not allowed to modify
1370the number or order of execution of this <tt>load</tt> with other
1371volatile <tt>load</tt> and <tt><a href="#i_store">store</a></tt>
1372instructions. </p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001373<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001374<p>The location of memory pointed to is loaded.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001375<h5>Examples:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001376<pre> %ptr = <a href="#i_alloca">alloca</a> int <i>; yields {int*}:ptr</i>
1377 <a
1378 href="#i_store">store</a> int 3, int* %ptr <i>; yields {void}</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001379 %val = load int* %ptr <i>; yields {int}:val = int 3</i>
1380</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001381</div>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001382<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001383<div class="doc_subsubsection"> <a name="i_store">'<tt>store</tt>'
1384Instruction</a> </div>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001385<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001386<pre> store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt; <i>; yields {void}</i>
Chris Lattnerf0651072003-09-08 18:27:49 +00001387 volatile store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt; <i>; yields {void}</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001388</pre>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001389<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001390<p>The '<tt>store</tt>' instruction is used to write to memory.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001391<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001392<p>There are two arguments to the '<tt>store</tt>' instruction: a value
1393to store and an address to store it into. The type of the '<tt>&lt;pointer&gt;</tt>'
1394operand must be a pointer to the type of the '<tt>&lt;value&gt;</tt>'
1395operand. If the <tt>store</tt> is marked as <tt>volatile</tt> then the
1396optimizer is not allowed to modify the number or order of execution of
1397this <tt>store</tt> with other volatile <tt>load</tt> and <tt><a
1398 href="#i_store">store</a></tt> instructions.</p>
1399<h5>Semantics:</h5>
1400<p>The contents of memory are updated to contain '<tt>&lt;value&gt;</tt>'
1401at the location specified by the '<tt>&lt;pointer&gt;</tt>' operand.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001402<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001403<pre> %ptr = <a href="#i_alloca">alloca</a> int <i>; yields {int*}:ptr</i>
1404 <a
1405 href="#i_store">store</a> int 3, int* %ptr <i>; yields {void}</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001406 %val = load int* %ptr <i>; yields {int}:val = int 3</i>
1407</pre>
Chris Lattner2b7d3202002-05-06 03:03:22 +00001408<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001409<div class="doc_subsubsection"> <a name="i_getelementptr">'<tt>getelementptr</tt>'
1410Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001411<div class="doc_text">
Chris Lattner7faa8832002-04-14 06:13:44 +00001412<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001413<pre> &lt;result&gt; = getelementptr &lt;ty&gt;* &lt;ptrval&gt;{, long &lt;aidx&gt;|, ubyte &lt;sidx&gt;}*<br></pre>
Chris Lattner7faa8832002-04-14 06:13:44 +00001414<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001415<p>The '<tt>getelementptr</tt>' instruction is used to get the address
1416of a subelement of an aggregate data structure.</p>
Chris Lattner7faa8832002-04-14 06:13:44 +00001417<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001418<p>This instruction takes a list of <tt>long</tt> values and <tt>ubyte</tt>
Chris Lattner261efe92003-11-25 01:02:51 +00001419constants that indicate what form of addressing to perform. The actual
1420types of the arguments provided depend on the type of the first pointer
1421argument. The '<tt>getelementptr</tt>' instruction is used to index
1422down through the type levels of a structure.</p>
1423<p>For example, let's consider a C code fragment and how it gets
1424compiled to LLVM:</p>
1425<pre>struct RT {<br> char A;<br> int B[10][20];<br> char C;<br>};<br>struct ST {<br> int X;<br> double Y;<br> struct RT Z;<br>};<br><br>int *foo(struct ST *s) {<br> return &amp;s[1].Z.B[5][13];<br>}<br></pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001426<p>The LLVM code generated by the GCC frontend is:</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001427<pre>%RT = type { sbyte, [10 x [20 x int]], sbyte }<br>%ST = type { int, double, %RT }<br><br>int* "foo"(%ST* %s) {<br> %reg = getelementptr %ST* %s, long 1, ubyte 2, ubyte 1, long 5, long 13<br> ret int* %reg<br>}<br></pre>
Chris Lattner7faa8832002-04-14 06:13:44 +00001428<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001429<p>The index types specified for the '<tt>getelementptr</tt>'
1430instruction depend on the pointer type that is being index into. <a
1431 href="t_pointer">Pointer</a> and <a href="t_array">array</a> types
1432require '<tt>long</tt>' values, and <a href="t_struct">structure</a>
1433types require '<tt>ubyte</tt>' <b>constants</b>.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001434<p>In the example above, the first index is indexing into the '<tt>%ST*</tt>'
Chris Lattner261efe92003-11-25 01:02:51 +00001435type, which is a pointer, yielding a '<tt>%ST</tt>' = '<tt>{ int,
1436double, %RT }</tt>' type, a structure. The second index indexes into
1437the third element of the structure, yielding a '<tt>%RT</tt>' = '<tt>{
1438sbyte, [10 x [20 x int]], sbyte }</tt>' type, another structure. The
1439third index indexes into the second element of the structure, yielding
1440a '<tt>[10 x [20 x int]]</tt>' type, an array. The two dimensions of
1441the array are subscripted into, yielding an '<tt>int</tt>' type. The '<tt>getelementptr</tt>'
1442instruction return a pointer to this element, thus yielding a '<tt>int*</tt>'
1443type.</p>
1444<p>Note that it is perfectly legal to index partially through a
1445structure, returning a pointer to an inner element. Because of this,
1446the LLVM code for the given testcase is equivalent to:</p>
1447<pre>int* "foo"(%ST* %s) {<br> %t1 = getelementptr %ST* %s , long 1 <i>; yields %ST*:%t1</i>
Chris Lattner3dfa10b2002-12-13 06:01:21 +00001448 %t2 = getelementptr %ST* %t1, long 0, ubyte 2 <i>; yields %RT*:%t2</i>
1449 %t3 = getelementptr %RT* %t2, long 0, ubyte 1 <i>; yields [10 x [20 x int]]*:%t3</i>
1450 %t4 = getelementptr [10 x [20 x int]]* %t3, long 0, long 5 <i>; yields [20 x int]*:%t4</i>
1451 %t5 = getelementptr [20 x int]* %t4, long 0, long 13 <i>; yields int*:%t5</i>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001452 ret int* %t5
1453}
1454</pre>
Chris Lattner7faa8832002-04-14 06:13:44 +00001455<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001456<pre> <i>; yields [12 x ubyte]*:aptr</i>
1457 %aptr = getelementptr {int, [12 x ubyte]}* %sptr, long 0, ubyte 1<br></pre>
1458<h5>&nbsp;Note To The Novice:</h5>
1459When using indexing into global arrays with the '<tt>getelementptr</tt>'
1460instruction, you must remember that the&nbsp; </div>
Chris Lattner00950542001-06-06 20:29:01 +00001461<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +00001462<div class="doc_subsection"> <a name="otherops">Other Operations</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001463<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +00001464<p>The instructions in this catagory are the "miscellaneous"
1465instructions, which defy better classification.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001466</div>
Chris Lattner00950542001-06-06 20:29:01 +00001467<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001468<div class="doc_subsubsection"> <a name="i_phi">'<tt>phi</tt>'
1469Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001470<div class="doc_text">
Chris Lattner33ba0d92001-07-09 00:26:23 +00001471<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001472<pre> &lt;result&gt; = phi &lt;ty&gt; [ &lt;val0&gt;, &lt;label0&gt;], ...<br></pre>
Chris Lattner33ba0d92001-07-09 00:26:23 +00001473<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001474<p>The '<tt>phi</tt>' instruction is used to implement the &#966; node in
1475the SSA graph representing the function.</p>
Chris Lattner33ba0d92001-07-09 00:26:23 +00001476<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001477<p>The type of the incoming values are specified with the first type
1478field. After this, the '<tt>phi</tt>' instruction takes a list of pairs
1479as arguments, with one pair for each predecessor basic block of the
1480current block. Only values of <a href="#t_firstclass">first class</a>
1481type may be used as the value arguments to the PHI node. Only labels
1482may be used as the label arguments.</p>
1483<p>There must be no non-phi instructions between the start of a basic
1484block and the PHI instructions: i.e. PHI instructions must be first in
1485a basic block.</p>
Chris Lattner33ba0d92001-07-09 00:26:23 +00001486<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001487<p>At runtime, the '<tt>phi</tt>' instruction logically takes on the
1488value specified by the parameter, depending on which basic block we
1489came from in the last <a href="#terminators">terminator</a> instruction.</p>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001490<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001491<pre>Loop: ; Infinite loop that counts from 0 on up...<br> %indvar = phi uint [ 0, %LoopHeader ], [ %nextindvar, %Loop ]<br> %nextindvar = add uint %indvar, 1<br> br label %Loop<br></pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001492</div>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001493<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001494<div class="doc_subsubsection"> <a name="i_cast">'<tt>cast .. to</tt>'
1495Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001496<div class="doc_text">
Chris Lattner6536cfe2002-05-06 22:08:29 +00001497<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001498<pre> &lt;result&gt; = cast &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001499</pre>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001500<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001501<p>The '<tt>cast</tt>' instruction is used as the primitive means to
1502convert integers to floating point, change data type sizes, and break
1503type safety (by casting pointers).</p>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001504<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001505<p>The '<tt>cast</tt>' instruction takes a value to cast, which must be
1506a first class value, and a type to cast it to, which must also be a <a
1507 href="#t_firstclass">first class</a> type.</p>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001508<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001509<p>This instruction follows the C rules for explicit casts when
1510determining how the data being cast must change to fit in its new
1511container.</p>
1512<p>When casting to bool, any value that would be considered true in the
1513context of a C '<tt>if</tt>' condition is converted to the boolean '<tt>true</tt>'
Misha Brukman9d0919f2003-11-08 01:05:38 +00001514values, all else are '<tt>false</tt>'.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001515<p>When extending an integral value from a type of one signness to
1516another (for example '<tt>sbyte</tt>' to '<tt>ulong</tt>'), the value
1517is sign-extended if the <b>source</b> value is signed, and
1518zero-extended if the source value is unsigned. <tt>bool</tt> values
1519are always zero extended into either zero or one.</p>
Chris Lattner33ba0d92001-07-09 00:26:23 +00001520<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001521<pre> %X = cast int 257 to ubyte <i>; yields ubyte:1</i>
Chris Lattner7bae3952002-06-25 18:03:17 +00001522 %Y = cast int 123 to bool <i>; yields bool:true</i>
Chris Lattner33ba0d92001-07-09 00:26:23 +00001523</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001524</div>
Chris Lattner33ba0d92001-07-09 00:26:23 +00001525<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001526<div class="doc_subsubsection"> <a name="i_call">'<tt>call</tt>'
1527Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001528<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001529<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001530<pre> &lt;result&gt; = call &lt;ty&gt;* &lt;fnptrval&gt;(&lt;param list&gt;)<br></pre>
Chris Lattner00950542001-06-06 20:29:01 +00001531<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001532<p>The '<tt>call</tt>' instruction represents a simple function call.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001533<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001534<p>This instruction requires several arguments:</p>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001535<ol>
Chris Lattner261efe92003-11-25 01:02:51 +00001536 <li>
1537 <p>'<tt>ty</tt>': shall be the signature of the pointer to function
1538value being invoked. The argument types must match the types implied
1539by this signature.</p>
1540 </li>
1541 <li>
1542 <p>'<tt>fnptrval</tt>': An LLVM value containing a pointer to a
1543function to be invoked. In most cases, this is a direct function
1544invocation, but indirect <tt>call</tt>s are just as possible,
1545calling an arbitrary pointer to function values.</p>
1546 </li>
1547 <li>
1548 <p>'<tt>function args</tt>': argument list whose types match the
1549function signature argument types. If the function signature
1550indicates the function accepts a variable number of arguments, the
1551extra arguments can be specified.</p>
1552 </li>
Chris Lattner6536cfe2002-05-06 22:08:29 +00001553</ol>
Chris Lattner00950542001-06-06 20:29:01 +00001554<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001555<p>The '<tt>call</tt>' instruction is used to cause control flow to
1556transfer to a specified function, with its incoming arguments bound to
1557the specified values. Upon a '<tt><a href="#i_ret">ret</a></tt>'
1558instruction in the called function, control flow continues with the
1559instruction after the function call, and the return value of the
1560function is bound to the result argument. This is a simpler case of
1561the <a href="#i_invoke">invoke</a> instruction.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001562<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001563<pre> %retval = call int %test(int %argc)<br> call int(sbyte*, ...) *%printf(sbyte* %msg, int 12, sbyte 42);<br></pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001564</div>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001565<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001566<div class="doc_subsubsection"> <a name="i_vanext">'<tt>vanext</tt>'
1567Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001568<div class="doc_text">
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001569<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001570<pre> &lt;resultarglist&gt; = vanext &lt;va_list&gt; &lt;arglist&gt;, &lt;argty&gt;<br></pre>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001571<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001572<p>The '<tt>vanext</tt>' instruction is used to access arguments passed
1573through the "variable argument" area of a function call. It is used to
1574implement the <tt>va_arg</tt> macro in C.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001575<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001576<p>This instruction takes a <tt>valist</tt> value and the type of the
1577argument. It returns another <tt>valist</tt>.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001578<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001579<p>The '<tt>vanext</tt>' instruction advances the specified <tt>valist</tt>
1580past an argument of the specified type. In conjunction with the <a
1581 href="#i_vaarg"><tt>vaarg</tt></a> instruction, it is used to implement
1582the <tt>va_arg</tt> macro available in C. For more information, see
1583the variable argument handling <a href="#int_varargs">Intrinsic
1584Functions</a>.</p>
1585<p>It is legal for this instruction to be called in a function which
1586does not take a variable number of arguments, for example, the <tt>vfprintf</tt>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001587function.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001588<p><tt>vanext</tt> is an LLVM instruction instead of an <a
Chris Lattner261efe92003-11-25 01:02:51 +00001589 href="#intrinsics">intrinsic function</a> because it takes an type as
1590an argument.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001591<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001592<p>See the <a href="#int_varargs">variable argument processing</a>
1593section.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001594</div>
Chris Lattner8d1a81d2003-10-18 05:51:36 +00001595<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001596<div class="doc_subsubsection"> <a name="i_vaarg">'<tt>vaarg</tt>'
1597Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001598<div class="doc_text">
Chris Lattner8d1a81d2003-10-18 05:51:36 +00001599<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001600<pre> &lt;resultval&gt; = vaarg &lt;va_list&gt; &lt;arglist&gt;, &lt;argty&gt;<br></pre>
Chris Lattner8d1a81d2003-10-18 05:51:36 +00001601<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001602<p>The '<tt>vaarg</tt>' instruction is used to access arguments passed
1603through the "variable argument" area of a function call. It is used to
1604implement the <tt>va_arg</tt> macro in C.</p>
Chris Lattner8d1a81d2003-10-18 05:51:36 +00001605<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001606<p>This instruction takes a <tt>valist</tt> value and the type of the
1607argument. It returns a value of the specified argument type.</p>
Chris Lattner8d1a81d2003-10-18 05:51:36 +00001608<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001609<p>The '<tt>vaarg</tt>' instruction loads an argument of the specified
1610type from the specified <tt>va_list</tt>. In conjunction with the <a
1611 href="#i_vanext"><tt>vanext</tt></a> instruction, it is used to
1612implement the <tt>va_arg</tt> macro available in C. For more
1613information, see the variable argument handling <a href="#int_varargs">Intrinsic
1614Functions</a>.</p>
1615<p>It is legal for this instruction to be called in a function which
1616does not take a variable number of arguments, for example, the <tt>vfprintf</tt>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001617function.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001618<p><tt>vaarg</tt> is an LLVM instruction instead of an <a
Chris Lattner261efe92003-11-25 01:02:51 +00001619 href="#intrinsics">intrinsic function</a> because it takes an type as
1620an argument.</p>
Chris Lattner8d1a81d2003-10-18 05:51:36 +00001621<h5>Example:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001622<p>See the <a href="#int_varargs">variable argument processing</a>
1623section.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001624</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00001625
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001626<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +00001627<div class="doc_section"> <a name="intrinsics">Intrinsic Functions</a> </div>
1628<!-- *********************************************************************** -->
Chris Lattner8ff75902004-01-06 05:31:32 +00001629
Misha Brukman9d0919f2003-11-08 01:05:38 +00001630<div class="doc_text">
Chris Lattner33aec9e2004-02-12 17:01:32 +00001631
1632<p>LLVM supports the notion of an "intrinsic function". These functions have
1633well known names and semantics, and are required to follow certain
1634restrictions. Overall, these instructions represent an extension mechanism for
1635the LLVM language that does not require changing all of the transformations in
1636LLVM to add to the language (or the bytecode reader/writer, the parser,
1637etc...).</p>
1638
1639<p>Intrinsic function names must all start with an "<tt>llvm.</tt>" prefix, this
1640prefix is reserved in LLVM for intrinsic names, thus functions may not be named
1641this. Intrinsic functions must always be external functions: you cannot define
1642the body of intrinsic functions. Intrinsic functions may only be used in call
1643or invoke instructions: it is illegal to take the address of an intrinsic
1644function. Additionally, because intrinsic functions are part of the LLVM
1645language, it is required that they all be documented here if any are added.</p>
1646
1647
1648<p>
1649Adding an intrinsic to LLVM is straight-forward if it is possible to express the
1650concept in LLVM directly (ie, code generator support is not _required_). To do
1651this, extend the default implementation of the IntrinsicLowering class to handle
1652the intrinsic. Code generators use this class to lower intrinsics they do not
1653understand to raw LLVM instructions that they do.
1654</p>
1655
Misha Brukman9d0919f2003-11-08 01:05:38 +00001656</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00001657
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001658<!-- ======================================================================= -->
Chris Lattner8ff75902004-01-06 05:31:32 +00001659<div class="doc_subsection">
1660 <a name="int_varargs">Variable Argument Handling Intrinsics</a>
1661</div>
1662
Misha Brukman9d0919f2003-11-08 01:05:38 +00001663<div class="doc_text">
Misha Brukman9d0919f2003-11-08 01:05:38 +00001664<p>Variable argument support is defined in LLVM with the <a
Chris Lattner261efe92003-11-25 01:02:51 +00001665 href="#i_vanext"><tt>vanext</tt></a> instruction and these three
1666intrinsic functions. These functions are related to the similarly
1667named macros defined in the <tt>&lt;stdarg.h&gt;</tt> header file.</p>
1668<p>All of these functions operate on arguments that use a
1669target-specific value type "<tt>va_list</tt>". The LLVM assembly
1670language reference manual does not define what this type is, so all
1671transformations should be prepared to handle intrinsics with any type
1672used.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001673<p>This example shows how the <a href="#i_vanext"><tt>vanext</tt></a>
Chris Lattner261efe92003-11-25 01:02:51 +00001674instruction and the variable argument handling intrinsic functions are
1675used.</p>
Chris Lattner33aec9e2004-02-12 17:01:32 +00001676<pre>
1677int %test(int %X, ...) {
1678 ; Initialize variable argument processing
1679 %ap = call sbyte* %<a href="#i_va_start">llvm.va_start</a>()
1680
1681 ; Read a single integer argument
1682 %tmp = vaarg sbyte* %ap, int
1683
1684 ; Advance to the next argument
1685 %ap2 = vanext sbyte* %ap, int
1686
1687 ; Demonstrate usage of llvm.va_copy and llvm.va_end
1688 %aq = call sbyte* %<a href="#i_va_copy">llvm.va_copy</a>(sbyte* %ap2)
1689 call void %<a href="#i_va_end">llvm.va_end</a>(sbyte* %aq)
1690
1691 ; Stop processing of arguments.
1692 call void %<a href="#i_va_end">llvm.va_end</a>(sbyte* %ap2)
1693 ret int %tmp
1694}
1695</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001696</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00001697
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001698<!-- _______________________________________________________________________ -->
Chris Lattner8ff75902004-01-06 05:31:32 +00001699<div class="doc_subsubsection">
1700 <a name="i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a>
1701</div>
1702
1703
Misha Brukman9d0919f2003-11-08 01:05:38 +00001704<div class="doc_text">
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001705<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001706<pre> call va_list ()* %llvm.va_start()<br></pre>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001707<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001708<p>The '<tt>llvm.va_start</tt>' intrinsic returns a new <tt>&lt;arglist&gt;</tt>
1709for subsequent use by the variable argument intrinsics.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001710<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001711<p>The '<tt>llvm.va_start</tt>' intrinsic works just like the <tt>va_start</tt>
Chris Lattner261efe92003-11-25 01:02:51 +00001712macro available in C. In a target-dependent way, it initializes and
1713returns a <tt>va_list</tt> element, so that the next <tt>vaarg</tt>
1714will produce the first variable argument passed to the function. Unlike
1715the C <tt>va_start</tt> macro, this intrinsic does not need to know the
1716last argument of the function, the compiler can figure that out.</p>
1717<p>Note that this intrinsic function is only legal to be called from
1718within the body of a variable argument function.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001719</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00001720
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001721<!-- _______________________________________________________________________ -->
Chris Lattner8ff75902004-01-06 05:31:32 +00001722<div class="doc_subsubsection">
1723 <a name="i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a>
1724</div>
1725
Misha Brukman9d0919f2003-11-08 01:05:38 +00001726<div class="doc_text">
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001727<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001728<pre> call void (va_list)* %llvm.va_end(va_list &lt;arglist&gt;)<br></pre>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001729<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001730<p>The '<tt>llvm.va_end</tt>' intrinsic destroys <tt>&lt;arglist&gt;</tt>
1731which has been initialized previously with <tt><a href="#i_va_start">llvm.va_start</a></tt>
1732or <tt><a href="#i_va_copy">llvm.va_copy</a></tt>.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001733<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001734<p>The argument is a <tt>va_list</tt> to destroy.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001735<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001736<p>The '<tt>llvm.va_end</tt>' intrinsic works just like the <tt>va_end</tt>
Chris Lattner261efe92003-11-25 01:02:51 +00001737macro available in C. In a target-dependent way, it destroys the <tt>va_list</tt>.
1738Calls to <a href="#i_va_start"><tt>llvm.va_start</tt></a> and <a
1739 href="#i_va_copy"><tt>llvm.va_copy</tt></a> must be matched exactly
1740with calls to <tt>llvm.va_end</tt>.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001741</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00001742
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001743<!-- _______________________________________________________________________ -->
Chris Lattner8ff75902004-01-06 05:31:32 +00001744<div class="doc_subsubsection">
1745 <a name="i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a>
1746</div>
1747
Misha Brukman9d0919f2003-11-08 01:05:38 +00001748<div class="doc_text">
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001749<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001750<pre> call va_list (va_list)* %llvm.va_copy(va_list &lt;destarglist&gt;)<br></pre>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001751<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001752<p>The '<tt>llvm.va_copy</tt>' intrinsic copies the current argument
1753position from the source argument list to the destination argument list.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001754<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001755<p>The argument is the <tt>va_list</tt> to copy.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00001756<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001757<p>The '<tt>llvm.va_copy</tt>' intrinsic works just like the <tt>va_copy</tt>
Chris Lattner261efe92003-11-25 01:02:51 +00001758macro available in C. In a target-dependent way, it copies the source <tt>va_list</tt>
1759element into the returned list. This intrinsic is necessary because the <tt><a
1760 href="i_va_start">llvm.va_start</a></tt> intrinsic may be arbitrarily
1761complex and require memory allocation, for example.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001762</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00001763
Chris Lattner33aec9e2004-02-12 17:01:32 +00001764<!-- ======================================================================= -->
1765<div class="doc_subsection">
Chris Lattner10610642004-02-14 04:08:35 +00001766 <a name="int_codegen">Code Generator Intrinsics</a>
1767</div>
1768
1769<div class="doc_text">
1770<p>
1771These intrinsics are provided by LLVM to expose special features that may only
1772be implemented with code generator support.
1773</p>
1774
1775</div>
1776
1777<!-- _______________________________________________________________________ -->
1778<div class="doc_subsubsection">
1779 <a name="i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a>
1780</div>
1781
1782<div class="doc_text">
1783
1784<h5>Syntax:</h5>
1785<pre>
1786 call void* ()* %llvm.returnaddress(uint &lt;level&gt;)
1787</pre>
1788
1789<h5>Overview:</h5>
1790
1791<p>
1792The '<tt>llvm.returnaddress</tt>' intrinsic returns a target-specific value
1793indicating the return address of the current function or one of its callers.
1794</p>
1795
1796<h5>Arguments:</h5>
1797
1798<p>
1799The argument to this intrinsic indicates which function to return the address
1800for. Zero indicates the calling function, one indicates its caller, etc. The
1801argument is <b>required</b> to be a constant integer value.
1802</p>
1803
1804<h5>Semantics:</h5>
1805
1806<p>
1807The '<tt>llvm.returnaddress</tt>' intrinsic either returns a pointer indicating
1808the return address of the specified call frame, or zero if it cannot be
1809identified. The value returned by this intrinsic is likely to be incorrect or 0
1810for arguments other than zero, so it should only be used for debugging purposes.
1811</p>
1812
1813<p>
1814Note that calling this intrinsic does not prevent function inlining or other
1815aggressive transformations, so the value returned may not that of the obvious
1816source-language caller.
1817</p>
1818</div>
1819
1820
1821<!-- _______________________________________________________________________ -->
1822<div class="doc_subsubsection">
1823 <a name="i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a>
1824</div>
1825
1826<div class="doc_text">
1827
1828<h5>Syntax:</h5>
1829<pre>
1830 call void* ()* %llvm.frameaddress(uint &lt;level&gt;)
1831</pre>
1832
1833<h5>Overview:</h5>
1834
1835<p>
1836The '<tt>llvm.frameaddress</tt>' intrinsic returns the target-specific frame
1837pointer value for the specified stack frame.
1838</p>
1839
1840<h5>Arguments:</h5>
1841
1842<p>
1843The argument to this intrinsic indicates which function to return the frame
1844pointer for. Zero indicates the calling function, one indicates its caller,
1845etc. The argument is <b>required</b> to be a constant integer value.
1846</p>
1847
1848<h5>Semantics:</h5>
1849
1850<p>
1851The '<tt>llvm.frameaddress</tt>' intrinsic either returns a pointer indicating
1852the frame address of the specified call frame, or zero if it cannot be
1853identified. The value returned by this intrinsic is likely to be incorrect or 0
1854for arguments other than zero, so it should only be used for debugging purposes.
1855</p>
1856
1857<p>
1858Note that calling this intrinsic does not prevent function inlining or other
1859aggressive transformations, so the value returned may not that of the obvious
1860source-language caller.
1861</p>
1862</div>
1863
1864
1865<!-- ======================================================================= -->
1866<div class="doc_subsection">
Chris Lattner33aec9e2004-02-12 17:01:32 +00001867 <a name="int_libc">Standard C Library Intrinsics</a>
1868</div>
1869
1870<div class="doc_text">
1871<p>
Chris Lattner10610642004-02-14 04:08:35 +00001872LLVM provides intrinsics for a few important standard C library functions.
1873These intrinsics allow source-language front-ends to pass information about the
1874alignment of the pointer arguments to the code generator, providing opportunity
1875for more efficient code generation.
Chris Lattner33aec9e2004-02-12 17:01:32 +00001876</p>
1877
1878</div>
1879
1880<!-- _______________________________________________________________________ -->
1881<div class="doc_subsubsection">
1882 <a name="i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a>
1883</div>
1884
1885<div class="doc_text">
1886
1887<h5>Syntax:</h5>
1888<pre>
1889 call void (sbyte*, sbyte*, uint, uint)* %llvm.memcpy(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
1890 uint &lt;len&gt;, uint &lt;align&gt;)
1891</pre>
1892
1893<h5>Overview:</h5>
1894
1895<p>
1896The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source
1897location to the destination location.
1898</p>
1899
1900<p>
1901Note that, unlike the standard libc function, the <tt>llvm.memcpy</tt> intrinsic
1902does not return a value, and takes an extra alignment argument.
1903</p>
1904
1905<h5>Arguments:</h5>
1906
1907<p>
1908The first argument is a pointer to the destination, the second is a pointer to
1909the source. The third argument is an (arbitrarily sized) integer argument
1910specifying the number of bytes to copy, and the fourth argument is the alignment
1911of the source and destination locations.
1912</p>
1913
Chris Lattner3301ced2004-02-12 21:18:15 +00001914<p>
1915If the call to this intrinisic has an alignment value that is not 0 or 1, then
1916the caller guarantees that the size of the copy is a multiple of the alignment
1917and that both the source and destination pointers are aligned to that boundary.
1918</p>
1919
Chris Lattner33aec9e2004-02-12 17:01:32 +00001920<h5>Semantics:</h5>
1921
1922<p>
1923The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source
1924location to the destination location, which are not allowed to overlap. It
1925copies "len" bytes of memory over. If the argument is known to be aligned to
1926some boundary, this can be specified as the fourth argument, otherwise it should
1927be set to 0 or 1.
1928</p>
1929</div>
1930
1931
Chris Lattner0eb51b42004-02-12 18:10:10 +00001932<!-- _______________________________________________________________________ -->
1933<div class="doc_subsubsection">
1934 <a name="i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a>
1935</div>
1936
1937<div class="doc_text">
1938
1939<h5>Syntax:</h5>
1940<pre>
1941 call void (sbyte*, sbyte*, uint, uint)* %llvm.memmove(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
1942 uint &lt;len&gt;, uint &lt;align&gt;)
1943</pre>
1944
1945<h5>Overview:</h5>
1946
1947<p>
1948The '<tt>llvm.memmove</tt>' intrinsic moves a block of memory from the source
1949location to the destination location. It is similar to the '<tt>llvm.memcpy</tt>'
1950intrinsic but allows the two memory locations to overlap.
1951</p>
1952
1953<p>
1954Note that, unlike the standard libc function, the <tt>llvm.memmove</tt> intrinsic
1955does not return a value, and takes an extra alignment argument.
1956</p>
1957
1958<h5>Arguments:</h5>
1959
1960<p>
1961The first argument is a pointer to the destination, the second is a pointer to
1962the source. The third argument is an (arbitrarily sized) integer argument
1963specifying the number of bytes to copy, and the fourth argument is the alignment
1964of the source and destination locations.
1965</p>
1966
Chris Lattner3301ced2004-02-12 21:18:15 +00001967<p>
1968If the call to this intrinisic has an alignment value that is not 0 or 1, then
1969the caller guarantees that the size of the copy is a multiple of the alignment
1970and that both the source and destination pointers are aligned to that boundary.
1971</p>
1972
Chris Lattner0eb51b42004-02-12 18:10:10 +00001973<h5>Semantics:</h5>
1974
1975<p>
1976The '<tt>llvm.memmove</tt>' intrinsic copies a block of memory from the source
1977location to the destination location, which may overlap. It
1978copies "len" bytes of memory over. If the argument is known to be aligned to
1979some boundary, this can be specified as the fourth argument, otherwise it should
1980be set to 0 or 1.
1981</p>
1982</div>
1983
Chris Lattner8ff75902004-01-06 05:31:32 +00001984
Chris Lattner10610642004-02-14 04:08:35 +00001985<!-- _______________________________________________________________________ -->
1986<div class="doc_subsubsection">
1987 <a name="i_memset">'<tt>llvm.memset</tt>' Intrinsic</a>
1988</div>
1989
1990<div class="doc_text">
1991
1992<h5>Syntax:</h5>
1993<pre>
1994 call void (sbyte*, ubyte, uint, uint)* %llvm.memset(sbyte* &lt;dest&gt;, ubyte &lt;val&gt;,
1995 uint &lt;len&gt;, uint &lt;align&gt;)
1996</pre>
1997
1998<h5>Overview:</h5>
1999
2000<p>
2001The '<tt>llvm.memset</tt>' intrinsic fills a block of memory with a particular
2002byte value.
2003</p>
2004
2005<p>
2006Note that, unlike the standard libc function, the <tt>llvm.memset</tt> intrinsic
2007does not return a value, and takes an extra alignment argument.
2008</p>
2009
2010<h5>Arguments:</h5>
2011
2012<p>
2013The first argument is a pointer to the destination to fill, the second is the
2014byte value to fill it with, the third argument is an (arbitrarily sized) integer
2015argument specifying the number of bytes to fill, and the fourth argument is the
2016known alignment of destination location.
2017</p>
2018
2019<p>
2020If the call to this intrinisic has an alignment value that is not 0 or 1, then
2021the caller guarantees that the size of the copy is a multiple of the alignment
2022and that the destination pointer is aligned to that boundary.
2023</p>
2024
2025<h5>Semantics:</h5>
2026
2027<p>
2028The '<tt>llvm.memset</tt>' intrinsic fills "len" bytes of memory starting at the
2029destination location. If the argument is known to be aligned to some boundary,
2030this can be specified as the fourth argument, otherwise it should be set to 0 or
20311.
2032</p>
2033</div>
2034
2035
Chris Lattner8ff75902004-01-06 05:31:32 +00002036<!-- ======================================================================= -->
2037<div class="doc_subsection">
2038 <a name="int_debugger">Debugger Intrinsics</a>
2039</div>
2040
2041<div class="doc_text">
2042<p>
2043The LLVM debugger intrinsics (which all start with <tt>llvm.dbg.</tt> prefix),
2044are described in the <a
2045href="SourceLevelDebugging.html#format_common_intrinsics">LLVM Source Level
2046Debugging</a> document.
2047</p>
2048</div>
2049
2050
Chris Lattner00950542001-06-06 20:29:01 +00002051<!-- *********************************************************************** -->
Chris Lattner00950542001-06-06 20:29:01 +00002052<hr>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002053<div class="doc_footer">
Chris Lattner261efe92003-11-25 01:02:51 +00002054<address><a href="mailto:sabre@nondot.org">Chris Lattner</a></address>
2055<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a> <br>
2056Last modified: $Date$ </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002057</body>
2058</html>