6e339f6616dd616d747a0227a5ebac5d3f07356a
[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   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7   <meta name="author" content="Chris Lattner">
8   <meta name="description" 
9   content="LLVM Assembly Language Reference Manual.">
10   <link rel="stylesheet" href="llvm.css" type="text/css">
11 </head>
12
13 <body>
14
15 <div class="doc_title"> LLVM Language Reference Manual </div>
16 <ol>
17   <li><a href="#abstract">Abstract</a></li>
18   <li><a href="#introduction">Introduction</a></li>
19   <li><a href="#identifiers">Identifiers</a></li>
20   <li><a href="#highlevel">High Level Structure</a>
21     <ol>
22       <li><a href="#modulestructure">Module Structure</a></li>
23       <li><a href="#linkage">Linkage Types</a></li>
24       <li><a href="#callingconv">Calling Conventions</a></li>
25       <li><a href="#globalvars">Global Variables</a></li>
26       <li><a href="#functionstructure">Functions</a></li>
27       <li><a href="#moduleasm">Module-Level Inline Assembly</a></li>
28     </ol>
29   </li>
30   <li><a href="#typesystem">Type System</a>
31     <ol>
32       <li><a href="#t_primitive">Primitive Types</a>    
33         <ol>
34           <li><a href="#t_classifications">Type Classifications</a></li>
35         </ol>
36       </li>
37       <li><a href="#t_derived">Derived Types</a>
38         <ol>
39           <li><a href="#t_array">Array Type</a></li>
40           <li><a href="#t_function">Function Type</a></li>
41           <li><a href="#t_pointer">Pointer Type</a></li>
42           <li><a href="#t_struct">Structure Type</a></li>
43           <li><a href="#t_packed">Packed Type</a></li>
44           <li><a href="#t_opaque">Opaque Type</a></li>
45         </ol>
46       </li>
47     </ol>
48   </li>
49   <li><a href="#constants">Constants</a>
50     <ol>
51       <li><a href="#simpleconstants">Simple Constants</a>
52       <li><a href="#aggregateconstants">Aggregate Constants</a>
53       <li><a href="#globalconstants">Global Variable and Function Addresses</a>
54       <li><a href="#undefvalues">Undefined Values</a>
55       <li><a href="#constantexprs">Constant Expressions</a>
56     </ol>
57   </li>
58   <li><a href="#othervalues">Other Values</a>
59     <ol>
60       <li><a href="#inlineasm">Inline Assembler Expressions</a>
61     </ol>
62   </li>
63   <li><a href="#instref">Instruction Reference</a>
64     <ol>
65       <li><a href="#terminators">Terminator Instructions</a>
66         <ol>
67           <li><a href="#i_ret">'<tt>ret</tt>' Instruction</a></li>
68           <li><a href="#i_br">'<tt>br</tt>' Instruction</a></li>
69           <li><a href="#i_switch">'<tt>switch</tt>' Instruction</a></li>
70           <li><a href="#i_invoke">'<tt>invoke</tt>' Instruction</a></li>
71           <li><a href="#i_unwind">'<tt>unwind</tt>'  Instruction</a></li>
72           <li><a href="#i_unreachable">'<tt>unreachable</tt>' Instruction</a></li>
73         </ol>
74       </li>
75       <li><a href="#binaryops">Binary Operations</a>
76         <ol>
77           <li><a href="#i_add">'<tt>add</tt>' Instruction</a></li>
78           <li><a href="#i_sub">'<tt>sub</tt>' Instruction</a></li>
79           <li><a href="#i_mul">'<tt>mul</tt>' Instruction</a></li>
80           <li><a href="#i_div">'<tt>div</tt>' Instruction</a></li>
81           <li><a href="#i_rem">'<tt>rem</tt>' Instruction</a></li>
82           <li><a href="#i_setcc">'<tt>set<i>cc</i></tt>' Instructions</a></li>
83         </ol>
84       </li>
85       <li><a href="#bitwiseops">Bitwise Binary Operations</a>
86         <ol>
87           <li><a href="#i_and">'<tt>and</tt>' Instruction</a></li>
88           <li><a href="#i_or">'<tt>or</tt>'  Instruction</a></li>
89           <li><a href="#i_xor">'<tt>xor</tt>' Instruction</a></li>
90           <li><a href="#i_shl">'<tt>shl</tt>' Instruction</a></li>
91           <li><a href="#i_shr">'<tt>shr</tt>' Instruction</a></li>
92         </ol>
93       </li>
94       <li><a href="#vectorops">Vector Operations</a>
95         <ol>
96           <li><a href="#i_extractelement">'<tt>extractelement</tt>' Instruction</a></li>
97           <li><a href="#i_insertelement">'<tt>insertelement</tt>' Instruction</a></li>
98           <li><a href="#i_shufflevector">'<tt>shufflevector</tt>' Instruction</a></li>
99           <li><a href="#i_vsetint">'<tt>vsetint</tt>' Instruction</a></li>
100           <li><a href="#i_vsetfp">'<tt>vsetfp</tt>' Instruction</a></li>
101           <li><a href="#i_vselect">'<tt>vselect</tt>' Instruction</a></li>
102         </ol>
103       </li>
104       <li><a href="#memoryops">Memory Access Operations</a>
105         <ol>
106           <li><a href="#i_malloc">'<tt>malloc</tt>'   Instruction</a></li>
107           <li><a href="#i_free">'<tt>free</tt>'     Instruction</a></li>
108           <li><a href="#i_alloca">'<tt>alloca</tt>'   Instruction</a></li>
109          <li><a href="#i_load">'<tt>load</tt>'     Instruction</a></li>
110          <li><a href="#i_store">'<tt>store</tt>'    Instruction</a></li>
111          <li><a href="#i_getelementptr">'<tt>getelementptr</tt>' Instruction</a></li>
112         </ol>
113       </li>
114       <li><a href="#otherops">Other Operations</a>
115         <ol>
116           <li><a href="#i_phi">'<tt>phi</tt>'   Instruction</a></li>
117           <li><a href="#i_cast">'<tt>cast .. to</tt>' Instruction</a></li>
118           <li><a href="#i_select">'<tt>select</tt>' Instruction</a></li>
119           <li><a href="#i_call">'<tt>call</tt>'  Instruction</a></li>
120           <li><a href="#i_va_arg">'<tt>va_arg</tt>'  Instruction</a></li>
121         </ol>
122       </li>
123     </ol>
124   </li>
125   <li><a href="#intrinsics">Intrinsic Functions</a>
126     <ol>
127       <li><a href="#int_varargs">Variable Argument Handling Intrinsics</a>
128         <ol>
129           <li><a href="#i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a></li>
130           <li><a href="#i_va_end">'<tt>llvm.va_end</tt>'   Intrinsic</a></li>
131           <li><a href="#i_va_copy">'<tt>llvm.va_copy</tt>'  Intrinsic</a></li>
132         </ol>
133       </li>
134       <li><a href="#int_gc">Accurate Garbage Collection Intrinsics</a>
135         <ol>
136           <li><a href="#i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a></li>
137           <li><a href="#i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a></li>
138           <li><a href="#i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a></li>
139         </ol>
140       </li>
141       <li><a href="#int_codegen">Code Generator Intrinsics</a>
142         <ol>
143           <li><a href="#i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a></li>
144           <li><a href="#i_frameaddress">'<tt>llvm.frameaddress</tt>'   Intrinsic</a></li>
145           <li><a href="#i_stacksave">'<tt>llvm.stacksave</tt>' Intrinsic</a></li>
146           <li><a href="#i_stackrestore">'<tt>llvm.stackrestore</tt>' Intrinsic</a></li>
147           <li><a href="#i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a></li>
148           <li><a href="#i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a></li>
149           <li><a href="#i_readcyclecounter"><tt>llvm.readcyclecounter</tt>' Intrinsic</a></li>
150         </ol>
151       </li>
152       <li><a href="#int_libc">Standard C Library Intrinsics</a>
153         <ol>
154           <li><a href="#i_memcpy">'<tt>llvm.memcpy.*</tt>' Intrinsic</a></li>
155           <li><a href="#i_memmove">'<tt>llvm.memmove.*</tt>' Intrinsic</a></li>
156           <li><a href="#i_memset">'<tt>llvm.memset.*</tt>' Intrinsic</a></li>
157           <li><a href="#i_isunordered">'<tt>llvm.isunordered.*</tt>' Intrinsic</a></li>
158           <li><a href="#i_sqrt">'<tt>llvm.sqrt.*</tt>' Intrinsic</a></li>
159
160         </ol>
161       </li>
162       <li><a href="#int_manip">Bit Manipulation Intrinsics</a>
163         <ol>
164           <li><a href="#i_bswap">'<tt>llvm.bswap.*</tt>' Intrinsics</a></li>
165           <li><a href="#int_ctpop">'<tt>llvm.ctpop.*</tt>' Intrinsic </a></li>
166           <li><a href="#int_ctlz">'<tt>llvm.ctlz.*</tt>' Intrinsic </a></li>
167           <li><a href="#int_cttz">'<tt>llvm.cttz.*</tt>' Intrinsic </a></li>
168         </ol>
169       </li>
170       <li><a href="#int_debugger">Debugger intrinsics</a></li>
171     </ol>
172   </li>
173 </ol>
174
175 <div class="doc_author">
176   <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
177             and <a href="mailto:vadve@cs.uiuc.edu">Vikram Adve</a></p>
178 </div>
179
180 <!-- *********************************************************************** -->
181 <div class="doc_section"> <a name="abstract">Abstract </a></div>
182 <!-- *********************************************************************** -->
183
184 <div class="doc_text">
185 <p>This document is a reference manual for the LLVM assembly language. 
186 LLVM is an SSA based representation that provides type safety,
187 low-level operations, flexibility, and the capability of representing
188 'all' high-level languages cleanly.  It is the common code
189 representation used throughout all phases of the LLVM compilation
190 strategy.</p>
191 </div>
192
193 <!-- *********************************************************************** -->
194 <div class="doc_section"> <a name="introduction">Introduction</a> </div>
195 <!-- *********************************************************************** -->
196
197 <div class="doc_text">
198
199 <p>The LLVM code representation is designed to be used in three
200 different forms: as an in-memory compiler IR, as an on-disk bytecode
201 representation (suitable for fast loading by a Just-In-Time compiler),
202 and as a human readable assembly language representation.  This allows
203 LLVM to provide a powerful intermediate representation for efficient
204 compiler transformations and analysis, while providing a natural means
205 to debug and visualize the transformations.  The three different forms
206 of LLVM are all equivalent.  This document describes the human readable
207 representation and notation.</p>
208
209 <p>The LLVM representation aims to be light-weight and low-level
210 while being expressive, typed, and extensible at the same time.  It
211 aims to be a "universal IR" of sorts, by being at a low enough level
212 that high-level ideas may be cleanly mapped to it (similar to how
213 microprocessors are "universal IR's", allowing many source languages to
214 be mapped to them).  By providing type information, LLVM can be used as
215 the target of optimizations: for example, through pointer analysis, it
216 can be proven that a C automatic variable is never accessed outside of
217 the current function... allowing it to be promoted to a simple SSA
218 value instead of a memory location.</p>
219
220 </div>
221
222 <!-- _______________________________________________________________________ -->
223 <div class="doc_subsubsection"> <a name="wellformed">Well-Formedness</a> </div>
224
225 <div class="doc_text">
226
227 <p>It is important to note that this document describes 'well formed'
228 LLVM assembly language.  There is a difference between what the parser
229 accepts and what is considered 'well formed'.  For example, the
230 following instruction is syntactically okay, but not well formed:</p>
231
232 <pre>
233   %x = <a href="#i_add">add</a> int 1, %x
234 </pre>
235
236 <p>...because the definition of <tt>%x</tt> does not dominate all of
237 its uses. The LLVM infrastructure provides a verification pass that may
238 be used to verify that an LLVM module is well formed.  This pass is
239 automatically run by the parser after parsing input assembly and by
240 the optimizer before it outputs bytecode.  The violations pointed out
241 by the verifier pass indicate bugs in transformation passes or input to
242 the parser.</p>
243
244 <!-- Describe the typesetting conventions here. --> </div>
245
246 <!-- *********************************************************************** -->
247 <div class="doc_section"> <a name="identifiers">Identifiers</a> </div>
248 <!-- *********************************************************************** -->
249
250 <div class="doc_text">
251
252 <p>LLVM uses three different forms of identifiers, for different
253 purposes:</p>
254
255 <ol>
256   <li>Named values are represented as a string of characters with a '%' prefix.
257   For example, %foo, %DivisionByZero, %a.really.long.identifier.  The actual
258   regular expression used is '<tt>%[a-zA-Z$._][a-zA-Z$._0-9]*</tt>'.
259   Identifiers which require other characters in their names can be surrounded
260   with quotes.  In this way, anything except a <tt>"</tt> character can be used
261   in a name.</li>
262
263   <li>Unnamed values are represented as an unsigned numeric value with a '%'
264   prefix.  For example, %12, %2, %44.</li>
265
266   <li>Constants, which are described in a <a href="#constants">section about
267   constants</a>, below.</li>
268 </ol>
269
270 <p>LLVM requires that values start with a '%' sign for two reasons: Compilers
271 don't need to worry about name clashes with reserved words, and the set of
272 reserved words may be expanded in the future without penalty.  Additionally,
273 unnamed identifiers allow a compiler to quickly come up with a temporary
274 variable without having to avoid symbol table conflicts.</p>
275
276 <p>Reserved words in LLVM are very similar to reserved words in other
277 languages. There are keywords for different opcodes ('<tt><a
278 href="#i_add">add</a></tt>', '<tt><a href="#i_cast">cast</a></tt>', '<tt><a
279 href="#i_ret">ret</a></tt>', etc...), for primitive type names ('<tt><a
280 href="#t_void">void</a></tt>', '<tt><a href="#t_uint">uint</a></tt>', etc...),
281 and others.  These reserved words cannot conflict with variable names, because
282 none of them start with a '%' character.</p>
283
284 <p>Here is an example of LLVM code to multiply the integer variable
285 '<tt>%X</tt>' by 8:</p>
286
287 <p>The easy way:</p>
288
289 <pre>
290   %result = <a href="#i_mul">mul</a> uint %X, 8
291 </pre>
292
293 <p>After strength reduction:</p>
294
295 <pre>
296   %result = <a href="#i_shl">shl</a> uint %X, ubyte 3
297 </pre>
298
299 <p>And the hard way:</p>
300
301 <pre>
302   <a href="#i_add">add</a> uint %X, %X           <i>; yields {uint}:%0</i>
303   <a href="#i_add">add</a> uint %0, %0           <i>; yields {uint}:%1</i>
304   %result = <a href="#i_add">add</a> uint %1, %1
305 </pre>
306
307 <p>This last way of multiplying <tt>%X</tt> by 8 illustrates several
308 important lexical features of LLVM:</p>
309
310 <ol>
311
312   <li>Comments are delimited with a '<tt>;</tt>' and go until the end of
313   line.</li>
314
315   <li>Unnamed temporaries are created when the result of a computation is not
316   assigned to a named value.</li>
317
318   <li>Unnamed temporaries are numbered sequentially</li>
319
320 </ol>
321
322 <p>...and it also shows a convention that we follow in this document.  When
323 demonstrating instructions, we will follow an instruction with a comment that
324 defines the type and name of value produced.  Comments are shown in italic
325 text.</p>
326
327 </div>
328
329 <!-- *********************************************************************** -->
330 <div class="doc_section"> <a name="highlevel">High Level Structure</a> </div>
331 <!-- *********************************************************************** -->
332
333 <!-- ======================================================================= -->
334 <div class="doc_subsection"> <a name="modulestructure">Module Structure</a>
335 </div>
336
337 <div class="doc_text">
338
339 <p>LLVM programs are composed of "Module"s, each of which is a
340 translation unit of the input programs.  Each module consists of
341 functions, global variables, and symbol table entries.  Modules may be
342 combined together with the LLVM linker, which merges function (and
343 global variable) definitions, resolves forward declarations, and merges
344 symbol table entries. Here is an example of the "hello world" module:</p>
345
346 <pre><i>; Declare the string constant as a global constant...</i>
347 <a href="#identifiers">%.LC0</a> = <a href="#linkage_internal">internal</a> <a
348  href="#globalvars">constant</a> <a href="#t_array">[13 x sbyte]</a> c"hello world\0A\00"          <i>; [13 x sbyte]*</i>
349
350 <i>; External declaration of the puts function</i>
351 <a href="#functionstructure">declare</a> int %puts(sbyte*)                                            <i>; int(sbyte*)* </i>
352
353 <i>; Global variable / Function body section separator</i>
354 implementation
355
356 <i>; Definition of main function</i>
357 int %main() {                                                        <i>; int()* </i>
358         <i>; Convert [13x sbyte]* to sbyte *...</i>
359         %cast210 = <a
360  href="#i_getelementptr">getelementptr</a> [13 x sbyte]* %.LC0, long 0, long 0 <i>; sbyte*</i>
361
362         <i>; Call puts function to write out the string to stdout...</i>
363         <a
364  href="#i_call">call</a> int %puts(sbyte* %cast210)                              <i>; int</i>
365         <a
366  href="#i_ret">ret</a> int 0<br>}<br></pre>
367
368 <p>This example is made up of a <a href="#globalvars">global variable</a>
369 named "<tt>.LC0</tt>", an external declaration of the "<tt>puts</tt>"
370 function, and a <a href="#functionstructure">function definition</a>
371 for "<tt>main</tt>".</p>
372
373 <p>In general, a module is made up of a list of global values,
374 where both functions and global variables are global values.  Global values are
375 represented by a pointer to a memory location (in this case, a pointer to an
376 array of char, and a pointer to a function), and have one of the following <a
377 href="#linkage">linkage types</a>.</p>
378
379 <p>Due to a limitation in the current LLVM assembly parser (it is limited by
380 one-token lookahead), modules are split into two pieces by the "implementation"
381 keyword.  Global variable prototypes and definitions must occur before the
382 keyword, and function definitions must occur after it.  Function prototypes may
383 occur either before or after it.  In the future, the implementation keyword may
384 become a noop, if the parser gets smarter.</p>
385
386 </div>
387
388 <!-- ======================================================================= -->
389 <div class="doc_subsection">
390   <a name="linkage">Linkage Types</a>
391 </div>
392
393 <div class="doc_text">
394
395 <p>
396 All Global Variables and Functions have one of the following types of linkage:
397 </p>
398
399 <dl>
400
401   <dt><tt><b><a name="linkage_internal">internal</a></b></tt> </dt>
402
403   <dd>Global values with internal linkage are only directly accessible by
404   objects in the current module.  In particular, linking code into a module with
405   an internal global value may cause the internal to be renamed as necessary to
406   avoid collisions.  Because the symbol is internal to the module, all
407   references can be updated.  This corresponds to the notion of the
408   '<tt>static</tt>' keyword in C, or the idea of "anonymous namespaces" in C++.
409   </dd>
410
411   <dt><tt><b><a name="linkage_linkonce">linkonce</a></b></tt>: </dt>
412
413   <dd>"<tt>linkonce</tt>" linkage is similar to <tt>internal</tt> linkage, with
414   the twist that linking together two modules defining the same
415   <tt>linkonce</tt> globals will cause one of the globals to be discarded.  This
416   is typically used to implement inline functions.  Unreferenced
417   <tt>linkonce</tt> globals are allowed to be discarded.
418   </dd>
419
420   <dt><tt><b><a name="linkage_weak">weak</a></b></tt>: </dt>
421
422   <dd>"<tt>weak</tt>" linkage is exactly the same as <tt>linkonce</tt> linkage,
423   except that unreferenced <tt>weak</tt> globals may not be discarded.  This is
424   used to implement constructs in C such as "<tt>int X;</tt>" at global scope.
425   </dd>
426
427   <dt><tt><b><a name="linkage_appending">appending</a></b></tt>: </dt>
428
429   <dd>"<tt>appending</tt>" linkage may only be applied to global variables of
430   pointer to array type.  When two global variables with appending linkage are
431   linked together, the two global arrays are appended together.  This is the
432   LLVM, typesafe, equivalent of having the system linker append together
433   "sections" with identical names when .o files are linked.
434   </dd>
435
436   <dt><tt><b><a name="linkage_external">externally visible</a></b></tt>:</dt>
437
438   <dd>If none of the above identifiers are used, the global is externally
439   visible, meaning that it participates in linkage and can be used to resolve
440   external symbol references.
441   </dd>
442 </dl>
443
444 <p><a name="linkage_external">For example, since the "<tt>.LC0</tt>"
445 variable is defined to be internal, if another module defined a "<tt>.LC0</tt>"
446 variable and was linked with this one, one of the two would be renamed,
447 preventing a collision.  Since "<tt>main</tt>" and "<tt>puts</tt>" are
448 external (i.e., lacking any linkage declarations), they are accessible
449 outside of the current module.  It is illegal for a function <i>declaration</i>
450 to have any linkage type other than "externally visible".</a></p>
451
452 </div>
453
454 <!-- ======================================================================= -->
455 <div class="doc_subsection">
456   <a name="callingconv">Calling Conventions</a>
457 </div>
458
459 <div class="doc_text">
460
461 <p>LLVM <a href="#functionstructure">functions</a>, <a href="#i_call">calls</a>
462 and <a href="#i_invoke">invokes</a> can all have an optional calling convention
463 specified for the call.  The calling convention of any pair of dynamic
464 caller/callee must match, or the behavior of the program is undefined.  The
465 following calling conventions are supported by LLVM, and more may be added in
466 the future:</p>
467
468 <dl>
469   <dt><b>"<tt>ccc</tt>" - The C calling convention</b>:</dt>
470
471   <dd>This calling convention (the default if no other calling convention is
472   specified) matches the target C calling conventions.  This calling convention
473   supports varargs function calls and tolerates some mismatch in the declared
474   prototype and implemented declaration of the function (as does normal C).
475   </dd>
476
477   <dt><b>"<tt>csretcc</tt>" - The C struct return calling convention</b>:</dt>
478
479   <dd>This calling convention matches the target C calling conventions, except
480   that functions with this convention are required to take a pointer as their
481   first argument, and the return type of the function must be void.  This is
482   used for C functions that return aggregates by-value.  In this case, the
483   function has been transformed to take a pointer to the struct as the first
484   argument to the function.  For targets where the ABI specifies specific
485   behavior for structure-return calls, the calling convention can be used to
486   distinguish between struct return functions and other functions that take a
487   pointer to a struct as the first argument.
488   </dd>
489
490   <dt><b>"<tt>fastcc</tt>" - The fast calling convention</b>:</dt>
491
492   <dd>This calling convention attempts to make calls as fast as possible
493   (e.g. by passing things in registers).  This calling convention allows the
494   target to use whatever tricks it wants to produce fast code for the target,
495   without having to conform to an externally specified ABI.  Implementations of
496   this convention should allow arbitrary tail call optimization to be supported.
497   This calling convention does not support varargs and requires the prototype of
498   all callees to exactly match the prototype of the function definition.
499   </dd>
500
501   <dt><b>"<tt>coldcc</tt>" - The cold calling convention</b>:</dt>
502
503   <dd>This calling convention attempts to make code in the caller as efficient
504   as possible under the assumption that the call is not commonly executed.  As
505   such, these calls often preserve all registers so that the call does not break
506   any live ranges in the caller side.  This calling convention does not support
507   varargs and requires the prototype of all callees to exactly match the
508   prototype of the function definition.
509   </dd>
510
511   <dt><b>"<tt>cc &lt;<em>n</em>&gt;</tt>" - Numbered convention</b>:</dt>
512
513   <dd>Any calling convention may be specified by number, allowing
514   target-specific calling conventions to be used.  Target specific calling
515   conventions start at 64.
516   </dd>
517 </dl>
518
519 <p>More calling conventions can be added/defined on an as-needed basis, to
520 support pascal conventions or any other well-known target-independent
521 convention.</p>
522
523 </div>
524
525 <!-- ======================================================================= -->
526 <div class="doc_subsection">
527   <a name="globalvars">Global Variables</a>
528 </div>
529
530 <div class="doc_text">
531
532 <p>Global variables define regions of memory allocated at compilation time
533 instead of run-time.  Global variables may optionally be initialized, may have
534 an explicit section to be placed in, and may
535 have an optional explicit alignment specified.  A
536 variable may be defined as a global "constant," which indicates that the
537 contents of the variable will <b>never</b> be modified (enabling better
538 optimization, allowing the global data to be placed in the read-only section of
539 an executable, etc).  Note that variables that need runtime initialization
540 cannot be marked "constant" as there is a store to the variable.</p>
541
542 <p>
543 LLVM explicitly allows <em>declarations</em> of global variables to be marked
544 constant, even if the final definition of the global is not.  This capability
545 can be used to enable slightly better optimization of the program, but requires
546 the language definition to guarantee that optimizations based on the
547 'constantness' are valid for the translation units that do not include the
548 definition.
549 </p>
550
551 <p>As SSA values, global variables define pointer values that are in
552 scope (i.e. they dominate) all basic blocks in the program.  Global
553 variables always define a pointer to their "content" type because they
554 describe a region of memory, and all memory objects in LLVM are
555 accessed through pointers.</p>
556
557 <p>LLVM allows an explicit section to be specified for globals.  If the target
558 supports it, it will emit globals to the section specified.</p>
559
560 <p>An explicit alignment may be specified for a global.  If not present, or if
561 the alignment is set to zero, the alignment of the global is set by the target
562 to whatever it feels convenient.  If an explicit alignment is specified, the 
563 global is forced to have at least that much alignment.  All alignments must be
564 a power of 2.</p>
565
566 </div>
567
568
569 <!-- ======================================================================= -->
570 <div class="doc_subsection">
571   <a name="functionstructure">Functions</a>
572 </div>
573
574 <div class="doc_text">
575
576 <p>LLVM function definitions consist of an optional <a href="#linkage">linkage
577 type</a>, an optional <a href="#callingconv">calling convention</a>, a return
578 type, a function name, a (possibly empty) argument list, an optional section,
579 an optional alignment, an opening curly brace,
580 a list of basic blocks, and a closing curly brace.  LLVM function declarations
581 are defined with the "<tt>declare</tt>" keyword, an optional <a
582 href="#callingconv">calling convention</a>, a return type, a function name,
583 a possibly empty list of arguments, and an optional alignment.</p>
584
585 <p>A function definition contains a list of basic blocks, forming the CFG for
586 the function.  Each basic block may optionally start with a label (giving the
587 basic block a symbol table entry), contains a list of instructions, and ends
588 with a <a href="#terminators">terminator</a> instruction (such as a branch or
589 function return).</p>
590
591 <p>The first basic block in a program is special in two ways: it is immediately
592 executed on entrance to the function, and it is not allowed to have predecessor
593 basic blocks (i.e. there can not be any branches to the entry block of a
594 function).  Because the block can have no predecessors, it also cannot have any
595 <a href="#i_phi">PHI nodes</a>.</p>
596
597 <p>LLVM functions are identified by their name and type signature.  Hence, two
598 functions with the same name but different parameter lists or return values are
599 considered different functions, and LLVM will resolve references to each
600 appropriately.</p>
601
602 <p>LLVM allows an explicit section to be specified for functions.  If the target
603 supports it, it will emit functions to the section specified.</p>
604
605 <p>An explicit alignment may be specified for a function.  If not present, or if
606 the alignment is set to zero, the alignment of the function is set by the target
607 to whatever it feels convenient.  If an explicit alignment is specified, the
608 function is forced to have at least that much alignment.  All alignments must be
609 a power of 2.</p>
610
611 </div>
612
613 <!-- ======================================================================= -->
614 <div class="doc_subsection">
615   <a name="moduleasm">Module-Level Inline Assembly</a>
616 </div>
617
618 <div class="doc_text">
619 <p>
620 Modules may contain "module-level inline asm" blocks, which corresponds to the
621 GCC "file scope inline asm" blocks.  These blocks are internally concatenated by
622 LLVM and treated as a single unit, but may be separated in the .ll file if
623 desired.  The syntax is very simple:
624 </p>
625
626 <div class="doc_code"><pre>
627   module asm "inline asm code goes here"
628   module asm "more can go here"
629 </pre></div>
630
631 <p>The strings can contain any character by escaping non-printable characters.
632    The escape sequence used is simply "\xx" where "xx" is the two digit hex code
633    for the number.
634 </p>
635
636 <p>
637   The inline asm code is simply printed to the machine code .s file when
638   assembly code is generated.
639 </p>
640 </div>
641
642
643 <!-- *********************************************************************** -->
644 <div class="doc_section"> <a name="typesystem">Type System</a> </div>
645 <!-- *********************************************************************** -->
646
647 <div class="doc_text">
648
649 <p>The LLVM type system is one of the most important features of the
650 intermediate representation.  Being typed enables a number of
651 optimizations to be performed on the IR directly, without having to do
652 extra analyses on the side before the transformation.  A strong type
653 system makes it easier to read the generated code and enables novel
654 analyses and transformations that are not feasible to perform on normal
655 three address code representations.</p>
656
657 </div>
658
659 <!-- ======================================================================= -->
660 <div class="doc_subsection"> <a name="t_primitive">Primitive Types</a> </div>
661 <div class="doc_text">
662 <p>The primitive types are the fundamental building blocks of the LLVM
663 system. The current set of primitive types is as follows:</p>
664
665 <table class="layout">
666   <tr class="layout">
667     <td class="left">
668       <table>
669         <tbody>
670         <tr><th>Type</th><th>Description</th></tr>
671         <tr><td><tt>void</tt></td><td>No value</td></tr>
672         <tr><td><tt>ubyte</tt></td><td>Unsigned 8-bit value</td></tr>
673         <tr><td><tt>ushort</tt></td><td>Unsigned 16-bit value</td></tr>
674         <tr><td><tt>uint</tt></td><td>Unsigned 32-bit value</td></tr>
675         <tr><td><tt>ulong</tt></td><td>Unsigned 64-bit value</td></tr>
676         <tr><td><tt>float</tt></td><td>32-bit floating point value</td></tr>
677         <tr><td><tt>label</tt></td><td>Branch destination</td></tr>
678         </tbody>
679       </table>
680     </td>
681     <td class="right">
682       <table>
683         <tbody>
684           <tr><th>Type</th><th>Description</th></tr>
685           <tr><td><tt>bool</tt></td><td>True or False value</td></tr>
686           <tr><td><tt>sbyte</tt></td><td>Signed 8-bit value</td></tr>
687           <tr><td><tt>short</tt></td><td>Signed 16-bit value</td></tr>
688           <tr><td><tt>int</tt></td><td>Signed 32-bit value</td></tr>
689           <tr><td><tt>long</tt></td><td>Signed 64-bit value</td></tr>
690           <tr><td><tt>double</tt></td><td>64-bit floating point value</td></tr>
691         </tbody>
692       </table>
693     </td>
694   </tr>
695 </table>
696 </div>
697
698 <!-- _______________________________________________________________________ -->
699 <div class="doc_subsubsection"> <a name="t_classifications">Type
700 Classifications</a> </div>
701 <div class="doc_text">
702 <p>These different primitive types fall into a few useful
703 classifications:</p>
704
705 <table border="1" cellspacing="0" cellpadding="4">
706   <tbody>
707     <tr><th>Classification</th><th>Types</th></tr>
708     <tr>
709       <td><a name="t_signed">signed</a></td>
710       <td><tt>sbyte, short, int, long, float, double</tt></td>
711     </tr>
712     <tr>
713       <td><a name="t_unsigned">unsigned</a></td>
714       <td><tt>ubyte, ushort, uint, ulong</tt></td>
715     </tr>
716     <tr>
717       <td><a name="t_integer">integer</a></td>
718       <td><tt>ubyte, sbyte, ushort, short, uint, int, ulong, long</tt></td>
719     </tr>
720     <tr>
721       <td><a name="t_integral">integral</a></td>
722       <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long</tt>
723       </td>
724     </tr>
725     <tr>
726       <td><a name="t_floating">floating point</a></td>
727       <td><tt>float, double</tt></td>
728     </tr>
729     <tr>
730       <td><a name="t_firstclass">first class</a></td>
731       <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long,<br> 
732       float, double, <a href="#t_pointer">pointer</a>, 
733       <a href="#t_packed">packed</a></tt></td>
734     </tr>
735   </tbody>
736 </table>
737
738 <p>The <a href="#t_firstclass">first class</a> types are perhaps the
739 most important.  Values of these types are the only ones which can be
740 produced by instructions, passed as arguments, or used as operands to
741 instructions.  This means that all structures and arrays must be
742 manipulated either by pointer or by component.</p>
743 </div>
744
745 <!-- ======================================================================= -->
746 <div class="doc_subsection"> <a name="t_derived">Derived Types</a> </div>
747
748 <div class="doc_text">
749
750 <p>The real power in LLVM comes from the derived types in the system. 
751 This is what allows a programmer to represent arrays, functions,
752 pointers, and other useful types.  Note that these derived types may be
753 recursive: For example, it is possible to have a two dimensional array.</p>
754
755 </div>
756
757 <!-- _______________________________________________________________________ -->
758 <div class="doc_subsubsection"> <a name="t_array">Array Type</a> </div>
759
760 <div class="doc_text">
761
762 <h5>Overview:</h5>
763
764 <p>The array type is a very simple derived type that arranges elements
765 sequentially in memory.  The array type requires a size (number of
766 elements) and an underlying data type.</p>
767
768 <h5>Syntax:</h5>
769
770 <pre>
771   [&lt;# elements&gt; x &lt;elementtype&gt;]
772 </pre>
773
774 <p>The number of elements is a constant integer value; elementtype may
775 be any type with a size.</p>
776
777 <h5>Examples:</h5>
778 <table class="layout">
779   <tr class="layout">
780     <td class="left">
781       <tt>[40 x int ]</tt><br/>
782       <tt>[41 x int ]</tt><br/>
783       <tt>[40 x uint]</tt><br/>
784     </td>
785     <td class="left">
786       Array of 40 integer values.<br/>
787       Array of 41 integer values.<br/>
788       Array of 40 unsigned integer values.<br/>
789     </td>
790   </tr>
791 </table>
792 <p>Here are some examples of multidimensional arrays:</p>
793 <table class="layout">
794   <tr class="layout">
795     <td class="left">
796       <tt>[3 x [4 x int]]</tt><br/>
797       <tt>[12 x [10 x float]]</tt><br/>
798       <tt>[2 x [3 x [4 x uint]]]</tt><br/>
799     </td>
800     <td class="left">
801       3x4 array of integer values.<br/>
802       12x10 array of single precision floating point values.<br/>
803       2x3x4 array of unsigned integer values.<br/>
804     </td>
805   </tr>
806 </table>
807
808 <p>Note that 'variable sized arrays' can be implemented in LLVM with a zero 
809 length array.  Normally, accesses past the end of an array are undefined in
810 LLVM (e.g. it is illegal to access the 5th element of a 3 element array).
811 As a special case, however, zero length arrays are recognized to be variable
812 length.  This allows implementation of 'pascal style arrays' with the  LLVM
813 type "{ int, [0 x float]}", for example.</p>
814
815 </div>
816
817 <!-- _______________________________________________________________________ -->
818 <div class="doc_subsubsection"> <a name="t_function">Function Type</a> </div>
819 <div class="doc_text">
820 <h5>Overview:</h5>
821 <p>The function type can be thought of as a function signature.  It
822 consists of a return type and a list of formal parameter types. 
823 Function types are usually used to build virtual function tables
824 (which are structures of pointers to functions), for indirect function
825 calls, and when defining a function.</p>
826 <p>
827 The return type of a function type cannot be an aggregate type.
828 </p>
829 <h5>Syntax:</h5>
830 <pre>  &lt;returntype&gt; (&lt;parameter list&gt;)<br></pre>
831 <p>...where '<tt>&lt;parameter list&gt;</tt>' is a comma-separated list of type
832 specifiers.  Optionally, the parameter list may include a type <tt>...</tt>,
833 which indicates that the function takes a variable number of arguments.
834 Variable argument functions can access their arguments with the <a
835  href="#int_varargs">variable argument handling intrinsic</a> functions.</p>
836 <h5>Examples:</h5>
837 <table class="layout">
838   <tr class="layout">
839     <td class="left">
840       <tt>int (int)</tt> <br/>
841       <tt>float (int, int *) *</tt><br/>
842       <tt>int (sbyte *, ...)</tt><br/>
843     </td>
844     <td class="left">
845       function taking an <tt>int</tt>, returning an <tt>int</tt><br/>
846       <a href="#t_pointer">Pointer</a> to a function that takes an
847       <tt>int</tt> and a <a href="#t_pointer">pointer</a> to <tt>int</tt>,
848       returning <tt>float</tt>.<br/>
849       A vararg function that takes at least one <a href="#t_pointer">pointer</a> 
850       to <tt>sbyte</tt> (signed char in C), which returns an integer.  This is 
851       the signature for <tt>printf</tt> in LLVM.<br/>
852     </td>
853   </tr>
854 </table>
855
856 </div>
857 <!-- _______________________________________________________________________ -->
858 <div class="doc_subsubsection"> <a name="t_struct">Structure Type</a> </div>
859 <div class="doc_text">
860 <h5>Overview:</h5>
861 <p>The structure type is used to represent a collection of data members
862 together in memory.  The packing of the field types is defined to match
863 the ABI of the underlying processor.  The elements of a structure may
864 be any type that has a size.</p>
865 <p>Structures are accessed using '<tt><a href="#i_load">load</a></tt>
866 and '<tt><a href="#i_store">store</a></tt>' by getting a pointer to a
867 field with the '<tt><a href="#i_getelementptr">getelementptr</a></tt>'
868 instruction.</p>
869 <h5>Syntax:</h5>
870 <pre>  { &lt;type list&gt; }<br></pre>
871 <h5>Examples:</h5>
872 <table class="layout">
873   <tr class="layout">
874     <td class="left">
875       <tt>{ int, int, int }</tt><br/>
876       <tt>{ float, int (int) * }</tt><br/>
877     </td>
878     <td class="left">
879       a triple of three <tt>int</tt> values<br/>
880       A pair, where the first element is a <tt>float</tt> and the second element 
881       is a <a href="#t_pointer">pointer</a> to a <a href="#t_function">function</a> 
882       that takes an <tt>int</tt>, returning an <tt>int</tt>.<br/>
883     </td>
884   </tr>
885 </table>
886 </div>
887
888 <!-- _______________________________________________________________________ -->
889 <div class="doc_subsubsection"> <a name="t_pointer">Pointer Type</a> </div>
890 <div class="doc_text">
891 <h5>Overview:</h5>
892 <p>As in many languages, the pointer type represents a pointer or
893 reference to another object, which must live in memory.</p>
894 <h5>Syntax:</h5>
895 <pre>  &lt;type&gt; *<br></pre>
896 <h5>Examples:</h5>
897 <table class="layout">
898   <tr class="layout">
899     <td class="left">
900       <tt>[4x int]*</tt><br/>
901       <tt>int (int *) *</tt><br/>
902     </td>
903     <td class="left">
904       A <a href="#t_pointer">pointer</a> to <a href="#t_array">array</a> of
905       four <tt>int</tt> values<br/>
906       A <a href="#t_pointer">pointer</a> to a <a
907       href="#t_function">function</a> that takes an <tt>int*</tt>, returning an
908       <tt>int</tt>.<br/>
909     </td>
910   </tr>
911 </table>
912 </div>
913
914 <!-- _______________________________________________________________________ -->
915 <div class="doc_subsubsection"> <a name="t_packed">Packed Type</a> </div>
916 <div class="doc_text">
917
918 <h5>Overview:</h5>
919
920 <p>A packed type is a simple derived type that represents a vector
921 of elements.  Packed types are used when multiple primitive data 
922 are operated in parallel using a single instruction (SIMD). 
923 A packed type requires a size (number of
924 elements) and an underlying primitive data type.  Vectors must have a power
925 of two length (1, 2, 4, 8, 16 ...).  Packed types are
926 considered <a href="#t_firstclass">first class</a>.</p>
927
928 <h5>Syntax:</h5>
929
930 <pre>
931   &lt; &lt;# elements&gt; x &lt;elementtype&gt; &gt;
932 </pre>
933
934 <p>The number of elements is a constant integer value; elementtype may
935 be any integral or floating point type.</p>
936
937 <h5>Examples:</h5>
938
939 <table class="layout">
940   <tr class="layout">
941     <td class="left">
942       <tt>&lt;4 x int&gt;</tt><br/>
943       <tt>&lt;8 x float&gt;</tt><br/>
944       <tt>&lt;2 x uint&gt;</tt><br/>
945     </td>
946     <td class="left">
947       Packed vector of 4 integer values.<br/>
948       Packed vector of 8 floating-point values.<br/>
949       Packed vector of 2 unsigned integer values.<br/>
950     </td>
951   </tr>
952 </table>
953 </div>
954
955 <!-- _______________________________________________________________________ -->
956 <div class="doc_subsubsection"> <a name="t_opaque">Opaque Type</a> </div>
957 <div class="doc_text">
958
959 <h5>Overview:</h5>
960
961 <p>Opaque types are used to represent unknown types in the system.  This
962 corresponds (for example) to the C notion of a foward declared structure type.
963 In LLVM, opaque types can eventually be resolved to any type (not just a
964 structure type).</p>
965
966 <h5>Syntax:</h5>
967
968 <pre>
969   opaque
970 </pre>
971
972 <h5>Examples:</h5>
973
974 <table class="layout">
975   <tr class="layout">
976     <td class="left">
977       <tt>opaque</tt>
978     </td>
979     <td class="left">
980       An opaque type.<br/>
981     </td>
982   </tr>
983 </table>
984 </div>
985
986
987 <!-- *********************************************************************** -->
988 <div class="doc_section"> <a name="constants">Constants</a> </div>
989 <!-- *********************************************************************** -->
990
991 <div class="doc_text">
992
993 <p>LLVM has several different basic types of constants.  This section describes
994 them all and their syntax.</p>
995
996 </div>
997
998 <!-- ======================================================================= -->
999 <div class="doc_subsection"><a name="simpleconstants">Simple Constants</a></div>
1000
1001 <div class="doc_text">
1002
1003 <dl>
1004   <dt><b>Boolean constants</b></dt>
1005
1006   <dd>The two strings '<tt>true</tt>' and '<tt>false</tt>' are both valid
1007   constants of the <tt><a href="#t_primitive">bool</a></tt> type.
1008   </dd>
1009
1010   <dt><b>Integer constants</b></dt>
1011
1012   <dd>Standard integers (such as '4') are constants of the <a
1013   href="#t_integer">integer</a> type.  Negative numbers may be used with signed
1014   integer types.
1015   </dd>
1016
1017   <dt><b>Floating point constants</b></dt>
1018
1019   <dd>Floating point constants use standard decimal notation (e.g. 123.421),
1020   exponential notation (e.g. 1.23421e+2), or a more precise hexadecimal
1021   notation (see below).  Floating point constants must have a <a
1022   href="#t_floating">floating point</a> type. </dd>
1023
1024   <dt><b>Null pointer constants</b></dt>
1025
1026   <dd>The identifier '<tt>null</tt>' is recognized as a null pointer constant
1027   and must be of <a href="#t_pointer">pointer type</a>.</dd>
1028
1029 </dl>
1030
1031 <p>The one non-intuitive notation for constants is the optional hexadecimal form
1032 of floating point constants.  For example, the form '<tt>double
1033 0x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double
1034 4.5e+15</tt>'.  The only time hexadecimal floating point constants are required
1035 (and the only time that they are generated by the disassembler) is when a 
1036 floating point constant must be emitted but it cannot be represented as a 
1037 decimal floating point number.  For example, NaN's, infinities, and other 
1038 special values are represented in their IEEE hexadecimal format so that 
1039 assembly and disassembly do not cause any bits to change in the constants.</p>
1040
1041 </div>
1042
1043 <!-- ======================================================================= -->
1044 <div class="doc_subsection"><a name="aggregateconstants">Aggregate Constants</a>
1045 </div>
1046
1047 <div class="doc_text">
1048 <p>Aggregate constants arise from aggregation of simple constants
1049 and smaller aggregate constants.</p>
1050
1051 <dl>
1052   <dt><b>Structure constants</b></dt>
1053
1054   <dd>Structure constants are represented with notation similar to structure
1055   type definitions (a comma separated list of elements, surrounded by braces
1056   (<tt>{}</tt>)).  For example: "<tt>{ int 4, float 17.0, int* %G }</tt>",
1057   where "<tt>%G</tt>" is declared as "<tt>%G = external global int</tt>".  Structure constants
1058   must have <a href="#t_struct">structure type</a>, and the number and
1059   types of elements must match those specified by the type.
1060   </dd>
1061
1062   <dt><b>Array constants</b></dt>
1063
1064   <dd>Array constants are represented with notation similar to array type
1065   definitions (a comma separated list of elements, surrounded by square brackets
1066   (<tt>[]</tt>)).  For example: "<tt>[ int 42, int 11, int 74 ]</tt>".  Array
1067   constants must have <a href="#t_array">array type</a>, and the number and
1068   types of elements must match those specified by the type.
1069   </dd>
1070
1071   <dt><b>Packed constants</b></dt>
1072
1073   <dd>Packed constants are represented with notation similar to packed type
1074   definitions (a comma separated list of elements, surrounded by
1075   less-than/greater-than's (<tt>&lt;&gt;</tt>)).  For example: "<tt>&lt; int 42,
1076   int 11, int 74, int 100 &gt;</tt>".  Packed constants must have <a
1077   href="#t_packed">packed type</a>, and the number and types of elements must
1078   match those specified by the type.
1079   </dd>
1080
1081   <dt><b>Zero initialization</b></dt>
1082
1083   <dd>The string '<tt>zeroinitializer</tt>' can be used to zero initialize a
1084   value to zero of <em>any</em> type, including scalar and aggregate types.
1085   This is often used to avoid having to print large zero initializers (e.g. for
1086   large arrays) and is always exactly equivalent to using explicit zero
1087   initializers.
1088   </dd>
1089 </dl>
1090
1091 </div>
1092
1093 <!-- ======================================================================= -->
1094 <div class="doc_subsection">
1095   <a name="globalconstants">Global Variable and Function Addresses</a>
1096 </div>
1097
1098 <div class="doc_text">
1099
1100 <p>The addresses of <a href="#globalvars">global variables</a> and <a
1101 href="#functionstructure">functions</a> are always implicitly valid (link-time)
1102 constants.  These constants are explicitly referenced when the <a
1103 href="#identifiers">identifier for the global</a> is used and always have <a
1104 href="#t_pointer">pointer</a> type. For example, the following is a legal LLVM
1105 file:</p>
1106
1107 <pre>
1108   %X = global int 17
1109   %Y = global int 42
1110   %Z = global [2 x int*] [ int* %X, int* %Y ]
1111 </pre>
1112
1113 </div>
1114
1115 <!-- ======================================================================= -->
1116 <div class="doc_subsection"><a name="undefvalues">Undefined Values</a></div>
1117 <div class="doc_text">
1118   <p>The string '<tt>undef</tt>' is recognized as a type-less constant that has 
1119   no specific value.  Undefined values may be of any type and be used anywhere 
1120   a constant is permitted.</p>
1121
1122   <p>Undefined values indicate to the compiler that the program is well defined
1123   no matter what value is used, giving the compiler more freedom to optimize.
1124   </p>
1125 </div>
1126
1127 <!-- ======================================================================= -->
1128 <div class="doc_subsection"><a name="constantexprs">Constant Expressions</a>
1129 </div>
1130
1131 <div class="doc_text">
1132
1133 <p>Constant expressions are used to allow expressions involving other constants
1134 to be used as constants.  Constant expressions may be of any <a
1135 href="#t_firstclass">first class</a> type and may involve any LLVM operation
1136 that does not have side effects (e.g. load and call are not supported).  The
1137 following is the syntax for constant expressions:</p>
1138
1139 <dl>
1140   <dt><b><tt>cast ( CST to TYPE )</tt></b></dt>
1141
1142   <dd>Cast a constant to another type.</dd>
1143
1144   <dt><b><tt>getelementptr ( CSTPTR, IDX0, IDX1, ... )</tt></b></dt>
1145
1146   <dd>Perform the <a href="#i_getelementptr">getelementptr operation</a> on
1147   constants.  As with the <a href="#i_getelementptr">getelementptr</a>
1148   instruction, the index list may have zero or more indexes, which are required
1149   to make sense for the type of "CSTPTR".</dd>
1150
1151   <dt><b><tt>select ( COND, VAL1, VAL2 )</tt></b></dt>
1152
1153   <dd>Perform the <a href="#i_select">select operation</a> on
1154   constants.
1155
1156   <dt><b><tt>extractelement ( VAL, IDX )</tt></b></dt>
1157
1158   <dd>Perform the <a href="#i_extractelement">extractelement
1159   operation</a> on constants.
1160
1161   <dt><b><tt>insertelement ( VAL, ELT, IDX )</tt></b></dt>
1162
1163   <dd>Perform the <a href="#i_insertelement">insertelement
1164   operation</a> on constants.
1165
1166
1167   <dt><b><tt>shufflevector ( VEC1, VEC2, IDXMASK )</tt></b></dt>
1168
1169   <dd>Perform the <a href="#i_shufflevector">shufflevector
1170   operation</a> on constants.
1171
1172   <dt><b><tt>OPCODE ( LHS, RHS )</tt></b></dt>
1173
1174   <dd>Perform the specified operation of the LHS and RHS constants. OPCODE may 
1175   be any of the <a href="#binaryops">binary</a> or <a href="#bitwiseops">bitwise
1176   binary</a> operations.  The constraints on operands are the same as those for
1177   the corresponding instruction (e.g. no bitwise operations on floating point
1178   values are allowed).</dd>
1179 </dl>
1180 </div>
1181
1182 <!-- *********************************************************************** -->
1183 <div class="doc_section"> <a name="othervalues">Other Values</a> </div>
1184 <!-- *********************************************************************** -->
1185
1186 <!-- ======================================================================= -->
1187 <div class="doc_subsection">
1188 <a name="inlineasm">Inline Assembler Expressions</a>
1189 </div>
1190
1191 <div class="doc_text">
1192
1193 <p>
1194 LLVM supports inline assembler expressions (as opposed to <a href="#moduleasm">
1195 Module-Level Inline Assembly</a>) through the use of a special value.  This
1196 value represents the inline assembler as a string (containing the instructions
1197 to emit), a list of operand constraints (stored as a string), and a flag that 
1198 indicates whether or not the inline asm expression has side effects.  An example
1199 inline assembler expression is:
1200 </p>
1201
1202 <pre>
1203   int(int) asm "bswap $0", "=r,r"
1204 </pre>
1205
1206 <p>
1207 Inline assembler expressions may <b>only</b> be used as the callee operand of
1208 a <a href="#i_call"><tt>call</tt> instruction</a>.  Thus, typically we have:
1209 </p>
1210
1211 <pre>
1212   %X = call int asm "<a href="#i_bswap">bswap</a> $0", "=r,r"(int %Y)
1213 </pre>
1214
1215 <p>
1216 Inline asms with side effects not visible in the constraint list must be marked
1217 as having side effects.  This is done through the use of the
1218 '<tt>sideeffect</tt>' keyword, like so:
1219 </p>
1220
1221 <pre>
1222   call void asm sideeffect "eieio", ""()
1223 </pre>
1224
1225 <p>TODO: The format of the asm and constraints string still need to be
1226 documented here.  Constraints on what can be done (e.g. duplication, moving, etc
1227 need to be documented).
1228 </p>
1229
1230 </div>
1231
1232 <!-- *********************************************************************** -->
1233 <div class="doc_section"> <a name="instref">Instruction Reference</a> </div>
1234 <!-- *********************************************************************** -->
1235
1236 <div class="doc_text">
1237
1238 <p>The LLVM instruction set consists of several different
1239 classifications of instructions: <a href="#terminators">terminator
1240 instructions</a>, <a href="#binaryops">binary instructions</a>,
1241 <a href="#bitwiseops">bitwise binary instructions</a>, <a
1242  href="#memoryops">memory instructions</a>, and <a href="#otherops">other
1243 instructions</a>.</p>
1244
1245 </div>
1246
1247 <!-- ======================================================================= -->
1248 <div class="doc_subsection"> <a name="terminators">Terminator
1249 Instructions</a> </div>
1250
1251 <div class="doc_text">
1252
1253 <p>As mentioned <a href="#functionstructure">previously</a>, every
1254 basic block in a program ends with a "Terminator" instruction, which
1255 indicates which block should be executed after the current block is
1256 finished. These terminator instructions typically yield a '<tt>void</tt>'
1257 value: they produce control flow, not values (the one exception being
1258 the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction).</p>
1259 <p>There are six different terminator instructions: the '<a
1260  href="#i_ret"><tt>ret</tt></a>' instruction, the '<a href="#i_br"><tt>br</tt></a>'
1261 instruction, the '<a href="#i_switch"><tt>switch</tt></a>' instruction,
1262 the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction, the '<a
1263  href="#i_unwind"><tt>unwind</tt></a>' instruction, and the '<a
1264  href="#i_unreachable"><tt>unreachable</tt></a>' instruction.</p>
1265
1266 </div>
1267
1268 <!-- _______________________________________________________________________ -->
1269 <div class="doc_subsubsection"> <a name="i_ret">'<tt>ret</tt>'
1270 Instruction</a> </div>
1271 <div class="doc_text">
1272 <h5>Syntax:</h5>
1273 <pre>  ret &lt;type&gt; &lt;value&gt;       <i>; Return a value from a non-void function</i>
1274   ret void                 <i>; Return from void function</i>
1275 </pre>
1276 <h5>Overview:</h5>
1277 <p>The '<tt>ret</tt>' instruction is used to return control flow (and a
1278 value) from a function back to the caller.</p>
1279 <p>There are two forms of the '<tt>ret</tt>' instruction: one that
1280 returns a value and then causes control flow, and one that just causes
1281 control flow to occur.</p>
1282 <h5>Arguments:</h5>
1283 <p>The '<tt>ret</tt>' instruction may return any '<a
1284  href="#t_firstclass">first class</a>' type.  Notice that a function is
1285 not <a href="#wellformed">well formed</a> if there exists a '<tt>ret</tt>'
1286 instruction inside of the function that returns a value that does not
1287 match the return type of the function.</p>
1288 <h5>Semantics:</h5>
1289 <p>When the '<tt>ret</tt>' instruction is executed, control flow
1290 returns back to the calling function's context.  If the caller is a "<a
1291  href="#i_call"><tt>call</tt></a>" instruction, execution continues at
1292 the instruction after the call.  If the caller was an "<a
1293  href="#i_invoke"><tt>invoke</tt></a>" instruction, execution continues
1294 at the beginning of the "normal" destination block.  If the instruction
1295 returns a value, that value shall set the call or invoke instruction's
1296 return value.</p>
1297 <h5>Example:</h5>
1298 <pre>  ret int 5                       <i>; Return an integer value of 5</i>
1299   ret void                        <i>; Return from a void function</i>
1300 </pre>
1301 </div>
1302 <!-- _______________________________________________________________________ -->
1303 <div class="doc_subsubsection"> <a name="i_br">'<tt>br</tt>' Instruction</a> </div>
1304 <div class="doc_text">
1305 <h5>Syntax:</h5>
1306 <pre>  br bool &lt;cond&gt;, label &lt;iftrue&gt;, label &lt;iffalse&gt;<br>  br label &lt;dest&gt;          <i>; Unconditional branch</i>
1307 </pre>
1308 <h5>Overview:</h5>
1309 <p>The '<tt>br</tt>' instruction is used to cause control flow to
1310 transfer to a different basic block in the current function.  There are
1311 two forms of this instruction, corresponding to a conditional branch
1312 and an unconditional branch.</p>
1313 <h5>Arguments:</h5>
1314 <p>The conditional branch form of the '<tt>br</tt>' instruction takes a
1315 single '<tt>bool</tt>' value and two '<tt>label</tt>' values.  The
1316 unconditional form of the '<tt>br</tt>' instruction takes a single '<tt>label</tt>'
1317 value as a target.</p>
1318 <h5>Semantics:</h5>
1319 <p>Upon execution of a conditional '<tt>br</tt>' instruction, the '<tt>bool</tt>'
1320 argument is evaluated.  If the value is <tt>true</tt>, control flows
1321 to the '<tt>iftrue</tt>' <tt>label</tt> argument.  If "cond" is <tt>false</tt>,
1322 control flows to the '<tt>iffalse</tt>' <tt>label</tt> argument.</p>
1323 <h5>Example:</h5>
1324 <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
1325  href="#i_ret">ret</a> int 1<br>IfUnequal:<br>  <a href="#i_ret">ret</a> int 0<br></pre>
1326 </div>
1327 <!-- _______________________________________________________________________ -->
1328 <div class="doc_subsubsection">
1329    <a name="i_switch">'<tt>switch</tt>' Instruction</a>
1330 </div>
1331
1332 <div class="doc_text">
1333 <h5>Syntax:</h5>
1334
1335 <pre>
1336   switch &lt;intty&gt; &lt;value&gt;, label &lt;defaultdest&gt; [ &lt;intty&gt; &lt;val&gt;, label &lt;dest&gt; ... ]
1337 </pre>
1338
1339 <h5>Overview:</h5>
1340
1341 <p>The '<tt>switch</tt>' instruction is used to transfer control flow to one of
1342 several different places.  It is a generalization of the '<tt>br</tt>'
1343 instruction, allowing a branch to occur to one of many possible
1344 destinations.</p>
1345
1346
1347 <h5>Arguments:</h5>
1348
1349 <p>The '<tt>switch</tt>' instruction uses three parameters: an integer
1350 comparison value '<tt>value</tt>', a default '<tt>label</tt>' destination, and
1351 an array of pairs of comparison value constants and '<tt>label</tt>'s.  The
1352 table is not allowed to contain duplicate constant entries.</p>
1353
1354 <h5>Semantics:</h5>
1355
1356 <p>The <tt>switch</tt> instruction specifies a table of values and
1357 destinations. When the '<tt>switch</tt>' instruction is executed, this
1358 table is searched for the given value.  If the value is found, control flow is
1359 transfered to the corresponding destination; otherwise, control flow is
1360 transfered to the default destination.</p>
1361
1362 <h5>Implementation:</h5>
1363
1364 <p>Depending on properties of the target machine and the particular
1365 <tt>switch</tt> instruction, this instruction may be code generated in different
1366 ways.  For example, it could be generated as a series of chained conditional
1367 branches or with a lookup table.</p>
1368
1369 <h5>Example:</h5>
1370
1371 <pre>
1372  <i>; Emulate a conditional br instruction</i>
1373  %Val = <a href="#i_cast">cast</a> bool %value to int
1374  switch int %Val, label %truedest [int 0, label %falsedest ]
1375
1376  <i>; Emulate an unconditional br instruction</i>
1377  switch uint 0, label %dest [ ]
1378
1379  <i>; Implement a jump table:</i>
1380  switch uint %val, label %otherwise [ uint 0, label %onzero 
1381                                       uint 1, label %onone 
1382                                       uint 2, label %ontwo ]
1383 </pre>
1384 </div>
1385
1386 <!-- _______________________________________________________________________ -->
1387 <div class="doc_subsubsection">
1388   <a name="i_invoke">'<tt>invoke</tt>' Instruction</a>
1389 </div>
1390
1391 <div class="doc_text">
1392
1393 <h5>Syntax:</h5>
1394
1395 <pre>
1396   &lt;result&gt; = invoke [<a href="#callingconv">cconv</a>] &lt;ptr to function ty&gt; %&lt;function ptr val&gt;(&lt;function args&gt;) 
1397                 to label &lt;normal label&gt; unwind label &lt;exception label&gt;
1398 </pre>
1399
1400 <h5>Overview:</h5>
1401
1402 <p>The '<tt>invoke</tt>' instruction causes control to transfer to a specified
1403 function, with the possibility of control flow transfer to either the
1404 '<tt>normal</tt>' label or the
1405 '<tt>exception</tt>' label.  If the callee function returns with the
1406 "<tt><a href="#i_ret">ret</a></tt>" instruction, control flow will return to the
1407 "normal" label.  If the callee (or any indirect callees) returns with the "<a
1408 href="#i_unwind"><tt>unwind</tt></a>" instruction, control is interrupted and
1409 continued at the dynamically nearest "exception" label.</p>
1410
1411 <h5>Arguments:</h5>
1412
1413 <p>This instruction requires several arguments:</p>
1414
1415 <ol>
1416   <li>
1417     The optional "cconv" marker indicates which <a href="callingconv">calling
1418     convention</a> the call should use.  If none is specified, the call defaults
1419     to using C calling conventions.
1420   </li>
1421   <li>'<tt>ptr to function ty</tt>': shall be the signature of the pointer to
1422   function value being invoked.  In most cases, this is a direct function
1423   invocation, but indirect <tt>invoke</tt>s are just as possible, branching off
1424   an arbitrary pointer to function value.
1425   </li>
1426
1427   <li>'<tt>function ptr val</tt>': An LLVM value containing a pointer to a
1428   function to be invoked. </li>
1429
1430   <li>'<tt>function args</tt>': argument list whose types match the function
1431   signature argument types.  If the function signature indicates the function
1432   accepts a variable number of arguments, the extra arguments can be
1433   specified. </li>
1434
1435   <li>'<tt>normal label</tt>': the label reached when the called function
1436   executes a '<tt><a href="#i_ret">ret</a></tt>' instruction. </li>
1437
1438   <li>'<tt>exception label</tt>': the label reached when a callee returns with
1439   the <a href="#i_unwind"><tt>unwind</tt></a> instruction. </li>
1440
1441 </ol>
1442
1443 <h5>Semantics:</h5>
1444
1445 <p>This instruction is designed to operate as a standard '<tt><a
1446 href="#i_call">call</a></tt>' instruction in most regards.  The primary
1447 difference is that it establishes an association with a label, which is used by
1448 the runtime library to unwind the stack.</p>
1449
1450 <p>This instruction is used in languages with destructors to ensure that proper
1451 cleanup is performed in the case of either a <tt>longjmp</tt> or a thrown
1452 exception.  Additionally, this is important for implementation of
1453 '<tt>catch</tt>' clauses in high-level languages that support them.</p>
1454
1455 <h5>Example:</h5>
1456 <pre>
1457   %retval = invoke int %Test(int 15)             to label %Continue
1458               unwind label %TestCleanup     <i>; {int}:retval set</i>
1459   %retval = invoke <a href="#callingconv">coldcc</a> int %Test(int 15)             to label %Continue
1460               unwind label %TestCleanup     <i>; {int}:retval set</i>
1461 </pre>
1462 </div>
1463
1464
1465 <!-- _______________________________________________________________________ -->
1466
1467 <div class="doc_subsubsection"> <a name="i_unwind">'<tt>unwind</tt>'
1468 Instruction</a> </div>
1469
1470 <div class="doc_text">
1471
1472 <h5>Syntax:</h5>
1473 <pre>
1474   unwind
1475 </pre>
1476
1477 <h5>Overview:</h5>
1478
1479 <p>The '<tt>unwind</tt>' instruction unwinds the stack, continuing control flow
1480 at the first callee in the dynamic call stack which used an <a
1481 href="#i_invoke"><tt>invoke</tt></a> instruction to perform the call.  This is
1482 primarily used to implement exception handling.</p>
1483
1484 <h5>Semantics:</h5>
1485
1486 <p>The '<tt>unwind</tt>' intrinsic causes execution of the current function to
1487 immediately halt.  The dynamic call stack is then searched for the first <a
1488 href="#i_invoke"><tt>invoke</tt></a> instruction on the call stack.  Once found,
1489 execution continues at the "exceptional" destination block specified by the
1490 <tt>invoke</tt> instruction.  If there is no <tt>invoke</tt> instruction in the
1491 dynamic call chain, undefined behavior results.</p>
1492 </div>
1493
1494 <!-- _______________________________________________________________________ -->
1495
1496 <div class="doc_subsubsection"> <a name="i_unreachable">'<tt>unreachable</tt>'
1497 Instruction</a> </div>
1498
1499 <div class="doc_text">
1500
1501 <h5>Syntax:</h5>
1502 <pre>
1503   unreachable
1504 </pre>
1505
1506 <h5>Overview:</h5>
1507
1508 <p>The '<tt>unreachable</tt>' instruction has no defined semantics.  This
1509 instruction is used to inform the optimizer that a particular portion of the
1510 code is not reachable.  This can be used to indicate that the code after a
1511 no-return function cannot be reached, and other facts.</p>
1512
1513 <h5>Semantics:</h5>
1514
1515 <p>The '<tt>unreachable</tt>' instruction has no defined semantics.</p>
1516 </div>
1517
1518
1519
1520 <!-- ======================================================================= -->
1521 <div class="doc_subsection"> <a name="binaryops">Binary Operations</a> </div>
1522 <div class="doc_text">
1523 <p>Binary operators are used to do most of the computation in a
1524 program.  They require two operands, execute an operation on them, and
1525 produce a single value.  The operands might represent 
1526 multiple data, as is the case with the <a href="#t_packed">packed</a> data type. 
1527 The result value of a binary operator is not
1528 necessarily the same type as its operands.</p>
1529 <p>There are several different binary operators:</p>
1530 </div>
1531 <!-- _______________________________________________________________________ -->
1532 <div class="doc_subsubsection"> <a name="i_add">'<tt>add</tt>'
1533 Instruction</a> </div>
1534 <div class="doc_text">
1535 <h5>Syntax:</h5>
1536 <pre>  &lt;result&gt; = add &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1537 </pre>
1538 <h5>Overview:</h5>
1539 <p>The '<tt>add</tt>' instruction returns the sum of its two operands.</p>
1540 <h5>Arguments:</h5>
1541 <p>The two arguments to the '<tt>add</tt>' instruction must be either <a
1542  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> values.
1543  This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1544 Both arguments must have identical types.</p>
1545 <h5>Semantics:</h5>
1546 <p>The value produced is the integer or floating point sum of the two
1547 operands.</p>
1548 <h5>Example:</h5>
1549 <pre>  &lt;result&gt; = add int 4, %var          <i>; yields {int}:result = 4 + %var</i>
1550 </pre>
1551 </div>
1552 <!-- _______________________________________________________________________ -->
1553 <div class="doc_subsubsection"> <a name="i_sub">'<tt>sub</tt>'
1554 Instruction</a> </div>
1555 <div class="doc_text">
1556 <h5>Syntax:</h5>
1557 <pre>  &lt;result&gt; = sub &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1558 </pre>
1559 <h5>Overview:</h5>
1560 <p>The '<tt>sub</tt>' instruction returns the difference of its two
1561 operands.</p>
1562 <p>Note that the '<tt>sub</tt>' instruction is used to represent the '<tt>neg</tt>'
1563 instruction present in most other intermediate representations.</p>
1564 <h5>Arguments:</h5>
1565 <p>The two arguments to the '<tt>sub</tt>' instruction must be either <a
1566  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
1567 values. 
1568 This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1569 Both arguments must have identical types.</p>
1570 <h5>Semantics:</h5>
1571 <p>The value produced is the integer or floating point difference of
1572 the two operands.</p>
1573 <h5>Example:</h5>
1574 <pre>  &lt;result&gt; = sub int 4, %var          <i>; yields {int}:result = 4 - %var</i>
1575   &lt;result&gt; = sub int 0, %val          <i>; yields {int}:result = -%var</i>
1576 </pre>
1577 </div>
1578 <!-- _______________________________________________________________________ -->
1579 <div class="doc_subsubsection"> <a name="i_mul">'<tt>mul</tt>'
1580 Instruction</a> </div>
1581 <div class="doc_text">
1582 <h5>Syntax:</h5>
1583 <pre>  &lt;result&gt; = mul &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1584 </pre>
1585 <h5>Overview:</h5>
1586 <p>The  '<tt>mul</tt>' instruction returns the product of its two
1587 operands.</p>
1588 <h5>Arguments:</h5>
1589 <p>The two arguments to the '<tt>mul</tt>' instruction must be either <a
1590  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
1591 values. 
1592 This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1593 Both arguments must have identical types.</p>
1594 <h5>Semantics:</h5>
1595 <p>The value produced is the integer or floating point product of the
1596 two operands.</p>
1597 <p>There is no signed vs unsigned multiplication.  The appropriate
1598 action is taken based on the type of the operand.</p>
1599 <h5>Example:</h5>
1600 <pre>  &lt;result&gt; = mul int 4, %var          <i>; yields {int}:result = 4 * %var</i>
1601 </pre>
1602 </div>
1603 <!-- _______________________________________________________________________ -->
1604 <div class="doc_subsubsection"> <a name="i_div">'<tt>div</tt>'
1605 Instruction</a> </div>
1606 <div class="doc_text">
1607 <h5>Syntax:</h5>
1608 <pre>  &lt;result&gt; = div &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1609 </pre>
1610 <h5>Overview:</h5>
1611 <p>The '<tt>div</tt>' instruction returns the quotient of its two
1612 operands.</p>
1613 <h5>Arguments:</h5>
1614 <p>The two arguments to the '<tt>div</tt>' instruction must be either <a
1615  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
1616 values. 
1617 This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1618 Both arguments must have identical types.</p>
1619 <h5>Semantics:</h5>
1620 <p>The value produced is the integer or floating point quotient of the
1621 two operands.</p>
1622 <h5>Example:</h5>
1623 <pre>  &lt;result&gt; = div int 4, %var          <i>; yields {int}:result = 4 / %var</i>
1624 </pre>
1625 </div>
1626 <!-- _______________________________________________________________________ -->
1627 <div class="doc_subsubsection"> <a name="i_rem">'<tt>rem</tt>'
1628 Instruction</a> </div>
1629 <div class="doc_text">
1630 <h5>Syntax:</h5>
1631 <pre>  &lt;result&gt; = rem &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1632 </pre>
1633 <h5>Overview:</h5>
1634 <p>The '<tt>rem</tt>' instruction returns the remainder from the
1635 division of its two operands.</p>
1636 <h5>Arguments:</h5>
1637 <p>The two arguments to the '<tt>rem</tt>' instruction must be either <a
1638  href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
1639 values. 
1640 This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1641 Both arguments must have identical types.</p>
1642 <h5>Semantics:</h5>
1643 <p>This returns the <i>remainder</i> of a division (where the result
1644 has the same sign as the divisor), not the <i>modulus</i> (where the
1645 result has the same sign as the dividend) of a value.  For more
1646 information about the difference, see <a
1647  href="http://mathforum.org/dr.math/problems/anne.4.28.99.html">The
1648 Math Forum</a>.</p>
1649 <h5>Example:</h5>
1650 <pre>  &lt;result&gt; = rem int 4, %var          <i>; yields {int}:result = 4 % %var</i>
1651 </pre>
1652
1653 </div>
1654 <!-- _______________________________________________________________________ -->
1655 <div class="doc_subsubsection"> <a name="i_setcc">'<tt>set<i>cc</i></tt>'
1656 Instructions</a> </div>
1657 <div class="doc_text">
1658 <h5>Syntax:</h5>
1659 <pre>  &lt;result&gt; = seteq &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {bool}:result</i>
1660   &lt;result&gt; = setne &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {bool}:result</i>
1661   &lt;result&gt; = setlt &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {bool}:result</i>
1662   &lt;result&gt; = setgt &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {bool}:result</i>
1663   &lt;result&gt; = setle &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {bool}:result</i>
1664   &lt;result&gt; = setge &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {bool}:result</i>
1665 </pre>
1666 <h5>Overview:</h5>
1667 <p>The '<tt>set<i>cc</i></tt>' family of instructions returns a boolean
1668 value based on a comparison of their two operands.</p>
1669 <h5>Arguments:</h5>
1670 <p>The two arguments to the '<tt>set<i>cc</i></tt>' instructions must
1671 be of <a href="#t_firstclass">first class</a> type (it is not possible
1672 to compare '<tt>label</tt>'s, '<tt>array</tt>'s, '<tt>structure</tt>'
1673 or '<tt>void</tt>' values, etc...).  Both arguments must have identical
1674 types.</p>
1675 <h5>Semantics:</h5>
1676 <p>The '<tt>seteq</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1677 value if both operands are equal.<br>
1678 The '<tt>setne</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1679 value if both operands are unequal.<br>
1680 The '<tt>setlt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1681 value if the first operand is less than the second operand.<br>
1682 The '<tt>setgt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1683 value if the first operand is greater than the second operand.<br>
1684 The '<tt>setle</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1685 value if the first operand is less than or equal to the second operand.<br>
1686 The '<tt>setge</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1687 value if the first operand is greater than or equal to the second
1688 operand.</p>
1689 <h5>Example:</h5>
1690 <pre>  &lt;result&gt; = seteq int   4, 5        <i>; yields {bool}:result = false</i>
1691   &lt;result&gt; = setne float 4, 5        <i>; yields {bool}:result = true</i>
1692   &lt;result&gt; = setlt uint  4, 5        <i>; yields {bool}:result = true</i>
1693   &lt;result&gt; = setgt sbyte 4, 5        <i>; yields {bool}:result = false</i>
1694   &lt;result&gt; = setle sbyte 4, 5        <i>; yields {bool}:result = true</i>
1695   &lt;result&gt; = setge sbyte 4, 5        <i>; yields {bool}:result = false</i>
1696 </pre>
1697 </div>
1698
1699 <!-- ======================================================================= -->
1700 <div class="doc_subsection"> <a name="bitwiseops">Bitwise Binary
1701 Operations</a> </div>
1702 <div class="doc_text">
1703 <p>Bitwise binary operators are used to do various forms of
1704 bit-twiddling in a program.  They are generally very efficient
1705 instructions and can commonly be strength reduced from other
1706 instructions.  They require two operands, execute an operation on them,
1707 and produce a single value.  The resulting value of the bitwise binary
1708 operators is always the same type as its first operand.</p>
1709 </div>
1710 <!-- _______________________________________________________________________ -->
1711 <div class="doc_subsubsection"> <a name="i_and">'<tt>and</tt>'
1712 Instruction</a> </div>
1713 <div class="doc_text">
1714 <h5>Syntax:</h5>
1715 <pre>  &lt;result&gt; = and &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1716 </pre>
1717 <h5>Overview:</h5>
1718 <p>The '<tt>and</tt>' instruction returns the bitwise logical and of
1719 its two operands.</p>
1720 <h5>Arguments:</h5>
1721 <p>The two arguments to the '<tt>and</tt>' instruction must be <a
1722  href="#t_integral">integral</a> values.  Both arguments must have
1723 identical types.</p>
1724 <h5>Semantics:</h5>
1725 <p>The truth table used for the '<tt>and</tt>' instruction is:</p>
1726 <p> </p>
1727 <div style="align: center">
1728 <table border="1" cellspacing="0" cellpadding="4">
1729   <tbody>
1730     <tr>
1731       <td>In0</td>
1732       <td>In1</td>
1733       <td>Out</td>
1734     </tr>
1735     <tr>
1736       <td>0</td>
1737       <td>0</td>
1738       <td>0</td>
1739     </tr>
1740     <tr>
1741       <td>0</td>
1742       <td>1</td>
1743       <td>0</td>
1744     </tr>
1745     <tr>
1746       <td>1</td>
1747       <td>0</td>
1748       <td>0</td>
1749     </tr>
1750     <tr>
1751       <td>1</td>
1752       <td>1</td>
1753       <td>1</td>
1754     </tr>
1755   </tbody>
1756 </table>
1757 </div>
1758 <h5>Example:</h5>
1759 <pre>  &lt;result&gt; = and int 4, %var         <i>; yields {int}:result = 4 &amp; %var</i>
1760   &lt;result&gt; = and int 15, 40          <i>; yields {int}:result = 8</i>
1761   &lt;result&gt; = and int 4, 8            <i>; yields {int}:result = 0</i>
1762 </pre>
1763 </div>
1764 <!-- _______________________________________________________________________ -->
1765 <div class="doc_subsubsection"> <a name="i_or">'<tt>or</tt>' Instruction</a> </div>
1766 <div class="doc_text">
1767 <h5>Syntax:</h5>
1768 <pre>  &lt;result&gt; = or &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1769 </pre>
1770 <h5>Overview:</h5>
1771 <p>The '<tt>or</tt>' instruction returns the bitwise logical inclusive
1772 or of its two operands.</p>
1773 <h5>Arguments:</h5>
1774 <p>The two arguments to the '<tt>or</tt>' instruction must be <a
1775  href="#t_integral">integral</a> values.  Both arguments must have
1776 identical types.</p>
1777 <h5>Semantics:</h5>
1778 <p>The truth table used for the '<tt>or</tt>' instruction is:</p>
1779 <p> </p>
1780 <div style="align: center">
1781 <table border="1" cellspacing="0" cellpadding="4">
1782   <tbody>
1783     <tr>
1784       <td>In0</td>
1785       <td>In1</td>
1786       <td>Out</td>
1787     </tr>
1788     <tr>
1789       <td>0</td>
1790       <td>0</td>
1791       <td>0</td>
1792     </tr>
1793     <tr>
1794       <td>0</td>
1795       <td>1</td>
1796       <td>1</td>
1797     </tr>
1798     <tr>
1799       <td>1</td>
1800       <td>0</td>
1801       <td>1</td>
1802     </tr>
1803     <tr>
1804       <td>1</td>
1805       <td>1</td>
1806       <td>1</td>
1807     </tr>
1808   </tbody>
1809 </table>
1810 </div>
1811 <h5>Example:</h5>
1812 <pre>  &lt;result&gt; = or int 4, %var         <i>; yields {int}:result = 4 | %var</i>
1813   &lt;result&gt; = or int 15, 40          <i>; yields {int}:result = 47</i>
1814   &lt;result&gt; = or int 4, 8            <i>; yields {int}:result = 12</i>
1815 </pre>
1816 </div>
1817 <!-- _______________________________________________________________________ -->
1818 <div class="doc_subsubsection"> <a name="i_xor">'<tt>xor</tt>'
1819 Instruction</a> </div>
1820 <div class="doc_text">
1821 <h5>Syntax:</h5>
1822 <pre>  &lt;result&gt; = xor &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields {ty}:result</i>
1823 </pre>
1824 <h5>Overview:</h5>
1825 <p>The '<tt>xor</tt>' instruction returns the bitwise logical exclusive
1826 or of its two operands.  The <tt>xor</tt> is used to implement the
1827 "one's complement" operation, which is the "~" operator in C.</p>
1828 <h5>Arguments:</h5>
1829 <p>The two arguments to the '<tt>xor</tt>' instruction must be <a
1830  href="#t_integral">integral</a> values.  Both arguments must have
1831 identical types.</p>
1832 <h5>Semantics:</h5>
1833 <p>The truth table used for the '<tt>xor</tt>' instruction is:</p>
1834 <p> </p>
1835 <div style="align: center">
1836 <table border="1" cellspacing="0" cellpadding="4">
1837   <tbody>
1838     <tr>
1839       <td>In0</td>
1840       <td>In1</td>
1841       <td>Out</td>
1842     </tr>
1843     <tr>
1844       <td>0</td>
1845       <td>0</td>
1846       <td>0</td>
1847     </tr>
1848     <tr>
1849       <td>0</td>
1850       <td>1</td>
1851       <td>1</td>
1852     </tr>
1853     <tr>
1854       <td>1</td>
1855       <td>0</td>
1856       <td>1</td>
1857     </tr>
1858     <tr>
1859       <td>1</td>
1860       <td>1</td>
1861       <td>0</td>
1862     </tr>
1863   </tbody>
1864 </table>
1865 </div>
1866 <p> </p>
1867 <h5>Example:</h5>
1868 <pre>  &lt;result&gt; = xor int 4, %var         <i>; yields {int}:result = 4 ^ %var</i>
1869   &lt;result&gt; = xor int 15, 40          <i>; yields {int}:result = 39</i>
1870   &lt;result&gt; = xor int 4, 8            <i>; yields {int}:result = 12</i>
1871   &lt;result&gt; = xor int %V, -1          <i>; yields {int}:result = ~%V</i>
1872 </pre>
1873 </div>
1874 <!-- _______________________________________________________________________ -->
1875 <div class="doc_subsubsection"> <a name="i_shl">'<tt>shl</tt>'
1876 Instruction</a> </div>
1877 <div class="doc_text">
1878 <h5>Syntax:</h5>
1879 <pre>  &lt;result&gt; = shl &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt;   <i>; yields {ty}:result</i>
1880 </pre>
1881 <h5>Overview:</h5>
1882 <p>The '<tt>shl</tt>' instruction returns the first operand shifted to
1883 the left a specified number of bits.</p>
1884 <h5>Arguments:</h5>
1885 <p>The first argument to the '<tt>shl</tt>' instruction must be an <a
1886  href="#t_integer">integer</a> type.  The second argument must be an '<tt>ubyte</tt>'
1887 type.</p>
1888 <h5>Semantics:</h5>
1889 <p>The value produced is <tt>var1</tt> * 2<sup><tt>var2</tt></sup>.</p>
1890 <h5>Example:</h5>
1891 <pre>  &lt;result&gt; = shl int 4, ubyte %var   <i>; yields {int}:result = 4 &lt;&lt; %var</i>
1892   &lt;result&gt; = shl int 4, ubyte 2      <i>; yields {int}:result = 16</i>
1893   &lt;result&gt; = shl int 1, ubyte 10     <i>; yields {int}:result = 1024</i>
1894 </pre>
1895 </div>
1896 <!-- _______________________________________________________________________ -->
1897 <div class="doc_subsubsection"> <a name="i_shr">'<tt>shr</tt>'
1898 Instruction</a> </div>
1899 <div class="doc_text">
1900 <h5>Syntax:</h5>
1901 <pre>  &lt;result&gt; = shr &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt;   <i>; yields {ty}:result</i>
1902 </pre>
1903 <h5>Overview:</h5>
1904 <p>The '<tt>shr</tt>' instruction returns the first operand shifted to
1905 the right a specified number of bits.</p>
1906 <h5>Arguments:</h5>
1907 <p>The first argument to the '<tt>shr</tt>' instruction must be an <a
1908  href="#t_integer">integer</a> type.  The second argument must be an '<tt>ubyte</tt>'
1909 type.</p>
1910 <h5>Semantics:</h5>
1911 <p>If the first argument is a <a href="#t_signed">signed</a> type, the
1912 most significant bit is duplicated in the newly free'd bit positions. 
1913 If the first argument is unsigned, zero bits shall fill the empty
1914 positions.</p>
1915 <h5>Example:</h5>
1916 <pre>  &lt;result&gt; = shr int 4, ubyte %var   <i>; yields {int}:result = 4 &gt;&gt; %var</i>
1917   &lt;result&gt; = shr uint 4, ubyte 1     <i>; yields {uint}:result = 2</i>
1918   &lt;result&gt; = shr int 4, ubyte 2      <i>; yields {int}:result = 1</i>
1919   &lt;result&gt; = shr sbyte 4, ubyte 3    <i>; yields {sbyte}:result = 0</i>
1920   &lt;result&gt; = shr sbyte -2, ubyte 1   <i>; yields {sbyte}:result = -1</i>
1921 </pre>
1922 </div>
1923
1924 <!-- ======================================================================= -->
1925 <div class="doc_subsection"> 
1926   <a name="vectorops">Vector Operations</a>
1927 </div>
1928
1929 <div class="doc_text">
1930
1931 <p>LLVM supports several instructions to represent vector operations in a
1932 target-independent manner.  This instructions cover the element-access and
1933 vector-specific operations needed to process vectors effectively.  While LLVM
1934 does directly support these vector operations, many sophisticated algorithms
1935 will want to use target-specific intrinsics to take full advantage of a specific
1936 target.</p>
1937
1938 </div>
1939
1940 <!-- _______________________________________________________________________ -->
1941 <div class="doc_subsubsection">
1942    <a name="i_extractelement">'<tt>extractelement</tt>' Instruction</a>
1943 </div>
1944
1945 <div class="doc_text">
1946
1947 <h5>Syntax:</h5>
1948
1949 <pre>
1950   &lt;result&gt; = extractelement &lt;n x &lt;ty&gt;&gt; &lt;val&gt;, uint &lt;idx&gt;    <i>; yields &lt;ty&gt;</i>
1951 </pre>
1952
1953 <h5>Overview:</h5>
1954
1955 <p>
1956 The '<tt>extractelement</tt>' instruction extracts a single scalar
1957 element from a packed vector at a specified index.
1958 </p>
1959
1960
1961 <h5>Arguments:</h5>
1962
1963 <p>
1964 The first operand of an '<tt>extractelement</tt>' instruction is a
1965 value of <a href="#t_packed">packed</a> type.  The second operand is
1966 an index indicating the position from which to extract the element.
1967 The index may be a variable.</p>
1968
1969 <h5>Semantics:</h5>
1970
1971 <p>
1972 The result is a scalar of the same type as the element type of
1973 <tt>val</tt>.  Its value is the value at position <tt>idx</tt> of
1974 <tt>val</tt>.  If <tt>idx</tt> exceeds the length of <tt>val</tt>, the
1975 results are undefined.
1976 </p>
1977
1978 <h5>Example:</h5>
1979
1980 <pre>
1981   %result = extractelement &lt;4 x int&gt; %vec, uint 0    <i>; yields int</i>
1982 </pre>
1983 </div>
1984
1985
1986 <!-- _______________________________________________________________________ -->
1987 <div class="doc_subsubsection">
1988    <a name="i_insertelement">'<tt>insertelement</tt>' Instruction</a>
1989 </div>
1990
1991 <div class="doc_text">
1992
1993 <h5>Syntax:</h5>
1994
1995 <pre>
1996   &lt;result&gt; = insertelement &lt;n x &lt;ty&gt;&gt; &lt;val&gt;, &lt;ty&gt; &lt;elt&gt, uint &lt;idx&gt;    <i>; yields &lt;n x &lt;ty&gt;&gt;</i>
1997 </pre>
1998
1999 <h5>Overview:</h5>
2000
2001 <p>
2002 The '<tt>insertelement</tt>' instruction inserts a scalar
2003 element into a packed vector at a specified index.
2004 </p>
2005
2006
2007 <h5>Arguments:</h5>
2008
2009 <p>
2010 The first operand of an '<tt>insertelement</tt>' instruction is a
2011 value of <a href="#t_packed">packed</a> type.  The second operand is a
2012 scalar value whose type must equal the element type of the first
2013 operand.  The third operand is an index indicating the position at
2014 which to insert the value.  The index may be a variable.</p>
2015
2016 <h5>Semantics:</h5>
2017
2018 <p>
2019 The result is a packed vector of the same type as <tt>val</tt>.  Its
2020 element values are those of <tt>val</tt> except at position
2021 <tt>idx</tt>, where it gets the value <tt>elt</tt>.  If <tt>idx</tt>
2022 exceeds the length of <tt>val</tt>, the results are undefined.
2023 </p>
2024
2025 <h5>Example:</h5>
2026
2027 <pre>
2028   %result = insertelement &lt;4 x int&gt; %vec, int 1, uint 0    <i>; yields &lt;4 x int&gt;</i>
2029 </pre>
2030 </div>
2031
2032 <!-- _______________________________________________________________________ -->
2033 <div class="doc_subsubsection">
2034    <a name="i_shufflevector">'<tt>shufflevector</tt>' Instruction</a>
2035 </div>
2036
2037 <div class="doc_text">
2038
2039 <h5>Syntax:</h5>
2040
2041 <pre>
2042   &lt;result&gt; = shufflevector &lt;n x &lt;ty&gt;&gt; &lt;v1&gt;, &lt;n x &lt;ty&gt;&gt; &lt;v2&gt;, &lt;n x uint&gt; &lt;mask&gt;    <i>; yields &lt;n x &lt;ty&gt;&gt;</i>
2043 </pre>
2044
2045 <h5>Overview:</h5>
2046
2047 <p>
2048 The '<tt>shufflevector</tt>' instruction constructs a permutation of elements
2049 from two input vectors, returning a vector of the same type.
2050 </p>
2051
2052 <h5>Arguments:</h5>
2053
2054 <p>
2055 The first two operands of a '<tt>shufflevector</tt>' instruction are vectors
2056 with types that match each other and types that match the result of the
2057 instruction.  The third argument is a shuffle mask, which has the same number
2058 of elements as the other vector type, but whose element type is always 'uint'.
2059 </p>
2060
2061 <p>
2062 The shuffle mask operand is required to be a constant vector with either
2063 constant integer or undef values.
2064 </p>
2065
2066 <h5>Semantics:</h5>
2067
2068 <p>
2069 The elements of the two input vectors are numbered from left to right across
2070 both of the vectors.  The shuffle mask operand specifies, for each element of
2071 the result vector, which element of the two input registers the result element
2072 gets.  The element selector may be undef (meaning "don't care") and the second
2073 operand may be undef if performing a shuffle from only one vector.
2074 </p>
2075
2076 <h5>Example:</h5>
2077
2078 <pre>
2079   %result = shufflevector &lt;4 x int&gt; %v1, &lt;4 x int&gt; %v2, 
2080                           &lt;4 x uint&gt; &lt;uint 0, uint 4, uint 1, uint 5&gt;    <i>; yields &lt;4 x int&gt;</i>
2081   %result = shufflevector &lt;4 x int&gt; %v1, &lt;4 x int&gt; undef, 
2082                           &lt;4 x uint&gt; &lt;uint 0, uint 1, uint 2, uint 3&gt;  <i>; yields &lt;4 x int&gt;</i> - Identity shuffle.
2083 </pre>
2084 </div>
2085
2086
2087 <!-- _______________________________________________________________________ -->
2088 <div class="doc_subsubsection"> <a name="i_vsetint">'<tt>vsetint</tt>'
2089 Instruction</a> </div>
2090 <div class="doc_text">
2091 <h5>Syntax:</h5>
2092 <pre>&lt;result&gt; = vsetint &lt;op&gt;, &lt;n x &lt;ty&gt;&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields &lt;n x bool&gt;</i>
2093 </pre>
2094
2095 <h5>Overview:</h5>
2096
2097 <p>The '<tt>vsetint</tt>' instruction takes two integer vectors and
2098 returns a vector of boolean values representing, at each position, the
2099 result of the comparison between the values at that position in the
2100 two operands.</p>
2101
2102 <h5>Arguments:</h5>
2103
2104 <p>The arguments to a '<tt>vsetint</tt>' instruction are a comparison
2105 operation and two value arguments.  The value arguments must be of <a
2106 href="#t_integral">integral</a> <a href="#t_packed">packed</a> type,
2107 and they must have identical types.  The operation argument must be
2108 one of <tt>eq</tt>, <tt>ne</tt>, <tt>slt</tt>, <tt>sgt</tt>,
2109 <tt>sle</tt>, <tt>sge</tt>, <tt>ult</tt>, <tt>ugt</tt>, <tt>ule</tt>,
2110 <tt>uge</tt>, <tt>true</tt>, and <tt>false</tt>.  The result is a
2111 packed <tt>bool</tt> value with the same length as each operand.</p>
2112
2113 <h5>Semantics:</h5>
2114
2115 <p>The following table shows the semantics of '<tt>vsetint</tt>'.  For
2116 each position of the result, the comparison is done on the
2117 corresponding positions of the two value arguments.  Note that the
2118 signedness of the comparison depends on the comparison opcode and
2119 <i>not</i> on the signedness of the value operands.  E.g., <tt>vsetint
2120 slt <4 x unsigned> %x, %y</tt> does an elementwise <i>signed</i>
2121 comparison of <tt>%x</tt> and <tt>%y</tt>.</p>
2122
2123 <table  border="1" cellspacing="0" cellpadding="4">
2124   <tbody>
2125     <tr><th>Operation</th><th>Result is true iff</th><th>Comparison is</th></tr>
2126     <tr><td><tt>eq</tt></td><td>var1 == var2</td><td>--</td></tr>
2127     <tr><td><tt>ne</tt></td><td>var1 != var2</td><td>--</td></tr>
2128     <tr><td><tt>slt</tt></td><td>var1 &lt; var2</td><td>signed</td></tr>
2129     <tr><td><tt>sgt</tt></td><td>var1 &gt; var2</td><td>signed</td></tr>
2130     <tr><td><tt>sle</tt></td><td>var1 &lt;= var2</td><td>signed</td></tr>
2131     <tr><td><tt>sge</tt></td><td>var1 &gt;= var2</td><td>signed</td></tr>
2132     <tr><td><tt>ult</tt></td><td>var1 &lt; var2</td><td>unsigned</td></tr>
2133     <tr><td><tt>ugt</tt></td><td>var1 &gt; var2</td><td>unsigned</td></tr>
2134     <tr><td><tt>ule</tt></td><td>var1 &lt;= var2</td><td>unsigned</td></tr>
2135     <tr><td><tt>uge</tt></td><td>var1 &gt;= var2</td><td>unsigned</td></tr>
2136     <tr><td><tt>true</tt></td><td>always</td><td>--</td></tr>
2137     <tr><td><tt>false</tt></td><td>never</td><td>--</td></tr>
2138   </tbody>
2139 </table>
2140
2141 <h5>Example:</h5>
2142 <pre>  &lt;result&gt; = vsetint eq &lt;2 x int&gt; &lt;int 0, int 1&gt;, &lt;int 1, int 0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = false, false</i>
2143   &lt;result&gt; = vsetint ne &lt;2 x int&gt; &lt;int 0, int 1&gt;, &lt;int 1, int 0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = true, true</i>
2144   &lt;result&gt; = vsetint slt &lt;2 x int&gt; &lt;int 0, int 1&gt;, &lt;int 1, int 0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = true, false</i>
2145   &lt;result&gt; = vsetint sgt &lt;2 x int&gt; &lt;int 0, int 1&gt;, &lt;int 1, int 0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = false, true</i>
2146   &lt;result&gt; = vsetint sle &lt;2 x int&gt; &lt;int 0, int 1&gt;, &lt;int 1, int 0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = true, false</i>
2147   &lt;result&gt; = vsetint sge &lt;2 x int&gt; &lt;int 0, int 1&gt;, &lt;int 1, int 0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = false, true</i>
2148 </pre>
2149 </div>
2150
2151 <!-- _______________________________________________________________________ -->
2152 <div class="doc_subsubsection"> <a name="i_vsetfp">'<tt>vsetfp</tt>'
2153 Instruction</a> </div>
2154 <div class="doc_text">
2155 <h5>Syntax:</h5>
2156 <pre>&lt;result&gt; = vsetfp &lt;op&gt;, &lt;n x &lt;ty&gt;&gt; &lt;var1&gt;, &lt;var2&gt;   <i>; yields &lt;n x bool&gt;</i>
2157 </pre>
2158
2159 <h5>Overview:</h5>
2160
2161 <p>The '<tt>vsetfp</tt>' instruction takes two floating point vector
2162 arguments and returns a vector of boolean values representing, at each
2163 position, the result of the comparison between the values at that
2164 position in the two operands.</p>
2165
2166 <h5>Arguments:</h5>
2167
2168 <p>The arguments to a '<tt>vsetfp</tt>' instruction are a comparison
2169 operation and two value arguments.  The value arguments must be of <a
2170 href="t_floating">floating point</a> <a href="#t_packed">packed</a>
2171 type, and they must have identical types.  The operation argument must
2172 be one of <tt>eq</tt>, <tt>ne</tt>, <tt>lt</tt>, <tt>gt</tt>,
2173 <tt>le</tt>, <tt>ge</tt>, <tt>oeq</tt>, <tt>one</tt>, <tt>olt</tt>,
2174 <tt>ogt</tt>, <tt>ole</tt>, <tt>oge</tt>, <tt>ueq</tt>, <tt>une</tt>,
2175 <tt>ult</tt>, <tt>ugt</tt>, <tt>ule</tt>, <tt>uge</tt>, <tt>o</tt>,
2176 <tt>u</tt>, <tt>true</tt>, and <tt>false</tt>.  The result is a packed
2177 <tt>bool</tt> value with the same length as each operand.</p>
2178
2179 <h5>Semantics:</h5>
2180
2181 <p>The following table shows the semantics of '<tt>vsetfp</tt>' for
2182 floating point types.  If either operand is a floating point Not a
2183 Number (NaN) value, the operation is unordered, and the value in the
2184 first column below is produced at that position.  Otherwise, the
2185 operation is ordered, and the value in the second column is
2186 produced.</p>
2187
2188 <table  border="1" cellspacing="0" cellpadding="4">
2189   <tbody>
2190     <tr><th>Operation</th><th>If unordered<th>Otherwise true iff</th></tr>
2191     <tr><td><tt>eq</tt></td><td>undefined</td><td>var1 == var2</td></tr>
2192     <tr><td><tt>ne</tt></td><td>undefined</td><td>var1 != var2</td></tr>
2193     <tr><td><tt>lt</tt></td><td>undefined</td><td>var1 &lt; var2</td></tr>
2194     <tr><td><tt>gt</tt></td><td>undefined</td><td>var1 &gt; var2</td></tr>
2195     <tr><td><tt>le</tt></td><td>undefined</td><td>var1 &lt;= var2</td></tr>
2196     <tr><td><tt>ge</tt></td><td>undefined</td><td>var1 &gt;= var2</td></tr>
2197     <tr><td><tt>oeq</tt></td><td>false</td><td>var1 == var2</td></tr>
2198     <tr><td><tt>one</tt></td><td>false</td><td>var1 != var2</td></tr>
2199     <tr><td><tt>olt</tt></td><td>false</td><td>var1 &lt; var2</td></tr>
2200     <tr><td><tt>ogt</tt></td><td>false</td><td>var1 &gt; var2</td></tr>
2201     <tr><td><tt>ole</tt></td><td>false</td><td>var1 &lt;= var2</td></tr>
2202     <tr><td><tt>oge</tt></td><td>false</td><td>var1 &gt;= var2</td></tr>
2203     <tr><td><tt>ueq</tt></td><td>true</td><td>var1 == var2</td></tr>
2204     <tr><td><tt>une</tt></td><td>true</td><td>var1 != var2</td></tr>
2205     <tr><td><tt>ult</tt></td><td>true</td><td>var1 &lt; var2</td></tr>
2206     <tr><td><tt>ugt</tt></td><td>true</td><td>var1 &gt; var2</td></tr>
2207     <tr><td><tt>ule</tt></td><td>true</td><td>var1 &lt;= var2</td></tr>
2208     <tr><td><tt>uge</tt></td><td>true</td><td>var1 &gt;= var2</td></tr>
2209     <tr><td><tt>o</tt></td><td>false</td><td>always</td></tr>
2210     <tr><td><tt>u</tt></td><td>true</td><td>never</td></tr>
2211     <tr><td><tt>true</tt></td><td>true</td><td>always</td></tr>
2212     <tr><td><tt>false</tt></td><td>false</td><td>never</td></tr>
2213   </tbody>
2214 </table>
2215
2216 <h5>Example:</h5>
2217 <pre>  &lt;result&gt; = vsetfp eq &lt;2 x float&gt; &lt;float 0.0, float 1.0&gt;, &lt;float 1.0, float 0.0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = false, false</i>
2218   &lt;result&gt; = vsetfp ne &lt;2 x float&gt; &lt;float 0.0, float 1.0&gt;, &lt;float 1.0, float 0.0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = true, true</i>
2219   &lt;result&gt; = vsetfp lt &lt;2 x float&gt; &lt;float 0.0, float 1.0&gt;, &lt;float 1.0, float 0.0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = true, false</i>
2220   &lt;result&gt; = vsetfp gt &lt;2 x float&gt; &lt;float 0.0, float 1.0&gt;, &lt;float 1.0, float 0.0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = false, true</i>
2221   &lt;result&gt; = vsetfp le &lt;2 x float&gt; &lt;float 0.0, float 1.0&gt;, &lt;float 1.0, float 0.0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = true, false</i>
2222   &lt;result&gt; = vsetfp ge &lt;2 x float&gt; &lt;float 0.0, float 1.0&gt;, &lt;float 1.0, float 0.0&gt;      <i>; yields {&lt;2 x bool&gt;}:result = false, true</i>
2223 </pre>
2224 </div>
2225
2226 <!-- _______________________________________________________________________ -->
2227 <div class="doc_subsubsection">
2228    <a name="i_vselect">'<tt>vselect</tt>' Instruction</a>
2229 </div>
2230
2231 <div class="doc_text">
2232
2233 <h5>Syntax:</h5>
2234
2235 <pre>
2236   &lt;result&gt; = vselect &lt;n x bool&gt; &lt;cond&gt;, &lt;n x &lt;ty&gt;&gt; &lt;val1&gt;, &lt;n x &lt;ty&gt;&gt; &lt;val2&gt; <i>; yields &lt;n x &lt;ty&gt;&gt;</i>
2237 </pre>
2238
2239 <h5>Overview:</h5>
2240
2241 <p>
2242 The '<tt>vselect</tt>' instruction chooses one value at each position
2243 of a vector based on a condition.
2244 </p>
2245
2246
2247 <h5>Arguments:</h5>
2248
2249 <p>
2250 The '<tt>vselect</tt>' instruction requires a <a
2251 href="#t_packed">packed</a> <tt>bool</tt> value indicating the
2252 condition at each vector position, and two values of the same packed
2253 type.  All three operands must have the same length.  The type of the
2254 result is the same as the type of the two value operands.</p>
2255
2256 <h5>Semantics:</h5>
2257
2258 <p>
2259 At each position where the <tt>bool</tt> vector is true, that position
2260 of the result gets its value from the first value argument; otherwise,
2261 it gets its value from the second value argument.
2262 </p>
2263
2264 <h5>Example:</h5>
2265
2266 <pre>
2267   %X = vselect bool &lt;2 x bool&gt; &lt;bool true, bool false&gt;, &lt;2 x ubyte&gt; &lt;ubyte 17, ubyte 17&gt;, 
2268     &lt;2 x ubyte&gt; &lt;ubyte 42, ubyte 42&gt;      <i>; yields &lt;2 x ubyte&gt;:17, 42</i>
2269 </pre>
2270 </div>
2271
2272
2273
2274 <!-- ======================================================================= -->
2275 <div class="doc_subsection"> 
2276   <a name="memoryops">Memory Access Operations</a>
2277 </div>
2278
2279 <div class="doc_text">
2280
2281 <p>A key design point of an SSA-based representation is how it
2282 represents memory.  In LLVM, no memory locations are in SSA form, which
2283 makes things very simple.  This section describes how to read, write,
2284 allocate, and free memory in LLVM.</p>
2285
2286 </div>
2287
2288 <!-- _______________________________________________________________________ -->
2289 <div class="doc_subsubsection">
2290   <a name="i_malloc">'<tt>malloc</tt>' Instruction</a>
2291 </div>
2292
2293 <div class="doc_text">
2294
2295 <h5>Syntax:</h5>
2296
2297 <pre>
2298   &lt;result&gt; = malloc &lt;type&gt;[, uint &lt;NumElements&gt;][, align &lt;alignment&gt;]     <i>; yields {type*}:result</i>
2299 </pre>
2300
2301 <h5>Overview:</h5>
2302
2303 <p>The '<tt>malloc</tt>' instruction allocates memory from the system
2304 heap and returns a pointer to it.</p>
2305
2306 <h5>Arguments:</h5>
2307
2308 <p>The '<tt>malloc</tt>' instruction allocates
2309 <tt>sizeof(&lt;type&gt;)*NumElements</tt>
2310 bytes of memory from the operating system and returns a pointer of the
2311 appropriate type to the program.  If "NumElements" is specified, it is the
2312 number of elements allocated.  If an alignment is specified, the value result
2313 of the allocation is guaranteed to be aligned to at least that boundary.  If
2314 not specified, or if zero, the target can choose to align the allocation on any
2315 convenient boundary.</p>
2316
2317 <p>'<tt>type</tt>' must be a sized type.</p>
2318
2319 <h5>Semantics:</h5>
2320
2321 <p>Memory is allocated using the system "<tt>malloc</tt>" function, and
2322 a pointer is returned.</p>
2323
2324 <h5>Example:</h5>
2325
2326 <pre>
2327   %array  = malloc [4 x ubyte ]                    <i>; yields {[%4 x ubyte]*}:array</i>
2328
2329   %size   = <a href="#i_add">add</a> uint 2, 2                          <i>; yields {uint}:size = uint 4</i>
2330   %array1 = malloc ubyte, uint 4                   <i>; yields {ubyte*}:array1</i>
2331   %array2 = malloc [12 x ubyte], uint %size        <i>; yields {[12 x ubyte]*}:array2</i>
2332   %array3 = malloc int, uint 4, align 1024         <i>; yields {int*}:array3</i>
2333   %array4 = malloc int, align 1024                 <i>; yields {int*}:array4</i>
2334 </pre>
2335 </div>
2336
2337 <!-- _______________________________________________________________________ -->
2338 <div class="doc_subsubsection">
2339   <a name="i_free">'<tt>free</tt>' Instruction</a>
2340 </div>
2341
2342 <div class="doc_text">
2343
2344 <h5>Syntax:</h5>
2345
2346 <pre>
2347   free &lt;type&gt; &lt;value&gt;                              <i>; yields {void}</i>
2348 </pre>
2349
2350 <h5>Overview:</h5>
2351
2352 <p>The '<tt>free</tt>' instruction returns memory back to the unused
2353 memory heap to be reallocated in the future.</p>
2354
2355 <h5>Arguments:</h5>
2356
2357 <p>'<tt>value</tt>' shall be a pointer value that points to a value
2358 that was allocated with the '<tt><a href="#i_malloc">malloc</a></tt>'
2359 instruction.</p>
2360
2361 <h5>Semantics:</h5>
2362
2363 <p>Access to the memory pointed to by the pointer is no longer defined
2364 after this instruction executes.</p>
2365
2366 <h5>Example:</h5>
2367
2368 <pre>
2369   %array  = <a href="#i_malloc">malloc</a> [4 x ubyte]                    <i>; yields {[4 x ubyte]*}:array</i>
2370             free   [4 x ubyte]* %array
2371 </pre>
2372 </div>
2373
2374 <!-- _______________________________________________________________________ -->
2375 <div class="doc_subsubsection">
2376   <a name="i_alloca">'<tt>alloca</tt>' Instruction</a>
2377 </div>
2378
2379 <div class="doc_text">
2380
2381 <h5>Syntax:</h5>
2382
2383 <pre>
2384   &lt;result&gt; = alloca &lt;type&gt;[, uint &lt;NumElements&gt;][, align &lt;alignment&gt;]     <i>; yields {type*}:result</i>
2385 </pre>
2386
2387 <h5>Overview:</h5>
2388
2389 <p>The '<tt>alloca</tt>' instruction allocates memory on the current
2390 stack frame of the procedure that is live until the current function
2391 returns to its caller.</p>
2392
2393 <h5>Arguments:</h5>
2394
2395 <p>The '<tt>alloca</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
2396 bytes of memory on the runtime stack, returning a pointer of the
2397 appropriate type to the program.    If "NumElements" is specified, it is the
2398 number of elements allocated.  If an alignment is specified, the value result
2399 of the allocation is guaranteed to be aligned to at least that boundary.  If
2400 not specified, or if zero, the target can choose to align the allocation on any
2401 convenient boundary.</p>
2402
2403 <p>'<tt>type</tt>' may be any sized type.</p>
2404
2405 <h5>Semantics:</h5>
2406
2407 <p>Memory is allocated; a pointer is returned.  '<tt>alloca</tt>'d
2408 memory is automatically released when the function returns.  The '<tt>alloca</tt>'
2409 instruction is commonly used to represent automatic variables that must
2410 have an address available.  When the function returns (either with the <tt><a
2411  href="#i_ret">ret</a></tt> or <tt><a href="#i_unwind">unwind</a></tt>
2412 instructions), the memory is reclaimed.</p>
2413
2414 <h5>Example:</h5>
2415
2416 <pre>
2417   %ptr = alloca int                              <i>; yields {int*}:ptr</i>
2418   %ptr = alloca int, uint 4                      <i>; yields {int*}:ptr</i>
2419   %ptr = alloca int, uint 4, align 1024          <i>; yields {int*}:ptr</i>
2420   %ptr = alloca int, align 1024                  <i>; yields {int*}:ptr</i>
2421 </pre>
2422 </div>
2423
2424 <!-- _______________________________________________________________________ -->
2425 <div class="doc_subsubsection"> <a name="i_load">'<tt>load</tt>'
2426 Instruction</a> </div>
2427 <div class="doc_text">
2428 <h5>Syntax:</h5>
2429 <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>
2430 <h5>Overview:</h5>
2431 <p>The '<tt>load</tt>' instruction is used to read from memory.</p>
2432 <h5>Arguments:</h5>
2433 <p>The argument to the '<tt>load</tt>' instruction specifies the memory
2434 address from which to load.  The pointer must point to a <a
2435  href="#t_firstclass">first class</a> type.  If the <tt>load</tt> is
2436 marked as <tt>volatile</tt>, then the optimizer is not allowed to modify
2437 the number or order of execution of this <tt>load</tt> with other
2438 volatile <tt>load</tt> and <tt><a href="#i_store">store</a></tt>
2439 instructions. </p>
2440 <h5>Semantics:</h5>
2441 <p>The location of memory pointed to is loaded.</p>
2442 <h5>Examples:</h5>
2443 <pre>  %ptr = <a href="#i_alloca">alloca</a> int                               <i>; yields {int*}:ptr</i>
2444   <a
2445  href="#i_store">store</a> int 3, int* %ptr                          <i>; yields {void}</i>
2446   %val = load int* %ptr                           <i>; yields {int}:val = int 3</i>
2447 </pre>
2448 </div>
2449 <!-- _______________________________________________________________________ -->
2450 <div class="doc_subsubsection"> <a name="i_store">'<tt>store</tt>'
2451 Instruction</a> </div>
2452 <h5>Syntax:</h5>
2453 <pre>  store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt;                   <i>; yields {void}</i>
2454   volatile store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt;                   <i>; yields {void}</i>
2455 </pre>
2456 <h5>Overview:</h5>
2457 <p>The '<tt>store</tt>' instruction is used to write to memory.</p>
2458 <h5>Arguments:</h5>
2459 <p>There are two arguments to the '<tt>store</tt>' instruction: a value
2460 to store and an address in which to store it.  The type of the '<tt>&lt;pointer&gt;</tt>'
2461 operand must be a pointer to the type of the '<tt>&lt;value&gt;</tt>'
2462 operand. If the <tt>store</tt> is marked as <tt>volatile</tt>, then the
2463 optimizer is not allowed to modify the number or order of execution of
2464 this <tt>store</tt> with other volatile <tt>load</tt> and <tt><a
2465  href="#i_store">store</a></tt> instructions.</p>
2466 <h5>Semantics:</h5>
2467 <p>The contents of memory are updated to contain '<tt>&lt;value&gt;</tt>'
2468 at the location specified by the '<tt>&lt;pointer&gt;</tt>' operand.</p>
2469 <h5>Example:</h5>
2470 <pre>  %ptr = <a href="#i_alloca">alloca</a> int                               <i>; yields {int*}:ptr</i>
2471   <a
2472  href="#i_store">store</a> int 3, int* %ptr                          <i>; yields {void}</i>
2473   %val = load int* %ptr                           <i>; yields {int}:val = int 3</i>
2474 </pre>
2475 <!-- _______________________________________________________________________ -->
2476 <div class="doc_subsubsection">
2477    <a name="i_getelementptr">'<tt>getelementptr</tt>' Instruction</a>
2478 </div>
2479
2480 <div class="doc_text">
2481 <h5>Syntax:</h5>
2482 <pre>
2483   &lt;result&gt; = getelementptr &lt;ty&gt;* &lt;ptrval&gt;{, &lt;ty&gt; &lt;idx&gt;}*
2484 </pre>
2485
2486 <h5>Overview:</h5>
2487
2488 <p>
2489 The '<tt>getelementptr</tt>' instruction is used to get the address of a
2490 subelement of an aggregate data structure.</p>
2491
2492 <h5>Arguments:</h5>
2493
2494 <p>This instruction takes a list of integer constants that indicate what
2495 elements of the aggregate object to index to.  The actual types of the arguments
2496 provided depend on the type of the first pointer argument.  The
2497 '<tt>getelementptr</tt>' instruction is used to index down through the type
2498 levels of a structure or to a specific index in an array.  When indexing into a
2499 structure, only <tt>uint</tt>
2500 integer constants are allowed.  When indexing into an array or pointer,
2501 <tt>int</tt> and <tt>long</tt> indexes are allowed of any sign.</p>
2502
2503 <p>For example, let's consider a C code fragment and how it gets
2504 compiled to LLVM:</p>
2505
2506 <pre>
2507   struct RT {
2508     char A;
2509     int B[10][20];
2510     char C;
2511   };
2512   struct ST {
2513     int X;
2514     double Y;
2515     struct RT Z;
2516   };
2517
2518   int *foo(struct ST *s) {
2519     return &amp;s[1].Z.B[5][13];
2520   }
2521 </pre>
2522
2523 <p>The LLVM code generated by the GCC frontend is:</p>
2524
2525 <pre>
2526   %RT = type { sbyte, [10 x [20 x int]], sbyte }
2527   %ST = type { int, double, %RT }
2528
2529   implementation
2530
2531   int* %foo(%ST* %s) {
2532   entry:
2533     %reg = getelementptr %ST* %s, int 1, uint 2, uint 1, int 5, int 13
2534     ret int* %reg
2535   }
2536 </pre>
2537
2538 <h5>Semantics:</h5>
2539
2540 <p>The index types specified for the '<tt>getelementptr</tt>' instruction depend
2541 on the pointer type that is being indexed into. <a href="#t_pointer">Pointer</a>
2542 and <a href="#t_array">array</a> types require <tt>uint</tt>, <tt>int</tt>,
2543 <tt>ulong</tt>, or <tt>long</tt> values, and <a href="#t_struct">structure</a>
2544 types require <tt>uint</tt> <b>constants</b>.</p>
2545
2546 <p>In the example above, the first index is indexing into the '<tt>%ST*</tt>'
2547 type, which is a pointer, yielding a '<tt>%ST</tt>' = '<tt>{ int, double, %RT
2548 }</tt>' type, a structure.  The second index indexes into the third element of
2549 the structure, yielding a '<tt>%RT</tt>' = '<tt>{ sbyte, [10 x [20 x int]],
2550 sbyte }</tt>' type, another structure.  The third index indexes into the second
2551 element of the structure, yielding a '<tt>[10 x [20 x int]]</tt>' type, an
2552 array.  The two dimensions of the array are subscripted into, yielding an
2553 '<tt>int</tt>' type.  The '<tt>getelementptr</tt>' instruction returns a pointer
2554 to this element, thus computing a value of '<tt>int*</tt>' type.</p>
2555
2556 <p>Note that it is perfectly legal to index partially through a
2557 structure, returning a pointer to an inner element.  Because of this,
2558 the LLVM code for the given testcase is equivalent to:</p>
2559
2560 <pre>
2561   int* %foo(%ST* %s) {
2562     %t1 = getelementptr %ST* %s, int 1                        <i>; yields %ST*:%t1</i>
2563     %t2 = getelementptr %ST* %t1, int 0, uint 2               <i>; yields %RT*:%t2</i>
2564     %t3 = getelementptr %RT* %t2, int 0, uint 1               <i>; yields [10 x [20 x int]]*:%t3</i>
2565     %t4 = getelementptr [10 x [20 x int]]* %t3, int 0, int 5  <i>; yields [20 x int]*:%t4</i>
2566     %t5 = getelementptr [20 x int]* %t4, int 0, int 13        <i>; yields int*:%t5</i>
2567     ret int* %t5
2568   }
2569 </pre>
2570
2571 <p>Note that it is undefined to access an array out of bounds: array and 
2572 pointer indexes must always be within the defined bounds of the array type.
2573 The one exception for this rules is zero length arrays.  These arrays are
2574 defined to be accessible as variable length arrays, which requires access
2575 beyond the zero'th element.</p>
2576
2577 <h5>Example:</h5>
2578
2579 <pre>
2580     <i>; yields [12 x ubyte]*:aptr</i>
2581     %aptr = getelementptr {int, [12 x ubyte]}* %sptr, long 0, uint 1
2582 </pre>
2583
2584 </div>
2585 <!-- ======================================================================= -->
2586 <div class="doc_subsection"> <a name="otherops">Other Operations</a> </div>
2587 <div class="doc_text">
2588 <p>The instructions in this category are the "miscellaneous"
2589 instructions, which defy better classification.</p>
2590 </div>
2591 <!-- _______________________________________________________________________ -->
2592 <div class="doc_subsubsection"> <a name="i_phi">'<tt>phi</tt>'
2593 Instruction</a> </div>
2594 <div class="doc_text">
2595 <h5>Syntax:</h5>
2596 <pre>  &lt;result&gt; = phi &lt;ty&gt; [ &lt;val0&gt;, &lt;label0&gt;], ...<br></pre>
2597 <h5>Overview:</h5>
2598 <p>The '<tt>phi</tt>' instruction is used to implement the &#966; node in
2599 the SSA graph representing the function.</p>
2600 <h5>Arguments:</h5>
2601 <p>The type of the incoming values are specified with the first type
2602 field. After this, the '<tt>phi</tt>' instruction takes a list of pairs
2603 as arguments, with one pair for each predecessor basic block of the
2604 current block.  Only values of <a href="#t_firstclass">first class</a>
2605 type may be used as the value arguments to the PHI node.  Only labels
2606 may be used as the label arguments.</p>
2607 <p>There must be no non-phi instructions between the start of a basic
2608 block and the PHI instructions: i.e. PHI instructions must be first in
2609 a basic block.</p>
2610 <h5>Semantics:</h5>
2611 <p>At runtime, the '<tt>phi</tt>' instruction logically takes on the
2612 value specified by the parameter, depending on which basic block we
2613 came from in the last <a href="#terminators">terminator</a> instruction.</p>
2614 <h5>Example:</h5>
2615 <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>
2616 </div>
2617
2618 <!-- _______________________________________________________________________ -->
2619 <div class="doc_subsubsection">
2620    <a name="i_cast">'<tt>cast .. to</tt>' Instruction</a>
2621 </div>
2622
2623 <div class="doc_text">
2624
2625 <h5>Syntax:</h5>
2626
2627 <pre>
2628   &lt;result&gt; = cast &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt;             <i>; yields ty2</i>
2629 </pre>
2630
2631 <h5>Overview:</h5>
2632
2633 <p>
2634 The '<tt>cast</tt>' instruction is used as the primitive means to convert
2635 integers to floating point, change data type sizes, and break type safety (by
2636 casting pointers).
2637 </p>
2638
2639
2640 <h5>Arguments:</h5>
2641
2642 <p>
2643 The '<tt>cast</tt>' instruction takes a value to cast, which must be a first
2644 class value, and a type to cast it to, which must also be a <a
2645 href="#t_firstclass">first class</a> type.
2646 </p>
2647
2648 <h5>Semantics:</h5>
2649
2650 <p>
2651 This instruction follows the C rules for explicit casts when determining how the
2652 data being cast must change to fit in its new container.
2653 </p>
2654
2655 <p>
2656 When casting to bool, any value that would be considered true in the context of
2657 a C '<tt>if</tt>' condition is converted to the boolean '<tt>true</tt>' values,
2658 all else are '<tt>false</tt>'.
2659 </p>
2660
2661 <p>
2662 When extending an integral value from a type of one signness to another (for
2663 example '<tt>sbyte</tt>' to '<tt>ulong</tt>'), the value is sign-extended if the
2664 <b>source</b> value is signed, and zero-extended if the source value is
2665 unsigned. <tt>bool</tt> values are always zero extended into either zero or
2666 one.
2667 </p>
2668
2669 <h5>Example:</h5>
2670
2671 <pre>
2672   %X = cast int 257 to ubyte              <i>; yields ubyte:1</i>
2673   %Y = cast int 123 to bool               <i>; yields bool:true</i>
2674 </pre>
2675 </div>
2676
2677 <!-- _______________________________________________________________________ -->
2678 <div class="doc_subsubsection">
2679    <a name="i_select">'<tt>select</tt>' Instruction</a>
2680 </div>
2681
2682 <div class="doc_text">
2683
2684 <h5>Syntax:</h5>
2685
2686 <pre>
2687   &lt;result&gt; = select bool &lt;cond&gt;, &lt;ty&gt; &lt;val1&gt;, &lt;ty&gt; &lt;val2&gt;             <i>; yields ty</i>
2688 </pre>
2689
2690 <h5>Overview:</h5>
2691
2692 <p>
2693 The '<tt>select</tt>' instruction is used to choose one value based on a
2694 condition, without branching.
2695 </p>
2696
2697
2698 <h5>Arguments:</h5>
2699
2700 <p>
2701 The '<tt>select</tt>' instruction requires a boolean value indicating the condition, and two values of the same <a href="#t_firstclass">first class</a> type.
2702 </p>
2703
2704 <h5>Semantics:</h5>
2705
2706 <p>
2707 If the boolean condition evaluates to true, the instruction returns the first
2708 value argument; otherwise, it returns the second value argument.
2709 </p>
2710
2711 <h5>Example:</h5>
2712
2713 <pre>
2714   %X = select bool true, ubyte 17, ubyte 42          <i>; yields ubyte:17</i>
2715 </pre>
2716 </div>
2717
2718
2719 <!-- _______________________________________________________________________ -->
2720 <div class="doc_subsubsection">
2721   <a name="i_call">'<tt>call</tt>' Instruction</a>
2722 </div>
2723
2724 <div class="doc_text">
2725
2726 <h5>Syntax:</h5>
2727 <pre>
2728   &lt;result&gt; = [tail] call [<a href="#callingconv">cconv</a>] &lt;ty&gt;* &lt;fnptrval&gt;(&lt;param list&gt;)
2729 </pre>
2730
2731 <h5>Overview:</h5>
2732
2733 <p>The '<tt>call</tt>' instruction represents a simple function call.</p>
2734
2735 <h5>Arguments:</h5>
2736
2737 <p>This instruction requires several arguments:</p>
2738
2739 <ol>
2740   <li>
2741     <p>The optional "tail" marker indicates whether the callee function accesses
2742     any allocas or varargs in the caller.  If the "tail" marker is present, the
2743     function call is eligible for tail call optimization.  Note that calls may
2744     be marked "tail" even if they do not occur before a <a
2745     href="#i_ret"><tt>ret</tt></a> instruction.
2746   </li>
2747   <li>
2748     <p>The optional "cconv" marker indicates which <a href="callingconv">calling
2749     convention</a> the call should use.  If none is specified, the call defaults
2750     to using C calling conventions.
2751   </li>
2752   <li>
2753     <p>'<tt>ty</tt>': shall be the signature of the pointer to function value
2754     being invoked.  The argument types must match the types implied by this
2755     signature.  This type can be omitted if the function is not varargs and
2756     if the function type does not return a pointer to a function.</p>
2757   </li>
2758   <li>
2759     <p>'<tt>fnptrval</tt>': An LLVM value containing a pointer to a function to
2760     be invoked. In most cases, this is a direct function invocation, but
2761     indirect <tt>call</tt>s are just as possible, calling an arbitrary pointer
2762     to function value.</p>
2763   </li>
2764   <li>
2765     <p>'<tt>function args</tt>': argument list whose types match the
2766     function signature argument types. All arguments must be of 
2767     <a href="#t_firstclass">first class</a> type. If the function signature 
2768     indicates the function accepts a variable number of arguments, the extra 
2769     arguments can be specified.</p>
2770   </li>
2771 </ol>
2772
2773 <h5>Semantics:</h5>
2774
2775 <p>The '<tt>call</tt>' instruction is used to cause control flow to
2776 transfer to a specified function, with its incoming arguments bound to
2777 the specified values. Upon a '<tt><a href="#i_ret">ret</a></tt>'
2778 instruction in the called function, control flow continues with the
2779 instruction after the function call, and the return value of the
2780 function is bound to the result argument.  This is a simpler case of
2781 the <a href="#i_invoke">invoke</a> instruction.</p>
2782
2783 <h5>Example:</h5>
2784
2785 <pre>
2786   %retval = call int %test(int %argc)
2787   call int(sbyte*, ...) *%printf(sbyte* %msg, int 12, sbyte 42);
2788   %X = tail call int %foo()
2789   %Y = tail call <a href="#callingconv">fastcc</a> int %foo()
2790 </pre>
2791
2792 </div>
2793
2794 <!-- _______________________________________________________________________ -->
2795 <div class="doc_subsubsection">
2796   <a name="i_va_arg">'<tt>va_arg</tt>' Instruction</a>
2797 </div>
2798
2799 <div class="doc_text">
2800
2801 <h5>Syntax:</h5>
2802
2803 <pre>
2804   &lt;resultval&gt; = va_arg &lt;va_list*&gt; &lt;arglist&gt;, &lt;argty&gt;
2805 </pre>
2806
2807 <h5>Overview:</h5>
2808
2809 <p>The '<tt>va_arg</tt>' instruction is used to access arguments passed through
2810 the "variable argument" area of a function call.  It is used to implement the
2811 <tt>va_arg</tt> macro in C.</p>
2812
2813 <h5>Arguments:</h5>
2814
2815 <p>This instruction takes a <tt>va_list*</tt> value and the type of
2816 the argument. It returns a value of the specified argument type and
2817 increments the <tt>va_list</tt> to point to the next argument.  Again, the
2818 actual type of <tt>va_list</tt> is target specific.</p>
2819
2820 <h5>Semantics:</h5>
2821
2822 <p>The '<tt>va_arg</tt>' instruction loads an argument of the specified
2823 type from the specified <tt>va_list</tt> and causes the
2824 <tt>va_list</tt> to point to the next argument.  For more information,
2825 see the variable argument handling <a href="#int_varargs">Intrinsic
2826 Functions</a>.</p>
2827
2828 <p>It is legal for this instruction to be called in a function which does not
2829 take a variable number of arguments, for example, the <tt>vfprintf</tt>
2830 function.</p>
2831
2832 <p><tt>va_arg</tt> is an LLVM instruction instead of an <a
2833 href="#intrinsics">intrinsic function</a> because it takes a type as an
2834 argument.</p>
2835
2836 <h5>Example:</h5>
2837
2838 <p>See the <a href="#int_varargs">variable argument processing</a> section.</p>
2839
2840 </div>
2841
2842 <!-- *********************************************************************** -->
2843 <div class="doc_section"> <a name="intrinsics">Intrinsic Functions</a> </div>
2844 <!-- *********************************************************************** -->
2845
2846 <div class="doc_text">
2847
2848 <p>LLVM supports the notion of an "intrinsic function".  These functions have
2849 well known names and semantics and are required to follow certain
2850 restrictions. Overall, these instructions represent an extension mechanism for
2851 the LLVM language that does not require changing all of the transformations in
2852 LLVM to add to the language (or the bytecode reader/writer, the parser,
2853 etc...).</p>
2854
2855 <p>Intrinsic function names must all start with an "<tt>llvm.</tt>" prefix. This
2856 prefix is reserved in LLVM for intrinsic names; thus, functions may not be named
2857 this.  Intrinsic functions must always be external functions: you cannot define
2858 the body of intrinsic functions.  Intrinsic functions may only be used in call
2859 or invoke instructions: it is illegal to take the address of an intrinsic
2860 function.  Additionally, because intrinsic functions are part of the LLVM
2861 language, it is required that they all be documented here if any are added.</p>
2862
2863
2864 <p>To learn how to add an intrinsic function, please see the <a
2865 href="ExtendingLLVM.html">Extending LLVM Guide</a>.
2866 </p>
2867
2868 </div>
2869
2870 <!-- ======================================================================= -->
2871 <div class="doc_subsection">
2872   <a name="int_varargs">Variable Argument Handling Intrinsics</a>
2873 </div>
2874
2875 <div class="doc_text">
2876
2877 <p>Variable argument support is defined in LLVM with the <a
2878  href="#i_va_arg"><tt>va_arg</tt></a> instruction and these three
2879 intrinsic functions.  These functions are related to the similarly
2880 named macros defined in the <tt>&lt;stdarg.h&gt;</tt> header file.</p>
2881
2882 <p>All of these functions operate on arguments that use a
2883 target-specific value type "<tt>va_list</tt>".  The LLVM assembly
2884 language reference manual does not define what this type is, so all
2885 transformations should be prepared to handle intrinsics with any type
2886 used.</p>
2887
2888 <p>This example shows how the <a href="#i_va_arg"><tt>va_arg</tt></a>
2889 instruction and the variable argument handling intrinsic functions are
2890 used.</p>
2891
2892 <pre>
2893 int %test(int %X, ...) {
2894   ; Initialize variable argument processing
2895   %ap = alloca sbyte*
2896   call void %<a href="#i_va_start">llvm.va_start</a>(sbyte** %ap)
2897
2898   ; Read a single integer argument
2899   %tmp = va_arg sbyte** %ap, int
2900
2901   ; Demonstrate usage of llvm.va_copy and llvm.va_end
2902   %aq = alloca sbyte*
2903   call void %<a href="#i_va_copy">llvm.va_copy</a>(sbyte** %aq, sbyte** %ap)
2904   call void %<a href="#i_va_end">llvm.va_end</a>(sbyte** %aq)
2905
2906   ; Stop processing of arguments.
2907   call void %<a href="#i_va_end">llvm.va_end</a>(sbyte** %ap)
2908   ret int %tmp
2909 }
2910 </pre>
2911 </div>
2912
2913 <!-- _______________________________________________________________________ -->
2914 <div class="doc_subsubsection">
2915   <a name="i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a>
2916 </div>
2917
2918
2919 <div class="doc_text">
2920 <h5>Syntax:</h5>
2921 <pre>  declare void %llvm.va_start(&lt;va_list&gt;* &lt;arglist&gt;)<br></pre>
2922 <h5>Overview:</h5>
2923 <P>The '<tt>llvm.va_start</tt>' intrinsic initializes
2924 <tt>*&lt;arglist&gt;</tt> for subsequent use by <tt><a
2925 href="#i_va_arg">va_arg</a></tt>.</p>
2926
2927 <h5>Arguments:</h5>
2928
2929 <P>The argument is a pointer to a <tt>va_list</tt> element to initialize.</p>
2930
2931 <h5>Semantics:</h5>
2932
2933 <P>The '<tt>llvm.va_start</tt>' intrinsic works just like the <tt>va_start</tt>
2934 macro available in C.  In a target-dependent way, it initializes the
2935 <tt>va_list</tt> element the argument points to, so that the next call to
2936 <tt>va_arg</tt> will produce the first variable argument passed to the function.
2937 Unlike the C <tt>va_start</tt> macro, this intrinsic does not need to know the
2938 last argument of the function, the compiler can figure that out.</p>
2939
2940 </div>
2941
2942 <!-- _______________________________________________________________________ -->
2943 <div class="doc_subsubsection">
2944  <a name="i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a>
2945 </div>
2946
2947 <div class="doc_text">
2948 <h5>Syntax:</h5>
2949 <pre>  declare void %llvm.va_end(&lt;va_list*&gt; &lt;arglist&gt;)<br></pre>
2950 <h5>Overview:</h5>
2951 <p>The '<tt>llvm.va_end</tt>' intrinsic destroys <tt>&lt;arglist&gt;</tt>
2952 which has been initialized previously with <tt><a href="#i_va_start">llvm.va_start</a></tt>
2953 or <tt><a href="#i_va_copy">llvm.va_copy</a></tt>.</p>
2954 <h5>Arguments:</h5>
2955 <p>The argument is a <tt>va_list</tt> to destroy.</p>
2956 <h5>Semantics:</h5>
2957 <p>The '<tt>llvm.va_end</tt>' intrinsic works just like the <tt>va_end</tt>
2958 macro available in C.  In a target-dependent way, it destroys the <tt>va_list</tt>.
2959 Calls to <a href="#i_va_start"><tt>llvm.va_start</tt></a> and <a
2960  href="#i_va_copy"><tt>llvm.va_copy</tt></a> must be matched exactly
2961 with calls to <tt>llvm.va_end</tt>.</p>
2962 </div>
2963
2964 <!-- _______________________________________________________________________ -->
2965 <div class="doc_subsubsection">
2966   <a name="i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a>
2967 </div>
2968
2969 <div class="doc_text">
2970
2971 <h5>Syntax:</h5>
2972
2973 <pre>
2974   declare void %llvm.va_copy(&lt;va_list&gt;* &lt;destarglist&gt;,
2975                                           &lt;va_list&gt;* &lt;srcarglist&gt;)
2976 </pre>
2977
2978 <h5>Overview:</h5>
2979
2980 <p>The '<tt>llvm.va_copy</tt>' intrinsic copies the current argument position from
2981 the source argument list to the destination argument list.</p>
2982
2983 <h5>Arguments:</h5>
2984
2985 <p>The first argument is a pointer to a <tt>va_list</tt> element to initialize.
2986 The second argument is a pointer to a <tt>va_list</tt> element to copy from.</p>
2987
2988
2989 <h5>Semantics:</h5>
2990
2991 <p>The '<tt>llvm.va_copy</tt>' intrinsic works just like the <tt>va_copy</tt> macro
2992 available in C.  In a target-dependent way, it copies the source
2993 <tt>va_list</tt> element into the destination list.  This intrinsic is necessary
2994 because the <tt><a href="i_va_begin">llvm.va_begin</a></tt> intrinsic may be
2995 arbitrarily complex and require memory allocation, for example.</p>
2996
2997 </div>
2998
2999 <!-- ======================================================================= -->
3000 <div class="doc_subsection">
3001   <a name="int_gc">Accurate Garbage Collection Intrinsics</a>
3002 </div>
3003
3004 <div class="doc_text">
3005
3006 <p>
3007 LLVM support for <a href="GarbageCollection.html">Accurate Garbage
3008 Collection</a> requires the implementation and generation of these intrinsics.
3009 These intrinsics allow identification of <a href="#i_gcroot">GC roots on the
3010 stack</a>, as well as garbage collector implementations that require <a
3011 href="#i_gcread">read</a> and <a href="#i_gcwrite">write</a> barriers.
3012 Front-ends for type-safe garbage collected languages should generate these
3013 intrinsics to make use of the LLVM garbage collectors.  For more details, see <a
3014 href="GarbageCollection.html">Accurate Garbage Collection with LLVM</a>.
3015 </p>
3016 </div>
3017
3018 <!-- _______________________________________________________________________ -->
3019 <div class="doc_subsubsection">
3020   <a name="i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a>
3021 </div>
3022
3023 <div class="doc_text">
3024
3025 <h5>Syntax:</h5>
3026
3027 <pre>
3028   declare void %llvm.gcroot(&lt;ty&gt;** %ptrloc, &lt;ty2&gt;* %metadata)
3029 </pre>
3030
3031 <h5>Overview:</h5>
3032
3033 <p>The '<tt>llvm.gcroot</tt>' intrinsic declares the existence of a GC root to
3034 the code generator, and allows some metadata to be associated with it.</p>
3035
3036 <h5>Arguments:</h5>
3037
3038 <p>The first argument specifies the address of a stack object that contains the
3039 root pointer.  The second pointer (which must be either a constant or a global
3040 value address) contains the meta-data to be associated with the root.</p>
3041
3042 <h5>Semantics:</h5>
3043
3044 <p>At runtime, a call to this intrinsics stores a null pointer into the "ptrloc"
3045 location.  At compile-time, the code generator generates information to allow
3046 the runtime to find the pointer at GC safe points.
3047 </p>
3048
3049 </div>
3050
3051
3052 <!-- _______________________________________________________________________ -->
3053 <div class="doc_subsubsection">
3054   <a name="i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a>
3055 </div>
3056
3057 <div class="doc_text">
3058
3059 <h5>Syntax:</h5>
3060
3061 <pre>
3062   declare sbyte* %llvm.gcread(sbyte* %ObjPtr, sbyte** %Ptr)
3063 </pre>
3064
3065 <h5>Overview:</h5>
3066
3067 <p>The '<tt>llvm.gcread</tt>' intrinsic identifies reads of references from heap
3068 locations, allowing garbage collector implementations that require read
3069 barriers.</p>
3070
3071 <h5>Arguments:</h5>
3072
3073 <p>The second argument is the address to read from, which should be an address
3074 allocated from the garbage collector.  The first object is a pointer to the 
3075 start of the referenced object, if needed by the language runtime (otherwise
3076 null).</p>
3077
3078 <h5>Semantics:</h5>
3079
3080 <p>The '<tt>llvm.gcread</tt>' intrinsic has the same semantics as a load
3081 instruction, but may be replaced with substantially more complex code by the
3082 garbage collector runtime, as needed.</p>
3083
3084 </div>
3085
3086
3087 <!-- _______________________________________________________________________ -->
3088 <div class="doc_subsubsection">
3089   <a name="i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a>
3090 </div>
3091
3092 <div class="doc_text">
3093
3094 <h5>Syntax:</h5>
3095
3096 <pre>
3097   declare void %llvm.gcwrite(sbyte* %P1, sbyte* %Obj, sbyte** %P2)
3098 </pre>
3099
3100 <h5>Overview:</h5>
3101
3102 <p>The '<tt>llvm.gcwrite</tt>' intrinsic identifies writes of references to heap
3103 locations, allowing garbage collector implementations that require write
3104 barriers (such as generational or reference counting collectors).</p>
3105
3106 <h5>Arguments:</h5>
3107
3108 <p>The first argument is the reference to store, the second is the start of the
3109 object to store it to, and the third is the address of the field of Obj to 
3110 store to.  If the runtime does not require a pointer to the object, Obj may be
3111 null.</p>
3112
3113 <h5>Semantics:</h5>
3114
3115 <p>The '<tt>llvm.gcwrite</tt>' intrinsic has the same semantics as a store
3116 instruction, but may be replaced with substantially more complex code by the
3117 garbage collector runtime, as needed.</p>
3118
3119 </div>
3120
3121
3122
3123 <!-- ======================================================================= -->
3124 <div class="doc_subsection">
3125   <a name="int_codegen">Code Generator Intrinsics</a>
3126 </div>
3127
3128 <div class="doc_text">
3129 <p>
3130 These intrinsics are provided by LLVM to expose special features that may only
3131 be implemented with code generator support.
3132 </p>
3133
3134 </div>
3135
3136 <!-- _______________________________________________________________________ -->
3137 <div class="doc_subsubsection">
3138   <a name="i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a>
3139 </div>
3140
3141 <div class="doc_text">
3142
3143 <h5>Syntax:</h5>
3144 <pre>
3145   declare sbyte *%llvm.returnaddress(uint &lt;level&gt;)
3146 </pre>
3147
3148 <h5>Overview:</h5>
3149
3150 <p>
3151 The '<tt>llvm.returnaddress</tt>' intrinsic returns a target-specific value
3152 indicating the return address of the current function or one of its callers.
3153 </p>
3154
3155 <h5>Arguments:</h5>
3156
3157 <p>
3158 The argument to this intrinsic indicates which function to return the address
3159 for.  Zero indicates the calling function, one indicates its caller, etc.  The
3160 argument is <b>required</b> to be a constant integer value.
3161 </p>
3162
3163 <h5>Semantics:</h5>
3164
3165 <p>
3166 The '<tt>llvm.returnaddress</tt>' intrinsic either returns a pointer indicating
3167 the return address of the specified call frame, or zero if it cannot be
3168 identified.  The value returned by this intrinsic is likely to be incorrect or 0
3169 for arguments other than zero, so it should only be used for debugging purposes.
3170 </p>
3171
3172 <p>
3173 Note that calling this intrinsic does not prevent function inlining or other
3174 aggressive transformations, so the value returned may not be that of the obvious
3175 source-language caller.
3176 </p>
3177 </div>
3178
3179
3180 <!-- _______________________________________________________________________ -->
3181 <div class="doc_subsubsection">
3182   <a name="i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a>
3183 </div>
3184
3185 <div class="doc_text">
3186
3187 <h5>Syntax:</h5>
3188 <pre>
3189   declare sbyte *%llvm.frameaddress(uint &lt;level&gt;)
3190 </pre>
3191
3192 <h5>Overview:</h5>
3193
3194 <p>
3195 The '<tt>llvm.frameaddress</tt>' intrinsic returns the target-specific frame
3196 pointer value for the specified stack frame.
3197 </p>
3198
3199 <h5>Arguments:</h5>
3200
3201 <p>
3202 The argument to this intrinsic indicates which function to return the frame
3203 pointer for.  Zero indicates the calling function, one indicates its caller,
3204 etc.  The argument is <b>required</b> to be a constant integer value.
3205 </p>
3206
3207 <h5>Semantics:</h5>
3208
3209 <p>
3210 The '<tt>llvm.frameaddress</tt>' intrinsic either returns a pointer indicating
3211 the frame address of the specified call frame, or zero if it cannot be
3212 identified.  The value returned by this intrinsic is likely to be incorrect or 0
3213 for arguments other than zero, so it should only be used for debugging purposes.
3214 </p>
3215
3216 <p>
3217 Note that calling this intrinsic does not prevent function inlining or other
3218 aggressive transformations, so the value returned may not be that of the obvious
3219 source-language caller.
3220 </p>
3221 </div>
3222
3223 <!-- _______________________________________________________________________ -->
3224 <div class="doc_subsubsection">
3225   <a name="i_stacksave">'<tt>llvm.stacksave</tt>' Intrinsic</a>
3226 </div>
3227
3228 <div class="doc_text">
3229
3230 <h5>Syntax:</h5>
3231 <pre>
3232   declare sbyte *%llvm.stacksave()
3233 </pre>
3234
3235 <h5>Overview:</h5>
3236
3237 <p>
3238 The '<tt>llvm.stacksave</tt>' intrinsic is used to remember the current state of
3239 the function stack, for use with <a href="#i_stackrestore">
3240 <tt>llvm.stackrestore</tt></a>.  This is useful for implementing language
3241 features like scoped automatic variable sized arrays in C99.
3242 </p>
3243
3244 <h5>Semantics:</h5>
3245
3246 <p>
3247 This intrinsic returns a opaque pointer value that can be passed to <a
3248 href="#i_stackrestore"><tt>llvm.stackrestore</tt></a>.  When an
3249 <tt>llvm.stackrestore</tt> intrinsic is executed with a value saved from 
3250 <tt>llvm.stacksave</tt>, it effectively restores the state of the stack to the
3251 state it was in when the <tt>llvm.stacksave</tt> intrinsic executed.  In
3252 practice, this pops any <a href="#i_alloca">alloca</a> blocks from the stack
3253 that were allocated after the <tt>llvm.stacksave</tt> was executed.
3254 </p>
3255
3256 </div>
3257
3258 <!-- _______________________________________________________________________ -->
3259 <div class="doc_subsubsection">
3260   <a name="i_stackrestore">'<tt>llvm.stackrestore</tt>' Intrinsic</a>
3261 </div>
3262
3263 <div class="doc_text">
3264
3265 <h5>Syntax:</h5>
3266 <pre>
3267   declare void %llvm.stackrestore(sbyte* %ptr)
3268 </pre>
3269
3270 <h5>Overview:</h5>
3271
3272 <p>
3273 The '<tt>llvm.stackrestore</tt>' intrinsic is used to restore the state of
3274 the function stack to the state it was in when the corresponding <a
3275 href="#llvm.stacksave"><tt>llvm.stacksave</tt></a> intrinsic executed.  This is
3276 useful for implementing language features like scoped automatic variable sized
3277 arrays in C99.
3278 </p>
3279
3280 <h5>Semantics:</h5>
3281
3282 <p>
3283 See the description for <a href="#i_stacksave"><tt>llvm.stacksave</tt></a>.
3284 </p>
3285
3286 </div>
3287
3288
3289 <!-- _______________________________________________________________________ -->
3290 <div class="doc_subsubsection">
3291   <a name="i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a>
3292 </div>
3293
3294 <div class="doc_text">
3295
3296 <h5>Syntax:</h5>
3297 <pre>
3298   declare void %llvm.prefetch(sbyte * &lt;address&gt;,
3299                                 uint &lt;rw&gt;, uint &lt;locality&gt;)
3300 </pre>
3301
3302 <h5>Overview:</h5>
3303
3304
3305 <p>
3306 The '<tt>llvm.prefetch</tt>' intrinsic is a hint to the code generator to insert
3307 a prefetch instruction if supported; otherwise, it is a noop.  Prefetches have
3308 no
3309 effect on the behavior of the program but can change its performance
3310 characteristics.
3311 </p>
3312
3313 <h5>Arguments:</h5>
3314
3315 <p>
3316 <tt>address</tt> is the address to be prefetched, <tt>rw</tt> is the specifier
3317 determining if the fetch should be for a read (0) or write (1), and
3318 <tt>locality</tt> is a temporal locality specifier ranging from (0) - no
3319 locality, to (3) - extremely local keep in cache.  The <tt>rw</tt> and
3320 <tt>locality</tt> arguments must be constant integers.
3321 </p>
3322
3323 <h5>Semantics:</h5>
3324
3325 <p>
3326 This intrinsic does not modify the behavior of the program.  In particular,
3327 prefetches cannot trap and do not produce a value.  On targets that support this
3328 intrinsic, the prefetch can provide hints to the processor cache for better
3329 performance.
3330 </p>
3331
3332 </div>
3333
3334 <!-- _______________________________________________________________________ -->
3335 <div class="doc_subsubsection">
3336   <a name="i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a>
3337 </div>
3338
3339 <div class="doc_text">
3340
3341 <h5>Syntax:</h5>
3342 <pre>
3343   declare void %llvm.pcmarker( uint &lt;id&gt; )
3344 </pre>
3345
3346 <h5>Overview:</h5>
3347
3348
3349 <p>
3350 The '<tt>llvm.pcmarker</tt>' intrinsic is a method to export a Program Counter
3351 (PC) in a region of 
3352 code to simulators and other tools.  The method is target specific, but it is 
3353 expected that the marker will use exported symbols to transmit the PC of the marker.
3354 The marker makes no guarantees that it will remain with any specific instruction 
3355 after optimizations.  It is possible that the presence of a marker will inhibit 
3356 optimizations.  The intended use is to be inserted after optimizations to allow
3357 correlations of simulation runs.
3358 </p>
3359
3360 <h5>Arguments:</h5>
3361
3362 <p>
3363 <tt>id</tt> is a numerical id identifying the marker.
3364 </p>
3365
3366 <h5>Semantics:</h5>
3367
3368 <p>
3369 This intrinsic does not modify the behavior of the program.  Backends that do not 
3370 support this intrinisic may ignore it.
3371 </p>
3372
3373 </div>
3374
3375 <!-- _______________________________________________________________________ -->
3376 <div class="doc_subsubsection">
3377   <a name="i_readcyclecounter">'<tt>llvm.readcyclecounter</tt>' Intrinsic</a>
3378 </div>
3379
3380 <div class="doc_text">
3381
3382 <h5>Syntax:</h5>
3383 <pre>
3384   declare ulong %llvm.readcyclecounter( )
3385 </pre>
3386
3387 <h5>Overview:</h5>
3388
3389
3390 <p>
3391 The '<tt>llvm.readcyclecounter</tt>' intrinsic provides access to the cycle 
3392 counter register (or similar low latency, high accuracy clocks) on those targets
3393 that support it.  On X86, it should map to RDTSC.  On Alpha, it should map to RPCC.
3394 As the backing counters overflow quickly (on the order of 9 seconds on alpha), this
3395 should only be used for small timings.  
3396 </p>
3397
3398 <h5>Semantics:</h5>
3399
3400 <p>
3401 When directly supported, reading the cycle counter should not modify any memory.  
3402 Implementations are allowed to either return a application specific value or a
3403 system wide value.  On backends without support, this is lowered to a constant 0.
3404 </p>
3405
3406 </div>
3407
3408 <!-- ======================================================================= -->
3409 <div class="doc_subsection">
3410   <a name="int_libc">Standard C Library Intrinsics</a>
3411 </div>
3412
3413 <div class="doc_text">
3414 <p>
3415 LLVM provides intrinsics for a few important standard C library functions.
3416 These intrinsics allow source-language front-ends to pass information about the
3417 alignment of the pointer arguments to the code generator, providing opportunity
3418 for more efficient code generation.
3419 </p>
3420
3421 </div>
3422
3423 <!-- _______________________________________________________________________ -->
3424 <div class="doc_subsubsection">
3425   <a name="i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a>
3426 </div>
3427
3428 <div class="doc_text">
3429
3430 <h5>Syntax:</h5>
3431 <pre>
3432   declare void %llvm.memcpy.i32(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
3433                                 uint &lt;len&gt;, uint &lt;align&gt;)
3434   declare void %llvm.memcpy.i64(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
3435                                 ulong &lt;len&gt;, uint &lt;align&gt;)
3436 </pre>
3437
3438 <h5>Overview:</h5>
3439
3440 <p>
3441 The '<tt>llvm.memcpy.*</tt>' intrinsics copy a block of memory from the source
3442 location to the destination location.
3443 </p>
3444
3445 <p>
3446 Note that, unlike the standard libc function, the <tt>llvm.memcpy.*</tt> 
3447 intrinsics do not return a value, and takes an extra alignment argument.
3448 </p>
3449
3450 <h5>Arguments:</h5>
3451
3452 <p>
3453 The first argument is a pointer to the destination, the second is a pointer to
3454 the source.  The third argument is an integer argument
3455 specifying the number of bytes to copy, and the fourth argument is the alignment
3456 of the source and destination locations.
3457 </p>
3458
3459 <p>
3460 If the call to this intrinisic has an alignment value that is not 0 or 1, then
3461 the caller guarantees that both the source and destination pointers are aligned
3462 to that boundary.
3463 </p>
3464
3465 <h5>Semantics:</h5>
3466
3467 <p>
3468 The '<tt>llvm.memcpy.*</tt>' intrinsics copy a block of memory from the source
3469 location to the destination location, which are not allowed to overlap.  It
3470 copies "len" bytes of memory over.  If the argument is known to be aligned to
3471 some boundary, this can be specified as the fourth argument, otherwise it should
3472 be set to 0 or 1.
3473 </p>
3474 </div>
3475
3476
3477 <!-- _______________________________________________________________________ -->
3478 <div class="doc_subsubsection">
3479   <a name="i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a>
3480 </div>
3481
3482 <div class="doc_text">
3483
3484 <h5>Syntax:</h5>
3485 <pre>
3486   declare void %llvm.memmove.i32(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
3487                                  uint &lt;len&gt;, uint &lt;align&gt;)
3488   declare void %llvm.memmove.i64(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
3489                                  ulong &lt;len&gt;, uint &lt;align&gt;)
3490 </pre>
3491
3492 <h5>Overview:</h5>
3493
3494 <p>
3495 The '<tt>llvm.memmove.*</tt>' intrinsics move a block of memory from the source
3496 location to the destination location. It is similar to the
3497 '<tt>llvm.memcmp</tt>' intrinsic but allows the two memory locations to overlap.
3498 </p>
3499
3500 <p>
3501 Note that, unlike the standard libc function, the <tt>llvm.memmove.*</tt> 
3502 intrinsics do not return a value, and takes an extra alignment argument.
3503 </p>
3504
3505 <h5>Arguments:</h5>
3506
3507 <p>
3508 The first argument is a pointer to the destination, the second is a pointer to
3509 the source.  The third argument is an integer argument
3510 specifying the number of bytes to copy, and the fourth argument is the alignment
3511 of the source and destination locations.
3512 </p>
3513
3514 <p>
3515 If the call to this intrinisic has an alignment value that is not 0 or 1, then
3516 the caller guarantees that the source and destination pointers are aligned to
3517 that boundary.
3518 </p>
3519
3520 <h5>Semantics:</h5>
3521
3522 <p>
3523 The '<tt>llvm.memmove.*</tt>' intrinsics copy a block of memory from the source
3524 location to the destination location, which may overlap.  It
3525 copies "len" bytes of memory over.  If the argument is known to be aligned to
3526 some boundary, this can be specified as the fourth argument, otherwise it should
3527 be set to 0 or 1.
3528 </p>
3529 </div>
3530
3531
3532 <!-- _______________________________________________________________________ -->
3533 <div class="doc_subsubsection">
3534   <a name="i_memset">'<tt>llvm.memset.*</tt>' Intrinsics</a>
3535 </div>
3536
3537 <div class="doc_text">
3538
3539 <h5>Syntax:</h5>
3540 <pre>
3541   declare void %llvm.memset.i32(sbyte* &lt;dest&gt;, ubyte &lt;val&gt;,
3542                                 uint &lt;len&gt;, uint &lt;align&gt;)
3543   declare void %llvm.memset.i64(sbyte* &lt;dest&gt;, ubyte &lt;val&gt;,
3544                                 ulong &lt;len&gt;, uint &lt;align&gt;)
3545 </pre>
3546
3547 <h5>Overview:</h5>
3548
3549 <p>
3550 The '<tt>llvm.memset.*</tt>' intrinsics fill a block of memory with a particular
3551 byte value.
3552 </p>
3553
3554 <p>
3555 Note that, unlike the standard libc function, the <tt>llvm.memset</tt> intrinsic
3556 does not return a value, and takes an extra alignment argument.
3557 </p>
3558
3559 <h5>Arguments:</h5>
3560
3561 <p>
3562 The first argument is a pointer to the destination to fill, the second is the
3563 byte value to fill it with, the third argument is an integer
3564 argument specifying the number of bytes to fill, and the fourth argument is the
3565 known alignment of destination location.
3566 </p>
3567
3568 <p>
3569 If the call to this intrinisic has an alignment value that is not 0 or 1, then
3570 the caller guarantees that the destination pointer is aligned to that boundary.
3571 </p>
3572
3573 <h5>Semantics:</h5>
3574
3575 <p>
3576 The '<tt>llvm.memset.*</tt>' intrinsics fill "len" bytes of memory starting at
3577 the
3578 destination location.  If the argument is known to be aligned to some boundary,
3579 this can be specified as the fourth argument, otherwise it should be set to 0 or
3580 1.
3581 </p>
3582 </div>
3583
3584
3585 <!-- _______________________________________________________________________ -->
3586 <div class="doc_subsubsection">
3587   <a name="i_isunordered">'<tt>llvm.isunordered.*</tt>' Intrinsic</a>
3588 </div>
3589
3590 <div class="doc_text">
3591
3592 <h5>Syntax:</h5>
3593 <pre>
3594   declare bool %llvm.isunordered.f32(float Val1, float  Val2)
3595   declare bool %llvm.isunordered.f64(double Val1, double Val2)
3596 </pre>
3597
3598 <h5>Overview:</h5>
3599
3600 <p>
3601 The '<tt>llvm.isunordered</tt>' intrinsics return true if either or both of the
3602 specified floating point values is a NAN.
3603 </p>
3604
3605 <h5>Arguments:</h5>
3606
3607 <p>
3608 The arguments are floating point numbers of the same type.
3609 </p>
3610
3611 <h5>Semantics:</h5>
3612
3613 <p>
3614 If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise
3615 false.
3616 </p>
3617 </div>
3618
3619
3620 <!-- _______________________________________________________________________ -->
3621 <div class="doc_subsubsection">
3622   <a name="i_sqrt">'<tt>llvm.sqrt.*</tt>' Intrinsic</a>
3623 </div>
3624
3625 <div class="doc_text">
3626
3627 <h5>Syntax:</h5>
3628 <pre>
3629   declare double %llvm.sqrt.f32(float Val)
3630   declare double %llvm.sqrt.f64(double Val)
3631 </pre>
3632
3633 <h5>Overview:</h5>
3634
3635 <p>
3636 The '<tt>llvm.sqrt</tt>' intrinsics return the sqrt of the specified operand,
3637 returning the same value as the libm '<tt>sqrt</tt>' function would.  Unlike
3638 <tt>sqrt</tt> in libm, however, <tt>llvm.sqrt</tt> has undefined behavior for
3639 negative numbers (which allows for better optimization).
3640 </p>
3641
3642 <h5>Arguments:</h5>
3643
3644 <p>
3645 The argument and return value are floating point numbers of the same type.
3646 </p>
3647
3648 <h5>Semantics:</h5>
3649
3650 <p>
3651 This function returns the sqrt of the specified operand if it is a positive
3652 floating point number.
3653 </p>
3654 </div>
3655
3656 <!-- ======================================================================= -->
3657 <div class="doc_subsection">
3658   <a name="int_manip">Bit Manipulation Intrinsics</a>
3659 </div>
3660
3661 <div class="doc_text">
3662 <p>
3663 LLVM provides intrinsics for a few important bit manipulation operations.
3664 These allow efficient code generation for some algorithms.
3665 </p>
3666
3667 </div>
3668
3669 <!-- _______________________________________________________________________ -->
3670 <div class="doc_subsubsection">
3671   <a name="i_bswap">'<tt>llvm.bswap.*</tt>' Intrinsics</a>
3672 </div>
3673
3674 <div class="doc_text">
3675
3676 <h5>Syntax:</h5>
3677 <pre>
3678   declare ushort %llvm.bswap.i16(ushort &lt;id&gt;)
3679   declare uint   %llvm.bswap.i32(uint &lt;id&gt;)
3680   declare ulong  %llvm.bswap.i64(ulong &lt;id&gt;)
3681 </pre>
3682
3683 <h5>Overview:</h5>
3684
3685 <p>
3686 The '<tt>llvm.bwsap</tt>' family of intrinsics is used to byteswap a 16, 32 or
3687 64 bit quantity.  These are useful for performing operations on data that is not
3688 in the target's  native byte order.
3689 </p>
3690
3691 <h5>Semantics:</h5>
3692
3693 <p>
3694 The <tt>llvm.bswap.16</tt> intrinsic returns a ushort value that has the high and low
3695 byte of the input ushort swapped.  Similarly, the <tt>llvm.bswap.i32</tt> intrinsic
3696 returns a uint value that has the four bytes of the input uint swapped, so that 
3697 if the input bytes are numbered 0, 1, 2, 3 then the returned uint will have its
3698 bytes in 3, 2, 1, 0 order.  The <tt>llvm.bswap.i64</tt> intrinsic extends this concept
3699 to 64 bits.
3700 </p>
3701
3702 </div>
3703
3704 <!-- _______________________________________________________________________ -->
3705 <div class="doc_subsubsection">
3706   <a name="int_ctpop">'<tt>llvm.ctpop.*</tt>' Intrinsic</a>
3707 </div>
3708
3709 <div class="doc_text">
3710
3711 <h5>Syntax:</h5>
3712 <pre>
3713   declare ubyte  %llvm.ctpop.i8 (ubyte &lt;src&gt;)
3714   declare ushort %llvm.ctpop.i16(ushort &lt;src&gt;)
3715   declare uint   %llvm.ctpop.i32(uint &lt;src&gt;)
3716   declare ulong  %llvm.ctpop.i64(ulong &lt;src&gt;)
3717 </pre>
3718
3719 <h5>Overview:</h5>
3720
3721 <p>
3722 The '<tt>llvm.ctpop</tt>' family of intrinsics counts the number of bits set in a 
3723 value.
3724 </p>
3725
3726 <h5>Arguments:</h5>
3727
3728 <p>
3729 The only argument is the value to be counted.  The argument may be of any
3730 unsigned integer type.  The return type must match the argument type.
3731 </p>
3732
3733 <h5>Semantics:</h5>
3734
3735 <p>
3736 The '<tt>llvm.ctpop</tt>' intrinsic counts the 1's in a variable.
3737 </p>
3738 </div>
3739
3740 <!-- _______________________________________________________________________ -->
3741 <div class="doc_subsubsection">
3742   <a name="int_ctlz">'<tt>llvm.ctlz.*</tt>' Intrinsic</a>
3743 </div>
3744
3745 <div class="doc_text">
3746
3747 <h5>Syntax:</h5>
3748 <pre>
3749   declare ubyte  %llvm.ctlz.i8 (ubyte &lt;src&gt;)
3750   declare ushort %llvm.ctlz.i16(ushort &lt;src&gt;)
3751   declare uint   %llvm.ctlz.i32(uint &lt;src&gt;)
3752   declare ulong  %llvm.ctlz.i64(ulong &lt;src&gt;)
3753 </pre>
3754
3755 <h5>Overview:</h5>
3756
3757 <p>
3758 The '<tt>llvm.ctlz</tt>' family of intrinsic functions counts the number of 
3759 leading zeros in a variable.
3760 </p>
3761
3762 <h5>Arguments:</h5>
3763
3764 <p>
3765 The only argument is the value to be counted.  The argument may be of any
3766 unsigned integer type. The return type must match the argument type.
3767 </p>
3768
3769 <h5>Semantics:</h5>
3770
3771 <p>
3772 The '<tt>llvm.ctlz</tt>' intrinsic counts the leading (most significant) zeros
3773 in a variable.  If the src == 0 then the result is the size in bits of the type
3774 of src. For example, <tt>llvm.ctlz(int 2) = 30</tt>.
3775 </p>
3776 </div>
3777
3778
3779
3780 <!-- _______________________________________________________________________ -->
3781 <div class="doc_subsubsection">
3782   <a name="int_cttz">'<tt>llvm.cttz.*</tt>' Intrinsic</a>
3783 </div>
3784
3785 <div class="doc_text">
3786
3787 <h5>Syntax:</h5>
3788 <pre>
3789   declare ubyte  %llvm.cttz.i8 (ubyte &lt;src&gt;)
3790   declare ushort %llvm.cttz.i16(ushort &lt;src&gt;)
3791   declare uint   %llvm.cttz.i32(uint &lt;src&gt;)
3792   declare ulong  %llvm.cttz.i64(ulong &lt;src&gt;)
3793 </pre>
3794
3795 <h5>Overview:</h5>
3796
3797 <p>
3798 The '<tt>llvm.cttz</tt>' family of intrinsic functions counts the number of 
3799 trailing zeros.
3800 </p>
3801
3802 <h5>Arguments:</h5>
3803
3804 <p>
3805 The only argument is the value to be counted.  The argument may be of any
3806 unsigned integer type.  The return type must match the argument type.
3807 </p>
3808
3809 <h5>Semantics:</h5>
3810
3811 <p>
3812 The '<tt>llvm.cttz</tt>' intrinsic counts the trailing (least significant) zeros
3813 in a variable.  If the src == 0 then the result is the size in bits of the type
3814 of src.  For example, <tt>llvm.cttz(2) = 1</tt>.
3815 </p>
3816 </div>
3817
3818 <!-- ======================================================================= -->
3819 <div class="doc_subsection">
3820   <a name="int_debugger">Debugger Intrinsics</a>
3821 </div>
3822
3823 <div class="doc_text">
3824 <p>
3825 The LLVM debugger intrinsics (which all start with <tt>llvm.dbg.</tt> prefix),
3826 are described in the <a
3827 href="SourceLevelDebugging.html#format_common_intrinsics">LLVM Source Level
3828 Debugging</a> document.
3829 </p>
3830 </div>
3831
3832
3833 <!-- *********************************************************************** -->
3834 <hr>
3835 <address>
3836   <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
3837   src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
3838   <a href="http://validator.w3.org/check/referer"><img
3839   src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
3840
3841   <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
3842   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
3843   Last modified: $Date$
3844 </address>
3845 </body>
3846 </html>