blob: 575f81ee071632cb2273393d39214b34905ea73f [file] [log] [blame]
Misha Brukmanc501f552004-03-01 17:47:27 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
Misha Brukman76307852003-11-08 01:05:38 +00003<html>
4<head>
5 <title>LLVM Assembly Language Reference Manual</title>
Reid Spencercb84e432004-08-26 20:44:00 +00006 <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.">
Misha Brukman76307852003-11-08 01:05:38 +000010 <link rel="stylesheet" href="llvm.css" type="text/css">
11</head>
Chris Lattner757528b0b2004-05-23 21:06:01 +000012
Misha Brukman76307852003-11-08 01:05:38 +000013<body>
Chris Lattner757528b0b2004-05-23 21:06:01 +000014
Chris Lattner48b383b02003-11-25 01:02:51 +000015<div class="doc_title"> LLVM Language Reference Manual </div>
Chris Lattner2f7c9632001-06-06 20:29:01 +000016<ol>
Misha Brukman76307852003-11-08 01:05:38 +000017 <li><a href="#abstract">Abstract</a></li>
18 <li><a href="#introduction">Introduction</a></li>
19 <li><a href="#identifiers">Identifiers</a></li>
Chris Lattner6af02f32004-12-09 16:11:40 +000020 <li><a href="#highlevel">High Level Structure</a>
21 <ol>
22 <li><a href="#modulestructure">Module Structure</a></li>
Chris Lattnerd79749a2004-12-09 16:36:40 +000023 <li><a href="#linkage">Linkage Types</a></li>
Chris Lattner0132aff2005-05-06 22:57:40 +000024 <li><a href="#callingconv">Calling Conventions</a></li>
Chris Lattner6af02f32004-12-09 16:11:40 +000025 <li><a href="#globalvars">Global Variables</a></li>
26 <li><a href="#functionstructure">Function Structure</a></li>
27 </ol>
28 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +000029 <li><a href="#typesystem">Type System</a>
30 <ol>
Chris Lattner48b383b02003-11-25 01:02:51 +000031 <li><a href="#t_primitive">Primitive Types</a>
32 <ol>
Misha Brukman76307852003-11-08 01:05:38 +000033 <li><a href="#t_classifications">Type Classifications</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000034 </ol>
35 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +000036 <li><a href="#t_derived">Derived Types</a>
37 <ol>
Chris Lattner48b383b02003-11-25 01:02:51 +000038 <li><a href="#t_array">Array Type</a></li>
Misha Brukman76307852003-11-08 01:05:38 +000039 <li><a href="#t_function">Function Type</a></li>
40 <li><a href="#t_pointer">Pointer Type</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000041 <li><a href="#t_struct">Structure Type</a></li>
Chris Lattnerc8cb6952004-08-12 19:12:28 +000042 <li><a href="#t_packed">Packed Type</a></li>
Chris Lattner37b6b092005-04-25 17:34:15 +000043 <li><a href="#t_opaque">Opaque Type</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000044 </ol>
45 </li>
46 </ol>
47 </li>
Chris Lattner6af02f32004-12-09 16:11:40 +000048 <li><a href="#constants">Constants</a>
Chris Lattner74d3f822004-12-09 17:30:23 +000049 <ol>
50 <li><a href="#simpleconstants">Simple Constants</a>
51 <li><a href="#aggregateconstants">Aggregate Constants</a>
52 <li><a href="#globalconstants">Global Variable and Function Addresses</a>
53 <li><a href="#undefvalues">Undefined Values</a>
54 <li><a href="#constantexprs">Constant Expressions</a>
55 </ol>
Chris Lattner48b383b02003-11-25 01:02:51 +000056 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +000057 <li><a href="#instref">Instruction Reference</a>
58 <ol>
59 <li><a href="#terminators">Terminator Instructions</a>
60 <ol>
Chris Lattner48b383b02003-11-25 01:02:51 +000061 <li><a href="#i_ret">'<tt>ret</tt>' Instruction</a></li>
62 <li><a href="#i_br">'<tt>br</tt>' Instruction</a></li>
Misha Brukman76307852003-11-08 01:05:38 +000063 <li><a href="#i_switch">'<tt>switch</tt>' Instruction</a></li>
64 <li><a href="#i_invoke">'<tt>invoke</tt>' Instruction</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000065 <li><a href="#i_unwind">'<tt>unwind</tt>' Instruction</a></li>
Chris Lattner08b7d5b2004-10-16 18:04:13 +000066 <li><a href="#i_unreachable">'<tt>unreachable</tt>' Instruction</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000067 </ol>
68 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +000069 <li><a href="#binaryops">Binary Operations</a>
70 <ol>
Chris Lattner48b383b02003-11-25 01:02:51 +000071 <li><a href="#i_add">'<tt>add</tt>' Instruction</a></li>
72 <li><a href="#i_sub">'<tt>sub</tt>' Instruction</a></li>
73 <li><a href="#i_mul">'<tt>mul</tt>' Instruction</a></li>
74 <li><a href="#i_div">'<tt>div</tt>' Instruction</a></li>
75 <li><a href="#i_rem">'<tt>rem</tt>' Instruction</a></li>
Misha Brukman76307852003-11-08 01:05:38 +000076 <li><a href="#i_setcc">'<tt>set<i>cc</i></tt>' Instructions</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000077 </ol>
78 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +000079 <li><a href="#bitwiseops">Bitwise Binary Operations</a>
80 <ol>
Misha Brukman76307852003-11-08 01:05:38 +000081 <li><a href="#i_and">'<tt>and</tt>' Instruction</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000082 <li><a href="#i_or">'<tt>or</tt>' Instruction</a></li>
Misha Brukman76307852003-11-08 01:05:38 +000083 <li><a href="#i_xor">'<tt>xor</tt>' Instruction</a></li>
84 <li><a href="#i_shl">'<tt>shl</tt>' Instruction</a></li>
85 <li><a href="#i_shr">'<tt>shr</tt>' Instruction</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +000086 </ol>
87 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +000088 <li><a href="#memoryops">Memory Access Operations</a>
89 <ol>
Chris Lattner48b383b02003-11-25 01:02:51 +000090 <li><a href="#i_malloc">'<tt>malloc</tt>' Instruction</a></li>
91 <li><a href="#i_free">'<tt>free</tt>' Instruction</a></li>
92 <li><a href="#i_alloca">'<tt>alloca</tt>' Instruction</a></li>
93 <li><a href="#i_load">'<tt>load</tt>' Instruction</a></li>
94 <li><a href="#i_store">'<tt>store</tt>' Instruction</a></li>
95 <li><a href="#i_getelementptr">'<tt>getelementptr</tt>' Instruction</a></li>
96 </ol>
97 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +000098 <li><a href="#otherops">Other Operations</a>
99 <ol>
Chris Lattner48b383b02003-11-25 01:02:51 +0000100 <li><a href="#i_phi">'<tt>phi</tt>' Instruction</a></li>
Misha Brukman76307852003-11-08 01:05:38 +0000101 <li><a href="#i_cast">'<tt>cast .. to</tt>' Instruction</a></li>
Chris Lattnerb53c28d2004-03-12 05:50:16 +0000102 <li><a href="#i_select">'<tt>select</tt>' Instruction</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +0000103 <li><a href="#i_call">'<tt>call</tt>' Instruction</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +0000104 <li><a href="#i_vaarg">'<tt>vaarg</tt>' Instruction</a></li>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000105 </ol>
Chris Lattner48b383b02003-11-25 01:02:51 +0000106 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000107 </ol>
Chris Lattner48b383b02003-11-25 01:02:51 +0000108 </li>
Chris Lattnerbd64b4e2003-05-08 04:57:36 +0000109 <li><a href="#intrinsics">Intrinsic Functions</a>
Chris Lattnerbd64b4e2003-05-08 04:57:36 +0000110 <ol>
Chris Lattner48b383b02003-11-25 01:02:51 +0000111 <li><a href="#int_varargs">Variable Argument Handling Intrinsics</a>
112 <ol>
113 <li><a href="#i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a></li>
114 <li><a href="#i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a></li>
115 <li><a href="#i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a></li>
116 </ol>
117 </li>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000118 <li><a href="#int_gc">Accurate Garbage Collection Intrinsics</a>
119 <ol>
120 <li><a href="#i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a></li>
121 <li><a href="#i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a></li>
122 <li><a href="#i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a></li>
123 </ol>
124 </li>
Chris Lattner3649c3a2004-02-14 04:08:35 +0000125 <li><a href="#int_codegen">Code Generator Intrinsics</a>
126 <ol>
127 <li><a href="#i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a></li>
128 <li><a href="#i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a></li>
Chris Lattnerc8a2c222005-02-28 19:24:19 +0000129 <li><a href="#i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a></li>
Andrew Lenharthb4427912005-03-28 20:05:49 +0000130 <li><a href="#i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a></li>
John Criswellaa1c3c12004-04-09 16:43:20 +0000131 </ol>
132 </li>
133 <li><a href="#int_os">Operating System Intrinsics</a>
134 <ol>
Chris Lattner3b4f4372004-06-11 02:28:03 +0000135 <li><a href="#i_readport">'<tt>llvm.readport</tt>' Intrinsic</a></li>
136 <li><a href="#i_writeport">'<tt>llvm.writeport</tt>' Intrinsic</a></li>
John Criswella4501222004-04-12 15:02:16 +0000137 <li><a href="#i_readio">'<tt>llvm.readio</tt>' Intrinsic</a></li>
138 <li><a href="#i_writeio">'<tt>llvm.writeio</tt>' Intrinsic</a></li>
Chris Lattner3649c3a2004-02-14 04:08:35 +0000139 </ol>
Chris Lattnerfee11462004-02-12 17:01:32 +0000140 <li><a href="#int_libc">Standard C Library Intrinsics</a>
141 <ol>
142 <li><a href="#i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a></li>
Chris Lattnerf30152e2004-02-12 18:10:10 +0000143 <li><a href="#i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a></li>
Chris Lattner3649c3a2004-02-14 04:08:35 +0000144 <li><a href="#i_memset">'<tt>llvm.memset</tt>' Intrinsic</a></li>
Alkis Evlogimenos9d740622004-06-12 19:19:14 +0000145 <li><a href="#i_isunordered">'<tt>llvm.isunordered</tt>' Intrinsic</a></li>
Chris Lattner8a8f2e52005-07-21 01:29:16 +0000146 <li><a href="#i_sqrt">'<tt>llvm.sqrt</tt>' Intrinsic</a></li>
147
Chris Lattnerfee11462004-02-12 17:01:32 +0000148 </ol>
149 </li>
Andrew Lenharth1d463522005-05-03 18:01:48 +0000150 <li><a href="#int_count">Bit counting Intrinsics</a>
151 <ol>
152 <li><a href="#int_ctpop">'<tt>llvm.ctpop</tt>' Intrinsic </a></li>
Andrew Lenharth1d463522005-05-03 18:01:48 +0000153 <li><a href="#int_ctlz">'<tt>llvm.ctlz</tt>' Intrinsic </a></li>
Chris Lattnerefa20fa2005-05-15 19:39:26 +0000154 <li><a href="#int_cttz">'<tt>llvm.cttz</tt>' Intrinsic </a></li>
Andrew Lenharth1d463522005-05-03 18:01:48 +0000155 </ol>
156 </li>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000157 <li><a href="#int_debugger">Debugger intrinsics</a></li>
Chris Lattner48b383b02003-11-25 01:02:51 +0000158 </ol>
159 </li>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000160</ol>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000161
162<div class="doc_author">
163 <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
164 and <a href="mailto:vadve@cs.uiuc.edu">Vikram Adve</a></p>
Misha Brukman76307852003-11-08 01:05:38 +0000165</div>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000166
Chris Lattner2f7c9632001-06-06 20:29:01 +0000167<!-- *********************************************************************** -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000168<div class="doc_section"> <a name="abstract">Abstract </a></div>
169<!-- *********************************************************************** -->
Chris Lattner757528b0b2004-05-23 21:06:01 +0000170
Misha Brukman76307852003-11-08 01:05:38 +0000171<div class="doc_text">
Chris Lattner48b383b02003-11-25 01:02:51 +0000172<p>This document is a reference manual for the LLVM assembly language.
173LLVM is an SSA based representation that provides type safety,
174low-level operations, flexibility, and the capability of representing
175'all' high-level languages cleanly. It is the common code
176representation used throughout all phases of the LLVM compilation
177strategy.</p>
Misha Brukman76307852003-11-08 01:05:38 +0000178</div>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000179
Chris Lattner2f7c9632001-06-06 20:29:01 +0000180<!-- *********************************************************************** -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000181<div class="doc_section"> <a name="introduction">Introduction</a> </div>
182<!-- *********************************************************************** -->
Chris Lattner757528b0b2004-05-23 21:06:01 +0000183
Misha Brukman76307852003-11-08 01:05:38 +0000184<div class="doc_text">
Chris Lattner757528b0b2004-05-23 21:06:01 +0000185
Chris Lattner48b383b02003-11-25 01:02:51 +0000186<p>The LLVM code representation is designed to be used in three
187different forms: as an in-memory compiler IR, as an on-disk bytecode
188representation (suitable for fast loading by a Just-In-Time compiler),
189and as a human readable assembly language representation. This allows
190LLVM to provide a powerful intermediate representation for efficient
191compiler transformations and analysis, while providing a natural means
192to debug and visualize the transformations. The three different forms
193of LLVM are all equivalent. This document describes the human readable
194representation and notation.</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000195
John Criswell4a3327e2005-05-13 22:25:59 +0000196<p>The LLVM representation aims to be light-weight and low-level
Chris Lattner48b383b02003-11-25 01:02:51 +0000197while being expressive, typed, and extensible at the same time. It
198aims to be a "universal IR" of sorts, by being at a low enough level
199that high-level ideas may be cleanly mapped to it (similar to how
200microprocessors are "universal IR's", allowing many source languages to
201be mapped to them). By providing type information, LLVM can be used as
202the target of optimizations: for example, through pointer analysis, it
203can be proven that a C automatic variable is never accessed outside of
204the current function... allowing it to be promoted to a simple SSA
205value instead of a memory location.</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000206
Misha Brukman76307852003-11-08 01:05:38 +0000207</div>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000208
Chris Lattner2f7c9632001-06-06 20:29:01 +0000209<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000210<div class="doc_subsubsection"> <a name="wellformed">Well-Formedness</a> </div>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000211
Misha Brukman76307852003-11-08 01:05:38 +0000212<div class="doc_text">
Chris Lattner757528b0b2004-05-23 21:06:01 +0000213
Chris Lattner48b383b02003-11-25 01:02:51 +0000214<p>It is important to note that this document describes 'well formed'
215LLVM assembly language. There is a difference between what the parser
216accepts and what is considered 'well formed'. For example, the
217following instruction is syntactically okay, but not well formed:</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000218
219<pre>
220 %x = <a href="#i_add">add</a> int 1, %x
221</pre>
222
Chris Lattner48b383b02003-11-25 01:02:51 +0000223<p>...because the definition of <tt>%x</tt> does not dominate all of
224its uses. The LLVM infrastructure provides a verification pass that may
225be used to verify that an LLVM module is well formed. This pass is
John Criswell4a3327e2005-05-13 22:25:59 +0000226automatically run by the parser after parsing input assembly and by
Chris Lattner48b383b02003-11-25 01:02:51 +0000227the optimizer before it outputs bytecode. The violations pointed out
228by the verifier pass indicate bugs in transformation passes or input to
229the parser.</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000230
Chris Lattner48b383b02003-11-25 01:02:51 +0000231<!-- Describe the typesetting conventions here. --> </div>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000232
Chris Lattner2f7c9632001-06-06 20:29:01 +0000233<!-- *********************************************************************** -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000234<div class="doc_section"> <a name="identifiers">Identifiers</a> </div>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000235<!-- *********************************************************************** -->
Chris Lattner757528b0b2004-05-23 21:06:01 +0000236
Misha Brukman76307852003-11-08 01:05:38 +0000237<div class="doc_text">
Chris Lattner757528b0b2004-05-23 21:06:01 +0000238
Chris Lattner48b383b02003-11-25 01:02:51 +0000239<p>LLVM uses three different forms of identifiers, for different
240purposes:</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +0000241
Chris Lattner2f7c9632001-06-06 20:29:01 +0000242<ol>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000243 <li>Named values are represented as a string of characters with a '%' prefix.
244 For example, %foo, %DivisionByZero, %a.really.long.identifier. The actual
245 regular expression used is '<tt>%[a-zA-Z$._][a-zA-Z$._0-9]*</tt>'.
246 Identifiers which require other characters in their names can be surrounded
247 with quotes. In this way, anything except a <tt>"</tt> character can be used
248 in a name.</li>
249
250 <li>Unnamed values are represented as an unsigned numeric value with a '%'
251 prefix. For example, %12, %2, %44.</li>
252
Reid Spencer8f08d802004-12-09 18:02:53 +0000253 <li>Constants, which are described in a <a href="#constants">section about
254 constants</a>, below.</li>
Misha Brukman76307852003-11-08 01:05:38 +0000255</ol>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000256
257<p>LLVM requires that values start with a '%' sign for two reasons: Compilers
258don't need to worry about name clashes with reserved words, and the set of
259reserved words may be expanded in the future without penalty. Additionally,
260unnamed identifiers allow a compiler to quickly come up with a temporary
261variable without having to avoid symbol table conflicts.</p>
262
Chris Lattner48b383b02003-11-25 01:02:51 +0000263<p>Reserved words in LLVM are very similar to reserved words in other
264languages. There are keywords for different opcodes ('<tt><a
Chris Lattnerd79749a2004-12-09 16:36:40 +0000265href="#i_add">add</a></tt>', '<tt><a href="#i_cast">cast</a></tt>', '<tt><a
266href="#i_ret">ret</a></tt>', etc...), for primitive type names ('<tt><a
267href="#t_void">void</a></tt>', '<tt><a href="#t_uint">uint</a></tt>', etc...),
268and others. These reserved words cannot conflict with variable names, because
269none of them start with a '%' character.</p>
270
271<p>Here is an example of LLVM code to multiply the integer variable
272'<tt>%X</tt>' by 8:</p>
273
Misha Brukman76307852003-11-08 01:05:38 +0000274<p>The easy way:</p>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000275
276<pre>
277 %result = <a href="#i_mul">mul</a> uint %X, 8
278</pre>
279
Misha Brukman76307852003-11-08 01:05:38 +0000280<p>After strength reduction:</p>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000281
282<pre>
283 %result = <a href="#i_shl">shl</a> uint %X, ubyte 3
284</pre>
285
Misha Brukman76307852003-11-08 01:05:38 +0000286<p>And the hard way:</p>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000287
288<pre>
289 <a href="#i_add">add</a> uint %X, %X <i>; yields {uint}:%0</i>
290 <a href="#i_add">add</a> uint %0, %0 <i>; yields {uint}:%1</i>
291 %result = <a href="#i_add">add</a> uint %1, %1
292</pre>
293
Chris Lattner48b383b02003-11-25 01:02:51 +0000294<p>This last way of multiplying <tt>%X</tt> by 8 illustrates several
295important lexical features of LLVM:</p>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000296
Chris Lattner2f7c9632001-06-06 20:29:01 +0000297<ol>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000298
299 <li>Comments are delimited with a '<tt>;</tt>' and go until the end of
300 line.</li>
301
302 <li>Unnamed temporaries are created when the result of a computation is not
303 assigned to a named value.</li>
304
Misha Brukman76307852003-11-08 01:05:38 +0000305 <li>Unnamed temporaries are numbered sequentially</li>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000306
Misha Brukman76307852003-11-08 01:05:38 +0000307</ol>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000308
John Criswell02fdc6f2005-05-12 16:52:32 +0000309<p>...and it also shows a convention that we follow in this document. When
Chris Lattnerd79749a2004-12-09 16:36:40 +0000310demonstrating instructions, we will follow an instruction with a comment that
311defines the type and name of value produced. Comments are shown in italic
312text.</p>
313
Misha Brukman76307852003-11-08 01:05:38 +0000314</div>
Chris Lattner6af02f32004-12-09 16:11:40 +0000315
316<!-- *********************************************************************** -->
317<div class="doc_section"> <a name="highlevel">High Level Structure</a> </div>
318<!-- *********************************************************************** -->
319
320<!-- ======================================================================= -->
321<div class="doc_subsection"> <a name="modulestructure">Module Structure</a>
322</div>
323
324<div class="doc_text">
325
326<p>LLVM programs are composed of "Module"s, each of which is a
327translation unit of the input programs. Each module consists of
328functions, global variables, and symbol table entries. Modules may be
329combined together with the LLVM linker, which merges function (and
330global variable) definitions, resolves forward declarations, and merges
331symbol table entries. Here is an example of the "hello world" module:</p>
332
333<pre><i>; Declare the string constant as a global constant...</i>
334<a href="#identifiers">%.LC0</a> = <a href="#linkage_internal">internal</a> <a
335 href="#globalvars">constant</a> <a href="#t_array">[13 x sbyte]</a> c"hello world\0A\00" <i>; [13 x sbyte]*</i>
336
337<i>; External declaration of the puts function</i>
338<a href="#functionstructure">declare</a> int %puts(sbyte*) <i>; int(sbyte*)* </i>
339
340<i>; Definition of main function</i>
341int %main() { <i>; int()* </i>
342 <i>; Convert [13x sbyte]* to sbyte *...</i>
343 %cast210 = <a
344 href="#i_getelementptr">getelementptr</a> [13 x sbyte]* %.LC0, long 0, long 0 <i>; sbyte*</i>
345
346 <i>; Call puts function to write out the string to stdout...</i>
347 <a
348 href="#i_call">call</a> int %puts(sbyte* %cast210) <i>; int</i>
349 <a
350 href="#i_ret">ret</a> int 0<br>}<br></pre>
351
352<p>This example is made up of a <a href="#globalvars">global variable</a>
353named "<tt>.LC0</tt>", an external declaration of the "<tt>puts</tt>"
354function, and a <a href="#functionstructure">function definition</a>
355for "<tt>main</tt>".</p>
356
Chris Lattnerd79749a2004-12-09 16:36:40 +0000357<p>In general, a module is made up of a list of global values,
358where both functions and global variables are global values. Global values are
359represented by a pointer to a memory location (in this case, a pointer to an
360array of char, and a pointer to a function), and have one of the following <a
361href="#linkage">linkage types</a>.</p>
Chris Lattner6af02f32004-12-09 16:11:40 +0000362
Chris Lattnerd79749a2004-12-09 16:36:40 +0000363</div>
364
365<!-- ======================================================================= -->
366<div class="doc_subsection">
367 <a name="linkage">Linkage Types</a>
368</div>
369
370<div class="doc_text">
371
372<p>
373All Global Variables and Functions have one of the following types of linkage:
374</p>
Chris Lattner6af02f32004-12-09 16:11:40 +0000375
376<dl>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000377
Chris Lattner6af02f32004-12-09 16:11:40 +0000378 <dt><tt><b><a name="linkage_internal">internal</a></b></tt> </dt>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000379
380 <dd>Global values with internal linkage are only directly accessible by
381 objects in the current module. In particular, linking code into a module with
382 an internal global value may cause the internal to be renamed as necessary to
383 avoid collisions. Because the symbol is internal to the module, all
384 references can be updated. This corresponds to the notion of the
385 '<tt>static</tt>' keyword in C, or the idea of "anonymous namespaces" in C++.
Chris Lattner6af02f32004-12-09 16:11:40 +0000386 </dd>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000387
Chris Lattner6af02f32004-12-09 16:11:40 +0000388 <dt><tt><b><a name="linkage_linkonce">linkonce</a></b></tt>: </dt>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000389
390 <dd>"<tt>linkonce</tt>" linkage is similar to <tt>internal</tt> linkage, with
391 the twist that linking together two modules defining the same
392 <tt>linkonce</tt> globals will cause one of the globals to be discarded. This
393 is typically used to implement inline functions. Unreferenced
394 <tt>linkonce</tt> globals are allowed to be discarded.
Chris Lattner6af02f32004-12-09 16:11:40 +0000395 </dd>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000396
Chris Lattner6af02f32004-12-09 16:11:40 +0000397 <dt><tt><b><a name="linkage_weak">weak</a></b></tt>: </dt>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000398
399 <dd>"<tt>weak</tt>" linkage is exactly the same as <tt>linkonce</tt> linkage,
400 except that unreferenced <tt>weak</tt> globals may not be discarded. This is
401 used to implement constructs in C such as "<tt>int X;</tt>" at global scope.
Chris Lattner6af02f32004-12-09 16:11:40 +0000402 </dd>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000403
Chris Lattner6af02f32004-12-09 16:11:40 +0000404 <dt><tt><b><a name="linkage_appending">appending</a></b></tt>: </dt>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000405
406 <dd>"<tt>appending</tt>" linkage may only be applied to global variables of
407 pointer to array type. When two global variables with appending linkage are
408 linked together, the two global arrays are appended together. This is the
409 LLVM, typesafe, equivalent of having the system linker append together
410 "sections" with identical names when .o files are linked.
Chris Lattner6af02f32004-12-09 16:11:40 +0000411 </dd>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000412
Chris Lattner6af02f32004-12-09 16:11:40 +0000413 <dt><tt><b><a name="linkage_external">externally visible</a></b></tt>:</dt>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000414
415 <dd>If none of the above identifiers are used, the global is externally
416 visible, meaning that it participates in linkage and can be used to resolve
417 external symbol references.
Chris Lattner6af02f32004-12-09 16:11:40 +0000418 </dd>
419</dl>
420
Chris Lattner6af02f32004-12-09 16:11:40 +0000421<p><a name="linkage_external">For example, since the "<tt>.LC0</tt>"
422variable is defined to be internal, if another module defined a "<tt>.LC0</tt>"
423variable and was linked with this one, one of the two would be renamed,
424preventing a collision. Since "<tt>main</tt>" and "<tt>puts</tt>" are
425external (i.e., lacking any linkage declarations), they are accessible
426outside of the current module. It is illegal for a function <i>declaration</i>
427to have any linkage type other than "externally visible".</a></p>
Chris Lattnerd79749a2004-12-09 16:36:40 +0000428
Chris Lattner6af02f32004-12-09 16:11:40 +0000429</div>
430
431<!-- ======================================================================= -->
432<div class="doc_subsection">
Chris Lattner0132aff2005-05-06 22:57:40 +0000433 <a name="callingconv">Calling Conventions</a>
434</div>
435
436<div class="doc_text">
437
438<p>LLVM <a href="#functionstructure">functions</a>, <a href="#i_call">calls</a>
439and <a href="#i_invoke">invokes</a> can all have an optional calling convention
440specified for the call. The calling convention of any pair of dynamic
441caller/callee must match, or the behavior of the program is undefined. The
442following calling conventions are supported by LLVM, and more may be added in
443the future:</p>
444
445<dl>
446 <dt><b>"<tt>ccc</tt>" - The C calling convention</b>:</dt>
447
448 <dd>This calling convention (the default if no other calling convention is
449 specified) matches the target C calling conventions. This calling convention
John Criswell02fdc6f2005-05-12 16:52:32 +0000450 supports varargs function calls and tolerates some mismatch in the declared
Chris Lattner0132aff2005-05-06 22:57:40 +0000451 prototype and implemented declaration of the function (as does normal C).
452 </dd>
453
454 <dt><b>"<tt>fastcc</tt>" - The fast calling convention</b>:</dt>
455
456 <dd>This calling convention attempts to make calls as fast as possible
457 (e.g. by passing things in registers). This calling convention allows the
458 target to use whatever tricks it wants to produce fast code for the target,
Chris Lattnerc792eb32005-05-06 23:08:23 +0000459 without having to conform to an externally specified ABI. Implementations of
460 this convention should allow arbitrary tail call optimization to be supported.
461 This calling convention does not support varargs and requires the prototype of
462 all callees to exactly match the prototype of the function definition.
Chris Lattner0132aff2005-05-06 22:57:40 +0000463 </dd>
464
465 <dt><b>"<tt>coldcc</tt>" - The cold calling convention</b>:</dt>
466
467 <dd>This calling convention attempts to make code in the caller as efficient
468 as possible under the assumption that the call is not commonly executed. As
469 such, these calls often preserve all registers so that the call does not break
470 any live ranges in the caller side. This calling convention does not support
471 varargs and requires the prototype of all callees to exactly match the
472 prototype of the function definition.
473 </dd>
474
Chris Lattner573f64e2005-05-07 01:46:40 +0000475 <dt><b>"<tt>cc &lt;<em>n</em>&gt;</tt>" - Numbered convention</b>:</dt>
Chris Lattner0132aff2005-05-06 22:57:40 +0000476
477 <dd>Any calling convention may be specified by number, allowing
478 target-specific calling conventions to be used. Target specific calling
479 conventions start at 64.
480 </dd>
Chris Lattner573f64e2005-05-07 01:46:40 +0000481</dl>
Chris Lattner0132aff2005-05-06 22:57:40 +0000482
483<p>More calling conventions can be added/defined on an as-needed basis, to
484support pascal conventions or any other well-known target-independent
485convention.</p>
486
487</div>
488
489<!-- ======================================================================= -->
490<div class="doc_subsection">
Chris Lattner6af02f32004-12-09 16:11:40 +0000491 <a name="globalvars">Global Variables</a>
492</div>
493
494<div class="doc_text">
495
Chris Lattner5d5aede2005-02-12 19:30:21 +0000496<p>Global variables define regions of memory allocated at compilation time
Chris Lattner54611b42005-11-06 08:02:57 +0000497instead of run-time. Global variables may optionally be initialized, and may
498have an optional explicit alignment specified. A
John Criswell4c0cf7f2005-10-24 16:17:18 +0000499variable may be defined as a global "constant," which indicates that the
Chris Lattner5d5aede2005-02-12 19:30:21 +0000500contents of the variable will <b>never</b> be modified (enabling better
501optimization, allowing the global data to be placed in the read-only section of
502an executable, etc). Note that variables that need runtime initialization
John Criswell4c0cf7f2005-10-24 16:17:18 +0000503cannot be marked "constant" as there is a store to the variable.</p>
Chris Lattner5d5aede2005-02-12 19:30:21 +0000504
505<p>
506LLVM explicitly allows <em>declarations</em> of global variables to be marked
507constant, even if the final definition of the global is not. This capability
508can be used to enable slightly better optimization of the program, but requires
509the language definition to guarantee that optimizations based on the
510'constantness' are valid for the translation units that do not include the
511definition.
512</p>
Chris Lattner6af02f32004-12-09 16:11:40 +0000513
514<p>As SSA values, global variables define pointer values that are in
515scope (i.e. they dominate) all basic blocks in the program. Global
516variables always define a pointer to their "content" type because they
517describe a region of memory, and all memory objects in LLVM are
518accessed through pointers.</p>
519
Chris Lattner54611b42005-11-06 08:02:57 +0000520<p>An explicit alignment may be specified for a global. If not present, or if
521the alignment is set to zero, the alignment of the global is set by the target
522to whatever it feels convenient. If an explicit alignment is specified, the
523global is forced to have at least that much alignment. All alignments must be
524a power of 2.</p>
525
Chris Lattner6af02f32004-12-09 16:11:40 +0000526</div>
527
528
529<!-- ======================================================================= -->
530<div class="doc_subsection">
531 <a name="functionstructure">Functions</a>
532</div>
533
534<div class="doc_text">
535
Chris Lattner0132aff2005-05-06 22:57:40 +0000536<p>LLVM function definitions consist of an optional <a href="#linkage">linkage
537type</a>, an optional <a href="#callingconv">calling convention</a>, a return
Chris Lattner54611b42005-11-06 08:02:57 +0000538type, a function name, a (possibly empty) argument list, an optional alignment,
539an opening curly brace,
Chris Lattner0132aff2005-05-06 22:57:40 +0000540a list of basic blocks, and a closing curly brace. LLVM function declarations
541are defined with the "<tt>declare</tt>" keyword, an optional <a
Chris Lattner54611b42005-11-06 08:02:57 +0000542href="#callingconv">calling convention</a>, a return type, a function name,
543a possibly empty list of arguments, and an optional alignment.</p>
Chris Lattner6af02f32004-12-09 16:11:40 +0000544
545<p>A function definition contains a list of basic blocks, forming the CFG for
546the function. Each basic block may optionally start with a label (giving the
547basic block a symbol table entry), contains a list of instructions, and ends
548with a <a href="#terminators">terminator</a> instruction (such as a branch or
549function return).</p>
550
John Criswell02fdc6f2005-05-12 16:52:32 +0000551<p>The first basic block in a program is special in two ways: it is immediately
Chris Lattner6af02f32004-12-09 16:11:40 +0000552executed on entrance to the function, and it is not allowed to have predecessor
553basic blocks (i.e. there can not be any branches to the entry block of a
554function). Because the block can have no predecessors, it also cannot have any
555<a href="#i_phi">PHI nodes</a>.</p>
556
557<p>LLVM functions are identified by their name and type signature. Hence, two
558functions with the same name but different parameter lists or return values are
Chris Lattner455fc8c2005-03-07 22:13:59 +0000559considered different functions, and LLVM will resolve references to each
Chris Lattner6af02f32004-12-09 16:11:40 +0000560appropriately.</p>
561
Chris Lattner54611b42005-11-06 08:02:57 +0000562<p>An explicit alignment may be specified for a function. If not present, or if
563the alignment is set to zero, the alignment of the function is set by the target
564to whatever it feels convenient. If an explicit alignment is specified, the
565function is forced to have at least that much alignment. All alignments must be
566a power of 2.</p>
567
Chris Lattner6af02f32004-12-09 16:11:40 +0000568</div>
569
570
571
Chris Lattner2f7c9632001-06-06 20:29:01 +0000572<!-- *********************************************************************** -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000573<div class="doc_section"> <a name="typesystem">Type System</a> </div>
574<!-- *********************************************************************** -->
Chris Lattner6af02f32004-12-09 16:11:40 +0000575
Misha Brukman76307852003-11-08 01:05:38 +0000576<div class="doc_text">
Chris Lattner6af02f32004-12-09 16:11:40 +0000577
Misha Brukman76307852003-11-08 01:05:38 +0000578<p>The LLVM type system is one of the most important features of the
Chris Lattner48b383b02003-11-25 01:02:51 +0000579intermediate representation. Being typed enables a number of
580optimizations to be performed on the IR directly, without having to do
581extra analyses on the side before the transformation. A strong type
582system makes it easier to read the generated code and enables novel
583analyses and transformations that are not feasible to perform on normal
584three address code representations.</p>
Chris Lattner6af02f32004-12-09 16:11:40 +0000585
586</div>
587
Chris Lattner2f7c9632001-06-06 20:29:01 +0000588<!-- ======================================================================= -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000589<div class="doc_subsection"> <a name="t_primitive">Primitive Types</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +0000590<div class="doc_text">
John Criswell417228d2004-04-09 16:48:45 +0000591<p>The primitive types are the fundamental building blocks of the LLVM
Chris Lattner455fc8c2005-03-07 22:13:59 +0000592system. The current set of primitive types is as follows:</p>
Misha Brukmanc501f552004-03-01 17:47:27 +0000593
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000594<table class="layout">
595 <tr class="layout">
596 <td class="left">
597 <table>
Chris Lattner48b383b02003-11-25 01:02:51 +0000598 <tbody>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000599 <tr><th>Type</th><th>Description</th></tr>
600 <tr><td><tt>void</tt></td><td>No value</td></tr>
Misha Brukman36c6bc12005-04-22 18:02:52 +0000601 <tr><td><tt>ubyte</tt></td><td>Unsigned 8-bit value</td></tr>
602 <tr><td><tt>ushort</tt></td><td>Unsigned 16-bit value</td></tr>
603 <tr><td><tt>uint</tt></td><td>Unsigned 32-bit value</td></tr>
604 <tr><td><tt>ulong</tt></td><td>Unsigned 64-bit value</td></tr>
605 <tr><td><tt>float</tt></td><td>32-bit floating point value</td></tr>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000606 <tr><td><tt>label</tt></td><td>Branch destination</td></tr>
Chris Lattner48b383b02003-11-25 01:02:51 +0000607 </tbody>
608 </table>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000609 </td>
610 <td class="right">
611 <table>
Chris Lattner48b383b02003-11-25 01:02:51 +0000612 <tbody>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000613 <tr><th>Type</th><th>Description</th></tr>
614 <tr><td><tt>bool</tt></td><td>True or False value</td></tr>
Misha Brukman36c6bc12005-04-22 18:02:52 +0000615 <tr><td><tt>sbyte</tt></td><td>Signed 8-bit value</td></tr>
616 <tr><td><tt>short</tt></td><td>Signed 16-bit value</td></tr>
617 <tr><td><tt>int</tt></td><td>Signed 32-bit value</td></tr>
618 <tr><td><tt>long</tt></td><td>Signed 64-bit value</td></tr>
619 <tr><td><tt>double</tt></td><td>64-bit floating point value</td></tr>
Chris Lattner48b383b02003-11-25 01:02:51 +0000620 </tbody>
621 </table>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000622 </td>
623 </tr>
Misha Brukman76307852003-11-08 01:05:38 +0000624</table>
Misha Brukman76307852003-11-08 01:05:38 +0000625</div>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000626
Chris Lattner2f7c9632001-06-06 20:29:01 +0000627<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000628<div class="doc_subsubsection"> <a name="t_classifications">Type
629Classifications</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +0000630<div class="doc_text">
Chris Lattner48b383b02003-11-25 01:02:51 +0000631<p>These different primitive types fall into a few useful
632classifications:</p>
Misha Brukmanc501f552004-03-01 17:47:27 +0000633
634<table border="1" cellspacing="0" cellpadding="4">
Chris Lattner48b383b02003-11-25 01:02:51 +0000635 <tbody>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000636 <tr><th>Classification</th><th>Types</th></tr>
Chris Lattner48b383b02003-11-25 01:02:51 +0000637 <tr>
638 <td><a name="t_signed">signed</a></td>
639 <td><tt>sbyte, short, int, long, float, double</tt></td>
640 </tr>
641 <tr>
642 <td><a name="t_unsigned">unsigned</a></td>
643 <td><tt>ubyte, ushort, uint, ulong</tt></td>
644 </tr>
645 <tr>
646 <td><a name="t_integer">integer</a></td>
647 <td><tt>ubyte, sbyte, ushort, short, uint, int, ulong, long</tt></td>
648 </tr>
649 <tr>
650 <td><a name="t_integral">integral</a></td>
Misha Brukman20f9a622004-08-12 20:16:08 +0000651 <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long</tt>
652 </td>
Chris Lattner48b383b02003-11-25 01:02:51 +0000653 </tr>
654 <tr>
655 <td><a name="t_floating">floating point</a></td>
656 <td><tt>float, double</tt></td>
657 </tr>
658 <tr>
659 <td><a name="t_firstclass">first class</a></td>
Misha Brukman20f9a622004-08-12 20:16:08 +0000660 <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long,<br>
661 float, double, <a href="#t_pointer">pointer</a>,
662 <a href="#t_packed">packed</a></tt></td>
Chris Lattner48b383b02003-11-25 01:02:51 +0000663 </tr>
664 </tbody>
Misha Brukman76307852003-11-08 01:05:38 +0000665</table>
Misha Brukmanc501f552004-03-01 17:47:27 +0000666
Chris Lattner48b383b02003-11-25 01:02:51 +0000667<p>The <a href="#t_firstclass">first class</a> types are perhaps the
668most important. Values of these types are the only ones which can be
669produced by instructions, passed as arguments, or used as operands to
670instructions. This means that all structures and arrays must be
671manipulated either by pointer or by component.</p>
Misha Brukman76307852003-11-08 01:05:38 +0000672</div>
Chris Lattner74d3f822004-12-09 17:30:23 +0000673
Chris Lattner2f7c9632001-06-06 20:29:01 +0000674<!-- ======================================================================= -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000675<div class="doc_subsection"> <a name="t_derived">Derived Types</a> </div>
Chris Lattner74d3f822004-12-09 17:30:23 +0000676
Misha Brukman76307852003-11-08 01:05:38 +0000677<div class="doc_text">
Chris Lattner74d3f822004-12-09 17:30:23 +0000678
Chris Lattner48b383b02003-11-25 01:02:51 +0000679<p>The real power in LLVM comes from the derived types in the system.
680This is what allows a programmer to represent arrays, functions,
681pointers, and other useful types. Note that these derived types may be
682recursive: For example, it is possible to have a two dimensional array.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +0000683
Misha Brukman76307852003-11-08 01:05:38 +0000684</div>
Chris Lattner74d3f822004-12-09 17:30:23 +0000685
Chris Lattner2f7c9632001-06-06 20:29:01 +0000686<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000687<div class="doc_subsubsection"> <a name="t_array">Array Type</a> </div>
Chris Lattner74d3f822004-12-09 17:30:23 +0000688
Misha Brukman76307852003-11-08 01:05:38 +0000689<div class="doc_text">
Chris Lattner74d3f822004-12-09 17:30:23 +0000690
Chris Lattner2f7c9632001-06-06 20:29:01 +0000691<h5>Overview:</h5>
Chris Lattner74d3f822004-12-09 17:30:23 +0000692
Misha Brukman76307852003-11-08 01:05:38 +0000693<p>The array type is a very simple derived type that arranges elements
Chris Lattner48b383b02003-11-25 01:02:51 +0000694sequentially in memory. The array type requires a size (number of
695elements) and an underlying data type.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +0000696
Chris Lattner590645f2002-04-14 06:13:44 +0000697<h5>Syntax:</h5>
Chris Lattner74d3f822004-12-09 17:30:23 +0000698
699<pre>
700 [&lt;# elements&gt; x &lt;elementtype&gt;]
701</pre>
702
John Criswell02fdc6f2005-05-12 16:52:32 +0000703<p>The number of elements is a constant integer value; elementtype may
Chris Lattner48b383b02003-11-25 01:02:51 +0000704be any type with a size.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +0000705
Chris Lattner590645f2002-04-14 06:13:44 +0000706<h5>Examples:</h5>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000707<table class="layout">
708 <tr class="layout">
709 <td class="left">
710 <tt>[40 x int ]</tt><br/>
711 <tt>[41 x int ]</tt><br/>
712 <tt>[40 x uint]</tt><br/>
713 </td>
714 <td class="left">
715 Array of 40 integer values.<br/>
716 Array of 41 integer values.<br/>
717 Array of 40 unsigned integer values.<br/>
718 </td>
719 </tr>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000720</table>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000721<p>Here are some examples of multidimensional arrays:</p>
722<table class="layout">
723 <tr class="layout">
724 <td class="left">
725 <tt>[3 x [4 x int]]</tt><br/>
726 <tt>[12 x [10 x float]]</tt><br/>
727 <tt>[2 x [3 x [4 x uint]]]</tt><br/>
728 </td>
729 <td class="left">
John Criswell4a3327e2005-05-13 22:25:59 +0000730 3x4 array of integer values.<br/>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000731 12x10 array of single precision floating point values.<br/>
732 2x3x4 array of unsigned integer values.<br/>
733 </td>
734 </tr>
735</table>
Chris Lattnerc0ad71e2005-06-24 17:22:57 +0000736
John Criswell4c0cf7f2005-10-24 16:17:18 +0000737<p>Note that 'variable sized arrays' can be implemented in LLVM with a zero
738length array. Normally, accesses past the end of an array are undefined in
Chris Lattnerc0ad71e2005-06-24 17:22:57 +0000739LLVM (e.g. it is illegal to access the 5th element of a 3 element array).
740As a special case, however, zero length arrays are recognized to be variable
741length. This allows implementation of 'pascal style arrays' with the LLVM
742type "{ int, [0 x float]}", for example.</p>
743
Misha Brukman76307852003-11-08 01:05:38 +0000744</div>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000745
Chris Lattner2f7c9632001-06-06 20:29:01 +0000746<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000747<div class="doc_subsubsection"> <a name="t_function">Function Type</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +0000748<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +0000749<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +0000750<p>The function type can be thought of as a function signature. It
751consists of a return type and a list of formal parameter types.
John Criswella0d50d22003-11-25 21:45:46 +0000752Function types are usually used to build virtual function tables
Chris Lattner48b383b02003-11-25 01:02:51 +0000753(which are structures of pointers to functions), for indirect function
754calls, and when defining a function.</p>
John Criswella0d50d22003-11-25 21:45:46 +0000755<p>
756The return type of a function type cannot be an aggregate type.
757</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000758<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +0000759<pre> &lt;returntype&gt; (&lt;parameter list&gt;)<br></pre>
John Criswell4c0cf7f2005-10-24 16:17:18 +0000760<p>...where '<tt>&lt;parameter list&gt;</tt>' is a comma-separated list of type
Misha Brukman20f9a622004-08-12 20:16:08 +0000761specifiers. Optionally, the parameter list may include a type <tt>...</tt>,
Chris Lattner5ed60612003-09-03 00:41:47 +0000762which indicates that the function takes a variable number of arguments.
763Variable argument functions can access their arguments with the <a
Chris Lattner48b383b02003-11-25 01:02:51 +0000764 href="#int_varargs">variable argument handling intrinsic</a> functions.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000765<h5>Examples:</h5>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000766<table class="layout">
767 <tr class="layout">
768 <td class="left">
769 <tt>int (int)</tt> <br/>
770 <tt>float (int, int *) *</tt><br/>
771 <tt>int (sbyte *, ...)</tt><br/>
772 </td>
773 <td class="left">
774 function taking an <tt>int</tt>, returning an <tt>int</tt><br/>
775 <a href="#t_pointer">Pointer</a> to a function that takes an
Misha Brukman20f9a622004-08-12 20:16:08 +0000776 <tt>int</tt> and a <a href="#t_pointer">pointer</a> to <tt>int</tt>,
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000777 returning <tt>float</tt>.<br/>
778 A vararg function that takes at least one <a href="#t_pointer">pointer</a>
779 to <tt>sbyte</tt> (signed char in C), which returns an integer. This is
780 the signature for <tt>printf</tt> in LLVM.<br/>
781 </td>
782 </tr>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000783</table>
Misha Brukmanc501f552004-03-01 17:47:27 +0000784
Misha Brukman76307852003-11-08 01:05:38 +0000785</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000786<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000787<div class="doc_subsubsection"> <a name="t_struct">Structure Type</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +0000788<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +0000789<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +0000790<p>The structure type is used to represent a collection of data members
791together in memory. The packing of the field types is defined to match
792the ABI of the underlying processor. The elements of a structure may
793be any type that has a size.</p>
794<p>Structures are accessed using '<tt><a href="#i_load">load</a></tt>
795and '<tt><a href="#i_store">store</a></tt>' by getting a pointer to a
796field with the '<tt><a href="#i_getelementptr">getelementptr</a></tt>'
797instruction.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000798<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +0000799<pre> { &lt;type list&gt; }<br></pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000800<h5>Examples:</h5>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000801<table class="layout">
802 <tr class="layout">
803 <td class="left">
804 <tt>{ int, int, int }</tt><br/>
805 <tt>{ float, int (int) * }</tt><br/>
806 </td>
807 <td class="left">
808 a triple of three <tt>int</tt> values<br/>
809 A pair, where the first element is a <tt>float</tt> and the second element
810 is a <a href="#t_pointer">pointer</a> to a <a href="#t_function">function</a>
811 that takes an <tt>int</tt>, returning an <tt>int</tt>.<br/>
812 </td>
813 </tr>
Chris Lattner2f7c9632001-06-06 20:29:01 +0000814</table>
Misha Brukman76307852003-11-08 01:05:38 +0000815</div>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000816
Chris Lattner2f7c9632001-06-06 20:29:01 +0000817<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +0000818<div class="doc_subsubsection"> <a name="t_pointer">Pointer Type</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +0000819<div class="doc_text">
Chris Lattner590645f2002-04-14 06:13:44 +0000820<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +0000821<p>As in many languages, the pointer type represents a pointer or
822reference to another object, which must live in memory.</p>
Chris Lattner590645f2002-04-14 06:13:44 +0000823<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +0000824<pre> &lt;type&gt; *<br></pre>
Chris Lattner590645f2002-04-14 06:13:44 +0000825<h5>Examples:</h5>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000826<table class="layout">
827 <tr class="layout">
828 <td class="left">
829 <tt>[4x int]*</tt><br/>
830 <tt>int (int *) *</tt><br/>
831 </td>
832 <td class="left">
833 A <a href="#t_pointer">pointer</a> to <a href="#t_array">array</a> of
834 four <tt>int</tt> values<br/>
835 A <a href="#t_pointer">pointer</a> to a <a
Chris Lattner16fb0032005-02-19 02:22:14 +0000836 href="#t_function">function</a> that takes an <tt>int*</tt>, returning an
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000837 <tt>int</tt>.<br/>
838 </td>
839 </tr>
Misha Brukman76307852003-11-08 01:05:38 +0000840</table>
Misha Brukman76307852003-11-08 01:05:38 +0000841</div>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000842
Chris Lattnerc8cb6952004-08-12 19:12:28 +0000843<!-- _______________________________________________________________________ -->
844<div class="doc_subsubsection"> <a name="t_packed">Packed Type</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +0000845<div class="doc_text">
Chris Lattner37b6b092005-04-25 17:34:15 +0000846
Chris Lattnerc8cb6952004-08-12 19:12:28 +0000847<h5>Overview:</h5>
Chris Lattner37b6b092005-04-25 17:34:15 +0000848
Chris Lattnerc8cb6952004-08-12 19:12:28 +0000849<p>A packed type is a simple derived type that represents a vector
850of elements. Packed types are used when multiple primitive data
851are operated in parallel using a single instruction (SIMD).
852A packed type requires a size (number of
853elements) and an underlying primitive data type. Packed types are
854considered <a href="#t_firstclass">first class</a>.</p>
Chris Lattner37b6b092005-04-25 17:34:15 +0000855
Chris Lattnerc8cb6952004-08-12 19:12:28 +0000856<h5>Syntax:</h5>
Chris Lattner37b6b092005-04-25 17:34:15 +0000857
858<pre>
859 &lt; &lt;# elements&gt; x &lt;elementtype&gt; &gt;
860</pre>
861
John Criswell4a3327e2005-05-13 22:25:59 +0000862<p>The number of elements is a constant integer value; elementtype may
Chris Lattnerc8cb6952004-08-12 19:12:28 +0000863be any integral or floating point type.</p>
Chris Lattner37b6b092005-04-25 17:34:15 +0000864
Chris Lattnerc8cb6952004-08-12 19:12:28 +0000865<h5>Examples:</h5>
Chris Lattner37b6b092005-04-25 17:34:15 +0000866
Reid Spencerc3c4c4f2004-11-01 08:19:36 +0000867<table class="layout">
868 <tr class="layout">
869 <td class="left">
870 <tt>&lt;4 x int&gt;</tt><br/>
871 <tt>&lt;8 x float&gt;</tt><br/>
872 <tt>&lt;2 x uint&gt;</tt><br/>
873 </td>
874 <td class="left">
875 Packed vector of 4 integer values.<br/>
876 Packed vector of 8 floating-point values.<br/>
877 Packed vector of 2 unsigned integer values.<br/>
878 </td>
879 </tr>
880</table>
Misha Brukman76307852003-11-08 01:05:38 +0000881</div>
882
Chris Lattner37b6b092005-04-25 17:34:15 +0000883<!-- _______________________________________________________________________ -->
884<div class="doc_subsubsection"> <a name="t_opaque">Opaque Type</a> </div>
885<div class="doc_text">
886
887<h5>Overview:</h5>
888
889<p>Opaque types are used to represent unknown types in the system. This
890corresponds (for example) to the C notion of a foward declared structure type.
891In LLVM, opaque types can eventually be resolved to any type (not just a
892structure type).</p>
893
894<h5>Syntax:</h5>
895
896<pre>
897 opaque
898</pre>
899
900<h5>Examples:</h5>
901
902<table class="layout">
903 <tr class="layout">
904 <td class="left">
905 <tt>opaque</tt>
906 </td>
907 <td class="left">
908 An opaque type.<br/>
909 </td>
910 </tr>
911</table>
912</div>
913
914
Chris Lattner74d3f822004-12-09 17:30:23 +0000915<!-- *********************************************************************** -->
916<div class="doc_section"> <a name="constants">Constants</a> </div>
917<!-- *********************************************************************** -->
918
919<div class="doc_text">
920
921<p>LLVM has several different basic types of constants. This section describes
922them all and their syntax.</p>
923
924</div>
925
926<!-- ======================================================================= -->
Reid Spencer8f08d802004-12-09 18:02:53 +0000927<div class="doc_subsection"><a name="simpleconstants">Simple Constants</a></div>
Chris Lattner74d3f822004-12-09 17:30:23 +0000928
929<div class="doc_text">
930
931<dl>
932 <dt><b>Boolean constants</b></dt>
933
934 <dd>The two strings '<tt>true</tt>' and '<tt>false</tt>' are both valid
935 constants of the <tt><a href="#t_primitive">bool</a></tt> type.
936 </dd>
937
938 <dt><b>Integer constants</b></dt>
939
Reid Spencer8f08d802004-12-09 18:02:53 +0000940 <dd>Standard integers (such as '4') are constants of the <a
Chris Lattner74d3f822004-12-09 17:30:23 +0000941 href="#t_integer">integer</a> type. Negative numbers may be used with signed
942 integer types.
943 </dd>
944
945 <dt><b>Floating point constants</b></dt>
946
947 <dd>Floating point constants use standard decimal notation (e.g. 123.421),
948 exponential notation (e.g. 1.23421e+2), or a more precise hexadecimal
Chris Lattner74d3f822004-12-09 17:30:23 +0000949 notation (see below). Floating point constants must have a <a
950 href="#t_floating">floating point</a> type. </dd>
951
952 <dt><b>Null pointer constants</b></dt>
953
John Criswelldfe6a862004-12-10 15:51:16 +0000954 <dd>The identifier '<tt>null</tt>' is recognized as a null pointer constant
Chris Lattner74d3f822004-12-09 17:30:23 +0000955 and must be of <a href="#t_pointer">pointer type</a>.</dd>
956
957</dl>
958
John Criswelldfe6a862004-12-10 15:51:16 +0000959<p>The one non-intuitive notation for constants is the optional hexadecimal form
Chris Lattner74d3f822004-12-09 17:30:23 +0000960of floating point constants. For example, the form '<tt>double
9610x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double
9624.5e+15</tt>'. The only time hexadecimal floating point constants are required
Reid Spencer8f08d802004-12-09 18:02:53 +0000963(and the only time that they are generated by the disassembler) is when a
964floating point constant must be emitted but it cannot be represented as a
965decimal floating point number. For example, NaN's, infinities, and other
966special values are represented in their IEEE hexadecimal format so that
967assembly and disassembly do not cause any bits to change in the constants.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +0000968
969</div>
970
971<!-- ======================================================================= -->
972<div class="doc_subsection"><a name="aggregateconstants">Aggregate Constants</a>
973</div>
974
975<div class="doc_text">
Chris Lattner455fc8c2005-03-07 22:13:59 +0000976<p>Aggregate constants arise from aggregation of simple constants
977and smaller aggregate constants.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +0000978
979<dl>
980 <dt><b>Structure constants</b></dt>
981
982 <dd>Structure constants are represented with notation similar to structure
983 type definitions (a comma separated list of elements, surrounded by braces
Chris Lattner455fc8c2005-03-07 22:13:59 +0000984 (<tt>{}</tt>)). For example: "<tt>{ int 4, float 17.0, int* %G }</tt>",
985 where "<tt>%G</tt>" is declared as "<tt>%G = external global int</tt>". Structure constants
986 must have <a href="#t_struct">structure type</a>, and the number and
Chris Lattner74d3f822004-12-09 17:30:23 +0000987 types of elements must match those specified by the type.
988 </dd>
989
990 <dt><b>Array constants</b></dt>
991
992 <dd>Array constants are represented with notation similar to array type
993 definitions (a comma separated list of elements, surrounded by square brackets
John Criswelldfe6a862004-12-10 15:51:16 +0000994 (<tt>[]</tt>)). For example: "<tt>[ int 42, int 11, int 74 ]</tt>". Array
Chris Lattner74d3f822004-12-09 17:30:23 +0000995 constants must have <a href="#t_array">array type</a>, and the number and
996 types of elements must match those specified by the type.
997 </dd>
998
999 <dt><b>Packed constants</b></dt>
1000
1001 <dd>Packed constants are represented with notation similar to packed type
1002 definitions (a comma separated list of elements, surrounded by
John Criswelldfe6a862004-12-10 15:51:16 +00001003 less-than/greater-than's (<tt>&lt;&gt;</tt>)). For example: "<tt>&lt; int 42,
Chris Lattner74d3f822004-12-09 17:30:23 +00001004 int 11, int 74, int 100 &gt;</tt>". Packed constants must have <a
1005 href="#t_packed">packed type</a>, and the number and types of elements must
1006 match those specified by the type.
1007 </dd>
1008
1009 <dt><b>Zero initialization</b></dt>
1010
1011 <dd>The string '<tt>zeroinitializer</tt>' can be used to zero initialize a
1012 value to zero of <em>any</em> type, including scalar and aggregate types.
1013 This is often used to avoid having to print large zero initializers (e.g. for
John Criswell4c0cf7f2005-10-24 16:17:18 +00001014 large arrays) and is always exactly equivalent to using explicit zero
Chris Lattner74d3f822004-12-09 17:30:23 +00001015 initializers.
1016 </dd>
1017</dl>
1018
1019</div>
1020
1021<!-- ======================================================================= -->
1022<div class="doc_subsection">
1023 <a name="globalconstants">Global Variable and Function Addresses</a>
1024</div>
1025
1026<div class="doc_text">
1027
1028<p>The addresses of <a href="#globalvars">global variables</a> and <a
1029href="#functionstructure">functions</a> are always implicitly valid (link-time)
John Criswelldfe6a862004-12-10 15:51:16 +00001030constants. These constants are explicitly referenced when the <a
1031href="#identifiers">identifier for the global</a> is used and always have <a
Chris Lattner74d3f822004-12-09 17:30:23 +00001032href="#t_pointer">pointer</a> type. For example, the following is a legal LLVM
1033file:</p>
1034
1035<pre>
1036 %X = global int 17
1037 %Y = global int 42
1038 %Z = global [2 x int*] [ int* %X, int* %Y ]
1039</pre>
1040
1041</div>
1042
1043<!-- ======================================================================= -->
Reid Spencer641f5c92004-12-09 18:13:12 +00001044<div class="doc_subsection"><a name="undefvalues">Undefined Values</a></div>
Chris Lattner74d3f822004-12-09 17:30:23 +00001045<div class="doc_text">
Reid Spencer641f5c92004-12-09 18:13:12 +00001046 <p>The string '<tt>undef</tt>' is recognized as a type-less constant that has
John Criswell4a3327e2005-05-13 22:25:59 +00001047 no specific value. Undefined values may be of any type and be used anywhere
Reid Spencer641f5c92004-12-09 18:13:12 +00001048 a constant is permitted.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +00001049
Reid Spencer641f5c92004-12-09 18:13:12 +00001050 <p>Undefined values indicate to the compiler that the program is well defined
1051 no matter what value is used, giving the compiler more freedom to optimize.
1052 </p>
Chris Lattner74d3f822004-12-09 17:30:23 +00001053</div>
1054
1055<!-- ======================================================================= -->
1056<div class="doc_subsection"><a name="constantexprs">Constant Expressions</a>
1057</div>
1058
1059<div class="doc_text">
1060
1061<p>Constant expressions are used to allow expressions involving other constants
1062to be used as constants. Constant expressions may be of any <a
John Criswell4a3327e2005-05-13 22:25:59 +00001063href="#t_firstclass">first class</a> type and may involve any LLVM operation
Chris Lattner74d3f822004-12-09 17:30:23 +00001064that does not have side effects (e.g. load and call are not supported). The
1065following is the syntax for constant expressions:</p>
1066
1067<dl>
1068 <dt><b><tt>cast ( CST to TYPE )</tt></b></dt>
1069
1070 <dd>Cast a constant to another type.</dd>
1071
1072 <dt><b><tt>getelementptr ( CSTPTR, IDX0, IDX1, ... )</tt></b></dt>
1073
1074 <dd>Perform the <a href="#i_getelementptr">getelementptr operation</a> on
1075 constants. As with the <a href="#i_getelementptr">getelementptr</a>
1076 instruction, the index list may have zero or more indexes, which are required
1077 to make sense for the type of "CSTPTR".</dd>
1078
1079 <dt><b><tt>OPCODE ( LHS, RHS )</tt></b></dt>
1080
Reid Spencer641f5c92004-12-09 18:13:12 +00001081 <dd>Perform the specified operation of the LHS and RHS constants. OPCODE may
1082 be any of the <a href="#binaryops">binary</a> or <a href="#bitwiseops">bitwise
Chris Lattner74d3f822004-12-09 17:30:23 +00001083 binary</a> operations. The constraints on operands are the same as those for
1084 the corresponding instruction (e.g. no bitwise operations on floating point
John Criswell02fdc6f2005-05-12 16:52:32 +00001085 values are allowed).</dd>
Chris Lattner74d3f822004-12-09 17:30:23 +00001086</dl>
Chris Lattner74d3f822004-12-09 17:30:23 +00001087</div>
Chris Lattnerb1652612004-03-08 16:49:10 +00001088
Chris Lattner2f7c9632001-06-06 20:29:01 +00001089<!-- *********************************************************************** -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001090<div class="doc_section"> <a name="instref">Instruction Reference</a> </div>
1091<!-- *********************************************************************** -->
Chris Lattner74d3f822004-12-09 17:30:23 +00001092
Misha Brukman76307852003-11-08 01:05:38 +00001093<div class="doc_text">
Chris Lattner74d3f822004-12-09 17:30:23 +00001094
Chris Lattner48b383b02003-11-25 01:02:51 +00001095<p>The LLVM instruction set consists of several different
1096classifications of instructions: <a href="#terminators">terminator
John Criswell4a3327e2005-05-13 22:25:59 +00001097instructions</a>, <a href="#binaryops">binary instructions</a>,
1098<a href="#bitwiseops">bitwise binary instructions</a>, <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001099 href="#memoryops">memory instructions</a>, and <a href="#otherops">other
1100instructions</a>.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +00001101
Misha Brukman76307852003-11-08 01:05:38 +00001102</div>
Chris Lattner74d3f822004-12-09 17:30:23 +00001103
Chris Lattner2f7c9632001-06-06 20:29:01 +00001104<!-- ======================================================================= -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001105<div class="doc_subsection"> <a name="terminators">Terminator
1106Instructions</a> </div>
Chris Lattner74d3f822004-12-09 17:30:23 +00001107
Misha Brukman76307852003-11-08 01:05:38 +00001108<div class="doc_text">
Chris Lattner74d3f822004-12-09 17:30:23 +00001109
Chris Lattner48b383b02003-11-25 01:02:51 +00001110<p>As mentioned <a href="#functionstructure">previously</a>, every
1111basic block in a program ends with a "Terminator" instruction, which
1112indicates which block should be executed after the current block is
1113finished. These terminator instructions typically yield a '<tt>void</tt>'
1114value: they produce control flow, not values (the one exception being
1115the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction).</p>
John Criswelldfe6a862004-12-10 15:51:16 +00001116<p>There are six different terminator instructions: the '<a
Chris Lattner48b383b02003-11-25 01:02:51 +00001117 href="#i_ret"><tt>ret</tt></a>' instruction, the '<a href="#i_br"><tt>br</tt></a>'
1118instruction, the '<a href="#i_switch"><tt>switch</tt></a>' instruction,
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001119the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction, the '<a
1120 href="#i_unwind"><tt>unwind</tt></a>' instruction, and the '<a
1121 href="#i_unreachable"><tt>unreachable</tt></a>' instruction.</p>
Chris Lattner74d3f822004-12-09 17:30:23 +00001122
Misha Brukman76307852003-11-08 01:05:38 +00001123</div>
Chris Lattner74d3f822004-12-09 17:30:23 +00001124
Chris Lattner2f7c9632001-06-06 20:29:01 +00001125<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001126<div class="doc_subsubsection"> <a name="i_ret">'<tt>ret</tt>'
1127Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001128<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001129<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001130<pre> ret &lt;type&gt; &lt;value&gt; <i>; Return a value from a non-void function</i>
Chris Lattner590645f2002-04-14 06:13:44 +00001131 ret void <i>; Return from void function</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001132</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001133<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001134<p>The '<tt>ret</tt>' instruction is used to return control flow (and a
John Criswell4a3327e2005-05-13 22:25:59 +00001135value) from a function back to the caller.</p>
John Criswell417228d2004-04-09 16:48:45 +00001136<p>There are two forms of the '<tt>ret</tt>' instruction: one that
Chris Lattner48b383b02003-11-25 01:02:51 +00001137returns a value and then causes control flow, and one that just causes
1138control flow to occur.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001139<h5>Arguments:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001140<p>The '<tt>ret</tt>' instruction may return any '<a
1141 href="#t_firstclass">first class</a>' type. Notice that a function is
1142not <a href="#wellformed">well formed</a> if there exists a '<tt>ret</tt>'
1143instruction inside of the function that returns a value that does not
1144match the return type of the function.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001145<h5>Semantics:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001146<p>When the '<tt>ret</tt>' instruction is executed, control flow
1147returns back to the calling function's context. If the caller is a "<a
John Criswell40db33f2004-06-25 15:16:57 +00001148 href="#i_call"><tt>call</tt></a>" instruction, execution continues at
Chris Lattner48b383b02003-11-25 01:02:51 +00001149the instruction after the call. If the caller was an "<a
1150 href="#i_invoke"><tt>invoke</tt></a>" instruction, execution continues
John Criswell02fdc6f2005-05-12 16:52:32 +00001151at the beginning of the "normal" destination block. If the instruction
Chris Lattner48b383b02003-11-25 01:02:51 +00001152returns a value, that value shall set the call or invoke instruction's
1153return value.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001154<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001155<pre> ret int 5 <i>; Return an integer value of 5</i>
Chris Lattner590645f2002-04-14 06:13:44 +00001156 ret void <i>; Return from a void function</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001157</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001158</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001159<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001160<div class="doc_subsubsection"> <a name="i_br">'<tt>br</tt>' Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001161<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001162<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001163<pre> br bool &lt;cond&gt;, label &lt;iftrue&gt;, label &lt;iffalse&gt;<br> br label &lt;dest&gt; <i>; Unconditional branch</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001164</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001165<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001166<p>The '<tt>br</tt>' instruction is used to cause control flow to
1167transfer to a different basic block in the current function. There are
1168two forms of this instruction, corresponding to a conditional branch
1169and an unconditional branch.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001170<h5>Arguments:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001171<p>The conditional branch form of the '<tt>br</tt>' instruction takes a
1172single '<tt>bool</tt>' value and two '<tt>label</tt>' values. The
1173unconditional form of the '<tt>br</tt>' instruction takes a single '<tt>label</tt>'
1174value as a target.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001175<h5>Semantics:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001176<p>Upon execution of a conditional '<tt>br</tt>' instruction, the '<tt>bool</tt>'
1177argument is evaluated. If the value is <tt>true</tt>, control flows
1178to the '<tt>iftrue</tt>' <tt>label</tt> argument. If "cond" is <tt>false</tt>,
1179control flows to the '<tt>iffalse</tt>' <tt>label</tt> argument.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001180<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001181<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
1182 href="#i_ret">ret</a> int 1<br>IfUnequal:<br> <a href="#i_ret">ret</a> int 0<br></pre>
Misha Brukman76307852003-11-08 01:05:38 +00001183</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001184<!-- _______________________________________________________________________ -->
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001185<div class="doc_subsubsection">
1186 <a name="i_switch">'<tt>switch</tt>' Instruction</a>
1187</div>
1188
Misha Brukman76307852003-11-08 01:05:38 +00001189<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001190<h5>Syntax:</h5>
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001191
1192<pre>
1193 switch &lt;intty&gt; &lt;value&gt;, label &lt;defaultdest&gt; [ &lt;intty&gt; &lt;val&gt;, label &lt;dest&gt; ... ]
1194</pre>
1195
Chris Lattner2f7c9632001-06-06 20:29:01 +00001196<h5>Overview:</h5>
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001197
1198<p>The '<tt>switch</tt>' instruction is used to transfer control flow to one of
1199several different places. It is a generalization of the '<tt>br</tt>'
Misha Brukman76307852003-11-08 01:05:38 +00001200instruction, allowing a branch to occur to one of many possible
1201destinations.</p>
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001202
1203
Chris Lattner2f7c9632001-06-06 20:29:01 +00001204<h5>Arguments:</h5>
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001205
1206<p>The '<tt>switch</tt>' instruction uses three parameters: an integer
1207comparison value '<tt>value</tt>', a default '<tt>label</tt>' destination, and
1208an array of pairs of comparison value constants and '<tt>label</tt>'s. The
1209table is not allowed to contain duplicate constant entries.</p>
1210
Chris Lattner2f7c9632001-06-06 20:29:01 +00001211<h5>Semantics:</h5>
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001212
Chris Lattner48b383b02003-11-25 01:02:51 +00001213<p>The <tt>switch</tt> instruction specifies a table of values and
1214destinations. When the '<tt>switch</tt>' instruction is executed, this
John Criswellbcbb18c2004-06-25 16:05:06 +00001215table is searched for the given value. If the value is found, control flow is
1216transfered to the corresponding destination; otherwise, control flow is
1217transfered to the default destination.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001218
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001219<h5>Implementation:</h5>
1220
1221<p>Depending on properties of the target machine and the particular
1222<tt>switch</tt> instruction, this instruction may be code generated in different
John Criswellbcbb18c2004-06-25 16:05:06 +00001223ways. For example, it could be generated as a series of chained conditional
1224branches or with a lookup table.</p>
Chris Lattnercf96c6c2004-02-24 04:54:45 +00001225
1226<h5>Example:</h5>
1227
1228<pre>
1229 <i>; Emulate a conditional br instruction</i>
1230 %Val = <a href="#i_cast">cast</a> bool %value to int
1231 switch int %Val, label %truedest [int 0, label %falsedest ]
1232
1233 <i>; Emulate an unconditional br instruction</i>
1234 switch uint 0, label %dest [ ]
1235
1236 <i>; Implement a jump table:</i>
1237 switch uint %val, label %otherwise [ uint 0, label %onzero
1238 uint 1, label %onone
1239 uint 2, label %ontwo ]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001240</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001241</div>
Chris Lattner0132aff2005-05-06 22:57:40 +00001242
Chris Lattner2f7c9632001-06-06 20:29:01 +00001243<!-- _______________________________________________________________________ -->
Chris Lattner0132aff2005-05-06 22:57:40 +00001244<div class="doc_subsubsection">
1245 <a name="i_invoke">'<tt>invoke</tt>' Instruction</a>
1246</div>
1247
Misha Brukman76307852003-11-08 01:05:38 +00001248<div class="doc_text">
Chris Lattner0132aff2005-05-06 22:57:40 +00001249
Chris Lattner2f7c9632001-06-06 20:29:01 +00001250<h5>Syntax:</h5>
Chris Lattner0132aff2005-05-06 22:57:40 +00001251
1252<pre>
1253 &lt;result&gt; = invoke [<a href="#callingconv">cconv</a>] &lt;ptr to function ty&gt; %&lt;function ptr val&gt;(&lt;function args&gt;)
1254 to label &lt;normal label&gt; except label &lt;exception label&gt;
1255</pre>
1256
Chris Lattnera8292f32002-05-06 22:08:29 +00001257<h5>Overview:</h5>
Chris Lattner0132aff2005-05-06 22:57:40 +00001258
1259<p>The '<tt>invoke</tt>' instruction causes control to transfer to a specified
1260function, with the possibility of control flow transfer to either the
John Criswell02fdc6f2005-05-12 16:52:32 +00001261'<tt>normal</tt>' label or the
1262'<tt>exception</tt>' label. If the callee function returns with the
Chris Lattner0132aff2005-05-06 22:57:40 +00001263"<tt><a href="#i_ret">ret</a></tt>" instruction, control flow will return to the
1264"normal" label. If the callee (or any indirect callees) returns with the "<a
John Criswell02fdc6f2005-05-12 16:52:32 +00001265href="#i_unwind"><tt>unwind</tt></a>" instruction, control is interrupted and
1266continued at the dynamically nearest "exception" label.</p>
Chris Lattner0132aff2005-05-06 22:57:40 +00001267
Chris Lattner2f7c9632001-06-06 20:29:01 +00001268<h5>Arguments:</h5>
Chris Lattner0132aff2005-05-06 22:57:40 +00001269
Misha Brukman76307852003-11-08 01:05:38 +00001270<p>This instruction requires several arguments:</p>
Chris Lattner0132aff2005-05-06 22:57:40 +00001271
Chris Lattner2f7c9632001-06-06 20:29:01 +00001272<ol>
Chris Lattner0132aff2005-05-06 22:57:40 +00001273 <li>
John Criswell4a3327e2005-05-13 22:25:59 +00001274 The optional "cconv" marker indicates which <a href="callingconv">calling
Chris Lattner0132aff2005-05-06 22:57:40 +00001275 convention</a> the call should use. If none is specified, the call defaults
1276 to using C calling conventions.
1277 </li>
1278 <li>'<tt>ptr to function ty</tt>': shall be the signature of the pointer to
1279 function value being invoked. In most cases, this is a direct function
1280 invocation, but indirect <tt>invoke</tt>s are just as possible, branching off
1281 an arbitrary pointer to function value.
1282 </li>
1283
1284 <li>'<tt>function ptr val</tt>': An LLVM value containing a pointer to a
1285 function to be invoked. </li>
1286
1287 <li>'<tt>function args</tt>': argument list whose types match the function
1288 signature argument types. If the function signature indicates the function
1289 accepts a variable number of arguments, the extra arguments can be
1290 specified. </li>
1291
1292 <li>'<tt>normal label</tt>': the label reached when the called function
1293 executes a '<tt><a href="#i_ret">ret</a></tt>' instruction. </li>
1294
1295 <li>'<tt>exception label</tt>': the label reached when a callee returns with
1296 the <a href="#i_unwind"><tt>unwind</tt></a> instruction. </li>
1297
Chris Lattner2f7c9632001-06-06 20:29:01 +00001298</ol>
Chris Lattner0132aff2005-05-06 22:57:40 +00001299
Chris Lattner2f7c9632001-06-06 20:29:01 +00001300<h5>Semantics:</h5>
Chris Lattner0132aff2005-05-06 22:57:40 +00001301
Misha Brukman76307852003-11-08 01:05:38 +00001302<p>This instruction is designed to operate as a standard '<tt><a
Chris Lattner0132aff2005-05-06 22:57:40 +00001303href="#i_call">call</a></tt>' instruction in most regards. The primary
1304difference is that it establishes an association with a label, which is used by
1305the runtime library to unwind the stack.</p>
1306
1307<p>This instruction is used in languages with destructors to ensure that proper
1308cleanup is performed in the case of either a <tt>longjmp</tt> or a thrown
1309exception. Additionally, this is important for implementation of
1310'<tt>catch</tt>' clauses in high-level languages that support them.</p>
1311
Chris Lattner2f7c9632001-06-06 20:29:01 +00001312<h5>Example:</h5>
Chris Lattner0132aff2005-05-06 22:57:40 +00001313<pre>
1314 %retval = invoke int %Test(int 15) to label %Continue
1315 except label %TestCleanup <i>; {int}:retval set</i>
1316 %retval = invoke <a href="#callingconv">coldcc</a> int %Test(int 15) to label %Continue
1317 except label %TestCleanup <i>; {int}:retval set</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001318</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001319</div>
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001320
1321
Chris Lattner5ed60612003-09-03 00:41:47 +00001322<!-- _______________________________________________________________________ -->
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001323
Chris Lattner48b383b02003-11-25 01:02:51 +00001324<div class="doc_subsubsection"> <a name="i_unwind">'<tt>unwind</tt>'
1325Instruction</a> </div>
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001326
Misha Brukman76307852003-11-08 01:05:38 +00001327<div class="doc_text">
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001328
Chris Lattner5ed60612003-09-03 00:41:47 +00001329<h5>Syntax:</h5>
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001330<pre>
1331 unwind
1332</pre>
1333
Chris Lattner5ed60612003-09-03 00:41:47 +00001334<h5>Overview:</h5>
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001335
1336<p>The '<tt>unwind</tt>' instruction unwinds the stack, continuing control flow
1337at the first callee in the dynamic call stack which used an <a
1338href="#i_invoke"><tt>invoke</tt></a> instruction to perform the call. This is
1339primarily used to implement exception handling.</p>
1340
Chris Lattner5ed60612003-09-03 00:41:47 +00001341<h5>Semantics:</h5>
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001342
1343<p>The '<tt>unwind</tt>' intrinsic causes execution of the current function to
1344immediately halt. The dynamic call stack is then searched for the first <a
1345href="#i_invoke"><tt>invoke</tt></a> instruction on the call stack. Once found,
1346execution continues at the "exceptional" destination block specified by the
1347<tt>invoke</tt> instruction. If there is no <tt>invoke</tt> instruction in the
1348dynamic call chain, undefined behavior results.</p>
Misha Brukman76307852003-11-08 01:05:38 +00001349</div>
Chris Lattner08b7d5b2004-10-16 18:04:13 +00001350
1351<!-- _______________________________________________________________________ -->
1352
1353<div class="doc_subsubsection"> <a name="i_unreachable">'<tt>unreachable</tt>'
1354Instruction</a> </div>
1355
1356<div class="doc_text">
1357
1358<h5>Syntax:</h5>
1359<pre>
1360 unreachable
1361</pre>
1362
1363<h5>Overview:</h5>
1364
1365<p>The '<tt>unreachable</tt>' instruction has no defined semantics. This
1366instruction is used to inform the optimizer that a particular portion of the
1367code is not reachable. This can be used to indicate that the code after a
1368no-return function cannot be reached, and other facts.</p>
1369
1370<h5>Semantics:</h5>
1371
1372<p>The '<tt>unreachable</tt>' instruction has no defined semantics.</p>
1373</div>
1374
1375
1376
Chris Lattner2f7c9632001-06-06 20:29:01 +00001377<!-- ======================================================================= -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001378<div class="doc_subsection"> <a name="binaryops">Binary Operations</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001379<div class="doc_text">
Chris Lattner48b383b02003-11-25 01:02:51 +00001380<p>Binary operators are used to do most of the computation in a
1381program. They require two operands, execute an operation on them, and
John Criswelldfe6a862004-12-10 15:51:16 +00001382produce a single value. The operands might represent
Chris Lattnerc8cb6952004-08-12 19:12:28 +00001383multiple data, as is the case with the <a href="#t_packed">packed</a> data type.
1384The result value of a binary operator is not
Chris Lattner48b383b02003-11-25 01:02:51 +00001385necessarily the same type as its operands.</p>
Misha Brukman76307852003-11-08 01:05:38 +00001386<p>There are several different binary operators:</p>
Misha Brukman76307852003-11-08 01:05:38 +00001387</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001388<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001389<div class="doc_subsubsection"> <a name="i_add">'<tt>add</tt>'
1390Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001391<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001392<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001393<pre> &lt;result&gt; = add &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001394</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001395<h5>Overview:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001396<p>The '<tt>add</tt>' instruction returns the sum of its two operands.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001397<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001398<p>The two arguments to the '<tt>add</tt>' instruction must be either <a
Chris Lattnerc8cb6952004-08-12 19:12:28 +00001399 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> values.
1400 This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1401Both arguments must have identical types.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001402<h5>Semantics:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001403<p>The value produced is the integer or floating point sum of the two
1404operands.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001405<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001406<pre> &lt;result&gt; = add int 4, %var <i>; yields {int}:result = 4 + %var</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001407</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001408</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001409<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001410<div class="doc_subsubsection"> <a name="i_sub">'<tt>sub</tt>'
1411Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001412<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001413<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001414<pre> &lt;result&gt; = sub &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001415</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001416<h5>Overview:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001417<p>The '<tt>sub</tt>' instruction returns the difference of its two
1418operands.</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00001419<p>Note that the '<tt>sub</tt>' instruction is used to represent the '<tt>neg</tt>'
1420instruction present in most other intermediate representations.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001421<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001422<p>The two arguments to the '<tt>sub</tt>' instruction must be either <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001423 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
Chris Lattnerc8cb6952004-08-12 19:12:28 +00001424values.
1425This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1426Both arguments must have identical types.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001427<h5>Semantics:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001428<p>The value produced is the integer or floating point difference of
1429the two operands.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001430<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001431<pre> &lt;result&gt; = sub int 4, %var <i>; yields {int}:result = 4 - %var</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001432 &lt;result&gt; = sub int 0, %val <i>; yields {int}:result = -%var</i>
1433</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001434</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001435<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001436<div class="doc_subsubsection"> <a name="i_mul">'<tt>mul</tt>'
1437Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001438<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001439<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001440<pre> &lt;result&gt; = mul &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001441</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001442<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001443<p>The '<tt>mul</tt>' instruction returns the product of its two
1444operands.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001445<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001446<p>The two arguments to the '<tt>mul</tt>' instruction must be either <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001447 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
Chris Lattnerc8cb6952004-08-12 19:12:28 +00001448values.
1449This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1450Both arguments must have identical types.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001451<h5>Semantics:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001452<p>The value produced is the integer or floating point product of the
Misha Brukman76307852003-11-08 01:05:38 +00001453two operands.</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00001454<p>There is no signed vs unsigned multiplication. The appropriate
1455action is taken based on the type of the operand.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001456<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001457<pre> &lt;result&gt; = mul int 4, %var <i>; yields {int}:result = 4 * %var</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001458</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001459</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001460<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001461<div class="doc_subsubsection"> <a name="i_div">'<tt>div</tt>'
1462Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001463<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001464<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001465<pre> &lt;result&gt; = div &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
1466</pre>
1467<h5>Overview:</h5>
1468<p>The '<tt>div</tt>' instruction returns the quotient of its two
1469operands.</p>
1470<h5>Arguments:</h5>
1471<p>The two arguments to the '<tt>div</tt>' instruction must be either <a
1472 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
Chris Lattnerc8cb6952004-08-12 19:12:28 +00001473values.
1474This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1475Both arguments must have identical types.</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00001476<h5>Semantics:</h5>
1477<p>The value produced is the integer or floating point quotient of the
1478two operands.</p>
1479<h5>Example:</h5>
1480<pre> &lt;result&gt; = div int 4, %var <i>; yields {int}:result = 4 / %var</i>
1481</pre>
1482</div>
1483<!-- _______________________________________________________________________ -->
1484<div class="doc_subsubsection"> <a name="i_rem">'<tt>rem</tt>'
1485Instruction</a> </div>
1486<div class="doc_text">
1487<h5>Syntax:</h5>
1488<pre> &lt;result&gt; = rem &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
1489</pre>
1490<h5>Overview:</h5>
1491<p>The '<tt>rem</tt>' instruction returns the remainder from the
1492division of its two operands.</p>
1493<h5>Arguments:</h5>
1494<p>The two arguments to the '<tt>rem</tt>' instruction must be either <a
1495 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
Chris Lattnerc8cb6952004-08-12 19:12:28 +00001496values.
1497This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1498Both arguments must have identical types.</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00001499<h5>Semantics:</h5>
1500<p>This returns the <i>remainder</i> of a division (where the result
1501has the same sign as the divisor), not the <i>modulus</i> (where the
1502result has the same sign as the dividend) of a value. For more
John Criswell4c0cf7f2005-10-24 16:17:18 +00001503information about the difference, see <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001504 href="http://mathforum.org/dr.math/problems/anne.4.28.99.html">The
1505Math Forum</a>.</p>
1506<h5>Example:</h5>
1507<pre> &lt;result&gt; = rem int 4, %var <i>; yields {int}:result = 4 % %var</i>
1508</pre>
1509</div>
1510<!-- _______________________________________________________________________ -->
1511<div class="doc_subsubsection"> <a name="i_setcc">'<tt>set<i>cc</i></tt>'
1512Instructions</a> </div>
1513<div class="doc_text">
1514<h5>Syntax:</h5>
1515<pre> &lt;result&gt; = seteq &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001516 &lt;result&gt; = setne &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1517 &lt;result&gt; = setlt &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1518 &lt;result&gt; = setgt &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1519 &lt;result&gt; = setle &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1520 &lt;result&gt; = setge &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
1521</pre>
Chris Lattner48b383b02003-11-25 01:02:51 +00001522<h5>Overview:</h5>
1523<p>The '<tt>set<i>cc</i></tt>' family of instructions returns a boolean
1524value based on a comparison of their two operands.</p>
1525<h5>Arguments:</h5>
1526<p>The two arguments to the '<tt>set<i>cc</i></tt>' instructions must
1527be of <a href="#t_firstclass">first class</a> type (it is not possible
1528to compare '<tt>label</tt>'s, '<tt>array</tt>'s, '<tt>structure</tt>'
1529or '<tt>void</tt>' values, etc...). Both arguments must have identical
1530types.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001531<h5>Semantics:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001532<p>The '<tt>seteq</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1533value if both operands are equal.<br>
1534The '<tt>setne</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1535value if both operands are unequal.<br>
1536The '<tt>setlt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1537value if the first operand is less than the second operand.<br>
1538The '<tt>setgt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1539value if the first operand is greater than the second operand.<br>
1540The '<tt>setle</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1541value if the first operand is less than or equal to the second operand.<br>
1542The '<tt>setge</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>'
1543value if the first operand is greater than or equal to the second
1544operand.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001545<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001546<pre> &lt;result&gt; = seteq int 4, 5 <i>; yields {bool}:result = false</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001547 &lt;result&gt; = setne float 4, 5 <i>; yields {bool}:result = true</i>
1548 &lt;result&gt; = setlt uint 4, 5 <i>; yields {bool}:result = true</i>
1549 &lt;result&gt; = setgt sbyte 4, 5 <i>; yields {bool}:result = false</i>
1550 &lt;result&gt; = setle sbyte 4, 5 <i>; yields {bool}:result = true</i>
1551 &lt;result&gt; = setge sbyte 4, 5 <i>; yields {bool}:result = false</i>
1552</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001553</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001554<!-- ======================================================================= -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001555<div class="doc_subsection"> <a name="bitwiseops">Bitwise Binary
1556Operations</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001557<div class="doc_text">
Chris Lattner48b383b02003-11-25 01:02:51 +00001558<p>Bitwise binary operators are used to do various forms of
1559bit-twiddling in a program. They are generally very efficient
John Criswelldfe6a862004-12-10 15:51:16 +00001560instructions and can commonly be strength reduced from other
Chris Lattner48b383b02003-11-25 01:02:51 +00001561instructions. They require two operands, execute an operation on them,
1562and produce a single value. The resulting value of the bitwise binary
1563operators is always the same type as its first operand.</p>
Misha Brukman76307852003-11-08 01:05:38 +00001564</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001565<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001566<div class="doc_subsubsection"> <a name="i_and">'<tt>and</tt>'
1567Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001568<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001569<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001570<pre> &lt;result&gt; = and &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001571</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001572<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001573<p>The '<tt>and</tt>' instruction returns the bitwise logical and of
1574its two operands.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001575<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001576<p>The two arguments to the '<tt>and</tt>' instruction must be <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001577 href="#t_integral">integral</a> values. Both arguments must have
1578identical types.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001579<h5>Semantics:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001580<p>The truth table used for the '<tt>and</tt>' instruction is:</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00001581<p> </p>
Misha Brukmanc501f552004-03-01 17:47:27 +00001582<div style="align: center">
Misha Brukman76307852003-11-08 01:05:38 +00001583<table border="1" cellspacing="0" cellpadding="4">
Chris Lattner48b383b02003-11-25 01:02:51 +00001584 <tbody>
1585 <tr>
1586 <td>In0</td>
1587 <td>In1</td>
1588 <td>Out</td>
1589 </tr>
1590 <tr>
1591 <td>0</td>
1592 <td>0</td>
1593 <td>0</td>
1594 </tr>
1595 <tr>
1596 <td>0</td>
1597 <td>1</td>
1598 <td>0</td>
1599 </tr>
1600 <tr>
1601 <td>1</td>
1602 <td>0</td>
1603 <td>0</td>
1604 </tr>
1605 <tr>
1606 <td>1</td>
1607 <td>1</td>
1608 <td>1</td>
1609 </tr>
1610 </tbody>
1611</table>
Misha Brukmanc501f552004-03-01 17:47:27 +00001612</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001613<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001614<pre> &lt;result&gt; = and int 4, %var <i>; yields {int}:result = 4 &amp; %var</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001615 &lt;result&gt; = and int 15, 40 <i>; yields {int}:result = 8</i>
1616 &lt;result&gt; = and int 4, 8 <i>; yields {int}:result = 0</i>
1617</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001618</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001619<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001620<div class="doc_subsubsection"> <a name="i_or">'<tt>or</tt>' Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001621<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001622<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001623<pre> &lt;result&gt; = or &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001624</pre>
Chris Lattner48b383b02003-11-25 01:02:51 +00001625<h5>Overview:</h5>
1626<p>The '<tt>or</tt>' instruction returns the bitwise logical inclusive
1627or of its two operands.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001628<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001629<p>The two arguments to the '<tt>or</tt>' instruction must be <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001630 href="#t_integral">integral</a> values. Both arguments must have
1631identical types.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001632<h5>Semantics:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001633<p>The truth table used for the '<tt>or</tt>' instruction is:</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00001634<p> </p>
Misha Brukmanc501f552004-03-01 17:47:27 +00001635<div style="align: center">
Chris Lattner48b383b02003-11-25 01:02:51 +00001636<table border="1" cellspacing="0" cellpadding="4">
1637 <tbody>
1638 <tr>
1639 <td>In0</td>
1640 <td>In1</td>
1641 <td>Out</td>
1642 </tr>
1643 <tr>
1644 <td>0</td>
1645 <td>0</td>
1646 <td>0</td>
1647 </tr>
1648 <tr>
1649 <td>0</td>
1650 <td>1</td>
1651 <td>1</td>
1652 </tr>
1653 <tr>
1654 <td>1</td>
1655 <td>0</td>
1656 <td>1</td>
1657 </tr>
1658 <tr>
1659 <td>1</td>
1660 <td>1</td>
1661 <td>1</td>
1662 </tr>
1663 </tbody>
1664</table>
Misha Brukmanc501f552004-03-01 17:47:27 +00001665</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001666<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001667<pre> &lt;result&gt; = or int 4, %var <i>; yields {int}:result = 4 | %var</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001668 &lt;result&gt; = or int 15, 40 <i>; yields {int}:result = 47</i>
1669 &lt;result&gt; = or int 4, 8 <i>; yields {int}:result = 12</i>
1670</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001671</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001672<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001673<div class="doc_subsubsection"> <a name="i_xor">'<tt>xor</tt>'
1674Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001675<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001676<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001677<pre> &lt;result&gt; = xor &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001678</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001679<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001680<p>The '<tt>xor</tt>' instruction returns the bitwise logical exclusive
1681or of its two operands. The <tt>xor</tt> is used to implement the
1682"one's complement" operation, which is the "~" operator in C.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001683<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001684<p>The two arguments to the '<tt>xor</tt>' instruction must be <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001685 href="#t_integral">integral</a> values. Both arguments must have
1686identical types.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001687<h5>Semantics:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001688<p>The truth table used for the '<tt>xor</tt>' instruction is:</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00001689<p> </p>
Misha Brukmanc501f552004-03-01 17:47:27 +00001690<div style="align: center">
Chris Lattner48b383b02003-11-25 01:02:51 +00001691<table border="1" cellspacing="0" cellpadding="4">
1692 <tbody>
1693 <tr>
1694 <td>In0</td>
1695 <td>In1</td>
1696 <td>Out</td>
1697 </tr>
1698 <tr>
1699 <td>0</td>
1700 <td>0</td>
1701 <td>0</td>
1702 </tr>
1703 <tr>
1704 <td>0</td>
1705 <td>1</td>
1706 <td>1</td>
1707 </tr>
1708 <tr>
1709 <td>1</td>
1710 <td>0</td>
1711 <td>1</td>
1712 </tr>
1713 <tr>
1714 <td>1</td>
1715 <td>1</td>
1716 <td>0</td>
1717 </tr>
1718 </tbody>
1719</table>
Misha Brukmanc501f552004-03-01 17:47:27 +00001720</div>
Chris Lattner48b383b02003-11-25 01:02:51 +00001721<p> </p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001722<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001723<pre> &lt;result&gt; = xor int 4, %var <i>; yields {int}:result = 4 ^ %var</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001724 &lt;result&gt; = xor int 15, 40 <i>; yields {int}:result = 39</i>
1725 &lt;result&gt; = xor int 4, 8 <i>; yields {int}:result = 12</i>
Chris Lattner5ed60612003-09-03 00:41:47 +00001726 &lt;result&gt; = xor int %V, -1 <i>; yields {int}:result = ~%V</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001727</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001728</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001729<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001730<div class="doc_subsubsection"> <a name="i_shl">'<tt>shl</tt>'
1731Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001732<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001733<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001734<pre> &lt;result&gt; = shl &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001735</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001736<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001737<p>The '<tt>shl</tt>' instruction returns the first operand shifted to
1738the left a specified number of bits.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001739<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001740<p>The first argument to the '<tt>shl</tt>' instruction must be an <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001741 href="#t_integer">integer</a> type. The second argument must be an '<tt>ubyte</tt>'
1742type.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001743<h5>Semantics:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001744<p>The value produced is <tt>var1</tt> * 2<sup><tt>var2</tt></sup>.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001745<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001746<pre> &lt;result&gt; = shl int 4, ubyte %var <i>; yields {int}:result = 4 &lt;&lt; %var</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001747 &lt;result&gt; = shl int 4, ubyte 2 <i>; yields {int}:result = 16</i>
1748 &lt;result&gt; = shl int 1, ubyte 10 <i>; yields {int}:result = 1024</i>
1749</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001750</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001751<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001752<div class="doc_subsubsection"> <a name="i_shr">'<tt>shr</tt>'
1753Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001754<div class="doc_text">
Chris Lattner2f7c9632001-06-06 20:29:01 +00001755<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001756<pre> &lt;result&gt; = shr &lt;ty&gt; &lt;var1&gt;, ubyte &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001757</pre>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001758<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001759<p>The '<tt>shr</tt>' instruction returns the first operand shifted to
1760the right a specified number of bits.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001761<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001762<p>The first argument to the '<tt>shr</tt>' instruction must be an <a
Chris Lattner48b383b02003-11-25 01:02:51 +00001763 href="#t_integer">integer</a> type. The second argument must be an '<tt>ubyte</tt>'
1764type.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001765<h5>Semantics:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001766<p>If the first argument is a <a href="#t_signed">signed</a> type, the
1767most significant bit is duplicated in the newly free'd bit positions.
1768If the first argument is unsigned, zero bits shall fill the empty
1769positions.</p>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001770<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001771<pre> &lt;result&gt; = shr int 4, ubyte %var <i>; yields {int}:result = 4 &gt;&gt; %var</i>
Chris Lattner33426d92003-06-18 21:30:51 +00001772 &lt;result&gt; = shr uint 4, ubyte 1 <i>; yields {uint}:result = 2</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001773 &lt;result&gt; = shr int 4, ubyte 2 <i>; yields {int}:result = 1</i>
Chris Lattner33426d92003-06-18 21:30:51 +00001774 &lt;result&gt; = shr sbyte 4, ubyte 3 <i>; yields {sbyte}:result = 0</i>
1775 &lt;result&gt; = shr sbyte -2, ubyte 1 <i>; yields {sbyte}:result = -1</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001776</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001777</div>
Chris Lattner54611b42005-11-06 08:02:57 +00001778
Chris Lattner2f7c9632001-06-06 20:29:01 +00001779<!-- ======================================================================= -->
Chris Lattner54611b42005-11-06 08:02:57 +00001780<div class="doc_subsection">
1781 <a name="memoryops">Memory Access Operations</a>
1782</div>
1783
Misha Brukman76307852003-11-08 01:05:38 +00001784<div class="doc_text">
Chris Lattner54611b42005-11-06 08:02:57 +00001785
Chris Lattner48b383b02003-11-25 01:02:51 +00001786<p>A key design point of an SSA-based representation is how it
1787represents memory. In LLVM, no memory locations are in SSA form, which
1788makes things very simple. This section describes how to read, write,
John Criswelldfe6a862004-12-10 15:51:16 +00001789allocate, and free memory in LLVM.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001790
Misha Brukman76307852003-11-08 01:05:38 +00001791</div>
Chris Lattner54611b42005-11-06 08:02:57 +00001792
Chris Lattner2f7c9632001-06-06 20:29:01 +00001793<!-- _______________________________________________________________________ -->
Chris Lattner54611b42005-11-06 08:02:57 +00001794<div class="doc_subsubsection">
1795 <a name="i_malloc">'<tt>malloc</tt>' Instruction</a>
1796</div>
1797
Misha Brukman76307852003-11-08 01:05:38 +00001798<div class="doc_text">
Chris Lattner54611b42005-11-06 08:02:57 +00001799
Chris Lattner2f7c9632001-06-06 20:29:01 +00001800<h5>Syntax:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001801
1802<pre>
1803 &lt;result&gt; = malloc &lt;type&gt;[, uint &lt;NumElements&gt;][, align &lt;alignment&gt;] <i>; yields {type*}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001804</pre>
Chris Lattner54611b42005-11-06 08:02:57 +00001805
Chris Lattner2f7c9632001-06-06 20:29:01 +00001806<h5>Overview:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001807
Chris Lattner48b383b02003-11-25 01:02:51 +00001808<p>The '<tt>malloc</tt>' instruction allocates memory from the system
1809heap and returns a pointer to it.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001810
Chris Lattner2f7c9632001-06-06 20:29:01 +00001811<h5>Arguments:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001812
1813<p>The '<tt>malloc</tt>' instruction allocates
1814<tt>sizeof(&lt;type&gt;)*NumElements</tt>
John Criswella92e5862004-02-24 16:13:56 +00001815bytes of memory from the operating system and returns a pointer of the
Chris Lattner54611b42005-11-06 08:02:57 +00001816appropriate type to the program. If "NumElements" is specified, it is the
1817number of elements allocated. If an alignment is specified, the value result
1818of the allocation is guaranteed to be aligned to at least that boundary. If
1819not specified, or if zero, the target can choose to align the allocation on any
1820convenient boundary.</p>
1821
Misha Brukman76307852003-11-08 01:05:38 +00001822<p>'<tt>type</tt>' must be a sized type.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001823
Chris Lattner2f7c9632001-06-06 20:29:01 +00001824<h5>Semantics:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001825
Chris Lattner48b383b02003-11-25 01:02:51 +00001826<p>Memory is allocated using the system "<tt>malloc</tt>" function, and
1827a pointer is returned.</p>
Misha Brukman76307852003-11-08 01:05:38 +00001828
Chris Lattner54611b42005-11-06 08:02:57 +00001829<h5>Example:</h5>
1830
1831<pre>
1832 %array = malloc [4 x ubyte ] <i>; yields {[%4 x ubyte]*}:array</i>
1833
1834 %size = <a href="#i_add">add</a> uint 2, 2 <i>; yields {uint}:size = uint 4</i>
Chris Lattner590645f2002-04-14 06:13:44 +00001835 %array1 = malloc ubyte, uint 4 <i>; yields {ubyte*}:array1</i>
1836 %array2 = malloc [12 x ubyte], uint %size <i>; yields {[12 x ubyte]*}:array2</i>
Chris Lattner54611b42005-11-06 08:02:57 +00001837 %array3 = malloc int, uint 4, align 1024 <i>; yields {int*}:array3</i>
1838 %array4 = malloc int, align 1024 <i>; yields {int*}:array4</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001839</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001840</div>
Chris Lattner54611b42005-11-06 08:02:57 +00001841
Chris Lattner2f7c9632001-06-06 20:29:01 +00001842<!-- _______________________________________________________________________ -->
Chris Lattner54611b42005-11-06 08:02:57 +00001843<div class="doc_subsubsection">
1844 <a name="i_free">'<tt>free</tt>' Instruction</a>
1845</div>
1846
Misha Brukman76307852003-11-08 01:05:38 +00001847<div class="doc_text">
Chris Lattner54611b42005-11-06 08:02:57 +00001848
Chris Lattner2f7c9632001-06-06 20:29:01 +00001849<h5>Syntax:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001850
1851<pre>
1852 free &lt;type&gt; &lt;value&gt; <i>; yields {void}</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001853</pre>
Chris Lattner54611b42005-11-06 08:02:57 +00001854
Chris Lattner2f7c9632001-06-06 20:29:01 +00001855<h5>Overview:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001856
Chris Lattner48b383b02003-11-25 01:02:51 +00001857<p>The '<tt>free</tt>' instruction returns memory back to the unused
John Criswell4a3327e2005-05-13 22:25:59 +00001858memory heap to be reallocated in the future.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001859
Chris Lattner2f7c9632001-06-06 20:29:01 +00001860<h5>Arguments:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001861
Chris Lattner48b383b02003-11-25 01:02:51 +00001862<p>'<tt>value</tt>' shall be a pointer value that points to a value
1863that was allocated with the '<tt><a href="#i_malloc">malloc</a></tt>'
1864instruction.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001865
Chris Lattner2f7c9632001-06-06 20:29:01 +00001866<h5>Semantics:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001867
John Criswelldfe6a862004-12-10 15:51:16 +00001868<p>Access to the memory pointed to by the pointer is no longer defined
Chris Lattner48b383b02003-11-25 01:02:51 +00001869after this instruction executes.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001870
Chris Lattner2f7c9632001-06-06 20:29:01 +00001871<h5>Example:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001872
1873<pre>
1874 %array = <a href="#i_malloc">malloc</a> [4 x ubyte] <i>; yields {[4 x ubyte]*}:array</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001875 free [4 x ubyte]* %array
1876</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001877</div>
Chris Lattner54611b42005-11-06 08:02:57 +00001878
Chris Lattner2f7c9632001-06-06 20:29:01 +00001879<!-- _______________________________________________________________________ -->
Chris Lattner54611b42005-11-06 08:02:57 +00001880<div class="doc_subsubsection">
1881 <a name="i_alloca">'<tt>alloca</tt>' Instruction</a>
1882</div>
1883
Misha Brukman76307852003-11-08 01:05:38 +00001884<div class="doc_text">
Chris Lattner54611b42005-11-06 08:02:57 +00001885
Chris Lattner2f7c9632001-06-06 20:29:01 +00001886<h5>Syntax:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001887
1888<pre>
1889 &lt;result&gt; = alloca &lt;type&gt;[, uint &lt;NumElements&gt;][, align &lt;alignment&gt;] <i>; yields {type*}:result</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001890</pre>
Chris Lattner54611b42005-11-06 08:02:57 +00001891
Chris Lattner2f7c9632001-06-06 20:29:01 +00001892<h5>Overview:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001893
Chris Lattner48b383b02003-11-25 01:02:51 +00001894<p>The '<tt>alloca</tt>' instruction allocates memory on the current
1895stack frame of the procedure that is live until the current function
1896returns to its caller.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001897
Chris Lattner2f7c9632001-06-06 20:29:01 +00001898<h5>Arguments:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001899
John Criswelldfe6a862004-12-10 15:51:16 +00001900<p>The '<tt>alloca</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
Chris Lattner48b383b02003-11-25 01:02:51 +00001901bytes of memory on the runtime stack, returning a pointer of the
Chris Lattner54611b42005-11-06 08:02:57 +00001902appropriate type to the program. If "NumElements" is specified, it is the
1903number of elements allocated. If an alignment is specified, the value result
1904of the allocation is guaranteed to be aligned to at least that boundary. If
1905not specified, or if zero, the target can choose to align the allocation on any
1906convenient boundary.</p>
1907
Misha Brukman76307852003-11-08 01:05:38 +00001908<p>'<tt>type</tt>' may be any sized type.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001909
Chris Lattner2f7c9632001-06-06 20:29:01 +00001910<h5>Semantics:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001911
John Criswell4a3327e2005-05-13 22:25:59 +00001912<p>Memory is allocated; a pointer is returned. '<tt>alloca</tt>'d
Chris Lattner48b383b02003-11-25 01:02:51 +00001913memory is automatically released when the function returns. The '<tt>alloca</tt>'
1914instruction is commonly used to represent automatic variables that must
1915have an address available. When the function returns (either with the <tt><a
John Criswellc932bef2005-05-12 16:55:34 +00001916 href="#i_ret">ret</a></tt> or <tt><a href="#i_unwind">unwind</a></tt>
Misha Brukman76307852003-11-08 01:05:38 +00001917instructions), the memory is reclaimed.</p>
Chris Lattner54611b42005-11-06 08:02:57 +00001918
Chris Lattner2f7c9632001-06-06 20:29:01 +00001919<h5>Example:</h5>
Chris Lattner54611b42005-11-06 08:02:57 +00001920
1921<pre>
1922 %ptr = alloca int <i>; yields {int*}:ptr</i>
Chris Lattner590645f2002-04-14 06:13:44 +00001923 %ptr = alloca int, uint 4 <i>; yields {int*}:ptr</i>
Chris Lattner54611b42005-11-06 08:02:57 +00001924 %ptr = alloca int, uint 4, align 1024 <i>; yields {int*}:ptr</i>
1925 %ptr = alloca int, align 1024 <i>; yields {int*}:ptr</i>
Chris Lattner2f7c9632001-06-06 20:29:01 +00001926</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001927</div>
Chris Lattner54611b42005-11-06 08:02:57 +00001928
Chris Lattner2f7c9632001-06-06 20:29:01 +00001929<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001930<div class="doc_subsubsection"> <a name="i_load">'<tt>load</tt>'
1931Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00001932<div class="doc_text">
Chris Lattner095735d2002-05-06 03:03:22 +00001933<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001934<pre> &lt;result&gt; = load &lt;ty&gt;* &lt;pointer&gt;<br> &lt;result&gt; = volatile load &lt;ty&gt;* &lt;pointer&gt;<br></pre>
Chris Lattner095735d2002-05-06 03:03:22 +00001935<h5>Overview:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001936<p>The '<tt>load</tt>' instruction is used to read from memory.</p>
Chris Lattner095735d2002-05-06 03:03:22 +00001937<h5>Arguments:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001938<p>The argument to the '<tt>load</tt>' instruction specifies the memory
John Criswell4c0cf7f2005-10-24 16:17:18 +00001939address from which to load. The pointer must point to a <a
Chris Lattner10ee9652004-06-03 22:57:15 +00001940 href="#t_firstclass">first class</a> type. If the <tt>load</tt> is
John Criswell4c0cf7f2005-10-24 16:17:18 +00001941marked as <tt>volatile</tt>, then the optimizer is not allowed to modify
Chris Lattner48b383b02003-11-25 01:02:51 +00001942the number or order of execution of this <tt>load</tt> with other
1943volatile <tt>load</tt> and <tt><a href="#i_store">store</a></tt>
1944instructions. </p>
Chris Lattner095735d2002-05-06 03:03:22 +00001945<h5>Semantics:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001946<p>The location of memory pointed to is loaded.</p>
Chris Lattner095735d2002-05-06 03:03:22 +00001947<h5>Examples:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001948<pre> %ptr = <a href="#i_alloca">alloca</a> int <i>; yields {int*}:ptr</i>
1949 <a
1950 href="#i_store">store</a> int 3, int* %ptr <i>; yields {void}</i>
Chris Lattner095735d2002-05-06 03:03:22 +00001951 %val = load int* %ptr <i>; yields {int}:val = int 3</i>
1952</pre>
Misha Brukman76307852003-11-08 01:05:38 +00001953</div>
Chris Lattner095735d2002-05-06 03:03:22 +00001954<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00001955<div class="doc_subsubsection"> <a name="i_store">'<tt>store</tt>'
1956Instruction</a> </div>
Chris Lattner095735d2002-05-06 03:03:22 +00001957<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001958<pre> store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt; <i>; yields {void}</i>
Chris Lattner12d456c2003-09-08 18:27:49 +00001959 volatile store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt; <i>; yields {void}</i>
Chris Lattner095735d2002-05-06 03:03:22 +00001960</pre>
Chris Lattner095735d2002-05-06 03:03:22 +00001961<h5>Overview:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00001962<p>The '<tt>store</tt>' instruction is used to write to memory.</p>
Chris Lattner095735d2002-05-06 03:03:22 +00001963<h5>Arguments:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001964<p>There are two arguments to the '<tt>store</tt>' instruction: a value
John Criswell4c0cf7f2005-10-24 16:17:18 +00001965to store and an address in which to store it. The type of the '<tt>&lt;pointer&gt;</tt>'
Chris Lattner48b383b02003-11-25 01:02:51 +00001966operand must be a pointer to the type of the '<tt>&lt;value&gt;</tt>'
John Criswell4a3327e2005-05-13 22:25:59 +00001967operand. If the <tt>store</tt> is marked as <tt>volatile</tt>, then the
Chris Lattner48b383b02003-11-25 01:02:51 +00001968optimizer is not allowed to modify the number or order of execution of
1969this <tt>store</tt> with other volatile <tt>load</tt> and <tt><a
1970 href="#i_store">store</a></tt> instructions.</p>
1971<h5>Semantics:</h5>
1972<p>The contents of memory are updated to contain '<tt>&lt;value&gt;</tt>'
1973at the location specified by the '<tt>&lt;pointer&gt;</tt>' operand.</p>
Chris Lattner095735d2002-05-06 03:03:22 +00001974<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00001975<pre> %ptr = <a href="#i_alloca">alloca</a> int <i>; yields {int*}:ptr</i>
1976 <a
1977 href="#i_store">store</a> int 3, int* %ptr <i>; yields {void}</i>
Chris Lattner095735d2002-05-06 03:03:22 +00001978 %val = load int* %ptr <i>; yields {int}:val = int 3</i>
1979</pre>
Chris Lattner095735d2002-05-06 03:03:22 +00001980<!-- _______________________________________________________________________ -->
Chris Lattner33fd7022004-04-05 01:30:49 +00001981<div class="doc_subsubsection">
1982 <a name="i_getelementptr">'<tt>getelementptr</tt>' Instruction</a>
1983</div>
1984
Misha Brukman76307852003-11-08 01:05:38 +00001985<div class="doc_text">
Chris Lattner590645f2002-04-14 06:13:44 +00001986<h5>Syntax:</h5>
Chris Lattner33fd7022004-04-05 01:30:49 +00001987<pre>
1988 &lt;result&gt; = getelementptr &lt;ty&gt;* &lt;ptrval&gt;{, &lt;ty&gt; &lt;idx&gt;}*
1989</pre>
1990
Chris Lattner590645f2002-04-14 06:13:44 +00001991<h5>Overview:</h5>
Chris Lattner33fd7022004-04-05 01:30:49 +00001992
1993<p>
1994The '<tt>getelementptr</tt>' instruction is used to get the address of a
1995subelement of an aggregate data structure.</p>
1996
Chris Lattner590645f2002-04-14 06:13:44 +00001997<h5>Arguments:</h5>
Chris Lattner33fd7022004-04-05 01:30:49 +00001998
1999<p>This instruction takes a list of integer constants that indicate what
2000elements of the aggregate object to index to. The actual types of the arguments
2001provided depend on the type of the first pointer argument. The
2002'<tt>getelementptr</tt>' instruction is used to index down through the type
John Criswell88190562005-05-16 16:17:45 +00002003levels of a structure or to a specific index in an array. When indexing into a
2004structure, only <tt>uint</tt>
John Criswell4a3327e2005-05-13 22:25:59 +00002005integer constants are allowed. When indexing into an array or pointer,
Chris Lattner33fd7022004-04-05 01:30:49 +00002006<tt>int</tt> and <tt>long</tt> indexes are allowed of any sign.</p>
2007
Chris Lattner48b383b02003-11-25 01:02:51 +00002008<p>For example, let's consider a C code fragment and how it gets
2009compiled to LLVM:</p>
Chris Lattner33fd7022004-04-05 01:30:49 +00002010
2011<pre>
2012 struct RT {
2013 char A;
2014 int B[10][20];
2015 char C;
2016 };
2017 struct ST {
2018 int X;
2019 double Y;
2020 struct RT Z;
2021 };
2022
2023 int *foo(struct ST *s) {
2024 return &amp;s[1].Z.B[5][13];
2025 }
2026</pre>
2027
Misha Brukman76307852003-11-08 01:05:38 +00002028<p>The LLVM code generated by the GCC frontend is:</p>
Chris Lattner33fd7022004-04-05 01:30:49 +00002029
2030<pre>
2031 %RT = type { sbyte, [10 x [20 x int]], sbyte }
2032 %ST = type { int, double, %RT }
2033
Brian Gaeke317ef962004-07-02 21:08:14 +00002034 implementation
2035
2036 int* %foo(%ST* %s) {
2037 entry:
2038 %reg = getelementptr %ST* %s, int 1, uint 2, uint 1, int 5, int 13
Chris Lattner33fd7022004-04-05 01:30:49 +00002039 ret int* %reg
2040 }
2041</pre>
2042
Chris Lattner590645f2002-04-14 06:13:44 +00002043<h5>Semantics:</h5>
Chris Lattner33fd7022004-04-05 01:30:49 +00002044
2045<p>The index types specified for the '<tt>getelementptr</tt>' instruction depend
John Criswell4a3327e2005-05-13 22:25:59 +00002046on the pointer type that is being indexed into. <a href="#t_pointer">Pointer</a>
Chris Lattner10ee9652004-06-03 22:57:15 +00002047and <a href="#t_array">array</a> types require <tt>uint</tt>, <tt>int</tt>,
2048<tt>ulong</tt>, or <tt>long</tt> values, and <a href="#t_struct">structure</a>
Chris Lattner33fd7022004-04-05 01:30:49 +00002049types require <tt>uint</tt> <b>constants</b>.</p>
2050
Misha Brukman76307852003-11-08 01:05:38 +00002051<p>In the example above, the first index is indexing into the '<tt>%ST*</tt>'
Chris Lattner33fd7022004-04-05 01:30:49 +00002052type, which is a pointer, yielding a '<tt>%ST</tt>' = '<tt>{ int, double, %RT
2053}</tt>' type, a structure. The second index indexes into the third element of
2054the structure, yielding a '<tt>%RT</tt>' = '<tt>{ sbyte, [10 x [20 x int]],
2055sbyte }</tt>' type, another structure. The third index indexes into the second
2056element of the structure, yielding a '<tt>[10 x [20 x int]]</tt>' type, an
2057array. The two dimensions of the array are subscripted into, yielding an
John Criswell88190562005-05-16 16:17:45 +00002058'<tt>int</tt>' type. The '<tt>getelementptr</tt>' instruction returns a pointer
Chris Lattner33fd7022004-04-05 01:30:49 +00002059to this element, thus computing a value of '<tt>int*</tt>' type.</p>
2060
Chris Lattner48b383b02003-11-25 01:02:51 +00002061<p>Note that it is perfectly legal to index partially through a
2062structure, returning a pointer to an inner element. Because of this,
2063the LLVM code for the given testcase is equivalent to:</p>
Chris Lattner33fd7022004-04-05 01:30:49 +00002064
2065<pre>
Chris Lattner455fc8c2005-03-07 22:13:59 +00002066 int* %foo(%ST* %s) {
Chris Lattner33fd7022004-04-05 01:30:49 +00002067 %t1 = getelementptr %ST* %s, int 1 <i>; yields %ST*:%t1</i>
2068 %t2 = getelementptr %ST* %t1, int 0, uint 2 <i>; yields %RT*:%t2</i>
2069 %t3 = getelementptr %RT* %t2, int 0, uint 1 <i>; yields [10 x [20 x int]]*:%t3</i>
2070 %t4 = getelementptr [10 x [20 x int]]* %t3, int 0, int 5 <i>; yields [20 x int]*:%t4</i>
2071 %t5 = getelementptr [20 x int]* %t4, int 0, int 13 <i>; yields int*:%t5</i>
2072 ret int* %t5
2073 }
Chris Lattnera8292f32002-05-06 22:08:29 +00002074</pre>
Chris Lattnerc0ad71e2005-06-24 17:22:57 +00002075
2076<p>Note that it is undefined to access an array out of bounds: array and
2077pointer indexes must always be within the defined bounds of the array type.
2078The one exception for this rules is zero length arrays. These arrays are
2079defined to be accessible as variable length arrays, which requires access
2080beyond the zero'th element.</p>
2081
Chris Lattner590645f2002-04-14 06:13:44 +00002082<h5>Example:</h5>
Chris Lattnerc0ad71e2005-06-24 17:22:57 +00002083
Chris Lattner33fd7022004-04-05 01:30:49 +00002084<pre>
2085 <i>; yields [12 x ubyte]*:aptr</i>
2086 %aptr = getelementptr {int, [12 x ubyte]}* %sptr, long 0, uint 1
2087</pre>
2088
2089</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00002090<!-- ======================================================================= -->
Chris Lattner48b383b02003-11-25 01:02:51 +00002091<div class="doc_subsection"> <a name="otherops">Other Operations</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00002092<div class="doc_text">
John Criswell417228d2004-04-09 16:48:45 +00002093<p>The instructions in this category are the "miscellaneous"
Chris Lattner48b383b02003-11-25 01:02:51 +00002094instructions, which defy better classification.</p>
Misha Brukman76307852003-11-08 01:05:38 +00002095</div>
Chris Lattner2f7c9632001-06-06 20:29:01 +00002096<!-- _______________________________________________________________________ -->
Chris Lattner48b383b02003-11-25 01:02:51 +00002097<div class="doc_subsubsection"> <a name="i_phi">'<tt>phi</tt>'
2098Instruction</a> </div>
Misha Brukman76307852003-11-08 01:05:38 +00002099<div class="doc_text">
Chris Lattner70de6632001-07-09 00:26:23 +00002100<h5>Syntax:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00002101<pre> &lt;result&gt; = phi &lt;ty&gt; [ &lt;val0&gt;, &lt;label0&gt;], ...<br></pre>
Chris Lattner70de6632001-07-09 00:26:23 +00002102<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00002103<p>The '<tt>phi</tt>' instruction is used to implement the &#966; node in
2104the SSA graph representing the function.</p>
Chris Lattner70de6632001-07-09 00:26:23 +00002105<h5>Arguments:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00002106<p>The type of the incoming values are specified with the first type
2107field. After this, the '<tt>phi</tt>' instruction takes a list of pairs
2108as arguments, with one pair for each predecessor basic block of the
2109current block. Only values of <a href="#t_firstclass">first class</a>
2110type may be used as the value arguments to the PHI node. Only labels
2111may be used as the label arguments.</p>
2112<p>There must be no non-phi instructions between the start of a basic
2113block and the PHI instructions: i.e. PHI instructions must be first in
2114a basic block.</p>
Chris Lattner70de6632001-07-09 00:26:23 +00002115<h5>Semantics:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00002116<p>At runtime, the '<tt>phi</tt>' instruction logically takes on the
2117value specified by the parameter, depending on which basic block we
2118came from in the last <a href="#terminators">terminator</a> instruction.</p>
Chris Lattnera8292f32002-05-06 22:08:29 +00002119<h5>Example:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00002120<pre>Loop: ; Infinite loop that counts from 0 on up...<br> %indvar = phi uint [ 0, %LoopHeader ], [ %nextindvar, %Loop ]<br> %nextindvar = add uint %indvar, 1<br> br label %Loop<br></pre>
Misha Brukman76307852003-11-08 01:05:38 +00002121</div>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002122
Chris Lattnera8292f32002-05-06 22:08:29 +00002123<!-- _______________________________________________________________________ -->
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002124<div class="doc_subsubsection">
2125 <a name="i_cast">'<tt>cast .. to</tt>' Instruction</a>
2126</div>
2127
Misha Brukman76307852003-11-08 01:05:38 +00002128<div class="doc_text">
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002129
Chris Lattnera8292f32002-05-06 22:08:29 +00002130<h5>Syntax:</h5>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002131
2132<pre>
2133 &lt;result&gt; = cast &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
Chris Lattnera8292f32002-05-06 22:08:29 +00002134</pre>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002135
Chris Lattnera8292f32002-05-06 22:08:29 +00002136<h5>Overview:</h5>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002137
2138<p>
2139The '<tt>cast</tt>' instruction is used as the primitive means to convert
2140integers to floating point, change data type sizes, and break type safety (by
2141casting pointers).
2142</p>
2143
2144
Chris Lattnera8292f32002-05-06 22:08:29 +00002145<h5>Arguments:</h5>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002146
2147<p>
2148The '<tt>cast</tt>' instruction takes a value to cast, which must be a first
2149class value, and a type to cast it to, which must also be a <a
2150href="#t_firstclass">first class</a> type.
2151</p>
2152
Chris Lattnera8292f32002-05-06 22:08:29 +00002153<h5>Semantics:</h5>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002154
2155<p>
2156This instruction follows the C rules for explicit casts when determining how the
2157data being cast must change to fit in its new container.
2158</p>
2159
2160<p>
2161When casting to bool, any value that would be considered true in the context of
2162a C '<tt>if</tt>' condition is converted to the boolean '<tt>true</tt>' values,
2163all else are '<tt>false</tt>'.
2164</p>
2165
2166<p>
2167When extending an integral value from a type of one signness to another (for
2168example '<tt>sbyte</tt>' to '<tt>ulong</tt>'), the value is sign-extended if the
2169<b>source</b> value is signed, and zero-extended if the source value is
2170unsigned. <tt>bool</tt> values are always zero extended into either zero or
2171one.
2172</p>
2173
Chris Lattner70de6632001-07-09 00:26:23 +00002174<h5>Example:</h5>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002175
2176<pre>
2177 %X = cast int 257 to ubyte <i>; yields ubyte:1</i>
Chris Lattnerd8f8ede2002-06-25 18:03:17 +00002178 %Y = cast int 123 to bool <i>; yields bool:true</i>
Chris Lattner70de6632001-07-09 00:26:23 +00002179</pre>
Misha Brukman76307852003-11-08 01:05:38 +00002180</div>
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002181
2182<!-- _______________________________________________________________________ -->
2183<div class="doc_subsubsection">
2184 <a name="i_select">'<tt>select</tt>' Instruction</a>
2185</div>
2186
2187<div class="doc_text">
2188
2189<h5>Syntax:</h5>
2190
2191<pre>
2192 &lt;result&gt; = select bool &lt;cond&gt;, &lt;ty&gt; &lt;val1&gt;, &lt;ty&gt; &lt;val2&gt; <i>; yields ty</i>
2193</pre>
2194
2195<h5>Overview:</h5>
2196
2197<p>
2198The '<tt>select</tt>' instruction is used to choose one value based on a
2199condition, without branching.
2200</p>
2201
2202
2203<h5>Arguments:</h5>
2204
2205<p>
2206The '<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.
2207</p>
2208
2209<h5>Semantics:</h5>
2210
2211<p>
2212If the boolean condition evaluates to true, the instruction returns the first
John Criswell88190562005-05-16 16:17:45 +00002213value argument; otherwise, it returns the second value argument.
Chris Lattnerb53c28d2004-03-12 05:50:16 +00002214</p>
2215
2216<h5>Example:</h5>
2217
2218<pre>
2219 %X = select bool true, ubyte 17, ubyte 42 <i>; yields ubyte:17</i>
2220</pre>
2221</div>
2222
2223
2224
2225
2226
Chris Lattner70de6632001-07-09 00:26:23 +00002227<!-- _______________________________________________________________________ -->
Chris Lattnere23c1392005-05-06 05:47:36 +00002228<div class="doc_subsubsection">
2229 <a name="i_call">'<tt>call</tt>' Instruction</a>
2230</div>
2231
Misha Brukman76307852003-11-08 01:05:38 +00002232<div class="doc_text">
Chris Lattnere23c1392005-05-06 05:47:36 +00002233
Chris Lattner2f7c9632001-06-06 20:29:01 +00002234<h5>Syntax:</h5>
Chris Lattnere23c1392005-05-06 05:47:36 +00002235<pre>
Chris Lattner0132aff2005-05-06 22:57:40 +00002236 &lt;result&gt; = [tail] call [<a href="#callingconv">cconv</a>] &lt;ty&gt;* &lt;fnptrval&gt;(&lt;param list&gt;)
Chris Lattnere23c1392005-05-06 05:47:36 +00002237</pre>
2238
Chris Lattner2f7c9632001-06-06 20:29:01 +00002239<h5>Overview:</h5>
Chris Lattnere23c1392005-05-06 05:47:36 +00002240
Misha Brukman76307852003-11-08 01:05:38 +00002241<p>The '<tt>call</tt>' instruction represents a simple function call.</p>
Chris Lattnere23c1392005-05-06 05:47:36 +00002242
Chris Lattner2f7c9632001-06-06 20:29:01 +00002243<h5>Arguments:</h5>
Chris Lattnere23c1392005-05-06 05:47:36 +00002244
Misha Brukman76307852003-11-08 01:05:38 +00002245<p>This instruction requires several arguments:</p>
Chris Lattnere23c1392005-05-06 05:47:36 +00002246
Chris Lattnera8292f32002-05-06 22:08:29 +00002247<ol>
Chris Lattner48b383b02003-11-25 01:02:51 +00002248 <li>
Chris Lattner0132aff2005-05-06 22:57:40 +00002249 <p>The optional "tail" marker indicates whether the callee function accesses
2250 any allocas or varargs in the caller. If the "tail" marker is present, the
Chris Lattnere23c1392005-05-06 05:47:36 +00002251 function call is eligible for tail call optimization. Note that calls may
2252 be marked "tail" even if they do not occur before a <a
2253 href="#i_ret"><tt>ret</tt></a> instruction.
Chris Lattner48b383b02003-11-25 01:02:51 +00002254 </li>
2255 <li>
Chris Lattner0132aff2005-05-06 22:57:40 +00002256 <p>The optional "cconv" marker indicates which <a href="callingconv">calling
2257 convention</a> the call should use. If none is specified, the call defaults
2258 to using C calling conventions.
2259 </li>
2260 <li>
Chris Lattnere23c1392005-05-06 05:47:36 +00002261 <p>'<tt>ty</tt>': shall be the signature of the pointer to function value
2262 being invoked. The argument types must match the types implied by this
John Criswell88190562005-05-16 16:17:45 +00002263 signature. This type can be omitted if the function is not varargs and
2264 if the function type does not return a pointer to a function.</p>
Chris Lattnere23c1392005-05-06 05:47:36 +00002265 </li>
2266 <li>
2267 <p>'<tt>fnptrval</tt>': An LLVM value containing a pointer to a function to
2268 be invoked. In most cases, this is a direct function invocation, but
2269 indirect <tt>call</tt>s are just as possible, calling an arbitrary pointer
John Criswell88190562005-05-16 16:17:45 +00002270 to function value.</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00002271 </li>
2272 <li>
2273 <p>'<tt>function args</tt>': argument list whose types match the
Reid Spencerd845d162005-05-01 22:22:57 +00002274 function signature argument types. All arguments must be of
2275 <a href="#t_firstclass">first class</a> type. If the function signature
2276 indicates the function accepts a variable number of arguments, the extra
2277 arguments can be specified.</p>
Chris Lattner48b383b02003-11-25 01:02:51 +00002278 </li>
Chris Lattnera8292f32002-05-06 22:08:29 +00002279</ol>
Chris Lattnere23c1392005-05-06 05:47:36 +00002280
Chris Lattner2f7c9632001-06-06 20:29:01 +00002281<h5>Semantics:</h5>
Chris Lattnere23c1392005-05-06 05:47:36 +00002282
Chris Lattner48b383b02003-11-25 01:02:51 +00002283<p>The '<tt>call</tt>' instruction is used to cause control flow to
2284transfer to a specified function, with its incoming arguments bound to
2285the specified values. Upon a '<tt><a href="#i_ret">ret</a></tt>'
2286instruction in the called function, control flow continues with the
2287instruction after the function call, and the return value of the
2288function is bound to the result argument. This is a simpler case of
2289the <a href="#i_invoke">invoke</a> instruction.</p>
Chris Lattnere23c1392005-05-06 05:47:36 +00002290
Chris Lattner2f7c9632001-06-06 20:29:01 +00002291<h5>Example:</h5>
Chris Lattnere23c1392005-05-06 05:47:36 +00002292
2293<pre>
2294 %retval = call int %test(int %argc)
2295 call int(sbyte*, ...) *%printf(sbyte* %msg, int 12, sbyte 42);
2296 %X = tail call int %foo()
Chris Lattner0132aff2005-05-06 22:57:40 +00002297 %Y = tail call <a href="#callingconv">fastcc</a> int %foo()
Chris Lattnere23c1392005-05-06 05:47:36 +00002298</pre>
2299
Misha Brukman76307852003-11-08 01:05:38 +00002300</div>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002301
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002302<!-- _______________________________________________________________________ -->
Chris Lattner6a4a0492004-09-27 21:51:25 +00002303<div class="doc_subsubsection">
Chris Lattner6a4a0492004-09-27 21:51:25 +00002304 <a name="i_vaarg">'<tt>vaarg</tt>' Instruction</a>
2305</div>
2306
Misha Brukman76307852003-11-08 01:05:38 +00002307<div class="doc_text">
Chris Lattner6a4a0492004-09-27 21:51:25 +00002308
Chris Lattner26ca62e2003-10-18 05:51:36 +00002309<h5>Syntax:</h5>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002310
2311<pre>
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002312 &lt;resultval&gt; = va_arg &lt;va_list*&gt; &lt;arglist&gt;, &lt;argty&gt;
Chris Lattner6a4a0492004-09-27 21:51:25 +00002313</pre>
2314
Chris Lattner26ca62e2003-10-18 05:51:36 +00002315<h5>Overview:</h5>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002316
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002317<p>The '<tt>va_arg</tt>' instruction is used to access arguments passed through
Chris Lattner6a4a0492004-09-27 21:51:25 +00002318the "variable argument" area of a function call. It is used to implement the
2319<tt>va_arg</tt> macro in C.</p>
2320
Chris Lattner26ca62e2003-10-18 05:51:36 +00002321<h5>Arguments:</h5>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002322
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002323<p>This instruction takes a <tt>va_list*</tt> value and the type of
2324the argument. It returns a value of the specified argument type and
2325increments the <tt>va_list</tt> to poin to the next argument. Again, the
2326actual type of <tt>va_list</tt> is target specific.</p>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002327
Chris Lattner26ca62e2003-10-18 05:51:36 +00002328<h5>Semantics:</h5>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002329
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002330<p>The '<tt>va_arg</tt>' instruction loads an argument of the specified
2331type from the specified <tt>va_list</tt> and causes the
2332<tt>va_list</tt> to point to the next argument. For more information,
2333see the variable argument handling <a href="#int_varargs">Intrinsic
2334Functions</a>.</p>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002335
2336<p>It is legal for this instruction to be called in a function which does not
2337take a variable number of arguments, for example, the <tt>vfprintf</tt>
Misha Brukman76307852003-11-08 01:05:38 +00002338function.</p>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002339
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002340<p><tt>va_arg</tt> is an LLVM instruction instead of an <a
John Criswell88190562005-05-16 16:17:45 +00002341href="#intrinsics">intrinsic function</a> because it takes a type as an
Chris Lattner6a4a0492004-09-27 21:51:25 +00002342argument.</p>
2343
Chris Lattner26ca62e2003-10-18 05:51:36 +00002344<h5>Example:</h5>
Chris Lattner6a4a0492004-09-27 21:51:25 +00002345
2346<p>See the <a href="#int_varargs">variable argument processing</a> section.</p>
2347
Misha Brukman76307852003-11-08 01:05:38 +00002348</div>
Chris Lattner941515c2004-01-06 05:31:32 +00002349
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002350<!-- *********************************************************************** -->
Chris Lattner48b383b02003-11-25 01:02:51 +00002351<div class="doc_section"> <a name="intrinsics">Intrinsic Functions</a> </div>
2352<!-- *********************************************************************** -->
Chris Lattner941515c2004-01-06 05:31:32 +00002353
Misha Brukman76307852003-11-08 01:05:38 +00002354<div class="doc_text">
Chris Lattnerfee11462004-02-12 17:01:32 +00002355
2356<p>LLVM supports the notion of an "intrinsic function". These functions have
John Criswell88190562005-05-16 16:17:45 +00002357well known names and semantics and are required to follow certain
Chris Lattnerfee11462004-02-12 17:01:32 +00002358restrictions. Overall, these instructions represent an extension mechanism for
2359the LLVM language that does not require changing all of the transformations in
2360LLVM to add to the language (or the bytecode reader/writer, the parser,
2361etc...).</p>
2362
John Criswell88190562005-05-16 16:17:45 +00002363<p>Intrinsic function names must all start with an "<tt>llvm.</tt>" prefix. This
2364prefix is reserved in LLVM for intrinsic names; thus, functions may not be named
Chris Lattnerfee11462004-02-12 17:01:32 +00002365this. Intrinsic functions must always be external functions: you cannot define
2366the body of intrinsic functions. Intrinsic functions may only be used in call
2367or invoke instructions: it is illegal to take the address of an intrinsic
2368function. Additionally, because intrinsic functions are part of the LLVM
2369language, it is required that they all be documented here if any are added.</p>
2370
2371
John Criswell88190562005-05-16 16:17:45 +00002372<p>To learn how to add an intrinsic function, please see the <a
Chris Lattner90391c12005-05-11 03:35:57 +00002373href="ExtendingLLVM.html">Extending LLVM Guide</a>.
Chris Lattnerfee11462004-02-12 17:01:32 +00002374</p>
2375
Misha Brukman76307852003-11-08 01:05:38 +00002376</div>
Chris Lattner941515c2004-01-06 05:31:32 +00002377
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002378<!-- ======================================================================= -->
Chris Lattner941515c2004-01-06 05:31:32 +00002379<div class="doc_subsection">
2380 <a name="int_varargs">Variable Argument Handling Intrinsics</a>
2381</div>
2382
Misha Brukman76307852003-11-08 01:05:38 +00002383<div class="doc_text">
Chris Lattner757528b0b2004-05-23 21:06:01 +00002384
Misha Brukman76307852003-11-08 01:05:38 +00002385<p>Variable argument support is defined in LLVM with the <a
Chris Lattner48b383b02003-11-25 01:02:51 +00002386 href="#i_vanext"><tt>vanext</tt></a> instruction and these three
2387intrinsic functions. These functions are related to the similarly
2388named macros defined in the <tt>&lt;stdarg.h&gt;</tt> header file.</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002389
Chris Lattner48b383b02003-11-25 01:02:51 +00002390<p>All of these functions operate on arguments that use a
2391target-specific value type "<tt>va_list</tt>". The LLVM assembly
2392language reference manual does not define what this type is, so all
2393transformations should be prepared to handle intrinsics with any type
2394used.</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002395
Misha Brukman76307852003-11-08 01:05:38 +00002396<p>This example shows how the <a href="#i_vanext"><tt>vanext</tt></a>
Chris Lattner48b383b02003-11-25 01:02:51 +00002397instruction and the variable argument handling intrinsic functions are
2398used.</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002399
Chris Lattnerfee11462004-02-12 17:01:32 +00002400<pre>
2401int %test(int %X, ...) {
2402 ; Initialize variable argument processing
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002403 %ap = alloca sbyte*
2404 call void %<a href="#i_va_start">llvm.va_start</a>(sbyte** %ap)
Chris Lattnerfee11462004-02-12 17:01:32 +00002405
2406 ; Read a single integer argument
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002407 %tmp = va_arg sbyte** %ap, int
Chris Lattnerfee11462004-02-12 17:01:32 +00002408
2409 ; Demonstrate usage of llvm.va_copy and llvm.va_end
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002410 %aq = alloca sbyte*
Andrew Lenharth5305ea52005-06-22 20:38:11 +00002411 call void %<a href="#i_va_copy">llvm.va_copy</a>(sbyte** %aq, sbyte** %ap)
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002412 call void %<a href="#i_va_end">llvm.va_end</a>(sbyte** %aq)
Chris Lattnerfee11462004-02-12 17:01:32 +00002413
2414 ; Stop processing of arguments.
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002415 call void %<a href="#i_va_end">llvm.va_end</a>(sbyte** %ap)
Chris Lattnerfee11462004-02-12 17:01:32 +00002416 ret int %tmp
2417}
2418</pre>
Misha Brukman76307852003-11-08 01:05:38 +00002419</div>
Chris Lattner941515c2004-01-06 05:31:32 +00002420
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002421<!-- _______________________________________________________________________ -->
Chris Lattner941515c2004-01-06 05:31:32 +00002422<div class="doc_subsubsection">
2423 <a name="i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a>
2424</div>
2425
2426
Misha Brukman76307852003-11-08 01:05:38 +00002427<div class="doc_text">
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002428<h5>Syntax:</h5>
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002429<pre> declare void %llvm.va_start(&lt;va_list&gt;* &lt;arglist&gt;)<br></pre>
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002430<h5>Overview:</h5>
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002431<P>The '<tt>llvm.va_start</tt>' intrinsic initializes
2432<tt>*&lt;arglist&gt;</tt> for subsequent use by <tt><a
2433href="#i_va_arg">va_arg</a></tt>.</p>
2434
2435<h5>Arguments:</h5>
2436
2437<P>The argument is a pointer to a <tt>va_list</tt> element to initialize.</p>
2438
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002439<h5>Semantics:</h5>
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002440
2441<P>The '<tt>llvm.va_start</tt>' intrinsic works just like the <tt>va_start</tt>
2442macro available in C. In a target-dependent way, it initializes the
2443<tt>va_list</tt> element the argument points to, so that the next call to
2444<tt>va_arg</tt> will produce the first variable argument passed to the function.
2445Unlike the C <tt>va_start</tt> macro, this intrinsic does not need to know the
2446last argument of the function, the compiler can figure that out.</p>
2447
Misha Brukman76307852003-11-08 01:05:38 +00002448</div>
Chris Lattner941515c2004-01-06 05:31:32 +00002449
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002450<!-- _______________________________________________________________________ -->
Chris Lattner941515c2004-01-06 05:31:32 +00002451<div class="doc_subsubsection">
2452 <a name="i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a>
2453</div>
2454
Misha Brukman76307852003-11-08 01:05:38 +00002455<div class="doc_text">
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002456<h5>Syntax:</h5>
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002457<pre> declare void %llvm.va_end(&lt;va_list*&gt; &lt;arglist&gt;)<br></pre>
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002458<h5>Overview:</h5>
Chris Lattner48b383b02003-11-25 01:02:51 +00002459<p>The '<tt>llvm.va_end</tt>' intrinsic destroys <tt>&lt;arglist&gt;</tt>
2460which has been initialized previously with <tt><a href="#i_va_start">llvm.va_start</a></tt>
2461or <tt><a href="#i_va_copy">llvm.va_copy</a></tt>.</p>
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002462<h5>Arguments:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00002463<p>The argument is a <tt>va_list</tt> to destroy.</p>
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002464<h5>Semantics:</h5>
Misha Brukman76307852003-11-08 01:05:38 +00002465<p>The '<tt>llvm.va_end</tt>' intrinsic works just like the <tt>va_end</tt>
Chris Lattner48b383b02003-11-25 01:02:51 +00002466macro available in C. In a target-dependent way, it destroys the <tt>va_list</tt>.
2467Calls to <a href="#i_va_start"><tt>llvm.va_start</tt></a> and <a
2468 href="#i_va_copy"><tt>llvm.va_copy</tt></a> must be matched exactly
2469with calls to <tt>llvm.va_end</tt>.</p>
Misha Brukman76307852003-11-08 01:05:38 +00002470</div>
Chris Lattner941515c2004-01-06 05:31:32 +00002471
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002472<!-- _______________________________________________________________________ -->
Chris Lattner941515c2004-01-06 05:31:32 +00002473<div class="doc_subsubsection">
2474 <a name="i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a>
2475</div>
2476
Misha Brukman76307852003-11-08 01:05:38 +00002477<div class="doc_text">
Chris Lattner757528b0b2004-05-23 21:06:01 +00002478
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002479<h5>Syntax:</h5>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002480
2481<pre>
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002482 declare void %llvm.va_copy(&lt;va_list&gt;* &lt;destarglist&gt;,
Andrew Lenharth5305ea52005-06-22 20:38:11 +00002483 &lt;va_list&gt;* &lt;srcarglist&gt;)
Chris Lattner757528b0b2004-05-23 21:06:01 +00002484</pre>
2485
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002486<h5>Overview:</h5>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002487
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002488<p>The '<tt>llvm.va_copy</tt>' intrinsic copies the current argument position from
2489the source argument list to the destination argument list.</p>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002490
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002491<h5>Arguments:</h5>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002492
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002493<p>The first argument is a pointer to a <tt>va_list</tt> element to initialize.
Andrew Lenharth5305ea52005-06-22 20:38:11 +00002494The second argument is a pointer to a <tt>va_list</tt> element to copy from.</p>
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002495
Chris Lattner757528b0b2004-05-23 21:06:01 +00002496
Chris Lattnerbd64b4e2003-05-08 04:57:36 +00002497<h5>Semantics:</h5>
Chris Lattner757528b0b2004-05-23 21:06:01 +00002498
Andrew Lenharth5fb787c2005-06-18 18:28:17 +00002499<p>The '<tt>llvm.va_copy</tt>' intrinsic works just like the <tt>va_copy</tt> macro
2500available in C. In a target-dependent way, it copies the source
2501<tt>va_list</tt> element into the destination list. This intrinsic is necessary
2502because the <tt><a href="i_va_begin">llvm.va_begin</a></tt> intrinsic may be
Chris Lattner757528b0b2004-05-23 21:06:01 +00002503arbitrarily complex and require memory allocation, for example.</p>
2504
Misha Brukman76307852003-11-08 01:05:38 +00002505</div>
Chris Lattner941515c2004-01-06 05:31:32 +00002506
Chris Lattnerfee11462004-02-12 17:01:32 +00002507<!-- ======================================================================= -->
2508<div class="doc_subsection">
Chris Lattner757528b0b2004-05-23 21:06:01 +00002509 <a name="int_gc">Accurate Garbage Collection Intrinsics</a>
2510</div>
2511
2512<div class="doc_text">
2513
2514<p>
2515LLVM support for <a href="GarbageCollection.html">Accurate Garbage
2516Collection</a> requires the implementation and generation of these intrinsics.
2517These intrinsics allow identification of <a href="#i_gcroot">GC roots on the
2518stack</a>, as well as garbage collector implementations that require <a
2519href="#i_gcread">read</a> and <a href="#i_gcwrite">write</a> barriers.
2520Front-ends for type-safe garbage collected languages should generate these
2521intrinsics to make use of the LLVM garbage collectors. For more details, see <a
2522href="GarbageCollection.html">Accurate Garbage Collection with LLVM</a>.
2523</p>
2524</div>
2525
2526<!-- _______________________________________________________________________ -->
2527<div class="doc_subsubsection">
2528 <a name="i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a>
2529</div>
2530
2531<div class="doc_text">
2532
2533<h5>Syntax:</h5>
2534
2535<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002536 declare void %llvm.gcroot(&lt;ty&gt;** %ptrloc, &lt;ty2&gt;* %metadata)
Chris Lattner757528b0b2004-05-23 21:06:01 +00002537</pre>
2538
2539<h5>Overview:</h5>
2540
John Criswelldfe6a862004-12-10 15:51:16 +00002541<p>The '<tt>llvm.gcroot</tt>' intrinsic declares the existence of a GC root to
Chris Lattner757528b0b2004-05-23 21:06:01 +00002542the code generator, and allows some metadata to be associated with it.</p>
2543
2544<h5>Arguments:</h5>
2545
2546<p>The first argument specifies the address of a stack object that contains the
2547root pointer. The second pointer (which must be either a constant or a global
2548value address) contains the meta-data to be associated with the root.</p>
2549
2550<h5>Semantics:</h5>
2551
2552<p>At runtime, a call to this intrinsics stores a null pointer into the "ptrloc"
2553location. At compile-time, the code generator generates information to allow
2554the runtime to find the pointer at GC safe points.
2555</p>
2556
2557</div>
2558
2559
2560<!-- _______________________________________________________________________ -->
2561<div class="doc_subsubsection">
2562 <a name="i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a>
2563</div>
2564
2565<div class="doc_text">
2566
2567<h5>Syntax:</h5>
2568
2569<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002570 declare sbyte* %llvm.gcread(sbyte** %Ptr)
Chris Lattner757528b0b2004-05-23 21:06:01 +00002571</pre>
2572
2573<h5>Overview:</h5>
2574
2575<p>The '<tt>llvm.gcread</tt>' intrinsic identifies reads of references from heap
2576locations, allowing garbage collector implementations that require read
2577barriers.</p>
2578
2579<h5>Arguments:</h5>
2580
2581<p>The argument is the address to read from, which should be an address
2582allocated from the garbage collector.</p>
2583
2584<h5>Semantics:</h5>
2585
2586<p>The '<tt>llvm.gcread</tt>' intrinsic has the same semantics as a load
2587instruction, but may be replaced with substantially more complex code by the
2588garbage collector runtime, as needed.</p>
2589
2590</div>
2591
2592
2593<!-- _______________________________________________________________________ -->
2594<div class="doc_subsubsection">
2595 <a name="i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a>
2596</div>
2597
2598<div class="doc_text">
2599
2600<h5>Syntax:</h5>
2601
2602<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002603 declare void %llvm.gcwrite(sbyte* %P1, sbyte** %P2)
Chris Lattner757528b0b2004-05-23 21:06:01 +00002604</pre>
2605
2606<h5>Overview:</h5>
2607
2608<p>The '<tt>llvm.gcwrite</tt>' intrinsic identifies writes of references to heap
2609locations, allowing garbage collector implementations that require write
2610barriers (such as generational or reference counting collectors).</p>
2611
2612<h5>Arguments:</h5>
2613
2614<p>The first argument is the reference to store, and the second is the heap
2615location to store to.</p>
2616
2617<h5>Semantics:</h5>
2618
2619<p>The '<tt>llvm.gcwrite</tt>' intrinsic has the same semantics as a store
2620instruction, but may be replaced with substantially more complex code by the
2621garbage collector runtime, as needed.</p>
2622
2623</div>
2624
2625
2626
2627<!-- ======================================================================= -->
2628<div class="doc_subsection">
Chris Lattner3649c3a2004-02-14 04:08:35 +00002629 <a name="int_codegen">Code Generator Intrinsics</a>
2630</div>
2631
2632<div class="doc_text">
2633<p>
2634These intrinsics are provided by LLVM to expose special features that may only
2635be implemented with code generator support.
2636</p>
2637
2638</div>
2639
2640<!-- _______________________________________________________________________ -->
2641<div class="doc_subsubsection">
2642 <a name="i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a>
2643</div>
2644
2645<div class="doc_text">
2646
2647<h5>Syntax:</h5>
2648<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002649 declare void* %llvm.returnaddress(uint &lt;level&gt;)
Chris Lattner3649c3a2004-02-14 04:08:35 +00002650</pre>
2651
2652<h5>Overview:</h5>
2653
2654<p>
2655The '<tt>llvm.returnaddress</tt>' intrinsic returns a target-specific value
2656indicating the return address of the current function or one of its callers.
2657</p>
2658
2659<h5>Arguments:</h5>
2660
2661<p>
2662The argument to this intrinsic indicates which function to return the address
2663for. Zero indicates the calling function, one indicates its caller, etc. The
2664argument is <b>required</b> to be a constant integer value.
2665</p>
2666
2667<h5>Semantics:</h5>
2668
2669<p>
2670The '<tt>llvm.returnaddress</tt>' intrinsic either returns a pointer indicating
2671the return address of the specified call frame, or zero if it cannot be
2672identified. The value returned by this intrinsic is likely to be incorrect or 0
2673for arguments other than zero, so it should only be used for debugging purposes.
2674</p>
2675
2676<p>
2677Note that calling this intrinsic does not prevent function inlining or other
Chris Lattner2e6eb5f2005-03-07 20:30:51 +00002678aggressive transformations, so the value returned may not be that of the obvious
Chris Lattner3649c3a2004-02-14 04:08:35 +00002679source-language caller.
2680</p>
2681</div>
2682
2683
2684<!-- _______________________________________________________________________ -->
2685<div class="doc_subsubsection">
2686 <a name="i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a>
2687</div>
2688
2689<div class="doc_text">
2690
2691<h5>Syntax:</h5>
2692<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002693 declare void* %llvm.frameaddress(uint &lt;level&gt;)
Chris Lattner3649c3a2004-02-14 04:08:35 +00002694</pre>
2695
2696<h5>Overview:</h5>
2697
2698<p>
2699The '<tt>llvm.frameaddress</tt>' intrinsic returns the target-specific frame
2700pointer value for the specified stack frame.
2701</p>
2702
2703<h5>Arguments:</h5>
2704
2705<p>
2706The argument to this intrinsic indicates which function to return the frame
2707pointer for. Zero indicates the calling function, one indicates its caller,
2708etc. The argument is <b>required</b> to be a constant integer value.
2709</p>
2710
2711<h5>Semantics:</h5>
2712
2713<p>
2714The '<tt>llvm.frameaddress</tt>' intrinsic either returns a pointer indicating
2715the frame address of the specified call frame, or zero if it cannot be
2716identified. The value returned by this intrinsic is likely to be incorrect or 0
2717for arguments other than zero, so it should only be used for debugging purposes.
2718</p>
2719
2720<p>
2721Note that calling this intrinsic does not prevent function inlining or other
Chris Lattner2e6eb5f2005-03-07 20:30:51 +00002722aggressive transformations, so the value returned may not be that of the obvious
Chris Lattner3649c3a2004-02-14 04:08:35 +00002723source-language caller.
2724</p>
2725</div>
2726
Chris Lattnerc8a2c222005-02-28 19:24:19 +00002727<!-- _______________________________________________________________________ -->
2728<div class="doc_subsubsection">
2729 <a name="i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a>
2730</div>
2731
2732<div class="doc_text">
2733
2734<h5>Syntax:</h5>
2735<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002736 declare void %llvm.prefetch(sbyte * &lt;address&gt;,
2737 uint &lt;rw&gt;, uint &lt;locality&gt;)
Chris Lattnerc8a2c222005-02-28 19:24:19 +00002738</pre>
2739
2740<h5>Overview:</h5>
2741
2742
2743<p>
2744The '<tt>llvm.prefetch</tt>' intrinsic is a hint to the code generator to insert
John Criswell88190562005-05-16 16:17:45 +00002745a prefetch instruction if supported; otherwise, it is a noop. Prefetches have
2746no
2747effect on the behavior of the program but can change its performance
Chris Lattnerff851072005-02-28 19:47:14 +00002748characteristics.
Chris Lattnerc8a2c222005-02-28 19:24:19 +00002749</p>
2750
2751<h5>Arguments:</h5>
2752
2753<p>
2754<tt>address</tt> is the address to be prefetched, <tt>rw</tt> is the specifier
2755determining if the fetch should be for a read (0) or write (1), and
2756<tt>locality</tt> is a temporal locality specifier ranging from (0) - no
Chris Lattnerd3e641c2005-03-07 20:31:38 +00002757locality, to (3) - extremely local keep in cache. The <tt>rw</tt> and
Chris Lattnerc8a2c222005-02-28 19:24:19 +00002758<tt>locality</tt> arguments must be constant integers.
2759</p>
2760
2761<h5>Semantics:</h5>
2762
2763<p>
2764This intrinsic does not modify the behavior of the program. In particular,
2765prefetches cannot trap and do not produce a value. On targets that support this
2766intrinsic, the prefetch can provide hints to the processor cache for better
2767performance.
2768</p>
2769
2770</div>
2771
Andrew Lenharthb4427912005-03-28 20:05:49 +00002772<!-- _______________________________________________________________________ -->
2773<div class="doc_subsubsection">
2774 <a name="i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a>
2775</div>
2776
2777<div class="doc_text">
2778
2779<h5>Syntax:</h5>
2780<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002781 declare void %llvm.pcmarker( uint &lt;id&gt; )
Andrew Lenharthb4427912005-03-28 20:05:49 +00002782</pre>
2783
2784<h5>Overview:</h5>
2785
2786
2787<p>
John Criswell88190562005-05-16 16:17:45 +00002788The '<tt>llvm.pcmarker</tt>' intrinsic is a method to export a Program Counter
2789(PC) in a region of
Andrew Lenharthb4427912005-03-28 20:05:49 +00002790code to simulators and other tools. The method is target specific, but it is
2791expected that the marker will use exported symbols to transmit the PC of the marker.
2792The marker makes no guaranties that it will remain with any specific instruction
2793after optimizations. It is possible that the presense of a marker will inhibit
2794optimizations. The intended use is to be inserted after optmizations to allow
John Criswell88190562005-05-16 16:17:45 +00002795correlations of simulation runs.
Andrew Lenharthb4427912005-03-28 20:05:49 +00002796</p>
2797
2798<h5>Arguments:</h5>
2799
2800<p>
2801<tt>id</tt> is a numerical id identifying the marker.
2802</p>
2803
2804<h5>Semantics:</h5>
2805
2806<p>
2807This intrinsic does not modify the behavior of the program. Backends that do not
2808support this intrinisic may ignore it.
2809</p>
2810
2811</div>
2812
Chris Lattnerc8a2c222005-02-28 19:24:19 +00002813
John Criswellaa1c3c12004-04-09 16:43:20 +00002814<!-- ======================================================================= -->
2815<div class="doc_subsection">
2816 <a name="int_os">Operating System Intrinsics</a>
2817</div>
2818
2819<div class="doc_text">
2820<p>
2821These intrinsics are provided by LLVM to support the implementation of
2822operating system level code.
2823</p>
2824
2825</div>
John Criswella4501222004-04-12 15:02:16 +00002826
John Criswell508b93c2004-04-09 15:23:37 +00002827<!-- _______________________________________________________________________ -->
2828<div class="doc_subsubsection">
2829 <a name="i_readport">'<tt>llvm.readport</tt>' Intrinsic</a>
2830</div>
2831
2832<div class="doc_text">
2833
2834<h5>Syntax:</h5>
2835<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002836 declare &lt;integer type&gt; %llvm.readport (&lt;integer type&gt; &lt;address&gt;)
John Criswell508b93c2004-04-09 15:23:37 +00002837</pre>
2838
2839<h5>Overview:</h5>
2840
2841<p>
John Criswellaa1c3c12004-04-09 16:43:20 +00002842The '<tt>llvm.readport</tt>' intrinsic reads data from the specified hardware
2843I/O port.
John Criswell508b93c2004-04-09 15:23:37 +00002844</p>
2845
2846<h5>Arguments:</h5>
2847
2848<p>
John Criswellaa1c3c12004-04-09 16:43:20 +00002849The argument to this intrinsic indicates the hardware I/O address from which
2850to read the data. The address is in the hardware I/O address namespace (as
2851opposed to being a memory location for memory mapped I/O).
John Criswell508b93c2004-04-09 15:23:37 +00002852</p>
2853
2854<h5>Semantics:</h5>
2855
2856<p>
John Criswellaa1c3c12004-04-09 16:43:20 +00002857The '<tt>llvm.readport</tt>' intrinsic reads data from the hardware I/O port
2858specified by <i>address</i> and returns the value. The address and return
2859value must be integers, but the size is dependent upon the platform upon which
2860the program is code generated. For example, on x86, the address must be an
Misha Brukman36c6bc12005-04-22 18:02:52 +00002861unsigned 16-bit value, and the return value must be 8, 16, or 32 bits.
John Criswell508b93c2004-04-09 15:23:37 +00002862</p>
2863
2864</div>
2865
2866<!-- _______________________________________________________________________ -->
2867<div class="doc_subsubsection">
2868 <a name="i_writeport">'<tt>llvm.writeport</tt>' Intrinsic</a>
2869</div>
2870
2871<div class="doc_text">
2872
2873<h5>Syntax:</h5>
2874<pre>
Chris Lattner74d3f822004-12-09 17:30:23 +00002875 call void (&lt;integer type&gt;, &lt;integer type&gt;)*
2876 %llvm.writeport (&lt;integer type&gt; &lt;value&gt;,
2877 &lt;integer type&gt; &lt;address&gt;)
John Criswell508b93c2004-04-09 15:23:37 +00002878</pre>
2879
2880<h5>Overview:</h5>
2881
2882<p>
John Criswellaa1c3c12004-04-09 16:43:20 +00002883The '<tt>llvm.writeport</tt>' intrinsic writes data to the specified hardware
2884I/O port.
John Criswell508b93c2004-04-09 15:23:37 +00002885</p>
2886
2887<h5>Arguments:</h5>
2888
2889<p>
John Criswell7a576472004-04-12 16:33:19 +00002890The first argument is the value to write to the I/O port.
John Criswell508b93c2004-04-09 15:23:37 +00002891</p>
2892
2893<p>
John Criswell7a576472004-04-12 16:33:19 +00002894The second argument indicates the hardware I/O address to which data should be
2895written. The address is in the hardware I/O address namespace (as opposed to
2896being a memory location for memory mapped I/O).
John Criswell508b93c2004-04-09 15:23:37 +00002897</p>
2898
2899<h5>Semantics:</h5>
2900
2901<p>
2902The '<tt>llvm.writeport</tt>' intrinsic writes <i>value</i> to the I/O port
2903specified by <i>address</i>. The address and value must be integers, but the
2904size is dependent upon the platform upon which the program is code generated.
Misha Brukman36c6bc12005-04-22 18:02:52 +00002905For example, on x86, the address must be an unsigned 16-bit value, and the
John Criswellaa1c3c12004-04-09 16:43:20 +00002906value written must be 8, 16, or 32 bits in length.
John Criswell508b93c2004-04-09 15:23:37 +00002907</p>
2908
2909</div>
Chris Lattner3649c3a2004-02-14 04:08:35 +00002910
John Criswella4501222004-04-12 15:02:16 +00002911<!-- _______________________________________________________________________ -->
2912<div class="doc_subsubsection">
2913 <a name="i_readio">'<tt>llvm.readio</tt>' Intrinsic</a>
2914</div>
2915
2916<div class="doc_text">
2917
2918<h5>Syntax:</h5>
2919<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002920 declare &lt;result&gt; %llvm.readio (&lt;ty&gt; * &lt;pointer&gt;)
John Criswella4501222004-04-12 15:02:16 +00002921</pre>
2922
2923<h5>Overview:</h5>
2924
2925<p>
2926The '<tt>llvm.readio</tt>' intrinsic reads data from a memory mapped I/O
2927address.
2928</p>
2929
2930<h5>Arguments:</h5>
2931
2932<p>
John Criswell7a576472004-04-12 16:33:19 +00002933The argument to this intrinsic is a pointer indicating the memory address from
2934which to read the data. The data must be a
2935<a href="#t_firstclass">first class</a> type.
John Criswella4501222004-04-12 15:02:16 +00002936</p>
2937
2938<h5>Semantics:</h5>
2939
2940<p>
2941The '<tt>llvm.readio</tt>' intrinsic reads data from a memory mapped I/O
John Criswell7a576472004-04-12 16:33:19 +00002942location specified by <i>pointer</i> and returns the value. The argument must
2943be a pointer, and the return value must be a
2944<a href="#t_firstclass">first class</a> type. However, certain architectures
Misha Brukman36c6bc12005-04-22 18:02:52 +00002945may not support I/O on all first class types. For example, 32-bit processors
John Criswell7a576472004-04-12 16:33:19 +00002946may only support I/O on data types that are 32 bits or less.
John Criswella4501222004-04-12 15:02:16 +00002947</p>
2948
2949<p>
John Criswell7a576472004-04-12 16:33:19 +00002950This intrinsic enforces an in-order memory model for llvm.readio and
2951llvm.writeio calls on machines that use dynamic scheduling. Dynamically
2952scheduled processors may execute loads and stores out of order, re-ordering at
2953run time accesses to memory mapped I/O registers. Using these intrinsics
2954ensures that accesses to memory mapped I/O registers occur in program order.
John Criswella4501222004-04-12 15:02:16 +00002955</p>
2956
2957</div>
2958
2959<!-- _______________________________________________________________________ -->
2960<div class="doc_subsubsection">
2961 <a name="i_writeio">'<tt>llvm.writeio</tt>' Intrinsic</a>
2962</div>
2963
2964<div class="doc_text">
2965
2966<h5>Syntax:</h5>
2967<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00002968 declare void %llvm.writeio (&lt;ty1&gt; &lt;value&gt;, &lt;ty2&gt; * &lt;pointer&gt;)
John Criswella4501222004-04-12 15:02:16 +00002969</pre>
2970
2971<h5>Overview:</h5>
2972
2973<p>
2974The '<tt>llvm.writeio</tt>' intrinsic writes data to the specified memory
2975mapped I/O address.
2976</p>
2977
2978<h5>Arguments:</h5>
2979
2980<p>
John Criswell7a576472004-04-12 16:33:19 +00002981The first argument is the value to write to the memory mapped I/O location.
2982The second argument is a pointer indicating the memory address to which the
2983data should be written.
John Criswella4501222004-04-12 15:02:16 +00002984</p>
2985
2986<h5>Semantics:</h5>
2987
2988<p>
2989The '<tt>llvm.writeio</tt>' intrinsic writes <i>value</i> to the memory mapped
John Criswell7a576472004-04-12 16:33:19 +00002990I/O address specified by <i>pointer</i>. The value must be a
2991<a href="#t_firstclass">first class</a> type. However, certain architectures
Misha Brukman36c6bc12005-04-22 18:02:52 +00002992may not support I/O on all first class types. For example, 32-bit processors
John Criswell7a576472004-04-12 16:33:19 +00002993may only support I/O on data types that are 32 bits or less.
John Criswella4501222004-04-12 15:02:16 +00002994</p>
2995
2996<p>
John Criswell7a576472004-04-12 16:33:19 +00002997This intrinsic enforces an in-order memory model for llvm.readio and
2998llvm.writeio calls on machines that use dynamic scheduling. Dynamically
2999scheduled processors may execute loads and stores out of order, re-ordering at
3000run time accesses to memory mapped I/O registers. Using these intrinsics
3001ensures that accesses to memory mapped I/O registers occur in program order.
John Criswella4501222004-04-12 15:02:16 +00003002</p>
3003
3004</div>
3005
Chris Lattner3649c3a2004-02-14 04:08:35 +00003006<!-- ======================================================================= -->
3007<div class="doc_subsection">
Chris Lattnerfee11462004-02-12 17:01:32 +00003008 <a name="int_libc">Standard C Library Intrinsics</a>
3009</div>
3010
3011<div class="doc_text">
3012<p>
Chris Lattner3649c3a2004-02-14 04:08:35 +00003013LLVM provides intrinsics for a few important standard C library functions.
3014These intrinsics allow source-language front-ends to pass information about the
3015alignment of the pointer arguments to the code generator, providing opportunity
3016for more efficient code generation.
Chris Lattnerfee11462004-02-12 17:01:32 +00003017</p>
3018
3019</div>
3020
3021<!-- _______________________________________________________________________ -->
3022<div class="doc_subsubsection">
3023 <a name="i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a>
3024</div>
3025
3026<div class="doc_text">
3027
3028<h5>Syntax:</h5>
3029<pre>
Reid Spencercf669d82005-04-26 20:41:16 +00003030 declare void %llvm.memcpy(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
3031 uint &lt;len&gt;, uint &lt;align&gt;)
Chris Lattnerfee11462004-02-12 17:01:32 +00003032</pre>
3033
3034<h5>Overview:</h5>
3035
3036<p>
3037The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source
3038location to the destination location.
3039</p>
3040
3041<p>
3042Note that, unlike the standard libc function, the <tt>llvm.memcpy</tt> intrinsic
3043does not return a value, and takes an extra alignment argument.
3044</p>
3045
3046<h5>Arguments:</h5>
3047
3048<p>
3049The first argument is a pointer to the destination, the second is a pointer to
3050the source. The third argument is an (arbitrarily sized) integer argument
3051specifying the number of bytes to copy, and the fourth argument is the alignment
3052of the source and destination locations.
3053</p>
3054
Chris Lattner4c67c482004-02-12 21:18:15 +00003055<p>
3056If the call to this intrinisic has an alignment value that is not 0 or 1, then
3057the caller guarantees that the size of the copy is a multiple of the alignment
3058and that both the source and destination pointers are aligned to that boundary.
3059</p>
3060
Chris Lattnerfee11462004-02-12 17:01:32 +00003061<h5>Semantics:</h5>
3062
3063<p>
3064The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source
3065location to the destination location, which are not allowed to overlap. It
3066copies "len" bytes of memory over. If the argument is known to be aligned to
3067some boundary, this can be specified as the fourth argument, otherwise it should
3068be set to 0 or 1.
3069</p>
3070</div>
3071
3072
Chris Lattnerf30152e2004-02-12 18:10:10 +00003073<!-- _______________________________________________________________________ -->
3074<div class="doc_subsubsection">
3075 <a name="i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a>
3076</div>
3077
3078<div class="doc_text">
3079
3080<h5>Syntax:</h5>
3081<pre>
Reid Spencercf669d82005-04-26 20:41:16 +00003082 declare void %llvm.memmove(sbyte* &lt;dest&gt;, sbyte* &lt;src&gt;,
3083 uint &lt;len&gt;, uint &lt;align&gt;)
Chris Lattnerf30152e2004-02-12 18:10:10 +00003084</pre>
3085
3086<h5>Overview:</h5>
3087
3088<p>
3089The '<tt>llvm.memmove</tt>' intrinsic moves a block of memory from the source
3090location to the destination location. It is similar to the '<tt>llvm.memcpy</tt>'
3091intrinsic but allows the two memory locations to overlap.
3092</p>
3093
3094<p>
3095Note that, unlike the standard libc function, the <tt>llvm.memmove</tt> intrinsic
3096does not return a value, and takes an extra alignment argument.
3097</p>
3098
3099<h5>Arguments:</h5>
3100
3101<p>
3102The first argument is a pointer to the destination, the second is a pointer to
3103the source. The third argument is an (arbitrarily sized) integer argument
3104specifying the number of bytes to copy, and the fourth argument is the alignment
3105of the source and destination locations.
3106</p>
3107
Chris Lattner4c67c482004-02-12 21:18:15 +00003108<p>
3109If the call to this intrinisic has an alignment value that is not 0 or 1, then
3110the caller guarantees that the size of the copy is a multiple of the alignment
3111and that both the source and destination pointers are aligned to that boundary.
3112</p>
3113
Chris Lattnerf30152e2004-02-12 18:10:10 +00003114<h5>Semantics:</h5>
3115
3116<p>
3117The '<tt>llvm.memmove</tt>' intrinsic copies a block of memory from the source
3118location to the destination location, which may overlap. It
3119copies "len" bytes of memory over. If the argument is known to be aligned to
3120some boundary, this can be specified as the fourth argument, otherwise it should
3121be set to 0 or 1.
3122</p>
3123</div>
3124
Chris Lattner941515c2004-01-06 05:31:32 +00003125
Chris Lattner3649c3a2004-02-14 04:08:35 +00003126<!-- _______________________________________________________________________ -->
3127<div class="doc_subsubsection">
3128 <a name="i_memset">'<tt>llvm.memset</tt>' Intrinsic</a>
3129</div>
3130
3131<div class="doc_text">
3132
3133<h5>Syntax:</h5>
3134<pre>
Reid Spencercf669d82005-04-26 20:41:16 +00003135 declare void %llvm.memset(sbyte* &lt;dest&gt;, ubyte &lt;val&gt;,
3136 uint &lt;len&gt;, uint &lt;align&gt;)
Chris Lattner3649c3a2004-02-14 04:08:35 +00003137</pre>
3138
3139<h5>Overview:</h5>
3140
3141<p>
3142The '<tt>llvm.memset</tt>' intrinsic fills a block of memory with a particular
3143byte value.
3144</p>
3145
3146<p>
3147Note that, unlike the standard libc function, the <tt>llvm.memset</tt> intrinsic
3148does not return a value, and takes an extra alignment argument.
3149</p>
3150
3151<h5>Arguments:</h5>
3152
3153<p>
3154The first argument is a pointer to the destination to fill, the second is the
3155byte value to fill it with, the third argument is an (arbitrarily sized) integer
3156argument specifying the number of bytes to fill, and the fourth argument is the
3157known alignment of destination location.
3158</p>
3159
3160<p>
3161If the call to this intrinisic has an alignment value that is not 0 or 1, then
3162the caller guarantees that the size of the copy is a multiple of the alignment
3163and that the destination pointer is aligned to that boundary.
3164</p>
3165
3166<h5>Semantics:</h5>
3167
3168<p>
3169The '<tt>llvm.memset</tt>' intrinsic fills "len" bytes of memory starting at the
3170destination location. If the argument is known to be aligned to some boundary,
3171this can be specified as the fourth argument, otherwise it should be set to 0 or
31721.
3173</p>
3174</div>
3175
3176
Chris Lattner3b4f4372004-06-11 02:28:03 +00003177<!-- _______________________________________________________________________ -->
3178<div class="doc_subsubsection">
Alkis Evlogimenos0fa39232004-06-13 01:16:15 +00003179 <a name="i_isunordered">'<tt>llvm.isunordered</tt>' Intrinsic</a>
3180</div>
3181
3182<div class="doc_text">
3183
3184<h5>Syntax:</h5>
3185<pre>
Reid Spencer7821d062005-04-26 20:50:44 +00003186 declare bool %llvm.isunordered(&lt;float or double&gt; Val1, &lt;float or double&gt; Val2)
Alkis Evlogimenos0fa39232004-06-13 01:16:15 +00003187</pre>
3188
3189<h5>Overview:</h5>
3190
3191<p>
3192The '<tt>llvm.isunordered</tt>' intrinsic returns true if either or both of the
3193specified floating point values is a NAN.
3194</p>
3195
3196<h5>Arguments:</h5>
3197
3198<p>
3199The arguments are floating point numbers of the same type.
3200</p>
3201
3202<h5>Semantics:</h5>
3203
3204<p>
3205If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise
3206false.
3207</p>
3208</div>
3209
3210
Chris Lattner8a8f2e52005-07-21 01:29:16 +00003211<!-- _______________________________________________________________________ -->
3212<div class="doc_subsubsection">
3213 <a name="i_sqrt">'<tt>llvm.sqrt</tt>' Intrinsic</a>
3214</div>
3215
3216<div class="doc_text">
3217
3218<h5>Syntax:</h5>
3219<pre>
3220 declare &lt;float or double&gt; %llvm.sqrt(&lt;float or double&gt; Val)
3221</pre>
3222
3223<h5>Overview:</h5>
3224
3225<p>
3226The '<tt>llvm.sqrt</tt>' intrinsic returns the sqrt of the specified operand,
3227returning the same value as the libm '<tt>sqrt</tt>' function would. Unlike
3228<tt>sqrt</tt> in libm, however, <tt>llvm.sqrt</tt> has undefined behavior for
3229negative numbers (which allows for better optimization).
3230</p>
3231
3232<h5>Arguments:</h5>
3233
3234<p>
3235The argument and return value are floating point numbers of the same type.
3236</p>
3237
3238<h5>Semantics:</h5>
3239
3240<p>
3241This function returns the sqrt of the specified operand if it is a positive
3242floating point number.
3243</p>
3244</div>
3245
Andrew Lenharth1d463522005-05-03 18:01:48 +00003246<!-- ======================================================================= -->
3247<div class="doc_subsection">
3248 <a name="int_count">Bit Counting Intrinsics</a>
3249</div>
3250
3251<div class="doc_text">
3252<p>
3253LLVM provides intrinsics for a few important bit counting operations.
3254These allow efficient code generation for some algorithms.
3255</p>
3256
3257</div>
3258
3259<!-- _______________________________________________________________________ -->
3260<div class="doc_subsubsection">
3261 <a name="int_ctpop">'<tt>llvm.ctpop</tt>' Intrinsic</a>
3262</div>
3263
3264<div class="doc_text">
3265
3266<h5>Syntax:</h5>
3267<pre>
3268 declare int %llvm.ctpop(int &lt;src&gt;)
3269
3270</pre>
3271
3272<h5>Overview:</h5>
3273
3274<p>
3275The '<tt>llvm.ctpop</tt>' intrinsic counts the number of ones in a variable.
3276</p>
3277
3278<h5>Arguments:</h5>
3279
3280<p>
Chris Lattner573f64e2005-05-07 01:46:40 +00003281The only argument is the value to be counted. The argument may be of any
3282integer type. The return type must match the argument type.
Andrew Lenharth1d463522005-05-03 18:01:48 +00003283</p>
3284
3285<h5>Semantics:</h5>
3286
3287<p>
3288The '<tt>llvm.ctpop</tt>' intrinsic counts the 1's in a variable.
3289</p>
3290</div>
3291
3292<!-- _______________________________________________________________________ -->
3293<div class="doc_subsubsection">
Andrew Lenharth1d463522005-05-03 18:01:48 +00003294 <a name="int_ctlz">'<tt>llvm.ctlz</tt>' Intrinsic</a>
3295</div>
3296
3297<div class="doc_text">
3298
3299<h5>Syntax:</h5>
3300<pre>
3301 declare int %llvm.ctlz(int &lt;src&gt;)
3302
3303</pre>
3304
3305<h5>Overview:</h5>
3306
3307<p>
Chris Lattner573f64e2005-05-07 01:46:40 +00003308The '<tt>llvm.ctlz</tt>' intrinsic counts the number of leading zeros in a
3309variable.
Andrew Lenharth1d463522005-05-03 18:01:48 +00003310</p>
3311
3312<h5>Arguments:</h5>
3313
3314<p>
Chris Lattner573f64e2005-05-07 01:46:40 +00003315The only argument is the value to be counted. The argument may be of any
3316integer type. The return type must match the argument type.
Andrew Lenharth1d463522005-05-03 18:01:48 +00003317</p>
3318
3319<h5>Semantics:</h5>
3320
3321<p>
Chris Lattnerefa20fa2005-05-15 19:39:26 +00003322The '<tt>llvm.ctlz</tt>' intrinsic counts the leading (most significant) zeros
3323in a variable. If the src == 0 then the result is the size in bits of the type
3324of src. For example, <tt>llvm.cttz(int 2) = 30</tt>.
Andrew Lenharth1d463522005-05-03 18:01:48 +00003325</p>
3326</div>
Chris Lattner3b4f4372004-06-11 02:28:03 +00003327
3328
Chris Lattnerefa20fa2005-05-15 19:39:26 +00003329
3330<!-- _______________________________________________________________________ -->
3331<div class="doc_subsubsection">
3332 <a name="int_cttz">'<tt>llvm.cttz</tt>' Intrinsic</a>
3333</div>
3334
3335<div class="doc_text">
3336
3337<h5>Syntax:</h5>
3338<pre>
3339 declare int %llvm.cttz(int &lt;src&gt;)
3340
3341</pre>
3342
3343<h5>Overview:</h5>
3344
3345<p>
3346The '<tt>llvm.cttz</tt>' intrinsic counts the number of trailing zeros.
3347</p>
3348
3349<h5>Arguments:</h5>
3350
3351<p>
3352The only argument is the value to be counted. The argument may be of any
3353integer type. The return type must match the argument type.
3354</p>
3355
3356<h5>Semantics:</h5>
3357
3358<p>
3359The '<tt>llvm.cttz</tt>' intrinsic counts the trailing (least significant) zeros
3360in a variable. If the src == 0 then the result is the size in bits of the type
3361of src. For example, <tt>llvm.cttz(2) = 1</tt>.
3362</p>
3363</div>
3364
Chris Lattner941515c2004-01-06 05:31:32 +00003365<!-- ======================================================================= -->
3366<div class="doc_subsection">
3367 <a name="int_debugger">Debugger Intrinsics</a>
3368</div>
3369
3370<div class="doc_text">
3371<p>
3372The LLVM debugger intrinsics (which all start with <tt>llvm.dbg.</tt> prefix),
3373are described in the <a
3374href="SourceLevelDebugging.html#format_common_intrinsics">LLVM Source Level
3375Debugging</a> document.
3376</p>
3377</div>
3378
3379
Chris Lattner2f7c9632001-06-06 20:29:01 +00003380<!-- *********************************************************************** -->
Chris Lattner2f7c9632001-06-06 20:29:01 +00003381<hr>
Misha Brukmanc501f552004-03-01 17:47:27 +00003382<address>
3383 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
3384 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
3385 <a href="http://validator.w3.org/check/referer"><img
3386 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
3387
3388 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
3389 <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
3390 Last modified: $Date$
3391</address>
Misha Brukman76307852003-11-08 01:05:38 +00003392</body>
3393</html>