HTML 4.01 Strict compliance.
[oota-llvm.git] / docs / LangRef.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2                       "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5   <title>LLVM Assembly Language Reference Manual</title>
6   <link rel="stylesheet" href="llvm.css" type="text/css">
7 </head>
8 <body>
9 <div class="doc_title"> LLVM Language Reference Manual </div>
10 <ol>
11   <li><a href="#abstract">Abstract</a></li>
12   <li><a href="#introduction">Introduction</a></li>
13   <li><a href="#identifiers">Identifiers</a></li>
14   <li><a href="#typesystem">Type System</a>
15     <ol>
16       <li><a href="#t_primitive">Primitive Types</a>    
17         <ol>
18           <li><a href="#t_classifications">Type Classifications</a></li>
19         </ol>
20       </li>
21       <li><a href="#t_derived">Derived Types</a>
22         <ol>
23           <li><a href="#t_array">Array Type</a></li>
24           <li><a href="#t_function">Function Type</a></li>
25           <li><a href="#t_pointer">Pointer Type</a></li>
26           <li><a href="#t_struct">Structure Type</a></li>
27 <!-- <li><a href="#t_packed" >Packed Type</a> -->
28         </ol>
29       </li>
30     </ol>
31   </li>
32   <li><a href="#highlevel">High Level Structure</a>
33     <ol>
34       <li><a href="#modulestructure">Module Structure</a></li>
35       <li><a href="#globalvars">Global Variables</a></li>
36       <li><a href="#functionstructure">Function Structure</a></li>
37     </ol>
38   </li>
39   <li><a href="#instref">Instruction Reference</a>
40     <ol>
41       <li><a href="#terminators">Terminator Instructions</a>
42         <ol>
43           <li><a href="#i_ret">'<tt>ret</tt>' Instruction</a></li>
44           <li><a href="#i_br">'<tt>br</tt>' Instruction</a></li>
45           <li><a href="#i_switch">'<tt>switch</tt>' Instruction</a></li>
46           <li><a href="#i_invoke">'<tt>invoke</tt>' Instruction</a></li>
47           <li><a href="#i_unwind">'<tt>unwind</tt>'  Instruction</a></li>
48         </ol>
49       </li>
50       <li><a href="#binaryops">Binary Operations</a>
51         <ol>
52           <li><a href="#i_add">'<tt>add</tt>' Instruction</a></li>
53           <li><a href="#i_sub">'<tt>sub</tt>' Instruction</a></li>
54           <li><a href="#i_mul">'<tt>mul</tt>' Instruction</a></li>
55           <li><a href="#i_div">'<tt>div</tt>' Instruction</a></li>
56           <li><a href="#i_rem">'<tt>rem</tt>' Instruction</a></li>
57           <li><a href="#i_setcc">'<tt>set<i>cc</i></tt>' Instructions</a></li>
58         </ol>
59       </li>
60       <li><a href="#bitwiseops">Bitwise Binary Operations</a>
61         <ol>
62           <li><a href="#i_and">'<tt>and</tt>' Instruction</a></li>
63           <li><a href="#i_or">'<tt>or</tt>'  Instruction</a></li>
64           <li><a href="#i_xor">'<tt>xor</tt>' Instruction</a></li>
65           <li><a href="#i_shl">'<tt>shl</tt>' Instruction</a></li>
66           <li><a href="#i_shr">'<tt>shr</tt>' Instruction</a></li>
67         </ol>
68       </li>
69       <li><a href="#memoryops">Memory Access Operations</a>
70         <ol>
71           <li><a href="#i_malloc">'<tt>malloc</tt>'   Instruction</a></li>
72           <li><a href="#i_free">'<tt>free</tt>'     Instruction</a></li>
73           <li><a href="#i_alloca">'<tt>alloca</tt>'   Instruction</a></li>
74          <li><a href="#i_load">'<tt>load</tt>'     Instruction</a></li>
75          <li><a href="#i_store">'<tt>store</tt>'    Instruction</a></li>
76          <li><a href="#i_getelementptr">'<tt>getelementptr</tt>' Instruction</a></li>
77         </ol>
78       </li>
79       <li><a href="#otherops">Other Operations</a>
80         <ol>
81           <li><a href="#i_phi">'<tt>phi</tt>'   Instruction</a></li>
82           <li><a href="#i_cast">'<tt>cast .. to</tt>' Instruction</a></li>
83           <li><a href="#i_call">'<tt>call</tt>'  Instruction</a></li>
84           <li><a href="#i_vanext">'<tt>vanext</tt>' Instruction</a></li>
85           <li><a href="#i_vaarg">'<tt>vaarg</tt>'  Instruction</a></li>
86         </ol>
87       </li>
88     </ol>
89   </li>
90   <li><a href="#intrinsics">Intrinsic Functions</a>
91     <ol>
92       <li><a href="#int_varargs">Variable Argument Handling Intrinsics</a>
93         <ol>
94           <li><a href="#i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a></li>
95           <li><a href="#i_va_end">'<tt>llvm.va_end</tt>'   Intrinsic</a></li>
96           <li><a href="#i_va_copy">'<tt>llvm.va_copy</tt>'  Intrinsic</a></li>
97         </ol>
98       </li>
99       <li><a href="#int_codegen">Code Generator Intrinsics</a>
100         <ol>
101           <li><a href="#i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a></li>
102           <li><a href="#i_frameaddress">'<tt>llvm.frameaddress</tt>'   Intrinsic</a></li>
103         </ol>
104       </li>
105       <li><a href="#int_libc">Standard C Library Intrinsics</a>
106         <ol>
107           <li><a href="#i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a></li>
108           <li><a href="#i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a></li>
109           <li><a href="#i_memset">'<tt>llvm.memset</tt>' Intrinsic</a></li>
110         </ol>
111       </li>
112       <li><a href="#int_debugger">Debugger intrinsics</a>
113     </ol>
114   </li>
115 </ol>
116 <div class="doc_text">
117 <p><b>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
118 and <a href="mailto:vadve@cs.uiuc.edu">Vikram Adve</a></b></p>
119 <p> </p>
120 </div>
121 <!-- *********************************************************************** -->
122 <div class="doc_section"> <a name="abstract">Abstract </a></div>
123 <!-- *********************************************************************** -->
124 <div class="doc_text">
125 <p>This document is a reference manual for the LLVM assembly language. 
126 LLVM is an SSA based representation that provides type safety,
127 low-level operations, flexibility, and the capability of representing
128 'all' high-level languages cleanly.  It is the common code
129 representation used throughout all phases of the LLVM compilation
130 strategy.</p>
131 </div>
132 <!-- *********************************************************************** -->
133 <div class="doc_section"> <a name="introduction">Introduction</a> </div>
134 <!-- *********************************************************************** -->
135 <div class="doc_text">
136 <p>The LLVM code representation is designed to be used in three
137 different forms: as an in-memory compiler IR, as an on-disk bytecode
138 representation (suitable for fast loading by a Just-In-Time compiler),
139 and as a human readable assembly language representation.  This allows
140 LLVM to provide a powerful intermediate representation for efficient
141 compiler transformations and analysis, while providing a natural means
142 to debug and visualize the transformations.  The three different forms
143 of LLVM are all equivalent.  This document describes the human readable
144 representation and notation.</p>
145 <p>The LLVM representation aims to be a light-weight and low-level
146 while being expressive, typed, and extensible at the same time.  It
147 aims to be a "universal IR" of sorts, by being at a low enough level
148 that high-level ideas may be cleanly mapped to it (similar to how
149 microprocessors are "universal IR's", allowing many source languages to
150 be mapped to them).  By providing type information, LLVM can be used as
151 the target of optimizations: for example, through pointer analysis, it
152 can be proven that a C automatic variable is never accessed outside of
153 the current function... allowing it to be promoted to a simple SSA
154 value instead of a memory location.</p>
155 </div>
156 <!-- _______________________________________________________________________ -->
157 <div class="doc_subsubsection"> <a name="wellformed">Well-Formedness</a> </div>
158 <div class="doc_text">
159 <p>It is important to note that this document describes 'well formed'
160 LLVM assembly language.  There is a difference between what the parser
161 accepts and what is considered 'well formed'.  For example, the
162 following instruction is syntactically okay, but not well formed:</p>
163 <pre>  %x = <a href="#i_add">add</a> int 1, %x<br></pre>
164 <p>...because the definition of <tt>%x</tt> does not dominate all of
165 its uses. The LLVM infrastructure provides a verification pass that may
166 be used to verify that an LLVM module is well formed.  This pass is
167 automatically run by the parser after parsing input assembly, and by
168 the optimizer before it outputs bytecode.  The violations pointed out
169 by the verifier pass indicate bugs in transformation passes or input to
170 the parser.</p>
171 <!-- Describe the typesetting conventions here. --> </div>
172 <!-- *********************************************************************** -->
173 <div class="doc_section"> <a name="identifiers">Identifiers</a> </div>
174 <!-- *********************************************************************** -->
175 <div class="doc_text">
176 <p>LLVM uses three different forms of identifiers, for different
177 purposes:</p>
178 <ol>
179   <li>Numeric constants are represented as you would expect: 12, -3
180 123.421,   etc.  Floating point constants have an optional hexidecimal
181 notation.</li>
182   <li>Named values are represented as a string of characters with a '%'
183 prefix.   For example, %foo, %DivisionByZero,
184 %a.really.long.identifier.  The actual   regular expression used is '<tt>%[a-zA-Z$._][a-zA-Z$._0-9]*</tt>'.
185 Identifiers which require other characters in their names can be
186 surrounded   with quotes.  In this way, anything except a <tt>"</tt>
187 character can be used   in a name.</li>
188   <li>Unnamed values are represented as an unsigned numeric value with
189 a '%'   prefix.  For example, %12, %2, %44.</li>
190 </ol>
191 <p>LLVM requires the values start with a '%' sign for two reasons:
192 Compilers don't need to worry about name clashes with reserved words,
193 and the set of reserved words may be expanded in the future without
194 penalty.  Additionally, unnamed identifiers allow a compiler to quickly
195 come up with a temporary variable without having to avoid symbol table
196 conflicts.</p>
197 <p>Reserved words in LLVM are very similar to reserved words in other
198 languages. There are keywords for different opcodes ('<tt><a
199  href="#i_add">add</a></tt>', '<tt><a href="#i_cast">cast</a></tt>', '<tt><a
200  href="#i_ret">ret</a></tt>', etc...), for primitive type names ('<tt><a
201  href="#t_void">void</a></tt>', '<tt><a href="#t_uint">uint</a></tt>',
202 etc...), and others.  These reserved words cannot conflict with
203 variable names, because none of them start with a '%' character.</p>
204 <p>Here is an example of LLVM code to multiply the integer variable '<tt>%X</tt>'
205 by 8:</p>
206 <p>The easy way:</p>
207 <pre>  %result = <a href="#i_mul">mul</a> uint %X, 8<br></pre>
208 <p>After strength reduction:</p>
209 <pre>  %result = <a href="#i_shl">shl</a> uint %X, ubyte 3<br></pre>
210 <p>And the hard way:</p>
211 <pre>  <a href="#i_add">add</a> uint %X, %X           <i>; yields {uint}:%0</i>
212   <a
213  href="#i_add">add</a> uint %0, %0           <i>; yields {uint}:%1</i>
214   %result = <a
215  href="#i_add">add</a> uint %1, %1<br></pre>
216 <p>This last way of multiplying <tt>%X</tt> by 8 illustrates several
217 important lexical features of LLVM:</p>
218 <ol>
219   <li>Comments are delimited with a '<tt>;</tt>' and go until the end
220 of   line.</li>
221   <li>Unnamed temporaries are created when the result of a computation
222 is not   assigned to a named value.</li>
223   <li>Unnamed temporaries are numbered sequentially</li>
224 </ol>
225 <p>...and it also show a convention that we follow in this document. 
226 When demonstrating instructions, we will follow an instruction with a
227 comment that defines the type and name of value produced.  Comments are
228 shown in italic text.</p>
229 <p>The one non-intuitive notation for constants is the optional
230 hexidecimal form of floating point constants.  For example, the form '<tt>double
231 0x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double
232 4.5e+15</tt>' which is also supported by the parser.  The only time
233 hexadecimal floating point constants are useful (and the only time that
234 they are generated by the disassembler) is when an FP constant has to
235 be emitted that is not representable as a decimal floating point number
236 exactly.  For example, NaN's, infinities, and other special cases are
237 represented in their IEEE hexadecimal format so that assembly and
238 disassembly do not cause any bits to change in the constants.</p>
239 </div>
240 <!-- *********************************************************************** -->
241 <div class="doc_section"> <a name="typesystem">Type System</a> </div>
242 <!-- *********************************************************************** -->
243 <div class="doc_text">
244 <p>The LLVM type system is one of the most important features of the
245 intermediate representation.  Being typed enables a number of
246 optimizations to be performed on the IR directly, without having to do
247 extra analyses on the side before the transformation.  A strong type
248 system makes it easier to read the generated code and enables novel
249 analyses and transformations that are not feasible to perform on normal
250 three address code representations.</p>
251 <!-- The written form for the type system was heavily influenced by the
252 syntactic problems with types in the C language<sup><a
253 href="#rw_stroustrup">1</a></sup>.<p> --> </div>
254 <!-- ======================================================================= -->
255 <div class="doc_subsection"> <a name="t_primitive">Primitive Types</a> </div>
256 <div class="doc_text">
257 <p>The primitive types are the fundemental building blocks of the LLVM
258 system. The current set of primitive types are as follows:</p>
259
260 <table border="0" style="align: center">
261   <tbody>
262     <tr>
263       <td>
264       <table border="1" cellspacing="0" cellpadding="4" style="align: center">
265         <tbody>
266           <tr>
267             <td><tt>void</tt></td>
268             <td>No value</td>
269           </tr>
270           <tr>
271             <td><tt>ubyte</tt></td>
272             <td>Unsigned 8 bit value</td>
273           </tr>
274           <tr>
275             <td><tt>ushort</tt></td>
276             <td>Unsigned 16 bit value</td>
277           </tr>
278           <tr>
279             <td><tt>uint</tt></td>
280             <td>Unsigned 32 bit value</td>
281           </tr>
282           <tr>
283             <td><tt>ulong</tt></td>
284             <td>Unsigned 64 bit value</td>
285           </tr>
286           <tr>
287             <td><tt>float</tt></td>
288             <td>32 bit floating point value</td>
289           </tr>
290           <tr>
291             <td><tt>label</tt></td>
292             <td>Branch destination</td>
293           </tr>
294         </tbody>
295       </table>
296       </td>
297       <td valign="top">
298       <table border="1" cellspacing="0" cellpadding="4">
299         <tbody>
300           <tr>
301             <td><tt>bool</tt></td>
302             <td>True or False value</td>
303           </tr>
304           <tr>
305             <td><tt>sbyte</tt></td>
306             <td>Signed 8 bit value</td>
307           </tr>
308           <tr>
309             <td><tt>short</tt></td>
310             <td>Signed 16 bit value</td>
311           </tr>
312           <tr>
313             <td><tt>int</tt></td>
314             <td>Signed 32 bit value</td>
315           </tr>
316           <tr>
317             <td><tt>long</tt></td>
318             <td>Signed 64 bit value</td>
319           </tr>
320           <tr>
321             <td><tt>double</tt></td>
322             <td>64 bit floating point value</td>
323           </tr>
324         </tbody>
325       </table>
326       </td>
327     </tr>
328   </tbody>
329 </table>
330
331 </div>
332 <!-- _______________________________________________________________________ -->
333 <div class="doc_subsubsection"> <a name="t_classifications">Type
334 Classifications</a> </div>
335 <div class="doc_text">
336 <p>These different primitive types fall into a few useful
337 classifications:</p>
338
339 <table border="1" cellspacing="0" cellpadding="4">
340   <tbody>
341     <tr>
342       <td><a name="t_signed">signed</a></td>
343       <td><tt>sbyte, short, int, long, float, double</tt></td>
344     </tr>
345     <tr>
346       <td><a name="t_unsigned">unsigned</a></td>
347       <td><tt>ubyte, ushort, uint, ulong</tt></td>
348     </tr>
349     <tr>
350       <td><a name="t_integer">integer</a></td>
351       <td><tt>ubyte, sbyte, ushort, short, uint, int, ulong, long</tt></td>
352     </tr>
353     <tr>
354       <td><a name="t_integral">integral</a></td>
355       <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long</tt></td>
356     </tr>
357     <tr>
358       <td><a name="t_floating">floating point</a></td>
359       <td><tt>float, double</tt></td>
360     </tr>
361     <tr>
362       <td><a name="t_firstclass">first class</a></td>
363       <td><tt>bool, ubyte, sbyte, ushort, short,<br>
364 uint, int, ulong, long, float, double, <a href="#t_pointer">pointer</a></tt></td>
365     </tr>
366   </tbody>
367 </table>
368
369 <p>The <a href="#t_firstclass">first class</a> types are perhaps the
370 most important.  Values of these types are the only ones which can be
371 produced by instructions, passed as arguments, or used as operands to
372 instructions.  This means that all structures and arrays must be
373 manipulated either by pointer or by component.</p>
374 </div>
375 <!-- ======================================================================= -->
376 <div class="doc_subsection"> <a name="t_derived">Derived Types</a> </div>
377 <div class="doc_text">
378 <p>The real power in LLVM comes from the derived types in the system. 
379 This is what allows a programmer to represent arrays, functions,
380 pointers, and other useful types.  Note that these derived types may be
381 recursive: For example, it is possible to have a two dimensional array.</p>
382 </div>
383 <!-- _______________________________________________________________________ -->
384 <div class="doc_subsubsection"> <a name="t_array">Array Type</a> </div>
385 <div class="doc_text">
386 <h5>Overview:</h5>
387 <p>The array type is a very simple derived type that arranges elements
388 sequentially in memory.  The array type requires a size (number of
389 elements) and an underlying data type.</p>
390 <h5>Syntax:</h5>
391 <pre>  [&lt;# elements&gt; x &lt;elementtype&gt;]<br></pre>
392 <p>The number of elements is a constant integer value, elementtype may
393 be any type with a size.</p>
394 <h5>Examples:</h5>
395 <p> <tt>[40 x int ]</tt>: Array of 40 integer values.<br>
396 <tt>[41 x int ]</tt>: Array of 41 integer values.<br>
397 <tt>[40 x uint]</tt>: Array of 40 unsigned integer values.</p>
398 <p> </p>
399 <p>Here are some examples of multidimensional arrays:</p>
400
401 <table border="0" cellpadding="0" cellspacing="0">
402   <tbody>
403     <tr>
404       <td><tt>[3 x [4 x int]]</tt></td>
405       <td>: 3x4 array integer values.</td>
406     </tr>
407     <tr>
408       <td><tt>[12 x [10 x float]]</tt></td>
409       <td>: 12x10 array of single precision floating point values.</td>
410     </tr>
411     <tr>
412       <td><tt>[2 x [3 x [4 x uint]]]</tt></td>
413       <td>: 2x3x4 array of unsigned integer values.</td>
414     </tr>
415   </tbody>
416 </table>
417
418 </div>
419 <!-- _______________________________________________________________________ -->
420 <div class="doc_subsubsection"> <a name="t_function">Function Type</a> </div>
421 <div class="doc_text">
422 <h5>Overview:</h5>
423 <p>The function type can be thought of as a function signature.  It
424 consists of a return type and a list of formal parameter types. 
425 Function types are usually used to build virtual function tables
426 (which are structures of pointers to functions), for indirect function
427 calls, and when defining a function.</p>
428 <p>
429 The return type of a function type cannot be an aggregate type.
430 </p>
431 <h5>Syntax:</h5>
432 <pre>  &lt;returntype&gt; (&lt;parameter list&gt;)<br></pre>
433 <p>Where '<tt>&lt;parameter list&gt;</tt>' is a comma-separated list of
434 type specifiers.  Optionally, the parameter list may include a type <tt>...</tt>,
435 which indicates that the function takes a variable number of arguments.
436 Variable argument functions can access their arguments with the <a
437  href="#int_varargs">variable argument handling intrinsic</a> functions.</p>
438 <h5>Examples:</h5>
439
440 <table border="0" cellpadding="0" cellspacing="0">
441   <tbody>
442     <tr>
443       <td><tt>int (int)</tt></td>
444       <td>: function taking an <tt>int</tt>, returning an <tt>int</tt></td>
445     </tr>
446     <tr>
447       <td><tt>float (int, int *) *</tt></td>
448       <td>: <a href="#t_pointer">Pointer</a> to a function that takes
449 an <tt>int</tt> and a <a href="#t_pointer">pointer</a> to <tt>int</tt>,
450 returning <tt>float</tt>.</td>
451     </tr>
452     <tr>
453       <td><tt>int (sbyte *, ...)</tt></td>
454       <td>: A vararg function that takes at least one <a
455  href="#t_pointer">pointer</a> to <tt>sbyte</tt> (signed char in C),
456 which       returns an integer.  This is the signature for <tt>printf</tt>
457 in LLVM.</td>
458     </tr>
459   </tbody>
460 </table>
461
462 </div>
463 <!-- _______________________________________________________________________ -->
464 <div class="doc_subsubsection"> <a name="t_struct">Structure Type</a> </div>
465 <div class="doc_text">
466 <h5>Overview:</h5>
467 <p>The structure type is used to represent a collection of data members
468 together in memory.  The packing of the field types is defined to match
469 the ABI of the underlying processor.  The elements of a structure may
470 be any type that has a size.</p>
471 <p>Structures are accessed using '<tt><a href="#i_load">load</a></tt>
472 and '<tt><a href="#i_store">store</a></tt>' by getting a pointer to a
473 field with the '<tt><a href="#i_getelementptr">getelementptr</a></tt>'
474 instruction.</p>
475 <h5>Syntax:</h5>
476 <pre>  { &lt;type list&gt; }<br></pre>
477 <h5>Examples:</h5>
478
479 <table border="0" cellpadding="0" cellspacing="0">
480   <tbody>
481     <tr>
482       <td><tt>{ int, int, int }</tt></td>
483       <td>: a triple of three <tt>int</tt> values</td>
484     </tr>
485     <tr>
486       <td><tt>{ float, int (int) * }</tt></td>
487       <td>: A pair, where the first element is a <tt>float</tt> and the
488 second       element is a <a href="#t_pointer">pointer</a> to a <a
489  href="t_function">function</a> that takes an <tt>int</tt>, returning
490 an <tt>int</tt>.</td>
491     </tr>
492   </tbody>
493 </table>
494
495 </div>
496 <!-- _______________________________________________________________________ -->
497 <div class="doc_subsubsection"> <a name="t_pointer">Pointer Type</a> </div>
498 <div class="doc_text">
499 <h5>Overview:</h5>
500 <p>As in many languages, the pointer type represents a pointer or
501 reference to another object, which must live in memory.</p>
502 <h5>Syntax:</h5>
503 <pre>  &lt;type&gt; *<br></pre>
504 <h5>Examples:</h5>
505
506 <table border="0" cellpadding="0" cellspacing="0">
507   <tbody>
508     <tr>
509       <td><tt>[4x int]*</tt></td>
510       <td>: <a href="#t_pointer">pointer</a> to <a href="#t_array">array</a>
511 of four <tt>int</tt> values</td>
512     </tr>
513     <tr>
514       <td><tt>int (int *) *</tt></td>
515       <td>: A <a href="#t_pointer">pointer</a> to a <a
516  href="t_function">function</a> that takes an <tt>int</tt>, returning
517 an <tt>int</tt>.</td>
518     </tr>
519   </tbody>
520 </table>
521
522 </div>
523 <!-- _______________________________________________________________________ --><!--
524 <div class="doc_subsubsection">
525   <a name="t_packed">Packed Type</a>
526 </div>
527
528 <div class="doc_text">
529
530 Mention/decide that packed types work with saturation or not. Maybe have a packed+saturated type in addition to just a packed type.<p>
531
532 Packed types should be 'nonsaturated' because standard data types are not saturated.  Maybe have a saturated packed type?<p>
533
534 </div>
535
536 --><!-- *********************************************************************** -->
537 <div class="doc_section"> <a name="highlevel">High Level Structure</a> </div>
538 <!-- *********************************************************************** --><!-- ======================================================================= -->
539 <div class="doc_subsection"> <a name="modulestructure">Module Structure</a> </div>
540 <div class="doc_text">
541 <p>LLVM programs are composed of "Module"s, each of which is a
542 translation unit of the input programs.  Each module consists of
543 functions, global variables, and symbol table entries.  Modules may be
544 combined together with the LLVM linker, which merges function (and
545 global variable) definitions, resolves forward declarations, and merges
546 symbol table entries. Here is an example of the "hello world" module:</p>
547 <pre><i>; Declare the string constant as a global constant...</i>
548 <a href="#identifiers">%.LC0</a> = <a href="#linkage_internal">internal</a> <a
549  href="#globalvars">constant</a> <a href="#t_array">[13 x sbyte]</a> c"hello world\0A\00"          <i>; [13 x sbyte]*</i>
550
551 <i>; External declaration of the puts function</i>
552 <a href="#functionstructure">declare</a> int %puts(sbyte*)                                            <i>; int(sbyte*)* </i>
553
554 <i>; Definition of main function</i>
555 int %main() {                                                        <i>; int()* </i>
556         <i>; Convert [13x sbyte]* to sbyte *...</i>
557         %cast210 = <a
558  href="#i_getelementptr">getelementptr</a> [13 x sbyte]* %.LC0, long 0, long 0 <i>; sbyte*</i>
559
560         <i>; Call puts function to write out the string to stdout...</i>
561         <a
562  href="#i_call">call</a> int %puts(sbyte* %cast210)                              <i>; int</i>
563         <a
564  href="#i_ret">ret</a> int 0<br>}<br></pre>
565 <p>This example is made up of a <a href="#globalvars">global variable</a>
566 named "<tt>.LC0</tt>", an external declaration of the "<tt>puts</tt>"
567 function, and a <a href="#functionstructure">function definition</a>
568 for "<tt>main</tt>".</p>
569 <a name="linkage"> In general, a module is made up of a list of global
570 values, where both functions and global variables are global values. 
571 Global values are represented by a pointer to a memory location (in
572 this case, a pointer to an array of char, and a pointer to a function),
573 and have one of the following linkage types:</a>
574 <p> </p>
575 <dl>
576   <dt><tt><b><a name="linkage_internal">internal</a></b></tt> </dt>
577   <dd>Global values with internal linkage are only directly accessible
578 by objects in the current module.  In particular, linking code into a
579 module with an internal global value may cause the internal to be
580 renamed as necessary to avoid collisions.  Because the symbol is
581 internal to the module, all references can be updated.  This
582 corresponds to the notion of the '<tt>static</tt>' keyword in C, or the
583 idea of "anonymous namespaces" in C++.
584     <p> </p>
585   </dd>
586   <dt><tt><b><a name="linkage_linkonce">linkonce</a></b></tt>: </dt>
587   <dd>"<tt>linkonce</tt>" linkage is similar to <tt>internal</tt>
588 linkage, with the twist that linking together two modules defining the
589 same <tt>linkonce</tt> globals will cause one of the globals to be
590 discarded.  This is typically used to implement inline functions. 
591 Unreferenced <tt>linkonce</tt> globals are allowed to be discarded.
592     <p> </p>
593   </dd>
594   <dt><tt><b><a name="linkage_weak">weak</a></b></tt>: </dt>
595   <dd>"<tt>weak</tt>" linkage is exactly the same as <tt>linkonce</tt>
596 linkage, except that unreferenced <tt>weak</tt> globals may not be
597 discarded.  This is used to implement constructs in C such as "<tt>int
598 X;</tt>" at global scope.
599     <p> </p>
600   </dd>
601   <dt><tt><b><a name="linkage_appending">appending</a></b></tt>: </dt>
602   <dd>"<tt>appending</tt>" linkage may only be applied to global
603 variables of pointer to array type.  When two global variables with
604 appending linkage are linked together, the two global arrays are
605 appended together.  This is the LLVM, typesafe, equivalent of having
606 the system linker append together "sections" with identical names when
607 .o files are linked.
608     <p> </p>
609   </dd>
610   <dt><tt><b><a name="linkage_external">externally visible</a></b></tt>:</dt>
611   <dd>If none of the above identifiers are used, the global is
612 externally visible, meaning that it participates in linkage and can be
613 used to resolve external symbol references.
614     <p> </p>
615   </dd>
616 </dl>
617 <p> </p>
618 <p><a name="linkage_external">For example, since the "<tt>.LC0</tt>"
619 variable is defined to be internal, if another module defined a "<tt>.LC0</tt>"
620 variable and was linked with this one, one of the two would be renamed,
621 preventing a collision.  Since "<tt>main</tt>" and "<tt>puts</tt>" are
622 external (i.e., lacking any linkage declarations), they are accessible
623 outside of the current module.  It is illegal for a function <i>declaration</i>
624 to have any linkage type other than "externally visible".</a></p>
625 </div>
626 <!-- ======================================================================= -->
627 <div class="doc_subsection"> <a name="globalvars">Global Variables</a> </div>
628 <div class="doc_text">
629 <p>Global variables define regions of memory allocated at compilation
630 time instead of run-time.  Global variables may optionally be
631 initialized.  A variable may be defined as a global "constant", which
632 indicates that the contents of the variable will never be modified
633 (opening options for optimization).  Constants must always have an
634 initial value.</p>
635 <p>As SSA values, global variables define pointer values that are in
636 scope (i.e. they dominate) for all basic blocks in the program.  Global
637 variables always define a pointer to their "content" type because they
638 describe a region of memory, and all memory objects in LLVM are
639 accessed through pointers.</p>
640 </div>
641 <!-- ======================================================================= -->
642 <div class="doc_subsection"> <a name="functionstructure">Functions</a> </div>
643 <div class="doc_text">
644 <p>LLVM function definitions are composed of a (possibly empty)
645 argument list, an opening curly brace, a list of basic blocks, and a
646 closing curly brace.  LLVM function declarations are defined with the "<tt>declare</tt>"
647 keyword, a function name, and a function signature.</p>
648 <p>A function definition contains a list of basic blocks, forming the
649 CFG for the function.  Each basic block may optionally start with a
650 label (giving the basic block a symbol table entry), contains a list of
651 instructions, and ends with a <a href="#terminators">terminator</a>
652 instruction (such as a branch or function return).</p>
653 <p>The first basic block in program is special in two ways: it is
654 immediately executed on entrance to the function, and it is not allowed
655 to have predecessor basic blocks (i.e. there can not be any branches to
656 the entry block of a function).  Because the block can have no
657 predecessors, it also cannot have any <a href="#i_phi">PHI nodes</a>.</p>
658 <p>
659 LLVM functions are identified by their name and type signature.  Hence, two
660 functions with the same name but different parameter lists or return values
661 are considered different functions, and LLVM will resolves references to each
662 appropriately.
663 </p>
664 </div>
665 <!-- *********************************************************************** -->
666 <div class="doc_section"> <a name="instref">Instruction Reference</a> </div>
667 <!-- *********************************************************************** -->
668 <div class="doc_text">
669 <p>The LLVM instruction set consists of several different
670 classifications of instructions: <a href="#terminators">terminator
671 instructions</a>, <a href="#binaryops">binary instructions</a>, <a
672  href="#memoryops">memory instructions</a>, and <a href="#otherops">other
673 instructions</a>.</p>
674 </div>
675 <!-- ======================================================================= -->
676 <div class="doc_subsection"> <a name="terminators">Terminator
677 Instructions</a> </div>
678 <div class="doc_text">
679 <p>As mentioned <a href="#functionstructure">previously</a>, every
680 basic block in a program ends with a "Terminator" instruction, which
681 indicates which block should be executed after the current block is
682 finished. These terminator instructions typically yield a '<tt>void</tt>'
683 value: they produce control flow, not values (the one exception being
684 the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction).</p>
685 <p>There are five different terminator instructions: the '<a
686  href="#i_ret"><tt>ret</tt></a>' instruction, the '<a href="#i_br"><tt>br</tt></a>'
687 instruction, the '<a href="#i_switch"><tt>switch</tt></a>' instruction,
688 the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction, and the '<a
689  href="#i_unwind"><tt>unwind</tt></a>' instruction.</p>
690 </div>
691 <!-- _______________________________________________________________________ -->
692 <div class="doc_subsubsection"> <a name="i_ret">'<tt>ret</tt>'
693 Instruction</a> </div>
694 <div class="doc_text">
695 <h5>Syntax:</h5>
696 <pre>  ret &lt;type&gt; &lt;value&gt;       <i>; Return a value from a non-void function</i>
697   ret void                 <i>; Return from void function</i>
698 </pre>
699 <h5>Overview:</h5>
700 <p>The '<tt>ret</tt>' instruction is used to return control flow (and a
701 value) from a function, back to the caller.</p>
702 <p>There are two forms of the '<tt>ret</tt>' instructruction: one that
703 returns a value and then causes control flow, and one that just causes
704 control flow to occur.</p>
705 <h5>Arguments:</h5>
706 <p>The '<tt>ret</tt>' instruction may return any '<a
707  href="#t_firstclass">first class</a>' type.  Notice that a function is
708 not <a href="#wellformed">well formed</a> if there exists a '<tt>ret</tt>'
709 instruction inside of the function that returns a value that does not
710 match the return type of the function.</p>
711 <h5>Semantics:</h5>
712 <p>When the '<tt>ret</tt>' instruction is executed, control flow
713 returns 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
715 the instruction after the call.  If the caller was an "<a
716  href="#i_invoke"><tt>invoke</tt></a>" instruction, execution continues
717 at the beginning "normal" of the destination block.  If the instruction
718 returns a value, that value shall set the call or invoke instruction's
719 return value.</p>
720 <h5>Example:</h5>
721 <pre>  ret int 5                       <i>; Return an integer value of 5</i>
722   ret void                        <i>; Return from a void function</i>
723 </pre>
724 </div>
725 <!-- _______________________________________________________________________ -->
726 <div class="doc_subsubsection"> <a name="i_br">'<tt>br</tt>' Instruction</a> </div>
727 <div class="doc_text">
728 <h5>Syntax:</h5>
729 <pre>  br bool &lt;cond&gt;, label &lt;iftrue&gt;, label &lt;iffalse&gt;<br>  br label &lt;dest&gt;          <i>; Unconditional branch</i>
730 </pre>
731 <h5>Overview:</h5>
732 <p>The '<tt>br</tt>' instruction is used to cause control flow to
733 transfer to a different basic block in the current function.  There are
734 two forms of this instruction, corresponding to a conditional branch
735 and an unconditional branch.</p>
736 <h5>Arguments:</h5>
737 <p>The conditional branch form of the '<tt>br</tt>' instruction takes a
738 single '<tt>bool</tt>' value and two '<tt>label</tt>' values.  The
739 unconditional form of the '<tt>br</tt>' instruction takes a single '<tt>label</tt>'
740 value as a target.</p>
741 <h5>Semantics:</h5>
742 <p>Upon execution of a conditional '<tt>br</tt>' instruction, the '<tt>bool</tt>'
743 argument is evaluated.  If the value is <tt>true</tt>, control flows
744 to the '<tt>iftrue</tt>' <tt>label</tt> argument.  If "cond" is <tt>false</tt>,
745 control flows to the '<tt>iffalse</tt>' <tt>label</tt> argument.</p>
746 <h5>Example:</h5>
747 <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>
749 </div>
750 <!-- _______________________________________________________________________ -->
751 <div class="doc_subsubsection">
752    <a name="i_switch">'<tt>switch</tt>' Instruction</a>
753 </div>
754
755 <div class="doc_text">
756 <h5>Syntax:</h5>
757
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
762 <h5>Overview:</h5>
763
764 <p>The '<tt>switch</tt>' instruction is used to transfer control flow to one of
765 several different places.  It is a generalization of the '<tt>br</tt>'
766 instruction, allowing a branch to occur to one of many possible
767 destinations.</p>
768
769
770 <h5>Arguments:</h5>
771
772 <p>The '<tt>switch</tt>' instruction uses three parameters: an integer
773 comparison value '<tt>value</tt>', a default '<tt>label</tt>' destination, and
774 an array of pairs of comparison value constants and '<tt>label</tt>'s.  The
775 table is not allowed to contain duplicate constant entries.</p>
776
777 <h5>Semantics:</h5>
778
779 <p>The <tt>switch</tt> instruction specifies a table of values and
780 destinations. When the '<tt>switch</tt>' instruction is executed, this
781 table is searched for the given value.  If the value is found, the
782 corresponding destination is branched to, otherwise the default value
783 it transfered to.</p>
784
785 <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
789 ways, for example as a series of chained conditional branches, or with a lookup
790 table.</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 ]
806 </pre>
807 </div>
808 <!-- _______________________________________________________________________ -->
809 <div class="doc_subsubsection"> <a name="i_invoke">'<tt>invoke</tt>'
810 Instruction</a> </div>
811 <div class="doc_text">
812 <h5>Syntax:</h5>
813 <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>
814 <h5>Overview:</h5>
815 <p>The '<tt>invoke</tt>' instruction causes control to transfer to a
816 specified function, with the possibility of control flow transfer to
817 either the '<tt>normal</tt>' <tt>label</tt> label or the '<tt>exception</tt>'<tt>label</tt>.
818 If the callee function returns with the "<tt><a href="#i_ret">ret</a></tt>"
819 instruction, control flow will return to the "normal" label.  If the
820 callee (or any indirect callees) returns with the "<a href="#i_unwind"><tt>unwind</tt></a>"
821 instruction, control is interrupted, and continued at the dynamically
822 nearest "except" label.</p>
823 <h5>Arguments:</h5>
824 <p>This instruction requires several arguments:</p>
825 <ol>
826   <li>'<tt>ptr to function ty</tt>': shall be the signature of the
827 pointer to function value being invoked.  In most cases, this is a
828 direct function invocation, but indirect <tt>invoke</tt>s are just as
829 possible, branching off an arbitrary pointer to function value. </li>
830   <li>'<tt>function ptr val</tt>': An LLVM value containing a pointer
831 to a function to be invoked. </li>
832   <li>'<tt>function args</tt>': argument list whose types match the
833 function signature argument types.  If the function signature indicates
834 the function accepts a variable number of arguments, the extra
835 arguments can be specified. </li>
836   <li>'<tt>normal label</tt>': the label reached when the called
837 function executes a '<tt><a href="#i_ret">ret</a></tt>' instruction. </li>
838   <li>'<tt>exception label</tt>': the label reached when a callee
839 returns with the <a href="#i_unwind"><tt>unwind</tt></a> instruction. </li>
840 </ol>
841 <h5>Semantics:</h5>
842 <p>This instruction is designed to operate as a standard '<tt><a
843  href="#i_call">call</a></tt>' instruction in most regards.  The
844 primary difference is that it establishes an association with a label,
845 which is used by the runtime library to unwind the stack.</p>
846 <p>This instruction is used in languages with destructors to ensure
847 that proper cleanup is performed in the case of either a <tt>longjmp</tt>
848 or a thrown exception.  Additionally, this is important for
849 implementation of '<tt>catch</tt>' clauses in high-level languages that
850 support them.</p>
851 <h5>Example:</h5>
852 <pre>  %retval = invoke int %Test(int 15)<br>              to label %Continue<br>              except label %TestCleanup     <i>; {int}:retval set</i>
853 </pre>
854 </div>
855 <!-- _______________________________________________________________________ -->
856 <div class="doc_subsubsection"> <a name="i_unwind">'<tt>unwind</tt>'
857 Instruction</a> </div>
858 <div class="doc_text">
859 <h5>Syntax:</h5>
860 <pre>  unwind<br></pre>
861 <h5>Overview:</h5>
862 <p>The '<tt>unwind</tt>' instruction unwinds the stack, continuing
863 control flow at the first callee in the dynamic call stack which used
864 an <a href="#i_invoke"><tt>invoke</tt></a> instruction to perform the
865 call.  This is primarily used to implement exception handling.</p>
866 <h5>Semantics:</h5>
867 <p>The '<tt>unwind</tt>' intrinsic causes execution of the current
868 function to immediately halt.  The dynamic call stack is then searched
869 for the first <a href="#i_invoke"><tt>invoke</tt></a> instruction on
870 the call stack.  Once found, execution continues at the "exceptional"
871 destination block specified by the <tt>invoke</tt> instruction.  If
872 there is no <tt>invoke</tt> instruction in the dynamic call chain,
873 undefined behavior results.</p>
874 </div>
875 <!-- ======================================================================= -->
876 <div class="doc_subsection"> <a name="binaryops">Binary Operations</a> </div>
877 <div class="doc_text">
878 <p>Binary operators are used to do most of the computation in a
879 program.  They require two operands, execute an operation on them, and
880 produce a single value. The result value of a binary operator is not
881 necessarily the same type as its operands.</p>
882 <p>There are several different binary operators:</p>
883 </div>
884 <!-- _______________________________________________________________________ -->
885 <div class="doc_subsubsection"> <a name="i_add">'<tt>add</tt>'
886 Instruction</a> </div>
887 <div class="doc_text">
888 <h5>Syntax:</h5>
889 <pre>  &lt;result&gt; = add &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
890 </pre>
891 <h5>Overview:</h5>
892 <p>The '<tt>add</tt>' instruction returns the sum of its two operands.</p>
893 <h5>Arguments:</h5>
894 <p>The two arguments to the '<tt>add</tt>' instruction must be either <a
895  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
896 values. Both arguments must have identical types.</p>
897 <h5>Semantics:</h5>
898 <p>The value produced is the integer or floating point sum of the two
899 operands.</p>
900 <h5>Example:</h5>
901 <pre>  &lt;result&gt; = add int 4, %var          <i>; yields {int}:result = 4 + %var</i>
902 </pre>
903 </div>
904 <!-- _______________________________________________________________________ -->
905 <div class="doc_subsubsection"> <a name="i_sub">'<tt>sub</tt>'
906 Instruction</a> </div>
907 <div class="doc_text">
908 <h5>Syntax:</h5>
909 <pre>  &lt;result&gt; = sub &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
910 </pre>
911 <h5>Overview:</h5>
912 <p>The '<tt>sub</tt>' instruction returns the difference of its two
913 operands.</p>
914 <p>Note that the '<tt>sub</tt>' instruction is used to represent the '<tt>neg</tt>'
915 instruction present in most other intermediate representations.</p>
916 <h5>Arguments:</h5>
917 <p>The two arguments to the '<tt>sub</tt>' instruction must be either <a
918  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
919 values. Both arguments must have identical types.</p>
920 <h5>Semantics:</h5>
921 <p>The value produced is the integer or floating point difference of
922 the two operands.</p>
923 <h5>Example:</h5>
924 <pre>  &lt;result&gt; = sub int 4, %var          <i>; yields {int}:result = 4 - %var</i>
925   &lt;result&gt; = sub int 0, %val          <i>; yields {int}:result = -%var</i>
926 </pre>
927 </div>
928 <!-- _______________________________________________________________________ -->
929 <div class="doc_subsubsection"> <a name="i_mul">'<tt>mul</tt>'
930 Instruction</a> </div>
931 <div class="doc_text">
932 <h5>Syntax:</h5>
933 <pre>  &lt;result&gt; = mul &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
934 </pre>
935 <h5>Overview:</h5>
936 <p>The  '<tt>mul</tt>' instruction returns the product of its two
937 operands.</p>
938 <h5>Arguments:</h5>
939 <p>The two arguments to the '<tt>mul</tt>' instruction must be either <a
940  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
941 values. Both arguments must have identical types.</p>
942 <h5>Semantics:</h5>
943 <p>The value produced is the integer or floating point product of the
944 two operands.</p>
945 <p>There is no signed vs unsigned multiplication.  The appropriate
946 action is taken based on the type of the operand.</p>
947 <h5>Example:</h5>
948 <pre>  &lt;result&gt; = mul int 4, %var          <i>; yields {int}:result = 4 * %var</i>
949 </pre>
950 </div>
951 <!-- _______________________________________________________________________ -->
952 <div class="doc_subsubsection"> <a name="i_div">'<tt>div</tt>'
953 Instruction</a> </div>
954 <div class="doc_text">
955 <h5>Syntax:</h5>
956 <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
960 operands.</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>
964 values. 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
967 two 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>'
974 Instruction</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
981 division 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>
985 values. 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
988 has the same sign as the divisor), not the <i>modulus</i> (where the
989 result has the same sign as the dividend) of a value.  For more
990 information about the difference, see: <a
991  href="http://mathforum.org/dr.math/problems/anne.4.28.99.html">The
992 Math 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>'
999 Instructions</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>
1003   &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>
1009 <h5>Overview:</h5>
1010 <p>The '<tt>set<i>cc</i></tt>' family of instructions returns a boolean
1011 value 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
1014 be of <a href="#t_firstclass">first class</a> type (it is not possible
1015 to compare '<tt>label</tt>'s, '<tt>array</tt>'s, '<tt>structure</tt>'
1016 or '<tt>void</tt>' values, etc...).  Both arguments must have identical
1017 types.</p>
1018 <h5>Semantics:</h5>
1019 <p>The '<tt>seteq</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1020 value if both operands are equal.<br>
1021 The '<tt>setne</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1022 value if both operands are unequal.<br>
1023 The '<tt>setlt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1024 value if the first operand is less than the second operand.<br>
1025 The '<tt>setgt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1026 value if the first operand is greater than the second operand.<br>
1027 The '<tt>setle</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1028 value if the first operand is less than or equal to the second operand.<br>
1029 The '<tt>setge</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1030 value if the first operand is greater than or equal to the second
1031 operand.</p>
1032 <h5>Example:</h5>
1033 <pre>  &lt;result&gt; = seteq int   4, 5        <i>; yields {bool}:result = false</i>
1034   &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>
1040 </div>
1041 <!-- ======================================================================= -->
1042 <div class="doc_subsection"> <a name="bitwiseops">Bitwise Binary
1043 Operations</a> </div>
1044 <div class="doc_text">
1045 <p>Bitwise binary operators are used to do various forms of
1046 bit-twiddling in a program.  They are generally very efficient
1047 instructions, and can commonly be strength reduced from other
1048 instructions.  They require two operands, execute an operation on them,
1049 and produce a single value.  The resulting value of the bitwise binary
1050 operators is always the same type as its first operand.</p>
1051 </div>
1052 <!-- _______________________________________________________________________ -->
1053 <div class="doc_subsubsection"> <a name="i_and">'<tt>and</tt>'
1054 Instruction</a> </div>
1055 <div class="doc_text">
1056 <h5>Syntax:</h5>
1057 <pre>  &lt;result&gt; = and &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1058 </pre>
1059 <h5>Overview:</h5>
1060 <p>The '<tt>and</tt>' instruction returns the bitwise logical and of
1061 its two operands.</p>
1062 <h5>Arguments:</h5>
1063 <p>The two arguments to the '<tt>and</tt>' instruction must be <a
1064  href="#t_integral">integral</a> values.  Both arguments must have
1065 identical types.</p>
1066 <h5>Semantics:</h5>
1067 <p>The truth table used for the '<tt>and</tt>' instruction is:</p>
1068 <p> </p>
1069 <div style="align: center">
1070 <table border="1" cellspacing="0" cellpadding="4">
1071   <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 </div>
1100 <h5>Example:</h5>
1101 <pre>  &lt;result&gt; = and int 4, %var         <i>; yields {int}:result = 4 &amp; %var</i>
1102   &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>
1105 </div>
1106 <!-- _______________________________________________________________________ -->
1107 <div class="doc_subsubsection"> <a name="i_or">'<tt>or</tt>' Instruction</a> </div>
1108 <div class="doc_text">
1109 <h5>Syntax:</h5>
1110 <pre>  &lt;result&gt; = or &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1111 </pre>
1112 <h5>Overview:</h5>
1113 <p>The '<tt>or</tt>' instruction returns the bitwise logical inclusive
1114 or of its two operands.</p>
1115 <h5>Arguments:</h5>
1116 <p>The two arguments to the '<tt>or</tt>' instruction must be <a
1117  href="#t_integral">integral</a> values.  Both arguments must have
1118 identical types.</p>
1119 <h5>Semantics:</h5>
1120 <p>The truth table used for the '<tt>or</tt>' instruction is:</p>
1121 <p> </p>
1122 <div style="align: 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 </div>
1153 <h5>Example:</h5>
1154 <pre>  &lt;result&gt; = or int 4, %var         <i>; yields {int}:result = 4 | %var</i>
1155   &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>
1158 </div>
1159 <!-- _______________________________________________________________________ -->
1160 <div class="doc_subsubsection"> <a name="i_xor">'<tt>xor</tt>'
1161 Instruction</a> </div>
1162 <div class="doc_text">
1163 <h5>Syntax:</h5>
1164 <pre>  &lt;result&gt; = xor &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1165 </pre>
1166 <h5>Overview:</h5>
1167 <p>The '<tt>xor</tt>' instruction returns the bitwise logical exclusive
1168 or 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>
1170 <h5>Arguments:</h5>
1171 <p>The two arguments to the '<tt>xor</tt>' instruction must be <a
1172  href="#t_integral">integral</a> values.  Both arguments must have
1173 identical types.</p>
1174 <h5>Semantics:</h5>
1175 <p>The truth table used for the '<tt>xor</tt>' instruction is:</p>
1176 <p> </p>
1177 <div style="align: 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 </div>
1208 <p> </p>
1209 <h5>Example:</h5>
1210 <pre>  &lt;result&gt; = xor int 4, %var         <i>; yields {int}:result = 4 ^ %var</i>
1211   &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>
1213   &lt;result&gt; = xor int %V, -1          <i>; yields {int}:result = ~%V</i>
1214 </pre>
1215 </div>
1216 <!-- _______________________________________________________________________ -->
1217 <div class="doc_subsubsection"> <a name="i_shl">'<tt>shl</tt>'
1218 Instruction</a> </div>
1219 <div class="doc_text">
1220 <h5>Syntax:</h5>
1221 <pre>  &lt;result&gt; = shl &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt;   <i>; yields {ty}:result</i>
1222 </pre>
1223 <h5>Overview:</h5>
1224 <p>The '<tt>shl</tt>' instruction returns the first operand shifted to
1225 the left a specified number of bits.</p>
1226 <h5>Arguments:</h5>
1227 <p>The first argument to the '<tt>shl</tt>' instruction must be an <a
1228  href="#t_integer">integer</a> type.  The second argument must be an '<tt>ubyte</tt>'
1229 type.</p>
1230 <h5>Semantics:</h5>
1231 <p>The value produced is <tt>var1</tt> * 2<sup><tt>var2</tt></sup>.</p>
1232 <h5>Example:</h5>
1233 <pre>  &lt;result&gt; = shl int 4, ubyte %var   <i>; yields {int}:result = 4 &lt;&lt; %var</i>
1234   &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>
1237 </div>
1238 <!-- _______________________________________________________________________ -->
1239 <div class="doc_subsubsection"> <a name="i_shr">'<tt>shr</tt>'
1240 Instruction</a> </div>
1241 <div class="doc_text">
1242 <h5>Syntax:</h5>
1243 <pre>  &lt;result&gt; = shr &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt;   <i>; yields {ty}:result</i>
1244 </pre>
1245 <h5>Overview:</h5>
1246 <p>The '<tt>shr</tt>' instruction returns the first operand shifted to
1247 the right a specified number of bits.</p>
1248 <h5>Arguments:</h5>
1249 <p>The first argument to the '<tt>shr</tt>' instruction must be an <a
1250  href="#t_integer">integer</a> type.  The second argument must be an '<tt>ubyte</tt>'
1251 type.</p>
1252 <h5>Semantics:</h5>
1253 <p>If the first argument is a <a href="#t_signed">signed</a> type, the
1254 most significant bit is duplicated in the newly free'd bit positions. 
1255 If the first argument is unsigned, zero bits shall fill the empty
1256 positions.</p>
1257 <h5>Example:</h5>
1258 <pre>  &lt;result&gt; = shr int 4, ubyte %var   <i>; yields {int}:result = 4 &gt;&gt; %var</i>
1259   &lt;result&gt; = shr uint 4, ubyte 1     <i>; yields {uint}:result = 2</i>
1260   &lt;result&gt; = shr int 4, ubyte 2      <i>; yields {int}:result = 1</i>
1261   &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>
1263 </pre>
1264 </div>
1265 <!-- ======================================================================= -->
1266 <div class="doc_subsection"> <a name="memoryops">Memory Access
1267 Operations</a></div>
1268 <div class="doc_text">
1269 <p>A key design point of an SSA-based representation is how it
1270 represents memory.  In LLVM, no memory locations are in SSA form, which
1271 makes things very simple.  This section describes how to read, write,
1272 allocate and free memory in LLVM.</p>
1273 </div>
1274 <!-- _______________________________________________________________________ -->
1275 <div class="doc_subsubsection"> <a name="i_malloc">'<tt>malloc</tt>'
1276 Instruction</a> </div>
1277 <div class="doc_text">
1278 <h5>Syntax:</h5>
1279 <pre>  &lt;result&gt; = malloc &lt;type&gt;, uint &lt;NumElements&gt;     <i>; yields {type*}:result</i>
1280   &lt;result&gt; = malloc &lt;type&gt;                         <i>; yields {type*}:result</i>
1281 </pre>
1282 <h5>Overview:</h5>
1283 <p>The '<tt>malloc</tt>' instruction allocates memory from the system
1284 heap and returns a pointer to it.</p>
1285 <h5>Arguments:</h5>
1286 <p>The '<tt>malloc</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
1287 bytes of memory from the operating system and returns a pointer of the
1288 appropriate type to the program.  The second form of the instruction is
1289 a shorter version of the first instruction that defaults to allocating
1290 one element.</p>
1291 <p>'<tt>type</tt>' must be a sized type.</p>
1292 <h5>Semantics:</h5>
1293 <p>Memory is allocated using the system "<tt>malloc</tt>" function, and
1294 a pointer is returned.</p>
1295 <h5>Example:</h5>
1296 <pre>  %array  = malloc [4 x ubyte ]                    <i>; yields {[%4 x ubyte]*}:array</i>
1297
1298   %size   = <a
1299  href="#i_add">add</a> uint 2, 2                          <i>; yields {uint}:size = uint 4</i>
1300   %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>
1302 </pre>
1303 </div>
1304 <!-- _______________________________________________________________________ -->
1305 <div class="doc_subsubsection"> <a name="i_free">'<tt>free</tt>'
1306 Instruction</a> </div>
1307 <div class="doc_text">
1308 <h5>Syntax:</h5>
1309 <pre>  free &lt;type&gt; &lt;value&gt;                              <i>; yields {void}</i>
1310 </pre>
1311 <h5>Overview:</h5>
1312 <p>The '<tt>free</tt>' instruction returns memory back to the unused
1313 memory heap, to be reallocated in the future.</p>
1314 <p> </p>
1315 <h5>Arguments:</h5>
1316 <p>'<tt>value</tt>' shall be a pointer value that points to a value
1317 that was allocated with the '<tt><a href="#i_malloc">malloc</a></tt>'
1318 instruction.</p>
1319 <h5>Semantics:</h5>
1320 <p>Access to the memory pointed to by the pointer is not longer defined
1321 after this instruction executes.</p>
1322 <h5>Example:</h5>
1323 <pre>  %array  = <a href="#i_malloc">malloc</a> [4 x ubyte]                    <i>; yields {[4 x ubyte]*}:array</i>
1324             free   [4 x ubyte]* %array
1325 </pre>
1326 </div>
1327 <!-- _______________________________________________________________________ -->
1328 <div class="doc_subsubsection"> <a name="i_alloca">'<tt>alloca</tt>'
1329 Instruction</a> </div>
1330 <div class="doc_text">
1331 <h5>Syntax:</h5>
1332 <pre>  &lt;result&gt; = alloca &lt;type&gt;, uint &lt;NumElements&gt;  <i>; yields {type*}:result</i>
1333   &lt;result&gt; = alloca &lt;type&gt;                      <i>; yields {type*}:result</i>
1334 </pre>
1335 <h5>Overview:</h5>
1336 <p>The '<tt>alloca</tt>' instruction allocates memory on the current
1337 stack frame of the procedure that is live until the current function
1338 returns to its caller.</p>
1339 <h5>Arguments:</h5>
1340 <p>The the '<tt>alloca</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
1341 bytes of memory on the runtime stack, returning a pointer of the
1342 appropriate type to the program.  The second form of the instruction is
1343 a shorter version of the first that defaults to allocating one element.</p>
1344 <p>'<tt>type</tt>' may be any sized type.</p>
1345 <h5>Semantics:</h5>
1346 <p>Memory is allocated, a pointer is returned.  '<tt>alloca</tt>'d
1347 memory is automatically released when the function returns.  The '<tt>alloca</tt>'
1348 instruction is commonly used to represent automatic variables that must
1349 have 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>
1351 instructions), the memory is reclaimed.</p>
1352 <h5>Example:</h5>
1353 <pre>  %ptr = alloca int                              <i>; yields {int*}:ptr</i>
1354   %ptr = alloca int, uint 4                      <i>; yields {int*}:ptr</i>
1355 </pre>
1356 </div>
1357 <!-- _______________________________________________________________________ -->
1358 <div class="doc_subsubsection"> <a name="i_load">'<tt>load</tt>'
1359 Instruction</a> </div>
1360 <div class="doc_text">
1361 <h5>Syntax:</h5>
1362 <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>
1363 <h5>Overview:</h5>
1364 <p>The '<tt>load</tt>' instruction is used to read from memory.</p>
1365 <h5>Arguments:</h5>
1366 <p>The argument to the '<tt>load</tt>' instruction specifies the memory
1367 address to load from.  The pointer must point to a <a
1368  href="t_firstclass">first class</a> type.  If the <tt>load</tt> is
1369 marked as <tt>volatile</tt> then the optimizer is not allowed to modify
1370 the number or order of execution of this <tt>load</tt> with other
1371 volatile <tt>load</tt> and <tt><a href="#i_store">store</a></tt>
1372 instructions. </p>
1373 <h5>Semantics:</h5>
1374 <p>The location of memory pointed to is loaded.</p>
1375 <h5>Examples:</h5>
1376 <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>
1379   %val = load int* %ptr                           <i>; yields {int}:val = int 3</i>
1380 </pre>
1381 </div>
1382 <!-- _______________________________________________________________________ -->
1383 <div class="doc_subsubsection"> <a name="i_store">'<tt>store</tt>'
1384 Instruction</a> </div>
1385 <h5>Syntax:</h5>
1386 <pre>  store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt;                   <i>; yields {void}</i>
1387   volatile store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt;                   <i>; yields {void}</i>
1388 </pre>
1389 <h5>Overview:</h5>
1390 <p>The '<tt>store</tt>' instruction is used to write to memory.</p>
1391 <h5>Arguments:</h5>
1392 <p>There are two arguments to the '<tt>store</tt>' instruction: a value
1393 to store and an address to store it into.  The type of the '<tt>&lt;pointer&gt;</tt>'
1394 operand must be a pointer to the type of the '<tt>&lt;value&gt;</tt>'
1395 operand. If the <tt>store</tt> is marked as <tt>volatile</tt> then the
1396 optimizer is not allowed to modify the number or order of execution of
1397 this <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>'
1401 at the location specified by the '<tt>&lt;pointer&gt;</tt>' operand.</p>
1402 <h5>Example:</h5>
1403 <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>
1406   %val = load int* %ptr                           <i>; yields {int}:val = int 3</i>
1407 </pre>
1408 <!-- _______________________________________________________________________ -->
1409 <div class="doc_subsubsection"> <a name="i_getelementptr">'<tt>getelementptr</tt>'
1410 Instruction</a> </div>
1411 <div class="doc_text">
1412 <h5>Syntax:</h5>
1413 <pre>  &lt;result&gt; = getelementptr &lt;ty&gt;* &lt;ptrval&gt;{, long &lt;aidx&gt;|, ubyte &lt;sidx&gt;}*<br></pre>
1414 <h5>Overview:</h5>
1415 <p>The '<tt>getelementptr</tt>' instruction is used to get the address
1416 of a subelement of an aggregate data structure.</p>
1417 <h5>Arguments:</h5>
1418 <p>This instruction takes a list of <tt>long</tt> values and <tt>ubyte</tt>
1419 constants that indicate what form of addressing to perform.  The actual
1420 types of the arguments provided depend on the type of the first pointer
1421 argument.  The '<tt>getelementptr</tt>' instruction is used to index
1422 down through the type levels of a structure.</p>
1423 <p>For example, let's consider a C code fragment and how it gets
1424 compiled 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>
1426 <p>The LLVM code generated by the GCC frontend is:</p>
1427 <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>
1428 <h5>Semantics:</h5>
1429 <p>The index types specified for the '<tt>getelementptr</tt>'
1430 instruction 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
1432 require '<tt>long</tt>' values, and <a href="t_struct">structure</a>
1433 types require '<tt>ubyte</tt>' <b>constants</b>.</p>
1434 <p>In the example above, the first index is indexing into the '<tt>%ST*</tt>'
1435 type, which is a pointer, yielding a '<tt>%ST</tt>' = '<tt>{ int,
1436 double, %RT }</tt>' type, a structure.  The second index indexes into
1437 the third element of the structure, yielding a '<tt>%RT</tt>' = '<tt>{
1438 sbyte, [10 x [20 x int]], sbyte }</tt>' type, another structure.  The
1439 third index indexes into the second element of the structure, yielding
1440 a '<tt>[10 x [20 x int]]</tt>' type, an array.  The two dimensions of
1441 the array are subscripted into, yielding an '<tt>int</tt>' type.  The '<tt>getelementptr</tt>'
1442 instruction return a pointer to this element, thus yielding a '<tt>int*</tt>'
1443 type.</p>
1444 <p>Note that it is perfectly legal to index partially through a
1445 structure, returning a pointer to an inner element.  Because of this,
1446 the 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>
1448   %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>
1452   ret int* %t5
1453 }
1454 </pre>
1455 <h5>Example:</h5>
1456 <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>
1459 When using indexing into global arrays with the  '<tt>getelementptr</tt>'
1460 instruction, you must remember that the&nbsp; </div>
1461 <!-- ======================================================================= -->
1462 <div class="doc_subsection"> <a name="otherops">Other Operations</a> </div>
1463 <div class="doc_text">
1464 <p>The instructions in this catagory are the "miscellaneous"
1465 instructions, which defy better classification.</p>
1466 </div>
1467 <!-- _______________________________________________________________________ -->
1468 <div class="doc_subsubsection"> <a name="i_phi">'<tt>phi</tt>'
1469 Instruction</a> </div>
1470 <div class="doc_text">
1471 <h5>Syntax:</h5>
1472 <pre>  &lt;result&gt; = phi &lt;ty&gt; [ &lt;val0&gt;, &lt;label0&gt;], ...<br></pre>
1473 <h5>Overview:</h5>
1474 <p>The '<tt>phi</tt>' instruction is used to implement the &#966; node in
1475 the SSA graph representing the function.</p>
1476 <h5>Arguments:</h5>
1477 <p>The type of the incoming values are specified with the first type
1478 field. After this, the '<tt>phi</tt>' instruction takes a list of pairs
1479 as arguments, with one pair for each predecessor basic block of the
1480 current block.  Only values of <a href="#t_firstclass">first class</a>
1481 type may be used as the value arguments to the PHI node.  Only labels
1482 may be used as the label arguments.</p>
1483 <p>There must be no non-phi instructions between the start of a basic
1484 block and the PHI instructions: i.e. PHI instructions must be first in
1485 a basic block.</p>
1486 <h5>Semantics:</h5>
1487 <p>At runtime, the '<tt>phi</tt>' instruction logically takes on the
1488 value specified by the parameter, depending on which basic block we
1489 came from in the last <a href="#terminators">terminator</a> instruction.</p>
1490 <h5>Example:</h5>
1491 <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>
1492 </div>
1493 <!-- _______________________________________________________________________ -->
1494 <div class="doc_subsubsection"> <a name="i_cast">'<tt>cast .. to</tt>'
1495 Instruction</a> </div>
1496 <div class="doc_text">
1497 <h5>Syntax:</h5>
1498 <pre>  &lt;result&gt; = cast &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt;             <i>; yields ty2</i>
1499 </pre>
1500 <h5>Overview:</h5>
1501 <p>The '<tt>cast</tt>' instruction is used as the primitive means to
1502 convert integers to floating point, change data type sizes, and break
1503 type safety (by casting pointers).</p>
1504 <h5>Arguments:</h5>
1505 <p>The '<tt>cast</tt>' instruction takes a value to cast, which must be
1506 a 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>
1508 <h5>Semantics:</h5>
1509 <p>This instruction follows the C rules for explicit casts when
1510 determining how the data being cast must change to fit in its new
1511 container.</p>
1512 <p>When casting to bool, any value that would be considered true in the
1513 context of a C '<tt>if</tt>' condition is converted to the boolean '<tt>true</tt>'
1514 values, all else are '<tt>false</tt>'.</p>
1515 <p>When extending an integral value from a type of one signness to
1516 another (for example '<tt>sbyte</tt>' to '<tt>ulong</tt>'), the value
1517 is sign-extended if the <b>source</b> value is signed, and
1518 zero-extended if the source value is unsigned. <tt>bool</tt> values
1519 are always zero extended into either zero or one.</p>
1520 <h5>Example:</h5>
1521 <pre>  %X = cast int 257 to ubyte              <i>; yields ubyte:1</i>
1522   %Y = cast int 123 to bool               <i>; yields bool:true</i>
1523 </pre>
1524 </div>
1525 <!-- _______________________________________________________________________ -->
1526 <div class="doc_subsubsection"> <a name="i_call">'<tt>call</tt>'
1527 Instruction</a> </div>
1528 <div class="doc_text">
1529 <h5>Syntax:</h5>
1530 <pre>  &lt;result&gt; = call &lt;ty&gt;* &lt;fnptrval&gt;(&lt;param list&gt;)<br></pre>
1531 <h5>Overview:</h5>
1532 <p>The '<tt>call</tt>' instruction represents a simple function call.</p>
1533 <h5>Arguments:</h5>
1534 <p>This instruction requires several arguments:</p>
1535 <ol>
1536   <li>
1537     <p>'<tt>ty</tt>': shall be the signature of the pointer to function
1538 value   being invoked.  The argument types must match the types implied
1539 by this   signature.</p>
1540   </li>
1541   <li>
1542     <p>'<tt>fnptrval</tt>': An LLVM value containing a pointer to a
1543 function   to be invoked. In most cases, this is a direct function
1544 invocation, but   indirect <tt>call</tt>s are just as possible,
1545 calling an arbitrary pointer to   function values.</p>
1546   </li>
1547   <li>
1548     <p>'<tt>function args</tt>': argument list whose types match the
1549 function   signature argument types.  If the function signature
1550 indicates the function   accepts a variable number of arguments, the
1551 extra arguments can be   specified.</p>
1552   </li>
1553 </ol>
1554 <h5>Semantics:</h5>
1555 <p>The '<tt>call</tt>' instruction is used to cause control flow to
1556 transfer to a specified function, with its incoming arguments bound to
1557 the specified values. Upon a '<tt><a href="#i_ret">ret</a></tt>'
1558 instruction in the called function, control flow continues with the
1559 instruction after the function call, and the return value of the
1560 function is bound to the result argument.  This is a simpler case of
1561 the <a href="#i_invoke">invoke</a> instruction.</p>
1562 <h5>Example:</h5>
1563 <pre>  %retval = call int %test(int %argc)<br>  call int(sbyte*, ...) *%printf(sbyte* %msg, int 12, sbyte 42);<br></pre>
1564 </div>
1565 <!-- _______________________________________________________________________ -->
1566 <div class="doc_subsubsection"> <a name="i_vanext">'<tt>vanext</tt>'
1567 Instruction</a> </div>
1568 <div class="doc_text">
1569 <h5>Syntax:</h5>
1570 <pre>  &lt;resultarglist&gt; = vanext &lt;va_list&gt; &lt;arglist&gt;, &lt;argty&gt;<br></pre>
1571 <h5>Overview:</h5>
1572 <p>The '<tt>vanext</tt>' instruction is used to access arguments passed
1573 through the "variable argument" area of a function call.  It is used to
1574 implement the <tt>va_arg</tt> macro in C.</p>
1575 <h5>Arguments:</h5>
1576 <p>This instruction takes a <tt>valist</tt> value and the type of the
1577 argument. It returns another <tt>valist</tt>.</p>
1578 <h5>Semantics:</h5>
1579 <p>The '<tt>vanext</tt>' instruction advances the specified <tt>valist</tt>
1580 past 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
1582 the <tt>va_arg</tt> macro available in C.  For more information, see
1583 the variable argument handling <a href="#int_varargs">Intrinsic
1584 Functions</a>.</p>
1585 <p>It is legal for this instruction to be called in a function which
1586 does not take a variable number of arguments, for example, the <tt>vfprintf</tt>
1587 function.</p>
1588 <p><tt>vanext</tt> is an LLVM instruction instead of an <a
1589  href="#intrinsics">intrinsic function</a> because it takes an type as
1590 an argument.</p>
1591 <h5>Example:</h5>
1592 <p>See the <a href="#int_varargs">variable argument processing</a>
1593 section.</p>
1594 </div>
1595 <!-- _______________________________________________________________________ -->
1596 <div class="doc_subsubsection"> <a name="i_vaarg">'<tt>vaarg</tt>'
1597 Instruction</a> </div>
1598 <div class="doc_text">
1599 <h5>Syntax:</h5>
1600 <pre>  &lt;resultval&gt; = vaarg &lt;va_list&gt; &lt;arglist&gt;, &lt;argty&gt;<br></pre>
1601 <h5>Overview:</h5>
1602 <p>The '<tt>vaarg</tt>' instruction is used to access arguments passed
1603 through the "variable argument" area of a function call.  It is used to
1604 implement the <tt>va_arg</tt> macro in C.</p>
1605 <h5>Arguments:</h5>
1606 <p>This instruction takes a <tt>valist</tt> value and the type of the
1607 argument. It returns a value of the specified argument type.</p>
1608 <h5>Semantics:</h5>
1609 <p>The '<tt>vaarg</tt>' instruction loads an argument of the specified
1610 type 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
1612 implement the <tt>va_arg</tt> macro available in C.  For more
1613 information, see the variable argument handling <a href="#int_varargs">Intrinsic
1614 Functions</a>.</p>
1615 <p>It is legal for this instruction to be called in a function which
1616 does not take a variable number of arguments, for example, the <tt>vfprintf</tt>
1617 function.</p>
1618 <p><tt>vaarg</tt> is an LLVM instruction instead of an <a
1619  href="#intrinsics">intrinsic function</a> because it takes an type as
1620 an argument.</p>
1621 <h5>Example:</h5>
1622 <p>See the <a href="#int_varargs">variable argument processing</a>
1623 section.</p>
1624 </div>
1625
1626 <!-- *********************************************************************** -->
1627 <div class="doc_section"> <a name="intrinsics">Intrinsic Functions</a> </div>
1628 <!-- *********************************************************************** -->
1629
1630 <div class="doc_text">
1631
1632 <p>LLVM supports the notion of an "intrinsic function".  These functions have
1633 well known names and semantics, and are required to follow certain
1634 restrictions. Overall, these instructions represent an extension mechanism for
1635 the LLVM language that does not require changing all of the transformations in
1636 LLVM to add to the language (or the bytecode reader/writer, the parser,
1637 etc...).</p>
1638
1639 <p>Intrinsic function names must all start with an "<tt>llvm.</tt>" prefix, this
1640 prefix is reserved in LLVM for intrinsic names, thus functions may not be named
1641 this.  Intrinsic functions must always be external functions: you cannot define
1642 the body of intrinsic functions.  Intrinsic functions may only be used in call
1643 or invoke instructions: it is illegal to take the address of an intrinsic
1644 function.  Additionally, because intrinsic functions are part of the LLVM
1645 language, it is required that they all be documented here if any are added.</p>
1646
1647
1648 <p>
1649 Adding an intrinsic to LLVM is straight-forward if it is possible to express the
1650 concept in LLVM directly (ie, code generator support is not _required_).  To do
1651 this, extend the default implementation of the IntrinsicLowering class to handle
1652 the intrinsic.  Code generators use this class to lower intrinsics they do not
1653 understand to raw LLVM instructions that they do.
1654 </p>
1655
1656 </div>
1657
1658 <!-- ======================================================================= -->
1659 <div class="doc_subsection">
1660   <a name="int_varargs">Variable Argument Handling Intrinsics</a>
1661 </div>
1662
1663 <div class="doc_text">
1664 <p>Variable argument support is defined in LLVM with the <a
1665  href="#i_vanext"><tt>vanext</tt></a> instruction and these three
1666 intrinsic functions.  These functions are related to the similarly
1667 named 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
1669 target-specific value type "<tt>va_list</tt>".  The LLVM assembly
1670 language reference manual does not define what this type is, so all
1671 transformations should be prepared to handle intrinsics with any type
1672 used.</p>
1673 <p>This example shows how the <a href="#i_vanext"><tt>vanext</tt></a>
1674 instruction and the variable argument handling intrinsic functions are
1675 used.</p>
1676 <pre>
1677 int %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>
1696 </div>
1697
1698 <!-- _______________________________________________________________________ -->
1699 <div class="doc_subsubsection">
1700   <a name="i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a>
1701 </div>
1702
1703
1704 <div class="doc_text">
1705 <h5>Syntax:</h5>
1706 <pre>  call va_list ()* %llvm.va_start()<br></pre>
1707 <h5>Overview:</h5>
1708 <p>The '<tt>llvm.va_start</tt>' intrinsic returns a new <tt>&lt;arglist&gt;</tt>
1709 for subsequent use by the variable argument intrinsics.</p>
1710 <h5>Semantics:</h5>
1711 <p>The '<tt>llvm.va_start</tt>' intrinsic works just like the <tt>va_start</tt>
1712 macro available in C.  In a target-dependent way, it initializes and
1713 returns a <tt>va_list</tt> element, so that the next <tt>vaarg</tt>
1714 will produce the first variable argument passed to the function.  Unlike
1715 the C <tt>va_start</tt> macro, this intrinsic does not need to know the
1716 last 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
1718 within the body of a variable argument function.</p>
1719 </div>
1720
1721 <!-- _______________________________________________________________________ -->
1722 <div class="doc_subsubsection">
1723  <a name="i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a>
1724 </div>
1725
1726 <div class="doc_text">
1727 <h5>Syntax:</h5>
1728 <pre>  call void (va_list)* %llvm.va_end(va_list &lt;arglist&gt;)<br></pre>
1729 <h5>Overview:</h5>
1730 <p>The '<tt>llvm.va_end</tt>' intrinsic destroys <tt>&lt;arglist&gt;</tt>
1731 which has been initialized previously with <tt><a href="#i_va_start">llvm.va_start</a></tt>
1732 or <tt><a href="#i_va_copy">llvm.va_copy</a></tt>.</p>
1733 <h5>Arguments:</h5>
1734 <p>The argument is a <tt>va_list</tt> to destroy.</p>
1735 <h5>Semantics:</h5>
1736 <p>The '<tt>llvm.va_end</tt>' intrinsic works just like the <tt>va_end</tt>
1737 macro available in C.  In a target-dependent way, it destroys the <tt>va_list</tt>.
1738 Calls 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
1740 with calls to <tt>llvm.va_end</tt>.</p>
1741 </div>
1742
1743 <!-- _______________________________________________________________________ -->
1744 <div class="doc_subsubsection">
1745   <a name="i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a>
1746 </div>
1747
1748 <div class="doc_text">
1749 <h5>Syntax:</h5>
1750 <pre>  call va_list (va_list)* %llvm.va_copy(va_list &lt;destarglist&gt;)<br></pre>
1751 <h5>Overview:</h5>
1752 <p>The '<tt>llvm.va_copy</tt>' intrinsic copies the current argument
1753 position from the source argument list to the destination argument list.</p>
1754 <h5>Arguments:</h5>
1755 <p>The argument is the <tt>va_list</tt> to copy.</p>
1756 <h5>Semantics:</h5>
1757 <p>The '<tt>llvm.va_copy</tt>' intrinsic works just like the <tt>va_copy</tt>
1758 macro available in C.  In a target-dependent way, it copies the source <tt>va_list</tt>
1759 element 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
1761 complex and require memory allocation, for example.</p>
1762 </div>
1763
1764 <!-- ======================================================================= -->
1765 <div class="doc_subsection">
1766   <a name="int_codegen">Code Generator Intrinsics</a>
1767 </div>
1768
1769 <div class="doc_text">
1770 <p>
1771 These intrinsics are provided by LLVM to expose special features that may only
1772 be 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>
1792 The '<tt>llvm.returnaddress</tt>' intrinsic returns a target-specific value
1793 indicating the return address of the current function or one of its callers.
1794 </p>
1795
1796 <h5>Arguments:</h5>
1797
1798 <p>
1799 The argument to this intrinsic indicates which function to return the address
1800 for.  Zero indicates the calling function, one indicates its caller, etc.  The
1801 argument is <b>required</b> to be a constant integer value.
1802 </p>
1803
1804 <h5>Semantics:</h5>
1805
1806 <p>
1807 The '<tt>llvm.returnaddress</tt>' intrinsic either returns a pointer indicating
1808 the return address of the specified call frame, or zero if it cannot be
1809 identified.  The value returned by this intrinsic is likely to be incorrect or 0
1810 for arguments other than zero, so it should only be used for debugging purposes.
1811 </p>
1812
1813 <p>
1814 Note that calling this intrinsic does not prevent function inlining or other
1815 aggressive transformations, so the value returned may not that of the obvious
1816 source-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>
1836 The '<tt>llvm.frameaddress</tt>' intrinsic returns the target-specific frame
1837 pointer value for the specified stack frame.
1838 </p>
1839
1840 <h5>Arguments:</h5>
1841
1842 <p>
1843 The argument to this intrinsic indicates which function to return the frame
1844 pointer for.  Zero indicates the calling function, one indicates its caller,
1845 etc.  The argument is <b>required</b> to be a constant integer value.
1846 </p>
1847
1848 <h5>Semantics:</h5>
1849
1850 <p>
1851 The '<tt>llvm.frameaddress</tt>' intrinsic either returns a pointer indicating
1852 the frame address of the specified call frame, or zero if it cannot be
1853 identified.  The value returned by this intrinsic is likely to be incorrect or 0
1854 for arguments other than zero, so it should only be used for debugging purposes.
1855 </p>
1856
1857 <p>
1858 Note that calling this intrinsic does not prevent function inlining or other
1859 aggressive transformations, so the value returned may not that of the obvious
1860 source-language caller.
1861 </p>
1862 </div>
1863
1864
1865 <!-- ======================================================================= -->
1866 <div class="doc_subsection">
1867   <a name="int_libc">Standard C Library Intrinsics</a>
1868 </div>
1869
1870 <div class="doc_text">
1871 <p>
1872 LLVM provides intrinsics for a few important standard C library functions.
1873 These intrinsics allow source-language front-ends to pass information about the
1874 alignment of the pointer arguments to the code generator, providing opportunity
1875 for more efficient code generation.
1876 </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>
1896 The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source
1897 location to the destination location.
1898 </p>
1899
1900 <p>
1901 Note that, unlike the standard libc function, the <tt>llvm.memcpy</tt> intrinsic
1902 does not return a value, and takes an extra alignment argument.
1903 </p>
1904
1905 <h5>Arguments:</h5>
1906
1907 <p>
1908 The first argument is a pointer to the destination, the second is a pointer to
1909 the source.  The third argument is an (arbitrarily sized) integer argument
1910 specifying the number of bytes to copy, and the fourth argument is the alignment
1911 of the source and destination locations.
1912 </p>
1913
1914 <p>
1915 If the call to this intrinisic has an alignment value that is not 0 or 1, then
1916 the caller guarantees that the size of the copy is a multiple of the alignment
1917 and that both the source and destination pointers are aligned to that boundary.
1918 </p>
1919
1920 <h5>Semantics:</h5>
1921
1922 <p>
1923 The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source
1924 location to the destination location, which are not allowed to overlap.  It
1925 copies "len" bytes of memory over.  If the argument is known to be aligned to
1926 some boundary, this can be specified as the fourth argument, otherwise it should
1927 be set to 0 or 1.
1928 </p>
1929 </div>
1930
1931
1932 <!-- _______________________________________________________________________ -->
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>
1948 The '<tt>llvm.memmove</tt>' intrinsic moves a block of memory from the source
1949 location to the destination location. It is similar to the '<tt>llvm.memcpy</tt>' 
1950 intrinsic but allows the two memory locations to overlap.
1951 </p>
1952
1953 <p>
1954 Note that, unlike the standard libc function, the <tt>llvm.memmove</tt> intrinsic
1955 does not return a value, and takes an extra alignment argument.
1956 </p>
1957
1958 <h5>Arguments:</h5>
1959
1960 <p>
1961 The first argument is a pointer to the destination, the second is a pointer to
1962 the source.  The third argument is an (arbitrarily sized) integer argument
1963 specifying the number of bytes to copy, and the fourth argument is the alignment
1964 of the source and destination locations.
1965 </p>
1966
1967 <p>
1968 If the call to this intrinisic has an alignment value that is not 0 or 1, then
1969 the caller guarantees that the size of the copy is a multiple of the alignment
1970 and that both the source and destination pointers are aligned to that boundary.
1971 </p>
1972
1973 <h5>Semantics:</h5>
1974
1975 <p>
1976 The '<tt>llvm.memmove</tt>' intrinsic copies a block of memory from the source
1977 location to the destination location, which may overlap.  It
1978 copies "len" bytes of memory over.  If the argument is known to be aligned to
1979 some boundary, this can be specified as the fourth argument, otherwise it should
1980 be set to 0 or 1.
1981 </p>
1982 </div>
1983
1984
1985 <!-- _______________________________________________________________________ -->
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>
2001 The '<tt>llvm.memset</tt>' intrinsic fills a block of memory with a particular
2002 byte value.
2003 </p>
2004
2005 <p>
2006 Note that, unlike the standard libc function, the <tt>llvm.memset</tt> intrinsic
2007 does not return a value, and takes an extra alignment argument.
2008 </p>
2009
2010 <h5>Arguments:</h5>
2011
2012 <p>
2013 The first argument is a pointer to the destination to fill, the second is the
2014 byte value to fill it with, the third argument is an (arbitrarily sized) integer
2015 argument specifying the number of bytes to fill, and the fourth argument is the
2016 known alignment of destination location.
2017 </p>
2018
2019 <p>
2020 If the call to this intrinisic has an alignment value that is not 0 or 1, then
2021 the caller guarantees that the size of the copy is a multiple of the alignment
2022 and that the destination pointer is aligned to that boundary.
2023 </p>
2024
2025 <h5>Semantics:</h5>
2026
2027 <p>
2028 The '<tt>llvm.memset</tt>' intrinsic fills "len" bytes of memory starting at the
2029 destination location.  If the argument is known to be aligned to some boundary,
2030 this can be specified as the fourth argument, otherwise it should be set to 0 or
2031 1.
2032 </p>
2033 </div>
2034
2035
2036 <!-- ======================================================================= -->
2037 <div class="doc_subsection">
2038   <a name="int_debugger">Debugger Intrinsics</a>
2039 </div>
2040
2041 <div class="doc_text">
2042 <p>
2043 The LLVM debugger intrinsics (which all start with <tt>llvm.dbg.</tt> prefix),
2044 are described in the <a
2045 href="SourceLevelDebugging.html#format_common_intrinsics">LLVM Source Level
2046 Debugging</a> document.
2047 </p>
2048 </div>
2049
2050
2051 <!-- *********************************************************************** -->
2052 <hr>
2053 <address>
2054   <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
2055   src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
2056   <a href="http://validator.w3.org/check/referer"><img
2057   src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
2058
2059   <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
2060   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
2061   Last modified: $Date$
2062 </address>
2063 </body>
2064 </html>