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