blob: 3ebb1396f97df7130e6cbc7cd5c7937023921aa0 [file] [log] [blame]
Misha Brukmandaa4cb02004-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 Brukman9d0919f2003-11-08 01:05:38 +00003<html>
4<head>
5 <title>LLVM Assembly Language Reference Manual</title>
Reid Spencer3921c742004-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 Brukman9d0919f2003-11-08 01:05:38 +000010 <link rel="stylesheet" href="llvm.css" type="text/css">
11</head>
Chris Lattnerd7923912004-05-23 21:06:01 +000012
Misha Brukman9d0919f2003-11-08 01:05:38 +000013<body>
Chris Lattnerd7923912004-05-23 21:06:01 +000014
Chris Lattner261efe92003-11-25 01:02:51 +000015<div class="doc_title"> LLVM Language Reference Manual </div>
Chris Lattner00950542001-06-06 20:29:01 +000016<ol>
Misha Brukman9d0919f2003-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 Lattnerfa730212004-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 Lattnere5d947b2004-12-09 16:36:40 +000023 <li><a href="#linkage">Linkage Types</a></li>
Chris Lattnerbad10ee2005-05-06 22:57:40 +000024 <li><a href="#callingconv">Calling Conventions</a></li>
Chris Lattnerfa730212004-12-09 16:11:40 +000025 <li><a href="#globalvars">Global Variables</a></li>
Chris Lattner4e9aba72006-01-23 23:23:47 +000026 <li><a href="#functionstructure">Functions</a></li>
Reid Spencerca86e162006-12-31 07:07:53 +000027 <li><a href="#paramattrs">Parameter Attributes</a></li>
Chris Lattner4e9aba72006-01-23 23:23:47 +000028 <li><a href="#moduleasm">Module-Level Inline Assembly</a></li>
Chris Lattnerfa730212004-12-09 16:11:40 +000029 </ol>
30 </li>
Chris Lattner00950542001-06-06 20:29:01 +000031 <li><a href="#typesystem">Type System</a>
32 <ol>
Robert Bocchino7b81c752006-02-17 21:18:08 +000033 <li><a href="#t_primitive">Primitive Types</a>
Chris Lattner261efe92003-11-25 01:02:51 +000034 <ol>
Misha Brukman9d0919f2003-11-08 01:05:38 +000035 <li><a href="#t_classifications">Type Classifications</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000036 </ol>
37 </li>
Chris Lattner00950542001-06-06 20:29:01 +000038 <li><a href="#t_derived">Derived Types</a>
39 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000040 <li><a href="#t_array">Array Type</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000041 <li><a href="#t_function">Function Type</a></li>
42 <li><a href="#t_pointer">Pointer Type</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000043 <li><a href="#t_struct">Structure Type</a></li>
Andrew Lenharth75e10682006-12-08 17:13:00 +000044 <li><a href="#t_pstruct">Packed Structure Type</a></li>
Chris Lattnera58561b2004-08-12 19:12:28 +000045 <li><a href="#t_packed">Packed Type</a></li>
Chris Lattner69c11bb2005-04-25 17:34:15 +000046 <li><a href="#t_opaque">Opaque Type</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000047 </ol>
48 </li>
49 </ol>
50 </li>
Chris Lattnerfa730212004-12-09 16:11:40 +000051 <li><a href="#constants">Constants</a>
Chris Lattnerc3f59762004-12-09 17:30:23 +000052 <ol>
53 <li><a href="#simpleconstants">Simple Constants</a>
54 <li><a href="#aggregateconstants">Aggregate Constants</a>
55 <li><a href="#globalconstants">Global Variable and Function Addresses</a>
56 <li><a href="#undefvalues">Undefined Values</a>
57 <li><a href="#constantexprs">Constant Expressions</a>
58 </ol>
Chris Lattner261efe92003-11-25 01:02:51 +000059 </li>
Chris Lattnere87d6532006-01-25 23:47:57 +000060 <li><a href="#othervalues">Other Values</a>
61 <ol>
62 <li><a href="#inlineasm">Inline Assembler Expressions</a>
63 </ol>
64 </li>
Chris Lattner00950542001-06-06 20:29:01 +000065 <li><a href="#instref">Instruction Reference</a>
66 <ol>
67 <li><a href="#terminators">Terminator Instructions</a>
68 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000069 <li><a href="#i_ret">'<tt>ret</tt>' Instruction</a></li>
70 <li><a href="#i_br">'<tt>br</tt>' Instruction</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000071 <li><a href="#i_switch">'<tt>switch</tt>' Instruction</a></li>
72 <li><a href="#i_invoke">'<tt>invoke</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000073 <li><a href="#i_unwind">'<tt>unwind</tt>' Instruction</a></li>
Chris Lattner35eca582004-10-16 18:04:13 +000074 <li><a href="#i_unreachable">'<tt>unreachable</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000075 </ol>
76 </li>
Chris Lattner00950542001-06-06 20:29:01 +000077 <li><a href="#binaryops">Binary Operations</a>
78 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +000079 <li><a href="#i_add">'<tt>add</tt>' Instruction</a></li>
80 <li><a href="#i_sub">'<tt>sub</tt>' Instruction</a></li>
81 <li><a href="#i_mul">'<tt>mul</tt>' Instruction</a></li>
Reid Spencer1628cec2006-10-26 06:15:43 +000082 <li><a href="#i_udiv">'<tt>udiv</tt>' Instruction</a></li>
83 <li><a href="#i_sdiv">'<tt>sdiv</tt>' Instruction</a></li>
84 <li><a href="#i_fdiv">'<tt>fdiv</tt>' Instruction</a></li>
Reid Spencer0a783f72006-11-02 01:53:59 +000085 <li><a href="#i_urem">'<tt>urem</tt>' Instruction</a></li>
86 <li><a href="#i_srem">'<tt>srem</tt>' Instruction</a></li>
87 <li><a href="#i_frem">'<tt>frem</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000088 </ol>
89 </li>
Chris Lattner00950542001-06-06 20:29:01 +000090 <li><a href="#bitwiseops">Bitwise Binary Operations</a>
91 <ol>
Misha Brukman9d0919f2003-11-08 01:05:38 +000092 <li><a href="#i_and">'<tt>and</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000093 <li><a href="#i_or">'<tt>or</tt>' Instruction</a></li>
Misha Brukman9d0919f2003-11-08 01:05:38 +000094 <li><a href="#i_xor">'<tt>xor</tt>' Instruction</a></li>
95 <li><a href="#i_shl">'<tt>shl</tt>' Instruction</a></li>
Reid Spencer3822ff52006-11-08 06:47:33 +000096 <li><a href="#i_lshr">'<tt>lshr</tt>' Instruction</a></li>
97 <li><a href="#i_ashr">'<tt>ashr</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +000098 </ol>
99 </li>
Chris Lattner3df241e2006-04-08 23:07:04 +0000100 <li><a href="#vectorops">Vector Operations</a>
101 <ol>
102 <li><a href="#i_extractelement">'<tt>extractelement</tt>' Instruction</a></li>
103 <li><a href="#i_insertelement">'<tt>insertelement</tt>' Instruction</a></li>
104 <li><a href="#i_shufflevector">'<tt>shufflevector</tt>' Instruction</a></li>
Chris Lattner3df241e2006-04-08 23:07:04 +0000105 </ol>
106 </li>
Chris Lattner884a9702006-08-15 00:45:58 +0000107 <li><a href="#memoryops">Memory Access and Addressing Operations</a>
Chris Lattner00950542001-06-06 20:29:01 +0000108 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000109 <li><a href="#i_malloc">'<tt>malloc</tt>' Instruction</a></li>
110 <li><a href="#i_free">'<tt>free</tt>' Instruction</a></li>
111 <li><a href="#i_alloca">'<tt>alloca</tt>' Instruction</a></li>
Robert Bocchino7b81c752006-02-17 21:18:08 +0000112 <li><a href="#i_load">'<tt>load</tt>' Instruction</a></li>
113 <li><a href="#i_store">'<tt>store</tt>' Instruction</a></li>
114 <li><a href="#i_getelementptr">'<tt>getelementptr</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +0000115 </ol>
116 </li>
Reid Spencer2fd21e62006-11-08 01:18:52 +0000117 <li><a href="#convertops">Conversion Operations</a>
Reid Spencer9dee3ac2006-11-08 01:11:31 +0000118 <ol>
119 <li><a href="#i_trunc">'<tt>trunc .. to</tt>' Instruction</a></li>
120 <li><a href="#i_zext">'<tt>zext .. to</tt>' Instruction</a></li>
121 <li><a href="#i_sext">'<tt>sext .. to</tt>' Instruction</a></li>
122 <li><a href="#i_fptrunc">'<tt>fptrunc .. to</tt>' Instruction</a></li>
123 <li><a href="#i_fpext">'<tt>fpext .. to</tt>' Instruction</a></li>
Reid Spencerd4448792006-11-09 23:03:26 +0000124 <li><a href="#i_fptoui">'<tt>fptoui .. to</tt>' Instruction</a></li>
125 <li><a href="#i_fptosi">'<tt>fptosi .. to</tt>' Instruction</a></li>
126 <li><a href="#i_uitofp">'<tt>uitofp .. to</tt>' Instruction</a></li>
127 <li><a href="#i_sitofp">'<tt>sitofp .. to</tt>' Instruction</a></li>
Reid Spencer72679252006-11-11 21:00:47 +0000128 <li><a href="#i_ptrtoint">'<tt>ptrtoint .. to</tt>' Instruction</a></li>
129 <li><a href="#i_inttoptr">'<tt>inttoptr .. to</tt>' Instruction</a></li>
Reid Spencer5c0ef472006-11-11 23:08:07 +0000130 <li><a href="#i_bitcast">'<tt>bitcast .. to</tt>' Instruction</a></li>
Reid Spencer9dee3ac2006-11-08 01:11:31 +0000131 </ol>
Chris Lattner00950542001-06-06 20:29:01 +0000132 <li><a href="#otherops">Other Operations</a>
133 <ol>
Reid Spencerf3a70a62006-11-18 21:50:54 +0000134 <li><a href="#i_icmp">'<tt>icmp</tt>' Instruction</a></li>
135 <li><a href="#i_fcmp">'<tt>fcmp</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +0000136 <li><a href="#i_phi">'<tt>phi</tt>' Instruction</a></li>
Chris Lattnercc37aae2004-03-12 05:50:16 +0000137 <li><a href="#i_select">'<tt>select</tt>' Instruction</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +0000138 <li><a href="#i_call">'<tt>call</tt>' Instruction</a></li>
Chris Lattnerfb6977d2006-01-13 23:26:01 +0000139 <li><a href="#i_va_arg">'<tt>va_arg</tt>' Instruction</a></li>
Chris Lattner00950542001-06-06 20:29:01 +0000140 </ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000141 </li>
Chris Lattner00950542001-06-06 20:29:01 +0000142 </ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000143 </li>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +0000144 <li><a href="#intrinsics">Intrinsic Functions</a>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +0000145 <ol>
Chris Lattner261efe92003-11-25 01:02:51 +0000146 <li><a href="#int_varargs">Variable Argument Handling Intrinsics</a>
147 <ol>
148 <li><a href="#i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a></li>
149 <li><a href="#i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a></li>
150 <li><a href="#i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a></li>
151 </ol>
152 </li>
Chris Lattnerd7923912004-05-23 21:06:01 +0000153 <li><a href="#int_gc">Accurate Garbage Collection Intrinsics</a>
154 <ol>
155 <li><a href="#i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a></li>
156 <li><a href="#i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a></li>
157 <li><a href="#i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a></li>
158 </ol>
159 </li>
Chris Lattner10610642004-02-14 04:08:35 +0000160 <li><a href="#int_codegen">Code Generator Intrinsics</a>
161 <ol>
162 <li><a href="#i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a></li>
163 <li><a href="#i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a></li>
Chris Lattner57e1f392006-01-13 02:03:13 +0000164 <li><a href="#i_stacksave">'<tt>llvm.stacksave</tt>' Intrinsic</a></li>
165 <li><a href="#i_stackrestore">'<tt>llvm.stackrestore</tt>' Intrinsic</a></li>
Chris Lattner9a9d7ac2005-02-28 19:24:19 +0000166 <li><a href="#i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a></li>
Andrew Lenharth7f4ec3b2005-03-28 20:05:49 +0000167 <li><a href="#i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a></li>
Andrew Lenharth51b8d542005-11-11 16:47:30 +0000168 <li><a href="#i_readcyclecounter"><tt>llvm.readcyclecounter</tt>' Intrinsic</a></li>
John Criswell7123e272004-04-09 16:43:20 +0000169 </ol>
170 </li>
Chris Lattner33aec9e2004-02-12 17:01:32 +0000171 <li><a href="#int_libc">Standard C Library Intrinsics</a>
172 <ol>
Chris Lattner5b310c32006-03-03 00:07:20 +0000173 <li><a href="#i_memcpy">'<tt>llvm.memcpy.*</tt>' Intrinsic</a></li>
174 <li><a href="#i_memmove">'<tt>llvm.memmove.*</tt>' Intrinsic</a></li>
175 <li><a href="#i_memset">'<tt>llvm.memset.*</tt>' Intrinsic</a></li>
Chris Lattnerec6cb612006-01-16 22:38:59 +0000176 <li><a href="#i_isunordered">'<tt>llvm.isunordered.*</tt>' Intrinsic</a></li>
177 <li><a href="#i_sqrt">'<tt>llvm.sqrt.*</tt>' Intrinsic</a></li>
Chris Lattnerf4d252d2006-09-08 06:34:02 +0000178 <li><a href="#i_powi">'<tt>llvm.powi.*</tt>' Intrinsic</a></li>
Chris Lattner33aec9e2004-02-12 17:01:32 +0000179 </ol>
180 </li>
Nate Begeman7e36c472006-01-13 23:26:38 +0000181 <li><a href="#int_manip">Bit Manipulation Intrinsics</a>
Andrew Lenharthec370fd2005-05-03 18:01:48 +0000182 <ol>
Nate Begeman7e36c472006-01-13 23:26:38 +0000183 <li><a href="#i_bswap">'<tt>llvm.bswap.*</tt>' Intrinsics</a></li>
Chris Lattner8a886be2006-01-16 22:34:14 +0000184 <li><a href="#int_ctpop">'<tt>llvm.ctpop.*</tt>' Intrinsic </a></li>
185 <li><a href="#int_ctlz">'<tt>llvm.ctlz.*</tt>' Intrinsic </a></li>
186 <li><a href="#int_cttz">'<tt>llvm.cttz.*</tt>' Intrinsic </a></li>
Andrew Lenharthec370fd2005-05-03 18:01:48 +0000187 </ol>
188 </li>
Chris Lattnerd7923912004-05-23 21:06:01 +0000189 <li><a href="#int_debugger">Debugger intrinsics</a></li>
Chris Lattner261efe92003-11-25 01:02:51 +0000190 </ol>
191 </li>
Chris Lattner00950542001-06-06 20:29:01 +0000192</ol>
Chris Lattnerd7923912004-05-23 21:06:01 +0000193
194<div class="doc_author">
195 <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
196 and <a href="mailto:vadve@cs.uiuc.edu">Vikram Adve</a></p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000197</div>
Chris Lattnerd7923912004-05-23 21:06:01 +0000198
Chris Lattner00950542001-06-06 20:29:01 +0000199<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000200<div class="doc_section"> <a name="abstract">Abstract </a></div>
201<!-- *********************************************************************** -->
Chris Lattnerd7923912004-05-23 21:06:01 +0000202
Misha Brukman9d0919f2003-11-08 01:05:38 +0000203<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000204<p>This document is a reference manual for the LLVM assembly language.
205LLVM is an SSA based representation that provides type safety,
206low-level operations, flexibility, and the capability of representing
207'all' high-level languages cleanly. It is the common code
208representation used throughout all phases of the LLVM compilation
209strategy.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000210</div>
Chris Lattnerd7923912004-05-23 21:06:01 +0000211
Chris Lattner00950542001-06-06 20:29:01 +0000212<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000213<div class="doc_section"> <a name="introduction">Introduction</a> </div>
214<!-- *********************************************************************** -->
Chris Lattnerd7923912004-05-23 21:06:01 +0000215
Misha Brukman9d0919f2003-11-08 01:05:38 +0000216<div class="doc_text">
Chris Lattnerd7923912004-05-23 21:06:01 +0000217
Chris Lattner261efe92003-11-25 01:02:51 +0000218<p>The LLVM code representation is designed to be used in three
219different forms: as an in-memory compiler IR, as an on-disk bytecode
220representation (suitable for fast loading by a Just-In-Time compiler),
221and as a human readable assembly language representation. This allows
222LLVM to provide a powerful intermediate representation for efficient
223compiler transformations and analysis, while providing a natural means
224to debug and visualize the transformations. The three different forms
225of LLVM are all equivalent. This document describes the human readable
226representation and notation.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +0000227
John Criswellc1f786c2005-05-13 22:25:59 +0000228<p>The LLVM representation aims to be light-weight and low-level
Chris Lattner261efe92003-11-25 01:02:51 +0000229while being expressive, typed, and extensible at the same time. It
230aims to be a "universal IR" of sorts, by being at a low enough level
231that high-level ideas may be cleanly mapped to it (similar to how
232microprocessors are "universal IR's", allowing many source languages to
233be mapped to them). By providing type information, LLVM can be used as
234the target of optimizations: for example, through pointer analysis, it
235can be proven that a C automatic variable is never accessed outside of
236the current function... allowing it to be promoted to a simple SSA
237value instead of a memory location.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +0000238
Misha Brukman9d0919f2003-11-08 01:05:38 +0000239</div>
Chris Lattnerd7923912004-05-23 21:06:01 +0000240
Chris Lattner00950542001-06-06 20:29:01 +0000241<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000242<div class="doc_subsubsection"> <a name="wellformed">Well-Formedness</a> </div>
Chris Lattnerd7923912004-05-23 21:06:01 +0000243
Misha Brukman9d0919f2003-11-08 01:05:38 +0000244<div class="doc_text">
Chris Lattnerd7923912004-05-23 21:06:01 +0000245
Chris Lattner261efe92003-11-25 01:02:51 +0000246<p>It is important to note that this document describes 'well formed'
247LLVM assembly language. There is a difference between what the parser
248accepts and what is considered 'well formed'. For example, the
249following instruction is syntactically okay, but not well formed:</p>
Chris Lattnerd7923912004-05-23 21:06:01 +0000250
251<pre>
Reid Spencerca86e162006-12-31 07:07:53 +0000252 %x = <a href="#i_add">add</a> i32 1, %x
Chris Lattnerd7923912004-05-23 21:06:01 +0000253</pre>
254
Chris Lattner261efe92003-11-25 01:02:51 +0000255<p>...because the definition of <tt>%x</tt> does not dominate all of
256its uses. The LLVM infrastructure provides a verification pass that may
257be used to verify that an LLVM module is well formed. This pass is
John Criswellc1f786c2005-05-13 22:25:59 +0000258automatically run by the parser after parsing input assembly and by
Chris Lattner261efe92003-11-25 01:02:51 +0000259the optimizer before it outputs bytecode. The violations pointed out
260by the verifier pass indicate bugs in transformation passes or input to
261the parser.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +0000262
Chris Lattner261efe92003-11-25 01:02:51 +0000263<!-- Describe the typesetting conventions here. --> </div>
Chris Lattnerd7923912004-05-23 21:06:01 +0000264
Chris Lattner00950542001-06-06 20:29:01 +0000265<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000266<div class="doc_section"> <a name="identifiers">Identifiers</a> </div>
Chris Lattner00950542001-06-06 20:29:01 +0000267<!-- *********************************************************************** -->
Chris Lattnerd7923912004-05-23 21:06:01 +0000268
Misha Brukman9d0919f2003-11-08 01:05:38 +0000269<div class="doc_text">
Chris Lattnerd7923912004-05-23 21:06:01 +0000270
Chris Lattner261efe92003-11-25 01:02:51 +0000271<p>LLVM uses three different forms of identifiers, for different
272purposes:</p>
Chris Lattnerd7923912004-05-23 21:06:01 +0000273
Chris Lattner00950542001-06-06 20:29:01 +0000274<ol>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000275 <li>Named values are represented as a string of characters with a '%' prefix.
276 For example, %foo, %DivisionByZero, %a.really.long.identifier. The actual
277 regular expression used is '<tt>%[a-zA-Z$._][a-zA-Z$._0-9]*</tt>'.
278 Identifiers which require other characters in their names can be surrounded
279 with quotes. In this way, anything except a <tt>"</tt> character can be used
280 in a name.</li>
281
282 <li>Unnamed values are represented as an unsigned numeric value with a '%'
283 prefix. For example, %12, %2, %44.</li>
284
Reid Spencercc16dc32004-12-09 18:02:53 +0000285 <li>Constants, which are described in a <a href="#constants">section about
286 constants</a>, below.</li>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000287</ol>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000288
289<p>LLVM requires that values start with a '%' sign for two reasons: Compilers
290don't need to worry about name clashes with reserved words, and the set of
291reserved words may be expanded in the future without penalty. Additionally,
292unnamed identifiers allow a compiler to quickly come up with a temporary
293variable without having to avoid symbol table conflicts.</p>
294
Chris Lattner261efe92003-11-25 01:02:51 +0000295<p>Reserved words in LLVM are very similar to reserved words in other
Reid Spencer5c0ef472006-11-11 23:08:07 +0000296languages. There are keywords for different opcodes
297('<tt><a href="#i_add">add</a></tt>',
298 '<tt><a href="#i_bitcast">bitcast</a></tt>',
299 '<tt><a href="#i_ret">ret</a></tt>', etc...), for primitive type names ('<tt><a
Reid Spencerca86e162006-12-31 07:07:53 +0000300href="#t_void">void</a></tt>', '<tt><a href="#t_primitive">i32</a></tt>', etc...),
Chris Lattnere5d947b2004-12-09 16:36:40 +0000301and others. These reserved words cannot conflict with variable names, because
302none of them start with a '%' character.</p>
303
304<p>Here is an example of LLVM code to multiply the integer variable
305'<tt>%X</tt>' by 8:</p>
306
Misha Brukman9d0919f2003-11-08 01:05:38 +0000307<p>The easy way:</p>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000308
309<pre>
Reid Spencerca86e162006-12-31 07:07:53 +0000310 %result = <a href="#i_mul">mul</a> i32 %X, 8
Chris Lattnere5d947b2004-12-09 16:36:40 +0000311</pre>
312
Misha Brukman9d0919f2003-11-08 01:05:38 +0000313<p>After strength reduction:</p>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000314
315<pre>
Reid Spencerca86e162006-12-31 07:07:53 +0000316 %result = <a href="#i_shl">shl</a> i32 %X, i8 3
Chris Lattnere5d947b2004-12-09 16:36:40 +0000317</pre>
318
Misha Brukman9d0919f2003-11-08 01:05:38 +0000319<p>And the hard way:</p>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000320
321<pre>
Reid Spencerca86e162006-12-31 07:07:53 +0000322 <a href="#i_add">add</a> i32 %X, %X <i>; yields {i32}:%0</i>
323 <a href="#i_add">add</a> i32 %0, %0 <i>; yields {i32}:%1</i>
324 %result = <a href="#i_add">add</a> i32 %1, %1
Chris Lattnere5d947b2004-12-09 16:36:40 +0000325</pre>
326
Chris Lattner261efe92003-11-25 01:02:51 +0000327<p>This last way of multiplying <tt>%X</tt> by 8 illustrates several
328important lexical features of LLVM:</p>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000329
Chris Lattner00950542001-06-06 20:29:01 +0000330<ol>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000331
332 <li>Comments are delimited with a '<tt>;</tt>' and go until the end of
333 line.</li>
334
335 <li>Unnamed temporaries are created when the result of a computation is not
336 assigned to a named value.</li>
337
Misha Brukman9d0919f2003-11-08 01:05:38 +0000338 <li>Unnamed temporaries are numbered sequentially</li>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000339
Misha Brukman9d0919f2003-11-08 01:05:38 +0000340</ol>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000341
John Criswelle4c57cc2005-05-12 16:52:32 +0000342<p>...and it also shows a convention that we follow in this document. When
Chris Lattnere5d947b2004-12-09 16:36:40 +0000343demonstrating instructions, we will follow an instruction with a comment that
344defines the type and name of value produced. Comments are shown in italic
345text.</p>
346
Misha Brukman9d0919f2003-11-08 01:05:38 +0000347</div>
Chris Lattnerfa730212004-12-09 16:11:40 +0000348
349<!-- *********************************************************************** -->
350<div class="doc_section"> <a name="highlevel">High Level Structure</a> </div>
351<!-- *********************************************************************** -->
352
353<!-- ======================================================================= -->
354<div class="doc_subsection"> <a name="modulestructure">Module Structure</a>
355</div>
356
357<div class="doc_text">
358
359<p>LLVM programs are composed of "Module"s, each of which is a
360translation unit of the input programs. Each module consists of
361functions, global variables, and symbol table entries. Modules may be
362combined together with the LLVM linker, which merges function (and
363global variable) definitions, resolves forward declarations, and merges
364symbol table entries. Here is an example of the "hello world" module:</p>
365
366<pre><i>; Declare the string constant as a global constant...</i>
367<a href="#identifiers">%.LC0</a> = <a href="#linkage_internal">internal</a> <a
Reid Spencerca86e162006-12-31 07:07:53 +0000368 href="#globalvars">constant</a> <a href="#t_array">[13 x i8 ]</a> c"hello world\0A\00" <i>; [13 x i8 ]*</i>
Chris Lattnerfa730212004-12-09 16:11:40 +0000369
370<i>; External declaration of the puts function</i>
Reid Spencerca86e162006-12-31 07:07:53 +0000371<a href="#functionstructure">declare</a> i32 %puts(i8 *) <i>; i32(i8 *)* </i>
Chris Lattnerfa730212004-12-09 16:11:40 +0000372
Chris Lattner81c01f02006-06-13 03:05:47 +0000373<i>; Global variable / Function body section separator</i>
374implementation
375
Chris Lattnerfa730212004-12-09 16:11:40 +0000376<i>; Definition of main function</i>
Reid Spencerca86e162006-12-31 07:07:53 +0000377define i32 %main() { <i>; i32()* </i>
378 <i>; Convert [13x i8 ]* to i8 *...</i>
Chris Lattnerfa730212004-12-09 16:11:40 +0000379 %cast210 = <a
Reid Spencerca86e162006-12-31 07:07:53 +0000380 href="#i_getelementptr">getelementptr</a> [13 x i8 ]* %.LC0, i64 0, i64 0 <i>; i8 *</i>
Chris Lattnerfa730212004-12-09 16:11:40 +0000381
382 <i>; Call puts function to write out the string to stdout...</i>
383 <a
Reid Spencerca86e162006-12-31 07:07:53 +0000384 href="#i_call">call</a> i32 %puts(i8 * %cast210) <i>; i32</i>
Chris Lattnerfa730212004-12-09 16:11:40 +0000385 <a
Reid Spencerca86e162006-12-31 07:07:53 +0000386 href="#i_ret">ret</a> i32 0<br>}<br></pre>
Chris Lattnerfa730212004-12-09 16:11:40 +0000387
388<p>This example is made up of a <a href="#globalvars">global variable</a>
389named "<tt>.LC0</tt>", an external declaration of the "<tt>puts</tt>"
390function, and a <a href="#functionstructure">function definition</a>
391for "<tt>main</tt>".</p>
392
Chris Lattnere5d947b2004-12-09 16:36:40 +0000393<p>In general, a module is made up of a list of global values,
394where both functions and global variables are global values. Global values are
395represented by a pointer to a memory location (in this case, a pointer to an
396array of char, and a pointer to a function), and have one of the following <a
397href="#linkage">linkage types</a>.</p>
Chris Lattnerfa730212004-12-09 16:11:40 +0000398
Chris Lattner81c01f02006-06-13 03:05:47 +0000399<p>Due to a limitation in the current LLVM assembly parser (it is limited by
400one-token lookahead), modules are split into two pieces by the "implementation"
401keyword. Global variable prototypes and definitions must occur before the
402keyword, and function definitions must occur after it. Function prototypes may
403occur either before or after it. In the future, the implementation keyword may
404become a noop, if the parser gets smarter.</p>
405
Chris Lattnere5d947b2004-12-09 16:36:40 +0000406</div>
407
408<!-- ======================================================================= -->
409<div class="doc_subsection">
410 <a name="linkage">Linkage Types</a>
411</div>
412
413<div class="doc_text">
414
415<p>
416All Global Variables and Functions have one of the following types of linkage:
417</p>
Chris Lattnerfa730212004-12-09 16:11:40 +0000418
419<dl>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000420
Chris Lattnerfa730212004-12-09 16:11:40 +0000421 <dt><tt><b><a name="linkage_internal">internal</a></b></tt> </dt>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000422
423 <dd>Global values with internal linkage are only directly accessible by
424 objects in the current module. In particular, linking code into a module with
425 an internal global value may cause the internal to be renamed as necessary to
426 avoid collisions. Because the symbol is internal to the module, all
427 references can be updated. This corresponds to the notion of the
428 '<tt>static</tt>' keyword in C, or the idea of "anonymous namespaces" in C++.
Chris Lattnerfa730212004-12-09 16:11:40 +0000429 </dd>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000430
Chris Lattnerfa730212004-12-09 16:11:40 +0000431 <dt><tt><b><a name="linkage_linkonce">linkonce</a></b></tt>: </dt>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000432
433 <dd>"<tt>linkonce</tt>" linkage is similar to <tt>internal</tt> linkage, with
434 the twist that linking together two modules defining the same
435 <tt>linkonce</tt> globals will cause one of the globals to be discarded. This
436 is typically used to implement inline functions. Unreferenced
437 <tt>linkonce</tt> globals are allowed to be discarded.
Chris Lattnerfa730212004-12-09 16:11:40 +0000438 </dd>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000439
Chris Lattnerfa730212004-12-09 16:11:40 +0000440 <dt><tt><b><a name="linkage_weak">weak</a></b></tt>: </dt>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000441
442 <dd>"<tt>weak</tt>" linkage is exactly the same as <tt>linkonce</tt> linkage,
443 except that unreferenced <tt>weak</tt> globals may not be discarded. This is
Reid Spencerca86e162006-12-31 07:07:53 +0000444 used to implement constructs in C such as "<tt>i32 X;</tt>" at global scope.
Chris Lattnerfa730212004-12-09 16:11:40 +0000445 </dd>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000446
Chris Lattnerfa730212004-12-09 16:11:40 +0000447 <dt><tt><b><a name="linkage_appending">appending</a></b></tt>: </dt>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000448
449 <dd>"<tt>appending</tt>" linkage may only be applied to global variables of
450 pointer to array type. When two global variables with appending linkage are
451 linked together, the two global arrays are appended together. This is the
452 LLVM, typesafe, equivalent of having the system linker append together
453 "sections" with identical names when .o files are linked.
Chris Lattnerfa730212004-12-09 16:11:40 +0000454 </dd>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000455
Chris Lattnerfa730212004-12-09 16:11:40 +0000456 <dt><tt><b><a name="linkage_external">externally visible</a></b></tt>:</dt>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000457
458 <dd>If none of the above identifiers are used, the global is externally
459 visible, meaning that it participates in linkage and can be used to resolve
460 external symbol references.
Chris Lattnerfa730212004-12-09 16:11:40 +0000461 </dd>
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000462
463 <dt><tt><b><a name="linkage_externweak">extern_weak</a></b></tt>: </dt>
464
465 <dd>"<tt>extern_weak</tt>" TBD
466 </dd>
467
468 <p>
469 The next two types of linkage are targeted for Microsoft Windows platform
470 only. They are designed to support importing (exporting) symbols from (to)
471 DLLs.
472 </p>
473
474 <dt><tt><b><a name="linkage_dllimport">dllimport</a></b></tt>: </dt>
475
476 <dd>"<tt>dllimport</tt>" linkage causes the compiler to reference a function
477 or variable via a global pointer to a pointer that is set up by the DLL
478 exporting the symbol. On Microsoft Windows targets, the pointer name is
479 formed by combining <code>_imp__</code> and the function or variable name.
480 </dd>
481
482 <dt><tt><b><a name="linkage_dllexport">dllexport</a></b></tt>: </dt>
483
484 <dd>"<tt>dllexport</tt>" linkage causes the compiler to provide a global
485 pointer to a pointer in a DLL, so that it can be referenced with the
486 <tt>dllimport</tt> attribute. On Microsoft Windows targets, the pointer
487 name is formed by combining <code>_imp__</code> and the function or variable
488 name.
489 </dd>
490
Chris Lattnerfa730212004-12-09 16:11:40 +0000491</dl>
492
Chris Lattnerfa730212004-12-09 16:11:40 +0000493<p><a name="linkage_external">For example, since the "<tt>.LC0</tt>"
494variable is defined to be internal, if another module defined a "<tt>.LC0</tt>"
495variable and was linked with this one, one of the two would be renamed,
496preventing a collision. Since "<tt>main</tt>" and "<tt>puts</tt>" are
497external (i.e., lacking any linkage declarations), they are accessible
498outside of the current module. It is illegal for a function <i>declaration</i>
499to have any linkage type other than "externally visible".</a></p>
Chris Lattnere5d947b2004-12-09 16:36:40 +0000500
Chris Lattnerfa730212004-12-09 16:11:40 +0000501</div>
502
503<!-- ======================================================================= -->
504<div class="doc_subsection">
Chris Lattnerbad10ee2005-05-06 22:57:40 +0000505 <a name="callingconv">Calling Conventions</a>
506</div>
507
508<div class="doc_text">
509
510<p>LLVM <a href="#functionstructure">functions</a>, <a href="#i_call">calls</a>
511and <a href="#i_invoke">invokes</a> can all have an optional calling convention
512specified for the call. The calling convention of any pair of dynamic
513caller/callee must match, or the behavior of the program is undefined. The
514following calling conventions are supported by LLVM, and more may be added in
515the future:</p>
516
517<dl>
518 <dt><b>"<tt>ccc</tt>" - The C calling convention</b>:</dt>
519
520 <dd>This calling convention (the default if no other calling convention is
521 specified) matches the target C calling conventions. This calling convention
John Criswelle4c57cc2005-05-12 16:52:32 +0000522 supports varargs function calls and tolerates some mismatch in the declared
Reid Spencerc28d2bc2006-12-31 21:30:18 +0000523 prototype and implemented declaration of the function (as does normal C).
Chris Lattnerbad10ee2005-05-06 22:57:40 +0000524 </dd>
525
Chris Lattner5710ce92006-05-19 21:15:36 +0000526 <dt><b>"<tt>csretcc</tt>" - The C struct return calling convention</b>:</dt>
527
528 <dd>This calling convention matches the target C calling conventions, except
529 that functions with this convention are required to take a pointer as their
530 first argument, and the return type of the function must be void. This is
531 used for C functions that return aggregates by-value. In this case, the
532 function has been transformed to take a pointer to the struct as the first
533 argument to the function. For targets where the ABI specifies specific
534 behavior for structure-return calls, the calling convention can be used to
535 distinguish between struct return functions and other functions that take a
536 pointer to a struct as the first argument.
537 </dd>
538
Chris Lattnerbad10ee2005-05-06 22:57:40 +0000539 <dt><b>"<tt>fastcc</tt>" - The fast calling convention</b>:</dt>
540
541 <dd>This calling convention attempts to make calls as fast as possible
542 (e.g. by passing things in registers). This calling convention allows the
543 target to use whatever tricks it wants to produce fast code for the target,
Chris Lattner8cdc5bc2005-05-06 23:08:23 +0000544 without having to conform to an externally specified ABI. Implementations of
545 this convention should allow arbitrary tail call optimization to be supported.
546 This calling convention does not support varargs and requires the prototype of
547 all callees to exactly match the prototype of the function definition.
Chris Lattnerbad10ee2005-05-06 22:57:40 +0000548 </dd>
549
550 <dt><b>"<tt>coldcc</tt>" - The cold calling convention</b>:</dt>
551
552 <dd>This calling convention attempts to make code in the caller as efficient
553 as possible under the assumption that the call is not commonly executed. As
554 such, these calls often preserve all registers so that the call does not break
555 any live ranges in the caller side. This calling convention does not support
556 varargs and requires the prototype of all callees to exactly match the
557 prototype of the function definition.
558 </dd>
559
Chris Lattnercfe6b372005-05-07 01:46:40 +0000560 <dt><b>"<tt>cc &lt;<em>n</em>&gt;</tt>" - Numbered convention</b>:</dt>
Chris Lattnerbad10ee2005-05-06 22:57:40 +0000561
562 <dd>Any calling convention may be specified by number, allowing
563 target-specific calling conventions to be used. Target specific calling
564 conventions start at 64.
565 </dd>
Chris Lattnercfe6b372005-05-07 01:46:40 +0000566</dl>
Chris Lattnerbad10ee2005-05-06 22:57:40 +0000567
568<p>More calling conventions can be added/defined on an as-needed basis, to
569support pascal conventions or any other well-known target-independent
570convention.</p>
571
572</div>
573
574<!-- ======================================================================= -->
575<div class="doc_subsection">
Chris Lattnerfa730212004-12-09 16:11:40 +0000576 <a name="globalvars">Global Variables</a>
577</div>
578
579<div class="doc_text">
580
Chris Lattner3689a342005-02-12 19:30:21 +0000581<p>Global variables define regions of memory allocated at compilation time
Chris Lattner88f6c462005-11-12 00:45:07 +0000582instead of run-time. Global variables may optionally be initialized, may have
583an explicit section to be placed in, and may
Chris Lattner2cbdc452005-11-06 08:02:57 +0000584have an optional explicit alignment specified. A
John Criswell0ec250c2005-10-24 16:17:18 +0000585variable may be defined as a global "constant," which indicates that the
Chris Lattner3689a342005-02-12 19:30:21 +0000586contents of the variable will <b>never</b> be modified (enabling better
587optimization, allowing the global data to be placed in the read-only section of
588an executable, etc). Note that variables that need runtime initialization
John Criswell0ec250c2005-10-24 16:17:18 +0000589cannot be marked "constant" as there is a store to the variable.</p>
Chris Lattner3689a342005-02-12 19:30:21 +0000590
591<p>
592LLVM explicitly allows <em>declarations</em> of global variables to be marked
593constant, even if the final definition of the global is not. This capability
594can be used to enable slightly better optimization of the program, but requires
595the language definition to guarantee that optimizations based on the
596'constantness' are valid for the translation units that do not include the
597definition.
598</p>
Chris Lattnerfa730212004-12-09 16:11:40 +0000599
600<p>As SSA values, global variables define pointer values that are in
601scope (i.e. they dominate) all basic blocks in the program. Global
602variables always define a pointer to their "content" type because they
603describe a region of memory, and all memory objects in LLVM are
604accessed through pointers.</p>
605
Chris Lattner88f6c462005-11-12 00:45:07 +0000606<p>LLVM allows an explicit section to be specified for globals. If the target
607supports it, it will emit globals to the section specified.</p>
608
Chris Lattner2cbdc452005-11-06 08:02:57 +0000609<p>An explicit alignment may be specified for a global. If not present, or if
610the alignment is set to zero, the alignment of the global is set by the target
611to whatever it feels convenient. If an explicit alignment is specified, the
612global is forced to have at least that much alignment. All alignments must be
613a power of 2.</p>
614
Chris Lattnerfa730212004-12-09 16:11:40 +0000615</div>
616
617
618<!-- ======================================================================= -->
619<div class="doc_subsection">
620 <a name="functionstructure">Functions</a>
621</div>
622
623<div class="doc_text">
624
Reid Spencerca86e162006-12-31 07:07:53 +0000625<p>LLVM function definitions consist of the "<tt>define</tt>" keyord,
626an optional <a href="#linkage">linkage type</a>, an optional
627<a href="#callingconv">calling convention</a>, a return type, an optional
628<a href="#paramattrs">parameter attribute</a> for the return type, a function
629name, a (possibly empty) argument list (each with optional
Reid Spencer92f82302006-12-31 07:18:34 +0000630<a href="#paramattrs">parameter attributes</a>), an optional section, an
631optional alignment, an opening curly brace, a list of basic blocks, and a
632closing curly brace. LLVM function declarations
633consist of the "<tt>declare</tt>" keyword, an optional <a
Reid Spencerca86e162006-12-31 07:07:53 +0000634 href="#callingconv">calling convention</a>, a return type, an optional
635<a href="#paramattrs">parameter attribute</a> for the return type, a function
636name, a possibly empty list of arguments, and an optional alignment.</p>
Chris Lattnerfa730212004-12-09 16:11:40 +0000637
638<p>A function definition contains a list of basic blocks, forming the CFG for
639the function. Each basic block may optionally start with a label (giving the
640basic block a symbol table entry), contains a list of instructions, and ends
641with a <a href="#terminators">terminator</a> instruction (such as a branch or
642function return).</p>
643
John Criswelle4c57cc2005-05-12 16:52:32 +0000644<p>The first basic block in a program is special in two ways: it is immediately
Chris Lattnerfa730212004-12-09 16:11:40 +0000645executed on entrance to the function, and it is not allowed to have predecessor
646basic blocks (i.e. there can not be any branches to the entry block of a
647function). Because the block can have no predecessors, it also cannot have any
648<a href="#i_phi">PHI nodes</a>.</p>
649
650<p>LLVM functions are identified by their name and type signature. Hence, two
651functions with the same name but different parameter lists or return values are
Chris Lattnerd4f6b172005-03-07 22:13:59 +0000652considered different functions, and LLVM will resolve references to each
Chris Lattnerfa730212004-12-09 16:11:40 +0000653appropriately.</p>
654
Chris Lattner88f6c462005-11-12 00:45:07 +0000655<p>LLVM allows an explicit section to be specified for functions. If the target
656supports it, it will emit functions to the section specified.</p>
657
Chris Lattner2cbdc452005-11-06 08:02:57 +0000658<p>An explicit alignment may be specified for a function. If not present, or if
659the alignment is set to zero, the alignment of the function is set by the target
660to whatever it feels convenient. If an explicit alignment is specified, the
661function is forced to have at least that much alignment. All alignments must be
662a power of 2.</p>
663
Chris Lattnerfa730212004-12-09 16:11:40 +0000664</div>
665
Chris Lattner4e9aba72006-01-23 23:23:47 +0000666<!-- ======================================================================= -->
Reid Spencerca86e162006-12-31 07:07:53 +0000667<div class="doc_subsection"><a name="paramattrs">Parameter Attributes</a></div>
668<div class="doc_text">
669 <p>The return type and each parameter of a function type may have a set of
670 <i>parameter attributes</i> associated with them. Parameter attributes are
671 used to communicate additional information about the result or parameters of
672 a function. Parameter attributes are considered to be part of the function
673 type so two functions types that differ only by the parameter attributes
674 are different function types.</p>
675
Reid Spencer92f82302006-12-31 07:18:34 +0000676 <p>Parameter attributes consist of an at sign (@) followed by either a single
Reid Spencerca86e162006-12-31 07:07:53 +0000677 keyword or a comma separate list of keywords enclosed in parentheses. For
678 example:<pre>
679 %someFunc = i16 @zext (i8 @(sext) %someParam)
Reid Spencer92f82302006-12-31 07:18:34 +0000680 %someFunc = i16 @zext (i8 @zext %someParam)</pre>
681 Note that the two function types above are unique because the parameter
Reid Spencerca86e162006-12-31 07:07:53 +0000682 has a different attribute (@sext in the first one, @zext in the second).</p>
683
684 <p>Currently, only the following parameter attributes are defined:
685 <dl>
686 <dt><tt>@zext</tt></dt>
687 <dd>This indicates that the parameter should be zero extended just before
688 a call to this function.</dd>
689 <dt><tt>@sext</tt></dt>
690 <dd>This indicates that the parameter should be sign extended just before
691 a call to this function.</dd>
692 </dl></p>
693
694 <p>The current motivation for parameter attributes is to enable the sign and
695 zero extend information necessary for the C calling convention to be passed
696 from the front end to LLVM. The <tt>@zext</tt> and <tt>@sext</tt> attributes
697 are used by the code generator to perform the required extension. However,
698 parameter attributes are an orthogonal feature to calling conventions and
699 may be used for other purposes in the future.</p>
700</div>
701
702<!-- ======================================================================= -->
Chris Lattner4e9aba72006-01-23 23:23:47 +0000703<div class="doc_subsection">
Chris Lattner1eeeb0c2006-04-08 04:40:53 +0000704 <a name="moduleasm">Module-Level Inline Assembly</a>
Chris Lattner4e9aba72006-01-23 23:23:47 +0000705</div>
706
707<div class="doc_text">
708<p>
709Modules may contain "module-level inline asm" blocks, which corresponds to the
710GCC "file scope inline asm" blocks. These blocks are internally concatenated by
711LLVM and treated as a single unit, but may be separated in the .ll file if
712desired. The syntax is very simple:
713</p>
714
715<div class="doc_code"><pre>
Chris Lattner52599e12006-01-24 00:37:20 +0000716 module asm "inline asm code goes here"
717 module asm "more can go here"
Chris Lattner4e9aba72006-01-23 23:23:47 +0000718</pre></div>
719
720<p>The strings can contain any character by escaping non-printable characters.
721 The escape sequence used is simply "\xx" where "xx" is the two digit hex code
722 for the number.
723</p>
724
725<p>
726 The inline asm code is simply printed to the machine code .s file when
727 assembly code is generated.
728</p>
729</div>
Chris Lattnerfa730212004-12-09 16:11:40 +0000730
731
Chris Lattner00950542001-06-06 20:29:01 +0000732<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +0000733<div class="doc_section"> <a name="typesystem">Type System</a> </div>
734<!-- *********************************************************************** -->
Chris Lattnerfa730212004-12-09 16:11:40 +0000735
Misha Brukman9d0919f2003-11-08 01:05:38 +0000736<div class="doc_text">
Chris Lattnerfa730212004-12-09 16:11:40 +0000737
Misha Brukman9d0919f2003-11-08 01:05:38 +0000738<p>The LLVM type system is one of the most important features of the
Chris Lattner261efe92003-11-25 01:02:51 +0000739intermediate representation. Being typed enables a number of
740optimizations to be performed on the IR directly, without having to do
741extra analyses on the side before the transformation. A strong type
742system makes it easier to read the generated code and enables novel
743analyses and transformations that are not feasible to perform on normal
744three address code representations.</p>
Chris Lattnerfa730212004-12-09 16:11:40 +0000745
746</div>
747
Chris Lattner00950542001-06-06 20:29:01 +0000748<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000749<div class="doc_subsection"> <a name="t_primitive">Primitive Types</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000750<div class="doc_text">
John Criswell4457dc92004-04-09 16:48:45 +0000751<p>The primitive types are the fundamental building blocks of the LLVM
Chris Lattnerd4f6b172005-03-07 22:13:59 +0000752system. The current set of primitive types is as follows:</p>
Misha Brukmandaa4cb02004-03-01 17:47:27 +0000753
Reid Spencerd3f876c2004-11-01 08:19:36 +0000754<table class="layout">
755 <tr class="layout">
756 <td class="left">
757 <table>
Chris Lattner261efe92003-11-25 01:02:51 +0000758 <tbody>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000759 <tr><th>Type</th><th>Description</th></tr>
760 <tr><td><tt>void</tt></td><td>No value</td></tr>
Reid Spencerca86e162006-12-31 07:07:53 +0000761 <tr><td><tt>i8</tt></td><td>Signless 8-bit value</td></tr>
762 <tr><td><tt>i32</tt></td><td>Signless 32-bit value</td></tr>
Misha Brukmancfa87bc2005-04-22 18:02:52 +0000763 <tr><td><tt>float</tt></td><td>32-bit floating point value</td></tr>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000764 <tr><td><tt>label</tt></td><td>Branch destination</td></tr>
Chris Lattner261efe92003-11-25 01:02:51 +0000765 </tbody>
766 </table>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000767 </td>
768 <td class="right">
769 <table>
Chris Lattner261efe92003-11-25 01:02:51 +0000770 <tbody>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000771 <tr><th>Type</th><th>Description</th></tr>
772 <tr><td><tt>bool</tt></td><td>True or False value</td></tr>
Reid Spencerca86e162006-12-31 07:07:53 +0000773 <tr><td><tt>i16</tt></td><td>Signless 16-bit value</td></tr>
774 <tr><td><tt>i64</tt></td><td>Signless 64-bit value</td></tr>
775 <tr><td><tt>double</tt></td><td>64-bit floating point value</td></tr>
Chris Lattner261efe92003-11-25 01:02:51 +0000776 </tbody>
777 </table>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000778 </td>
779 </tr>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000780</table>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000781</div>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000782
Chris Lattner00950542001-06-06 20:29:01 +0000783<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000784<div class="doc_subsubsection"> <a name="t_classifications">Type
785Classifications</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000786<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +0000787<p>These different primitive types fall into a few useful
788classifications:</p>
Misha Brukmandaa4cb02004-03-01 17:47:27 +0000789
790<table border="1" cellspacing="0" cellpadding="4">
Chris Lattner261efe92003-11-25 01:02:51 +0000791 <tbody>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000792 <tr><th>Classification</th><th>Types</th></tr>
Chris Lattner261efe92003-11-25 01:02:51 +0000793 <tr>
Chris Lattner261efe92003-11-25 01:02:51 +0000794 <td><a name="t_integer">integer</a></td>
Reid Spencerca86e162006-12-31 07:07:53 +0000795 <td><tt>i8, i16, i32, i64</tt></td>
Chris Lattner261efe92003-11-25 01:02:51 +0000796 </tr>
797 <tr>
798 <td><a name="t_integral">integral</a></td>
Reid Spencerca86e162006-12-31 07:07:53 +0000799 <td><tt>bool, i8, i16, i32, i64</tt>
Misha Brukmanc24b7582004-08-12 20:16:08 +0000800 </td>
Chris Lattner261efe92003-11-25 01:02:51 +0000801 </tr>
802 <tr>
803 <td><a name="t_floating">floating point</a></td>
804 <td><tt>float, double</tt></td>
805 </tr>
806 <tr>
807 <td><a name="t_firstclass">first class</a></td>
Reid Spencerca86e162006-12-31 07:07:53 +0000808 <td><tt>bool, i8, i16, i32, i64, float, double, <br/>
809 <a href="#t_pointer">pointer</a>,<a href="#t_packed">packed</a></tt>
810 </td>
Chris Lattner261efe92003-11-25 01:02:51 +0000811 </tr>
812 </tbody>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000813</table>
Misha Brukmandaa4cb02004-03-01 17:47:27 +0000814
Chris Lattner261efe92003-11-25 01:02:51 +0000815<p>The <a href="#t_firstclass">first class</a> types are perhaps the
816most important. Values of these types are the only ones which can be
817produced by instructions, passed as arguments, or used as operands to
818instructions. This means that all structures and arrays must be
819manipulated either by pointer or by component.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000820</div>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000821
Chris Lattner00950542001-06-06 20:29:01 +0000822<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +0000823<div class="doc_subsection"> <a name="t_derived">Derived Types</a> </div>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000824
Misha Brukman9d0919f2003-11-08 01:05:38 +0000825<div class="doc_text">
Chris Lattnerc3f59762004-12-09 17:30:23 +0000826
Chris Lattner261efe92003-11-25 01:02:51 +0000827<p>The real power in LLVM comes from the derived types in the system.
828This is what allows a programmer to represent arrays, functions,
829pointers, and other useful types. Note that these derived types may be
830recursive: For example, it is possible to have a two dimensional array.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000831
Misha Brukman9d0919f2003-11-08 01:05:38 +0000832</div>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000833
Chris Lattner00950542001-06-06 20:29:01 +0000834<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000835<div class="doc_subsubsection"> <a name="t_array">Array Type</a> </div>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000836
Misha Brukman9d0919f2003-11-08 01:05:38 +0000837<div class="doc_text">
Chris Lattnerc3f59762004-12-09 17:30:23 +0000838
Chris Lattner00950542001-06-06 20:29:01 +0000839<h5>Overview:</h5>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000840
Misha Brukman9d0919f2003-11-08 01:05:38 +0000841<p>The array type is a very simple derived type that arranges elements
Chris Lattner261efe92003-11-25 01:02:51 +0000842sequentially in memory. The array type requires a size (number of
843elements) and an underlying data type.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000844
Chris Lattner7faa8832002-04-14 06:13:44 +0000845<h5>Syntax:</h5>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000846
847<pre>
848 [&lt;# elements&gt; x &lt;elementtype&gt;]
849</pre>
850
John Criswelle4c57cc2005-05-12 16:52:32 +0000851<p>The number of elements is a constant integer value; elementtype may
Chris Lattner261efe92003-11-25 01:02:51 +0000852be any type with a size.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +0000853
Chris Lattner7faa8832002-04-14 06:13:44 +0000854<h5>Examples:</h5>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000855<table class="layout">
856 <tr class="layout">
857 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +0000858 <tt>[40 x i32 ]</tt><br/>
859 <tt>[41 x i32 ]</tt><br/>
860 <tt>[40 x i32]</tt><br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000861 </td>
862 <td class="left">
863 Array of 40 integer values.<br/>
864 Array of 41 integer values.<br/>
865 Array of 40 unsigned integer values.<br/>
866 </td>
867 </tr>
Chris Lattner00950542001-06-06 20:29:01 +0000868</table>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000869<p>Here are some examples of multidimensional arrays:</p>
870<table class="layout">
871 <tr class="layout">
872 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +0000873 <tt>[3 x [4 x i32]]</tt><br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000874 <tt>[12 x [10 x float]]</tt><br/>
Reid Spencerca86e162006-12-31 07:07:53 +0000875 <tt>[2 x [3 x [4 x i32]]]</tt><br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000876 </td>
877 <td class="left">
John Criswellc1f786c2005-05-13 22:25:59 +0000878 3x4 array of integer values.<br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000879 12x10 array of single precision floating point values.<br/>
880 2x3x4 array of unsigned integer values.<br/>
881 </td>
882 </tr>
883</table>
Chris Lattnere67a9512005-06-24 17:22:57 +0000884
John Criswell0ec250c2005-10-24 16:17:18 +0000885<p>Note that 'variable sized arrays' can be implemented in LLVM with a zero
886length array. Normally, accesses past the end of an array are undefined in
Chris Lattnere67a9512005-06-24 17:22:57 +0000887LLVM (e.g. it is illegal to access the 5th element of a 3 element array).
888As a special case, however, zero length arrays are recognized to be variable
889length. This allows implementation of 'pascal style arrays' with the LLVM
Reid Spencerca86e162006-12-31 07:07:53 +0000890type "{ i32, [0 x float]}", for example.</p>
Chris Lattnere67a9512005-06-24 17:22:57 +0000891
Misha Brukman9d0919f2003-11-08 01:05:38 +0000892</div>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000893
Chris Lattner00950542001-06-06 20:29:01 +0000894<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000895<div class="doc_subsubsection"> <a name="t_function">Function Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000896<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000897<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000898<p>The function type can be thought of as a function signature. It
899consists of a return type and a list of formal parameter types.
John Criswell009900b2003-11-25 21:45:46 +0000900Function types are usually used to build virtual function tables
Chris Lattner261efe92003-11-25 01:02:51 +0000901(which are structures of pointers to functions), for indirect function
902calls, and when defining a function.</p>
John Criswell009900b2003-11-25 21:45:46 +0000903<p>
904The return type of a function type cannot be an aggregate type.
905</p>
Chris Lattner00950542001-06-06 20:29:01 +0000906<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000907<pre> &lt;returntype&gt; (&lt;parameter list&gt;)<br></pre>
John Criswell0ec250c2005-10-24 16:17:18 +0000908<p>...where '<tt>&lt;parameter list&gt;</tt>' is a comma-separated list of type
Misha Brukmanc24b7582004-08-12 20:16:08 +0000909specifiers. Optionally, the parameter list may include a type <tt>...</tt>,
Chris Lattner27f71f22003-09-03 00:41:47 +0000910which indicates that the function takes a variable number of arguments.
911Variable argument functions can access their arguments with the <a
Chris Lattner261efe92003-11-25 01:02:51 +0000912 href="#int_varargs">variable argument handling intrinsic</a> functions.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000913<h5>Examples:</h5>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000914<table class="layout">
915 <tr class="layout">
Reid Spencer92f82302006-12-31 07:18:34 +0000916 <td class="left"><tt>i32 (i32)</tt></td>
917 <td class="left">function taking an <tt>i32</tt>, returning an <tt>i32</tt>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000918 </td>
Reid Spencer92f82302006-12-31 07:18:34 +0000919 </tr><tr class="layout">
Reid Spencerf17a0b72006-12-31 07:20:23 +0000920 <td class="left"><tt>float&nbsp;(i16&nbsp;@sext,&nbsp;i32&nbsp;*)&nbsp;*
921 </tt></td>
Reid Spencer92f82302006-12-31 07:18:34 +0000922 <td class="left"><a href="#t_pointer">Pointer</a> to a function that takes
923 an <tt>i16</tt> that should be sign extended and a
Reid Spencerca86e162006-12-31 07:07:53 +0000924 <a href="#t_pointer">pointer</a> to <tt>i32</tt>, returning
Reid Spencer92f82302006-12-31 07:18:34 +0000925 <tt>float</tt>.
926 </td>
927 </tr><tr class="layout">
928 <td class="left"><tt>i32 (i8*, ...)</tt></td>
929 <td class="left">A vararg function that takes at least one
930 <a href="#t_pointer">pointer</a> to <tt>i8 </tt> (signed char in C),
931 which returns an integer. This is the signature for <tt>printf</tt> in
932 LLVM.
Reid Spencerd3f876c2004-11-01 08:19:36 +0000933 </td>
934 </tr>
Chris Lattner00950542001-06-06 20:29:01 +0000935</table>
Misha Brukmandaa4cb02004-03-01 17:47:27 +0000936
Misha Brukman9d0919f2003-11-08 01:05:38 +0000937</div>
Chris Lattner00950542001-06-06 20:29:01 +0000938<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +0000939<div class="doc_subsubsection"> <a name="t_struct">Structure Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000940<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +0000941<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000942<p>The structure type is used to represent a collection of data members
943together in memory. The packing of the field types is defined to match
944the ABI of the underlying processor. The elements of a structure may
945be any type that has a size.</p>
946<p>Structures are accessed using '<tt><a href="#i_load">load</a></tt>
947and '<tt><a href="#i_store">store</a></tt>' by getting a pointer to a
948field with the '<tt><a href="#i_getelementptr">getelementptr</a></tt>'
949instruction.</p>
Chris Lattner00950542001-06-06 20:29:01 +0000950<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +0000951<pre> { &lt;type list&gt; }<br></pre>
Chris Lattner00950542001-06-06 20:29:01 +0000952<h5>Examples:</h5>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000953<table class="layout">
954 <tr class="layout">
955 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +0000956 <tt>{ i32, i32, i32 }</tt><br/>
957 <tt>{ float, i32 (i32) * }</tt><br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000958 </td>
959 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +0000960 a triple of three <tt>i32</tt> values<br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000961 A pair, where the first element is a <tt>float</tt> and the second element
962 is a <a href="#t_pointer">pointer</a> to a <a href="#t_function">function</a>
Reid Spencerca86e162006-12-31 07:07:53 +0000963 that takes an <tt>i32</tt>, returning an <tt>i32</tt>.<br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000964 </td>
965 </tr>
Chris Lattner00950542001-06-06 20:29:01 +0000966</table>
Misha Brukman9d0919f2003-11-08 01:05:38 +0000967</div>
Reid Spencerd3f876c2004-11-01 08:19:36 +0000968
Chris Lattner00950542001-06-06 20:29:01 +0000969<!-- _______________________________________________________________________ -->
Andrew Lenharth75e10682006-12-08 17:13:00 +0000970<div class="doc_subsubsection"> <a name="t_pstruct">Packed Structure Type</a>
971</div>
972<div class="doc_text">
973<h5>Overview:</h5>
974<p>The packed structure type is used to represent a collection of data members
975together in memory. There is no padding between fields. Further, the alignment
976of a packed structure is 1 byte. The elements of a packed structure may
977be any type that has a size.</p>
978<p>Structures are accessed using '<tt><a href="#i_load">load</a></tt>
979and '<tt><a href="#i_store">store</a></tt>' by getting a pointer to a
980field with the '<tt><a href="#i_getelementptr">getelementptr</a></tt>'
981instruction.</p>
982<h5>Syntax:</h5>
983<pre> &lt; { &lt;type list&gt; } &gt; <br></pre>
984<h5>Examples:</h5>
985<table class="layout">
986 <tr class="layout">
987 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +0000988 <tt> &lt; { i32, i32, i32 } &gt; </tt><br/>
989 <tt> &lt; { float, i32 (i32) * } &gt; </tt><br/>
Andrew Lenharth75e10682006-12-08 17:13:00 +0000990 </td>
991 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +0000992 a triple of three <tt>i32</tt> values<br/>
Andrew Lenharth75e10682006-12-08 17:13:00 +0000993 A pair, where the first element is a <tt>float</tt> and the second element
994 is a <a href="#t_pointer">pointer</a> to a <a href="#t_function">function</a>
Reid Spencerca86e162006-12-31 07:07:53 +0000995 that takes an <tt>i32</tt>, returning an <tt>i32</tt>.<br/>
Andrew Lenharth75e10682006-12-08 17:13:00 +0000996 </td>
997 </tr>
998</table>
999</div>
1000
1001<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001002<div class="doc_subsubsection"> <a name="t_pointer">Pointer Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001003<div class="doc_text">
Chris Lattner7faa8832002-04-14 06:13:44 +00001004<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001005<p>As in many languages, the pointer type represents a pointer or
1006reference to another object, which must live in memory.</p>
Chris Lattner7faa8832002-04-14 06:13:44 +00001007<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001008<pre> &lt;type&gt; *<br></pre>
Chris Lattner7faa8832002-04-14 06:13:44 +00001009<h5>Examples:</h5>
Reid Spencerd3f876c2004-11-01 08:19:36 +00001010<table class="layout">
1011 <tr class="layout">
1012 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +00001013 <tt>[4x i32]*</tt><br/>
1014 <tt>i32 (i32 *) *</tt><br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +00001015 </td>
1016 <td class="left">
1017 A <a href="#t_pointer">pointer</a> to <a href="#t_array">array</a> of
Reid Spencerca86e162006-12-31 07:07:53 +00001018 four <tt>i32</tt> values<br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +00001019 A <a href="#t_pointer">pointer</a> to a <a
Reid Spencerca86e162006-12-31 07:07:53 +00001020 href="#t_function">function</a> that takes an <tt>i32*</tt>, returning an
1021 <tt>i32</tt>.<br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +00001022 </td>
1023 </tr>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001024</table>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001025</div>
Reid Spencerd3f876c2004-11-01 08:19:36 +00001026
Chris Lattnera58561b2004-08-12 19:12:28 +00001027<!-- _______________________________________________________________________ -->
1028<div class="doc_subsubsection"> <a name="t_packed">Packed Type</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001029<div class="doc_text">
Chris Lattner69c11bb2005-04-25 17:34:15 +00001030
Chris Lattnera58561b2004-08-12 19:12:28 +00001031<h5>Overview:</h5>
Chris Lattner69c11bb2005-04-25 17:34:15 +00001032
Chris Lattnera58561b2004-08-12 19:12:28 +00001033<p>A packed type is a simple derived type that represents a vector
1034of elements. Packed types are used when multiple primitive data
1035are operated in parallel using a single instruction (SIMD).
1036A packed type requires a size (number of
Chris Lattnerb8d172f2005-11-10 01:44:22 +00001037elements) and an underlying primitive data type. Vectors must have a power
1038of two length (1, 2, 4, 8, 16 ...). Packed types are
Chris Lattnera58561b2004-08-12 19:12:28 +00001039considered <a href="#t_firstclass">first class</a>.</p>
Chris Lattner69c11bb2005-04-25 17:34:15 +00001040
Chris Lattnera58561b2004-08-12 19:12:28 +00001041<h5>Syntax:</h5>
Chris Lattner69c11bb2005-04-25 17:34:15 +00001042
1043<pre>
1044 &lt; &lt;# elements&gt; x &lt;elementtype&gt; &gt;
1045</pre>
1046
John Criswellc1f786c2005-05-13 22:25:59 +00001047<p>The number of elements is a constant integer value; elementtype may
Chris Lattnera58561b2004-08-12 19:12:28 +00001048be any integral or floating point type.</p>
Chris Lattner69c11bb2005-04-25 17:34:15 +00001049
Chris Lattnera58561b2004-08-12 19:12:28 +00001050<h5>Examples:</h5>
Chris Lattner69c11bb2005-04-25 17:34:15 +00001051
Reid Spencerd3f876c2004-11-01 08:19:36 +00001052<table class="layout">
1053 <tr class="layout">
1054 <td class="left">
Reid Spencerca86e162006-12-31 07:07:53 +00001055 <tt>&lt;4 x i32&gt;</tt><br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +00001056 <tt>&lt;8 x float&gt;</tt><br/>
Reid Spencerca86e162006-12-31 07:07:53 +00001057 <tt>&lt;2 x i32&gt;</tt><br/>
Reid Spencerd3f876c2004-11-01 08:19:36 +00001058 </td>
1059 <td class="left">
1060 Packed vector of 4 integer values.<br/>
1061 Packed vector of 8 floating-point values.<br/>
1062 Packed vector of 2 unsigned integer values.<br/>
1063 </td>
1064 </tr>
1065</table>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001066</div>
1067
Chris Lattner69c11bb2005-04-25 17:34:15 +00001068<!-- _______________________________________________________________________ -->
1069<div class="doc_subsubsection"> <a name="t_opaque">Opaque Type</a> </div>
1070<div class="doc_text">
1071
1072<h5>Overview:</h5>
1073
1074<p>Opaque types are used to represent unknown types in the system. This
1075corresponds (for example) to the C notion of a foward declared structure type.
1076In LLVM, opaque types can eventually be resolved to any type (not just a
1077structure type).</p>
1078
1079<h5>Syntax:</h5>
1080
1081<pre>
1082 opaque
1083</pre>
1084
1085<h5>Examples:</h5>
1086
1087<table class="layout">
1088 <tr class="layout">
1089 <td class="left">
1090 <tt>opaque</tt>
1091 </td>
1092 <td class="left">
1093 An opaque type.<br/>
1094 </td>
1095 </tr>
1096</table>
1097</div>
1098
1099
Chris Lattnerc3f59762004-12-09 17:30:23 +00001100<!-- *********************************************************************** -->
1101<div class="doc_section"> <a name="constants">Constants</a> </div>
1102<!-- *********************************************************************** -->
1103
1104<div class="doc_text">
1105
1106<p>LLVM has several different basic types of constants. This section describes
1107them all and their syntax.</p>
1108
1109</div>
1110
1111<!-- ======================================================================= -->
Reid Spencercc16dc32004-12-09 18:02:53 +00001112<div class="doc_subsection"><a name="simpleconstants">Simple Constants</a></div>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001113
1114<div class="doc_text">
1115
1116<dl>
1117 <dt><b>Boolean constants</b></dt>
1118
1119 <dd>The two strings '<tt>true</tt>' and '<tt>false</tt>' are both valid
1120 constants of the <tt><a href="#t_primitive">bool</a></tt> type.
1121 </dd>
1122
1123 <dt><b>Integer constants</b></dt>
1124
Reid Spencercc16dc32004-12-09 18:02:53 +00001125 <dd>Standard integers (such as '4') are constants of the <a
Chris Lattnerc3f59762004-12-09 17:30:23 +00001126 href="#t_integer">integer</a> type. Negative numbers may be used with signed
1127 integer types.
1128 </dd>
1129
1130 <dt><b>Floating point constants</b></dt>
1131
1132 <dd>Floating point constants use standard decimal notation (e.g. 123.421),
1133 exponential notation (e.g. 1.23421e+2), or a more precise hexadecimal
Chris Lattnerc3f59762004-12-09 17:30:23 +00001134 notation (see below). Floating point constants must have a <a
1135 href="#t_floating">floating point</a> type. </dd>
1136
1137 <dt><b>Null pointer constants</b></dt>
1138
John Criswell9e2485c2004-12-10 15:51:16 +00001139 <dd>The identifier '<tt>null</tt>' is recognized as a null pointer constant
Chris Lattnerc3f59762004-12-09 17:30:23 +00001140 and must be of <a href="#t_pointer">pointer type</a>.</dd>
1141
1142</dl>
1143
John Criswell9e2485c2004-12-10 15:51:16 +00001144<p>The one non-intuitive notation for constants is the optional hexadecimal form
Chris Lattnerc3f59762004-12-09 17:30:23 +00001145of floating point constants. For example, the form '<tt>double
11460x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double
11474.5e+15</tt>'. The only time hexadecimal floating point constants are required
Reid Spencercc16dc32004-12-09 18:02:53 +00001148(and the only time that they are generated by the disassembler) is when a
1149floating point constant must be emitted but it cannot be represented as a
1150decimal floating point number. For example, NaN's, infinities, and other
1151special values are represented in their IEEE hexadecimal format so that
1152assembly and disassembly do not cause any bits to change in the constants.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001153
1154</div>
1155
1156<!-- ======================================================================= -->
1157<div class="doc_subsection"><a name="aggregateconstants">Aggregate Constants</a>
1158</div>
1159
1160<div class="doc_text">
Chris Lattnerd4f6b172005-03-07 22:13:59 +00001161<p>Aggregate constants arise from aggregation of simple constants
1162and smaller aggregate constants.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001163
1164<dl>
1165 <dt><b>Structure constants</b></dt>
1166
1167 <dd>Structure constants are represented with notation similar to structure
1168 type definitions (a comma separated list of elements, surrounded by braces
Reid Spencerca86e162006-12-31 07:07:53 +00001169 (<tt>{}</tt>)). For example: "<tt>{ i32 4, float 17.0, i32* %G }</tt>",
1170 where "<tt>%G</tt>" is declared as "<tt>%G = external global i32</tt>". Structure constants
Chris Lattnerd4f6b172005-03-07 22:13:59 +00001171 must have <a href="#t_struct">structure type</a>, and the number and
Chris Lattnerc3f59762004-12-09 17:30:23 +00001172 types of elements must match those specified by the type.
1173 </dd>
1174
1175 <dt><b>Array constants</b></dt>
1176
1177 <dd>Array constants are represented with notation similar to array type
1178 definitions (a comma separated list of elements, surrounded by square brackets
Reid Spencerca86e162006-12-31 07:07:53 +00001179 (<tt>[]</tt>)). For example: "<tt>[ i32 42, i32 11, i32 74 ]</tt>". Array
Chris Lattnerc3f59762004-12-09 17:30:23 +00001180 constants must have <a href="#t_array">array type</a>, and the number and
1181 types of elements must match those specified by the type.
1182 </dd>
1183
1184 <dt><b>Packed constants</b></dt>
1185
1186 <dd>Packed constants are represented with notation similar to packed type
1187 definitions (a comma separated list of elements, surrounded by
Reid Spencerca86e162006-12-31 07:07:53 +00001188 less-than/greater-than's (<tt>&lt;&gt;</tt>)). For example: "<tt>&lt; i32 42,
1189 i32 11, i32 74, i32 100 &gt;</tt>". Packed constants must have <a
Chris Lattnerc3f59762004-12-09 17:30:23 +00001190 href="#t_packed">packed type</a>, and the number and types of elements must
1191 match those specified by the type.
1192 </dd>
1193
1194 <dt><b>Zero initialization</b></dt>
1195
1196 <dd>The string '<tt>zeroinitializer</tt>' can be used to zero initialize a
1197 value to zero of <em>any</em> type, including scalar and aggregate types.
1198 This is often used to avoid having to print large zero initializers (e.g. for
John Criswell0ec250c2005-10-24 16:17:18 +00001199 large arrays) and is always exactly equivalent to using explicit zero
Chris Lattnerc3f59762004-12-09 17:30:23 +00001200 initializers.
1201 </dd>
1202</dl>
1203
1204</div>
1205
1206<!-- ======================================================================= -->
1207<div class="doc_subsection">
1208 <a name="globalconstants">Global Variable and Function Addresses</a>
1209</div>
1210
1211<div class="doc_text">
1212
1213<p>The addresses of <a href="#globalvars">global variables</a> and <a
1214href="#functionstructure">functions</a> are always implicitly valid (link-time)
John Criswell9e2485c2004-12-10 15:51:16 +00001215constants. These constants are explicitly referenced when the <a
1216href="#identifiers">identifier for the global</a> is used and always have <a
Chris Lattnerc3f59762004-12-09 17:30:23 +00001217href="#t_pointer">pointer</a> type. For example, the following is a legal LLVM
1218file:</p>
1219
1220<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00001221 %X = global i32 17
1222 %Y = global i32 42
1223 %Z = global [2 x i32*] [ i32* %X, i32* %Y ]
Chris Lattnerc3f59762004-12-09 17:30:23 +00001224</pre>
1225
1226</div>
1227
1228<!-- ======================================================================= -->
Reid Spencer2dc45b82004-12-09 18:13:12 +00001229<div class="doc_subsection"><a name="undefvalues">Undefined Values</a></div>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001230<div class="doc_text">
Reid Spencer2dc45b82004-12-09 18:13:12 +00001231 <p>The string '<tt>undef</tt>' is recognized as a type-less constant that has
John Criswellc1f786c2005-05-13 22:25:59 +00001232 no specific value. Undefined values may be of any type and be used anywhere
Reid Spencer2dc45b82004-12-09 18:13:12 +00001233 a constant is permitted.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001234
Reid Spencer2dc45b82004-12-09 18:13:12 +00001235 <p>Undefined values indicate to the compiler that the program is well defined
1236 no matter what value is used, giving the compiler more freedom to optimize.
1237 </p>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001238</div>
1239
1240<!-- ======================================================================= -->
1241<div class="doc_subsection"><a name="constantexprs">Constant Expressions</a>
1242</div>
1243
1244<div class="doc_text">
1245
1246<p>Constant expressions are used to allow expressions involving other constants
1247to be used as constants. Constant expressions may be of any <a
John Criswellc1f786c2005-05-13 22:25:59 +00001248href="#t_firstclass">first class</a> type and may involve any LLVM operation
Chris Lattnerc3f59762004-12-09 17:30:23 +00001249that does not have side effects (e.g. load and call are not supported). The
1250following is the syntax for constant expressions:</p>
1251
1252<dl>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00001253 <dt><b><tt>trunc ( CST to TYPE )</tt></b></dt>
1254 <dd>Truncate a constant to another type. The bit size of CST must be larger
1255 than the bit size of TYPE. Both types must be integral.</dd>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001256
Reid Spencer9dee3ac2006-11-08 01:11:31 +00001257 <dt><b><tt>zext ( CST to TYPE )</tt></b></dt>
1258 <dd>Zero extend a constant to another type. The bit size of CST must be
1259 smaller or equal to the bit size of TYPE. Both types must be integral.</dd>
1260
1261 <dt><b><tt>sext ( CST to TYPE )</tt></b></dt>
1262 <dd>Sign extend a constant to another type. The bit size of CST must be
1263 smaller or equal to the bit size of TYPE. Both types must be integral.</dd>
1264
1265 <dt><b><tt>fptrunc ( CST to TYPE )</tt></b></dt>
1266 <dd>Truncate a floating point constant to another floating point type. The
1267 size of CST must be larger than the size of TYPE. Both types must be
1268 floating point.</dd>
1269
1270 <dt><b><tt>fpext ( CST to TYPE )</tt></b></dt>
1271 <dd>Floating point extend a constant to another type. The size of CST must be
1272 smaller or equal to the size of TYPE. Both types must be floating point.</dd>
1273
1274 <dt><b><tt>fp2uint ( CST to TYPE )</tt></b></dt>
1275 <dd>Convert a floating point constant to the corresponding unsigned integer
1276 constant. TYPE must be an integer type. CST must be floating point. If the
1277 value won't fit in the integer type, the results are undefined.</dd>
1278
Reid Spencerd4448792006-11-09 23:03:26 +00001279 <dt><b><tt>fptosi ( CST to TYPE )</tt></b></dt>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00001280 <dd>Convert a floating point constant to the corresponding signed integer
1281 constant. TYPE must be an integer type. CST must be floating point. If the
1282 value won't fit in the integer type, the results are undefined.</dd>
1283
Reid Spencerd4448792006-11-09 23:03:26 +00001284 <dt><b><tt>uitofp ( CST to TYPE )</tt></b></dt>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00001285 <dd>Convert an unsigned integer constant to the corresponding floating point
1286 constant. TYPE must be floating point. CST must be of integer type. If the
1287 value won't fit in the floating point type, the results are undefined.</dd>
1288
Reid Spencerd4448792006-11-09 23:03:26 +00001289 <dt><b><tt>sitofp ( CST to TYPE )</tt></b></dt>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00001290 <dd>Convert a signed integer constant to the corresponding floating point
1291 constant. TYPE must be floating point. CST must be of integer type. If the
1292 value won't fit in the floating point type, the results are undefined.</dd>
1293
Reid Spencer5c0ef472006-11-11 23:08:07 +00001294 <dt><b><tt>ptrtoint ( CST to TYPE )</tt></b></dt>
1295 <dd>Convert a pointer typed constant to the corresponding integer constant
1296 TYPE must be an integer type. CST must be of pointer type. The CST value is
1297 zero extended, truncated, or unchanged to make it fit in TYPE.</dd>
1298
1299 <dt><b><tt>inttoptr ( CST to TYPE )</tt></b></dt>
1300 <dd>Convert a integer constant to a pointer constant. TYPE must be a
1301 pointer type. CST must be of integer type. The CST value is zero extended,
1302 truncated, or unchanged to make it fit in a pointer size. This one is
1303 <i>really</i> dangerous!</dd>
1304
1305 <dt><b><tt>bitcast ( CST to TYPE )</tt></b></dt>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00001306 <dd>Convert a constant, CST, to another TYPE. The size of CST and TYPE must be
1307 identical (same number of bits). The conversion is done as if the CST value
1308 was stored to memory and read back as TYPE. In other words, no bits change
Reid Spencer5c0ef472006-11-11 23:08:07 +00001309 with this operator, just the type. This can be used for conversion of
1310 packed types to any other type, as long as they have the same bit width. For
1311 pointers it is only valid to cast to another pointer type.
Reid Spencer9dee3ac2006-11-08 01:11:31 +00001312 </dd>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001313
1314 <dt><b><tt>getelementptr ( CSTPTR, IDX0, IDX1, ... )</tt></b></dt>
1315
1316 <dd>Perform the <a href="#i_getelementptr">getelementptr operation</a> on
1317 constants. As with the <a href="#i_getelementptr">getelementptr</a>
1318 instruction, the index list may have zero or more indexes, which are required
1319 to make sense for the type of "CSTPTR".</dd>
1320
Robert Bocchino9fbe1452006-01-10 19:31:34 +00001321 <dt><b><tt>select ( COND, VAL1, VAL2 )</tt></b></dt>
1322
1323 <dd>Perform the <a href="#i_select">select operation</a> on
Reid Spencer01c42592006-12-04 19:23:19 +00001324 constants.</dd>
1325
1326 <dt><b><tt>icmp COND ( VAL1, VAL2 )</tt></b></dt>
1327 <dd>Performs the <a href="#i_icmp">icmp operation</a> on constants.</dd>
1328
1329 <dt><b><tt>fcmp COND ( VAL1, VAL2 )</tt></b></dt>
1330 <dd>Performs the <a href="#i_fcmp">fcmp operation</a> on constants.</dd>
Robert Bocchino9fbe1452006-01-10 19:31:34 +00001331
1332 <dt><b><tt>extractelement ( VAL, IDX )</tt></b></dt>
1333
1334 <dd>Perform the <a href="#i_extractelement">extractelement
1335 operation</a> on constants.
1336
Robert Bocchino05ccd702006-01-15 20:48:27 +00001337 <dt><b><tt>insertelement ( VAL, ELT, IDX )</tt></b></dt>
1338
1339 <dd>Perform the <a href="#i_insertelement">insertelement
Reid Spencer01c42592006-12-04 19:23:19 +00001340 operation</a> on constants.</dd>
Robert Bocchino05ccd702006-01-15 20:48:27 +00001341
Chris Lattnerc1989542006-04-08 00:13:41 +00001342
1343 <dt><b><tt>shufflevector ( VEC1, VEC2, IDXMASK )</tt></b></dt>
1344
1345 <dd>Perform the <a href="#i_shufflevector">shufflevector
Reid Spencer01c42592006-12-04 19:23:19 +00001346 operation</a> on constants.</dd>
Chris Lattnerc1989542006-04-08 00:13:41 +00001347
Chris Lattnerc3f59762004-12-09 17:30:23 +00001348 <dt><b><tt>OPCODE ( LHS, RHS )</tt></b></dt>
1349
Reid Spencer2dc45b82004-12-09 18:13:12 +00001350 <dd>Perform the specified operation of the LHS and RHS constants. OPCODE may
1351 be any of the <a href="#binaryops">binary</a> or <a href="#bitwiseops">bitwise
Chris Lattnerc3f59762004-12-09 17:30:23 +00001352 binary</a> operations. The constraints on operands are the same as those for
1353 the corresponding instruction (e.g. no bitwise operations on floating point
John Criswelle4c57cc2005-05-12 16:52:32 +00001354 values are allowed).</dd>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001355</dl>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001356</div>
Chris Lattner9ee5d222004-03-08 16:49:10 +00001357
Chris Lattner00950542001-06-06 20:29:01 +00001358<!-- *********************************************************************** -->
Chris Lattnere87d6532006-01-25 23:47:57 +00001359<div class="doc_section"> <a name="othervalues">Other Values</a> </div>
1360<!-- *********************************************************************** -->
1361
1362<!-- ======================================================================= -->
1363<div class="doc_subsection">
1364<a name="inlineasm">Inline Assembler Expressions</a>
1365</div>
1366
1367<div class="doc_text">
1368
1369<p>
1370LLVM supports inline assembler expressions (as opposed to <a href="#moduleasm">
1371Module-Level Inline Assembly</a>) through the use of a special value. This
1372value represents the inline assembler as a string (containing the instructions
1373to emit), a list of operand constraints (stored as a string), and a flag that
1374indicates whether or not the inline asm expression has side effects. An example
1375inline assembler expression is:
1376</p>
1377
1378<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00001379 i32 (i32) asm "bswap $0", "=r,r"
Chris Lattnere87d6532006-01-25 23:47:57 +00001380</pre>
1381
1382<p>
1383Inline assembler expressions may <b>only</b> be used as the callee operand of
1384a <a href="#i_call"><tt>call</tt> instruction</a>. Thus, typically we have:
1385</p>
1386
1387<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00001388 %X = call i32 asm "<a href="#i_bswap">bswap</a> $0", "=r,r"(i32 %Y)
Chris Lattnere87d6532006-01-25 23:47:57 +00001389</pre>
1390
1391<p>
1392Inline asms with side effects not visible in the constraint list must be marked
1393as having side effects. This is done through the use of the
1394'<tt>sideeffect</tt>' keyword, like so:
1395</p>
1396
1397<pre>
1398 call void asm sideeffect "eieio", ""()
1399</pre>
1400
1401<p>TODO: The format of the asm and constraints string still need to be
1402documented here. Constraints on what can be done (e.g. duplication, moving, etc
1403need to be documented).
1404</p>
1405
1406</div>
1407
1408<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +00001409<div class="doc_section"> <a name="instref">Instruction Reference</a> </div>
1410<!-- *********************************************************************** -->
Chris Lattnerc3f59762004-12-09 17:30:23 +00001411
Misha Brukman9d0919f2003-11-08 01:05:38 +00001412<div class="doc_text">
Chris Lattnerc3f59762004-12-09 17:30:23 +00001413
Chris Lattner261efe92003-11-25 01:02:51 +00001414<p>The LLVM instruction set consists of several different
1415classifications of instructions: <a href="#terminators">terminator
John Criswellc1f786c2005-05-13 22:25:59 +00001416instructions</a>, <a href="#binaryops">binary instructions</a>,
1417<a href="#bitwiseops">bitwise binary instructions</a>, <a
Chris Lattner261efe92003-11-25 01:02:51 +00001418 href="#memoryops">memory instructions</a>, and <a href="#otherops">other
1419instructions</a>.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001420
Misha Brukman9d0919f2003-11-08 01:05:38 +00001421</div>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001422
Chris Lattner00950542001-06-06 20:29:01 +00001423<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +00001424<div class="doc_subsection"> <a name="terminators">Terminator
1425Instructions</a> </div>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001426
Misha Brukman9d0919f2003-11-08 01:05:38 +00001427<div class="doc_text">
Chris Lattnerc3f59762004-12-09 17:30:23 +00001428
Chris Lattner261efe92003-11-25 01:02:51 +00001429<p>As mentioned <a href="#functionstructure">previously</a>, every
1430basic block in a program ends with a "Terminator" instruction, which
1431indicates which block should be executed after the current block is
1432finished. These terminator instructions typically yield a '<tt>void</tt>'
1433value: they produce control flow, not values (the one exception being
1434the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction).</p>
John Criswell9e2485c2004-12-10 15:51:16 +00001435<p>There are six different terminator instructions: the '<a
Chris Lattner261efe92003-11-25 01:02:51 +00001436 href="#i_ret"><tt>ret</tt></a>' instruction, the '<a href="#i_br"><tt>br</tt></a>'
1437instruction, the '<a href="#i_switch"><tt>switch</tt></a>' instruction,
Chris Lattner35eca582004-10-16 18:04:13 +00001438the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction, the '<a
1439 href="#i_unwind"><tt>unwind</tt></a>' instruction, and the '<a
1440 href="#i_unreachable"><tt>unreachable</tt></a>' instruction.</p>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001441
Misha Brukman9d0919f2003-11-08 01:05:38 +00001442</div>
Chris Lattnerc3f59762004-12-09 17:30:23 +00001443
Chris Lattner00950542001-06-06 20:29:01 +00001444<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001445<div class="doc_subsubsection"> <a name="i_ret">'<tt>ret</tt>'
1446Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001447<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001448<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001449<pre> ret &lt;type&gt; &lt;value&gt; <i>; Return a value from a non-void function</i>
Chris Lattner7faa8832002-04-14 06:13:44 +00001450 ret void <i>; Return from void function</i>
Chris Lattner00950542001-06-06 20:29:01 +00001451</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001452<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001453<p>The '<tt>ret</tt>' instruction is used to return control flow (and a
John Criswellc1f786c2005-05-13 22:25:59 +00001454value) from a function back to the caller.</p>
John Criswell4457dc92004-04-09 16:48:45 +00001455<p>There are two forms of the '<tt>ret</tt>' instruction: one that
Chris Lattner261efe92003-11-25 01:02:51 +00001456returns a value and then causes control flow, and one that just causes
1457control flow to occur.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001458<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001459<p>The '<tt>ret</tt>' instruction may return any '<a
1460 href="#t_firstclass">first class</a>' type. Notice that a function is
1461not <a href="#wellformed">well formed</a> if there exists a '<tt>ret</tt>'
1462instruction inside of the function that returns a value that does not
1463match the return type of the function.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001464<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001465<p>When the '<tt>ret</tt>' instruction is executed, control flow
1466returns back to the calling function's context. If the caller is a "<a
John Criswellfa081872004-06-25 15:16:57 +00001467 href="#i_call"><tt>call</tt></a>" instruction, execution continues at
Chris Lattner261efe92003-11-25 01:02:51 +00001468the instruction after the call. If the caller was an "<a
1469 href="#i_invoke"><tt>invoke</tt></a>" instruction, execution continues
John Criswelle4c57cc2005-05-12 16:52:32 +00001470at the beginning of the "normal" destination block. If the instruction
Chris Lattner261efe92003-11-25 01:02:51 +00001471returns a value, that value shall set the call or invoke instruction's
1472return value.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001473<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001474<pre> ret i32 5 <i>; Return an integer value of 5</i>
Chris Lattner7faa8832002-04-14 06:13:44 +00001475 ret void <i>; Return from a void function</i>
Chris Lattner00950542001-06-06 20:29:01 +00001476</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001477</div>
Chris Lattner00950542001-06-06 20:29:01 +00001478<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001479<div class="doc_subsubsection"> <a name="i_br">'<tt>br</tt>' Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001480<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001481<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001482<pre> br bool &lt;cond&gt;, label &lt;iftrue&gt;, label &lt;iffalse&gt;<br> br label &lt;dest&gt; <i>; Unconditional branch</i>
Chris Lattner00950542001-06-06 20:29:01 +00001483</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001484<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001485<p>The '<tt>br</tt>' instruction is used to cause control flow to
1486transfer to a different basic block in the current function. There are
1487two forms of this instruction, corresponding to a conditional branch
1488and an unconditional branch.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001489<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001490<p>The conditional branch form of the '<tt>br</tt>' instruction takes a
1491single '<tt>bool</tt>' value and two '<tt>label</tt>' values. The
1492unconditional form of the '<tt>br</tt>' instruction takes a single '<tt>label</tt>'
1493value as a target.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001494<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001495<p>Upon execution of a conditional '<tt>br</tt>' instruction, the '<tt>bool</tt>'
1496argument is evaluated. If the value is <tt>true</tt>, control flows
1497to the '<tt>iftrue</tt>' <tt>label</tt> argument. If "cond" is <tt>false</tt>,
1498control flows to the '<tt>iffalse</tt>' <tt>label</tt> argument.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001499<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001500<pre>Test:<br> %cond = <a href="#i_icmp">icmp</a> eq, i32 %a, %b<br> br bool %cond, label %IfEqual, label %IfUnequal<br>IfEqual:<br> <a
1501 href="#i_ret">ret</a> i32 1<br>IfUnequal:<br> <a href="#i_ret">ret</a> i32 0<br></pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001502</div>
Chris Lattner00950542001-06-06 20:29:01 +00001503<!-- _______________________________________________________________________ -->
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001504<div class="doc_subsubsection">
1505 <a name="i_switch">'<tt>switch</tt>' Instruction</a>
1506</div>
1507
Misha Brukman9d0919f2003-11-08 01:05:38 +00001508<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001509<h5>Syntax:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001510
1511<pre>
1512 switch &lt;intty&gt; &lt;value&gt;, label &lt;defaultdest&gt; [ &lt;intty&gt; &lt;val&gt;, label &lt;dest&gt; ... ]
1513</pre>
1514
Chris Lattner00950542001-06-06 20:29:01 +00001515<h5>Overview:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001516
1517<p>The '<tt>switch</tt>' instruction is used to transfer control flow to one of
1518several different places. It is a generalization of the '<tt>br</tt>'
Misha Brukman9d0919f2003-11-08 01:05:38 +00001519instruction, allowing a branch to occur to one of many possible
1520destinations.</p>
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001521
1522
Chris Lattner00950542001-06-06 20:29:01 +00001523<h5>Arguments:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001524
1525<p>The '<tt>switch</tt>' instruction uses three parameters: an integer
1526comparison value '<tt>value</tt>', a default '<tt>label</tt>' destination, and
1527an array of pairs of comparison value constants and '<tt>label</tt>'s. The
1528table is not allowed to contain duplicate constant entries.</p>
1529
Chris Lattner00950542001-06-06 20:29:01 +00001530<h5>Semantics:</h5>
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001531
Chris Lattner261efe92003-11-25 01:02:51 +00001532<p>The <tt>switch</tt> instruction specifies a table of values and
1533destinations. When the '<tt>switch</tt>' instruction is executed, this
John Criswell84114752004-06-25 16:05:06 +00001534table is searched for the given value. If the value is found, control flow is
1535transfered to the corresponding destination; otherwise, control flow is
1536transfered to the default destination.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001537
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001538<h5>Implementation:</h5>
1539
1540<p>Depending on properties of the target machine and the particular
1541<tt>switch</tt> instruction, this instruction may be code generated in different
John Criswell84114752004-06-25 16:05:06 +00001542ways. For example, it could be generated as a series of chained conditional
1543branches or with a lookup table.</p>
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001544
1545<h5>Example:</h5>
1546
1547<pre>
1548 <i>; Emulate a conditional br instruction</i>
Reid Spencerca86e162006-12-31 07:07:53 +00001549 %Val = <a href="#i_zext">zext</a> bool %value to i32
1550 switch i32 %Val, label %truedest [i32 0, label %falsedest ]
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001551
1552 <i>; Emulate an unconditional br instruction</i>
Reid Spencerca86e162006-12-31 07:07:53 +00001553 switch i32 0, label %dest [ ]
Chris Lattnerc88c17b2004-02-24 04:54:45 +00001554
1555 <i>; Implement a jump table:</i>
Reid Spencerca86e162006-12-31 07:07:53 +00001556 switch i32 %val, label %otherwise [ i32 0, label %onzero
1557 i32 1, label %onone
1558 i32 2, label %ontwo ]
Chris Lattner00950542001-06-06 20:29:01 +00001559</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001560</div>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001561
Chris Lattner00950542001-06-06 20:29:01 +00001562<!-- _______________________________________________________________________ -->
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001563<div class="doc_subsubsection">
1564 <a name="i_invoke">'<tt>invoke</tt>' Instruction</a>
1565</div>
1566
Misha Brukman9d0919f2003-11-08 01:05:38 +00001567<div class="doc_text">
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001568
Chris Lattner00950542001-06-06 20:29:01 +00001569<h5>Syntax:</h5>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001570
1571<pre>
1572 &lt;result&gt; = invoke [<a href="#callingconv">cconv</a>] &lt;ptr to function ty&gt; %&lt;function ptr val&gt;(&lt;function args&gt;)
Chris Lattner76b8a332006-05-14 18:23:06 +00001573 to label &lt;normal label&gt; unwind label &lt;exception label&gt;
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001574</pre>
1575
Chris Lattner6536cfe2002-05-06 22:08:29 +00001576<h5>Overview:</h5>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001577
1578<p>The '<tt>invoke</tt>' instruction causes control to transfer to a specified
1579function, with the possibility of control flow transfer to either the
John Criswelle4c57cc2005-05-12 16:52:32 +00001580'<tt>normal</tt>' label or the
1581'<tt>exception</tt>' label. If the callee function returns with the
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001582"<tt><a href="#i_ret">ret</a></tt>" instruction, control flow will return to the
1583"normal" label. If the callee (or any indirect callees) returns with the "<a
John Criswelle4c57cc2005-05-12 16:52:32 +00001584href="#i_unwind"><tt>unwind</tt></a>" instruction, control is interrupted and
1585continued at the dynamically nearest "exception" label.</p>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001586
Chris Lattner00950542001-06-06 20:29:01 +00001587<h5>Arguments:</h5>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001588
Misha Brukman9d0919f2003-11-08 01:05:38 +00001589<p>This instruction requires several arguments:</p>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001590
Chris Lattner00950542001-06-06 20:29:01 +00001591<ol>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001592 <li>
John Criswellc1f786c2005-05-13 22:25:59 +00001593 The optional "cconv" marker indicates which <a href="callingconv">calling
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001594 convention</a> the call should use. If none is specified, the call defaults
1595 to using C calling conventions.
1596 </li>
1597 <li>'<tt>ptr to function ty</tt>': shall be the signature of the pointer to
1598 function value being invoked. In most cases, this is a direct function
1599 invocation, but indirect <tt>invoke</tt>s are just as possible, branching off
1600 an arbitrary pointer to function value.
1601 </li>
1602
1603 <li>'<tt>function ptr val</tt>': An LLVM value containing a pointer to a
1604 function to be invoked. </li>
1605
1606 <li>'<tt>function args</tt>': argument list whose types match the function
1607 signature argument types. If the function signature indicates the function
1608 accepts a variable number of arguments, the extra arguments can be
1609 specified. </li>
1610
1611 <li>'<tt>normal label</tt>': the label reached when the called function
1612 executes a '<tt><a href="#i_ret">ret</a></tt>' instruction. </li>
1613
1614 <li>'<tt>exception label</tt>': the label reached when a callee returns with
1615 the <a href="#i_unwind"><tt>unwind</tt></a> instruction. </li>
1616
Chris Lattner00950542001-06-06 20:29:01 +00001617</ol>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001618
Chris Lattner00950542001-06-06 20:29:01 +00001619<h5>Semantics:</h5>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001620
Misha Brukman9d0919f2003-11-08 01:05:38 +00001621<p>This instruction is designed to operate as a standard '<tt><a
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001622href="#i_call">call</a></tt>' instruction in most regards. The primary
1623difference is that it establishes an association with a label, which is used by
1624the runtime library to unwind the stack.</p>
1625
1626<p>This instruction is used in languages with destructors to ensure that proper
1627cleanup is performed in the case of either a <tt>longjmp</tt> or a thrown
1628exception. Additionally, this is important for implementation of
1629'<tt>catch</tt>' clauses in high-level languages that support them.</p>
1630
Chris Lattner00950542001-06-06 20:29:01 +00001631<h5>Example:</h5>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00001632<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00001633 %retval = invoke i32 %Test(i32 15) to label %Continue
1634 unwind label %TestCleanup <i>; {i32}:retval set</i>
1635 %retval = invoke <a href="#callingconv">coldcc</a> i32 %Test(i32 15) to label %Continue
1636 unwind label %TestCleanup <i>; {i32}:retval set</i>
Chris Lattner00950542001-06-06 20:29:01 +00001637</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001638</div>
Chris Lattner35eca582004-10-16 18:04:13 +00001639
1640
Chris Lattner27f71f22003-09-03 00:41:47 +00001641<!-- _______________________________________________________________________ -->
Chris Lattner35eca582004-10-16 18:04:13 +00001642
Chris Lattner261efe92003-11-25 01:02:51 +00001643<div class="doc_subsubsection"> <a name="i_unwind">'<tt>unwind</tt>'
1644Instruction</a> </div>
Chris Lattner35eca582004-10-16 18:04:13 +00001645
Misha Brukman9d0919f2003-11-08 01:05:38 +00001646<div class="doc_text">
Chris Lattner35eca582004-10-16 18:04:13 +00001647
Chris Lattner27f71f22003-09-03 00:41:47 +00001648<h5>Syntax:</h5>
Chris Lattner35eca582004-10-16 18:04:13 +00001649<pre>
1650 unwind
1651</pre>
1652
Chris Lattner27f71f22003-09-03 00:41:47 +00001653<h5>Overview:</h5>
Chris Lattner35eca582004-10-16 18:04:13 +00001654
1655<p>The '<tt>unwind</tt>' instruction unwinds the stack, continuing control flow
1656at the first callee in the dynamic call stack which used an <a
1657href="#i_invoke"><tt>invoke</tt></a> instruction to perform the call. This is
1658primarily used to implement exception handling.</p>
1659
Chris Lattner27f71f22003-09-03 00:41:47 +00001660<h5>Semantics:</h5>
Chris Lattner35eca582004-10-16 18:04:13 +00001661
1662<p>The '<tt>unwind</tt>' intrinsic causes execution of the current function to
1663immediately halt. The dynamic call stack is then searched for the first <a
1664href="#i_invoke"><tt>invoke</tt></a> instruction on the call stack. Once found,
1665execution continues at the "exceptional" destination block specified by the
1666<tt>invoke</tt> instruction. If there is no <tt>invoke</tt> instruction in the
1667dynamic call chain, undefined behavior results.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001668</div>
Chris Lattner35eca582004-10-16 18:04:13 +00001669
1670<!-- _______________________________________________________________________ -->
1671
1672<div class="doc_subsubsection"> <a name="i_unreachable">'<tt>unreachable</tt>'
1673Instruction</a> </div>
1674
1675<div class="doc_text">
1676
1677<h5>Syntax:</h5>
1678<pre>
1679 unreachable
1680</pre>
1681
1682<h5>Overview:</h5>
1683
1684<p>The '<tt>unreachable</tt>' instruction has no defined semantics. This
1685instruction is used to inform the optimizer that a particular portion of the
1686code is not reachable. This can be used to indicate that the code after a
1687no-return function cannot be reached, and other facts.</p>
1688
1689<h5>Semantics:</h5>
1690
1691<p>The '<tt>unreachable</tt>' instruction has no defined semantics.</p>
1692</div>
1693
1694
1695
Chris Lattner00950542001-06-06 20:29:01 +00001696<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +00001697<div class="doc_subsection"> <a name="binaryops">Binary Operations</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001698<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +00001699<p>Binary operators are used to do most of the computation in a
1700program. They require two operands, execute an operation on them, and
John Criswell9e2485c2004-12-10 15:51:16 +00001701produce a single value. The operands might represent
Chris Lattnera58561b2004-08-12 19:12:28 +00001702multiple data, as is the case with the <a href="#t_packed">packed</a> data type.
1703The result value of a binary operator is not
Chris Lattner261efe92003-11-25 01:02:51 +00001704necessarily the same type as its operands.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001705<p>There are several different binary operators:</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001706</div>
Chris Lattner00950542001-06-06 20:29:01 +00001707<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001708<div class="doc_subsubsection"> <a name="i_add">'<tt>add</tt>'
1709Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001710<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001711<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001712<pre> &lt;result&gt; = add &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001713</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001714<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001715<p>The '<tt>add</tt>' instruction returns the sum of its two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001716<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001717<p>The two arguments to the '<tt>add</tt>' instruction must be either <a
Chris Lattnera58561b2004-08-12 19:12:28 +00001718 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> values.
1719 This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1720Both arguments must have identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001721<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001722<p>The value produced is the integer or floating point sum of the two
1723operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001724<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001725<pre> &lt;result&gt; = add i32 4, %var <i>; yields {i32}:result = 4 + %var</i>
Chris Lattner00950542001-06-06 20:29:01 +00001726</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001727</div>
Chris Lattner00950542001-06-06 20:29:01 +00001728<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001729<div class="doc_subsubsection"> <a name="i_sub">'<tt>sub</tt>'
1730Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001731<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001732<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001733<pre> &lt;result&gt; = sub &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001734</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001735<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001736<p>The '<tt>sub</tt>' instruction returns the difference of its two
1737operands.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001738<p>Note that the '<tt>sub</tt>' instruction is used to represent the '<tt>neg</tt>'
1739instruction present in most other intermediate representations.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001740<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001741<p>The two arguments to the '<tt>sub</tt>' instruction must be either <a
Chris Lattner261efe92003-11-25 01:02:51 +00001742 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
Chris Lattnera58561b2004-08-12 19:12:28 +00001743values.
1744This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1745Both arguments must have identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001746<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001747<p>The value produced is the integer or floating point difference of
1748the two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001749<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001750<pre> &lt;result&gt; = sub i32 4, %var <i>; yields {i32}:result = 4 - %var</i>
1751 &lt;result&gt; = sub i32 0, %val <i>; yields {i32}:result = -%var</i>
Chris Lattner00950542001-06-06 20:29:01 +00001752</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001753</div>
Chris Lattner00950542001-06-06 20:29:01 +00001754<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001755<div class="doc_subsubsection"> <a name="i_mul">'<tt>mul</tt>'
1756Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001757<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001758<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001759<pre> &lt;result&gt; = mul &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001760</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001761<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001762<p>The '<tt>mul</tt>' instruction returns the product of its two
1763operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001764<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001765<p>The two arguments to the '<tt>mul</tt>' instruction must be either <a
Chris Lattner261efe92003-11-25 01:02:51 +00001766 href="#t_integer">integer</a> or <a href="#t_floating">floating point</a>
Chris Lattnera58561b2004-08-12 19:12:28 +00001767values.
1768This instruction can also take <a href="#t_packed">packed</a> versions of the values.
1769Both arguments must have identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001770<h5>Semantics:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001771<p>The value produced is the integer or floating point product of the
Misha Brukman9d0919f2003-11-08 01:05:38 +00001772two operands.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001773<p>There is no signed vs unsigned multiplication. The appropriate
1774action is taken based on the type of the operand.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001775<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001776<pre> &lt;result&gt; = mul i32 4, %var <i>; yields {i32}:result = 4 * %var</i>
Chris Lattner00950542001-06-06 20:29:01 +00001777</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001778</div>
Chris Lattner00950542001-06-06 20:29:01 +00001779<!-- _______________________________________________________________________ -->
Reid Spencer1628cec2006-10-26 06:15:43 +00001780<div class="doc_subsubsection"> <a name="i_udiv">'<tt>udiv</tt>' Instruction
1781</a></div>
1782<div class="doc_text">
1783<h5>Syntax:</h5>
1784<pre> &lt;result&gt; = udiv &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
1785</pre>
1786<h5>Overview:</h5>
1787<p>The '<tt>udiv</tt>' instruction returns the quotient of its two
1788operands.</p>
1789<h5>Arguments:</h5>
1790<p>The two arguments to the '<tt>udiv</tt>' instruction must be
1791<a href="#t_integer">integer</a> values. Both arguments must have identical
1792types. This instruction can also take <a href="#t_packed">packed</a> versions
1793of the values in which case the elements must be integers.</p>
1794<h5>Semantics:</h5>
1795<p>The value produced is the unsigned integer quotient of the two operands. This
1796instruction always performs an unsigned division operation, regardless of
1797whether the arguments are unsigned or not.</p>
1798<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001799<pre> &lt;result&gt; = udiv i32 4, %var <i>; yields {i32}:result = 4 / %var</i>
Reid Spencer1628cec2006-10-26 06:15:43 +00001800</pre>
1801</div>
1802<!-- _______________________________________________________________________ -->
1803<div class="doc_subsubsection"> <a name="i_sdiv">'<tt>sdiv</tt>' Instruction
1804</a> </div>
1805<div class="doc_text">
1806<h5>Syntax:</h5>
1807<pre> &lt;result&gt; = sdiv &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
1808</pre>
1809<h5>Overview:</h5>
1810<p>The '<tt>sdiv</tt>' instruction returns the quotient of its two
1811operands.</p>
1812<h5>Arguments:</h5>
1813<p>The two arguments to the '<tt>sdiv</tt>' instruction must be
1814<a href="#t_integer">integer</a> values. Both arguments must have identical
1815types. This instruction can also take <a href="#t_packed">packed</a> versions
1816of the values in which case the elements must be integers.</p>
1817<h5>Semantics:</h5>
1818<p>The value produced is the signed integer quotient of the two operands. This
1819instruction always performs a signed division operation, regardless of whether
1820the arguments are signed or not.</p>
1821<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001822<pre> &lt;result&gt; = sdiv i32 4, %var <i>; yields {i32}:result = 4 / %var</i>
Reid Spencer1628cec2006-10-26 06:15:43 +00001823</pre>
1824</div>
1825<!-- _______________________________________________________________________ -->
1826<div class="doc_subsubsection"> <a name="i_fdiv">'<tt>fdiv</tt>'
Chris Lattner261efe92003-11-25 01:02:51 +00001827Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001828<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001829<h5>Syntax:</h5>
Reid Spencer1628cec2006-10-26 06:15:43 +00001830<pre> &lt;result&gt; = fdiv &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner261efe92003-11-25 01:02:51 +00001831</pre>
1832<h5>Overview:</h5>
Reid Spencer1628cec2006-10-26 06:15:43 +00001833<p>The '<tt>fdiv</tt>' instruction returns the quotient of its two
Chris Lattner261efe92003-11-25 01:02:51 +00001834operands.</p>
1835<h5>Arguments:</h5>
Reid Spencer1628cec2006-10-26 06:15:43 +00001836<p>The two arguments to the '<tt>div</tt>' instruction must be
1837<a href="#t_floating">floating point</a> values. Both arguments must have
1838identical types. This instruction can also take <a href="#t_packed">packed</a>
1839versions of the values in which case the elements must be floating point.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001840<h5>Semantics:</h5>
Reid Spencer1628cec2006-10-26 06:15:43 +00001841<p>The value produced is the floating point quotient of the two operands.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001842<h5>Example:</h5>
Reid Spencer1628cec2006-10-26 06:15:43 +00001843<pre> &lt;result&gt; = fdiv float 4.0, %var <i>; yields {float}:result = 4.0 / %var</i>
Chris Lattner261efe92003-11-25 01:02:51 +00001844</pre>
1845</div>
1846<!-- _______________________________________________________________________ -->
Reid Spencer0a783f72006-11-02 01:53:59 +00001847<div class="doc_subsubsection"> <a name="i_urem">'<tt>urem</tt>' Instruction</a>
1848</div>
1849<div class="doc_text">
1850<h5>Syntax:</h5>
1851<pre> &lt;result&gt; = urem &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
1852</pre>
1853<h5>Overview:</h5>
1854<p>The '<tt>urem</tt>' instruction returns the remainder from the
1855unsigned division of its two arguments.</p>
1856<h5>Arguments:</h5>
1857<p>The two arguments to the '<tt>urem</tt>' instruction must be
1858<a href="#t_integer">integer</a> values. Both arguments must have identical
1859types.</p>
1860<h5>Semantics:</h5>
1861<p>This instruction returns the unsigned integer <i>remainder</i> of a division.
1862This instruction always performs an unsigned division to get the remainder,
1863regardless of whether the arguments are unsigned or not.</p>
1864<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001865<pre> &lt;result&gt; = urem i32 4, %var <i>; yields {i32}:result = 4 % %var</i>
Reid Spencer0a783f72006-11-02 01:53:59 +00001866</pre>
1867
1868</div>
1869<!-- _______________________________________________________________________ -->
1870<div class="doc_subsubsection"> <a name="i_srem">'<tt>srem</tt>'
Chris Lattner261efe92003-11-25 01:02:51 +00001871Instruction</a> </div>
1872<div class="doc_text">
1873<h5>Syntax:</h5>
Reid Spencer0a783f72006-11-02 01:53:59 +00001874<pre> &lt;result&gt; = srem &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner261efe92003-11-25 01:02:51 +00001875</pre>
1876<h5>Overview:</h5>
Reid Spencer0a783f72006-11-02 01:53:59 +00001877<p>The '<tt>srem</tt>' instruction returns the remainder from the
1878signed division of its two operands.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001879<h5>Arguments:</h5>
Reid Spencer0a783f72006-11-02 01:53:59 +00001880<p>The two arguments to the '<tt>srem</tt>' instruction must be
1881<a href="#t_integer">integer</a> values. Both arguments must have identical
1882types.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001883<h5>Semantics:</h5>
Reid Spencer0a783f72006-11-02 01:53:59 +00001884<p>This instruction returns the <i>remainder</i> of a division (where the result
Chris Lattner261efe92003-11-25 01:02:51 +00001885has the same sign as the divisor), not the <i>modulus</i> (where the
1886result has the same sign as the dividend) of a value. For more
John Criswell0ec250c2005-10-24 16:17:18 +00001887information about the difference, see <a
Chris Lattner261efe92003-11-25 01:02:51 +00001888 href="http://mathforum.org/dr.math/problems/anne.4.28.99.html">The
1889Math Forum</a>.</p>
1890<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001891<pre> &lt;result&gt; = srem i32 4, %var <i>; yields {i32}:result = 4 % %var</i>
Reid Spencer0a783f72006-11-02 01:53:59 +00001892</pre>
1893
1894</div>
1895<!-- _______________________________________________________________________ -->
1896<div class="doc_subsubsection"> <a name="i_frem">'<tt>frem</tt>'
1897Instruction</a> </div>
1898<div class="doc_text">
1899<h5>Syntax:</h5>
1900<pre> &lt;result&gt; = frem &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
1901</pre>
1902<h5>Overview:</h5>
1903<p>The '<tt>frem</tt>' instruction returns the remainder from the
1904division of its two operands.</p>
1905<h5>Arguments:</h5>
1906<p>The two arguments to the '<tt>frem</tt>' instruction must be
1907<a href="#t_floating">floating point</a> values. Both arguments must have
1908identical types.</p>
1909<h5>Semantics:</h5>
1910<p>This instruction returns the <i>remainder</i> of a division.</p>
1911<h5>Example:</h5>
1912<pre> &lt;result&gt; = frem float 4.0, %var <i>; yields {float}:result = 4.0 % %var</i>
Chris Lattner261efe92003-11-25 01:02:51 +00001913</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001914</div>
Robert Bocchino7b81c752006-02-17 21:18:08 +00001915
Chris Lattner00950542001-06-06 20:29:01 +00001916<!-- ======================================================================= -->
Chris Lattner261efe92003-11-25 01:02:51 +00001917<div class="doc_subsection"> <a name="bitwiseops">Bitwise Binary
1918Operations</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001919<div class="doc_text">
Chris Lattner261efe92003-11-25 01:02:51 +00001920<p>Bitwise binary operators are used to do various forms of
1921bit-twiddling in a program. They are generally very efficient
John Criswell9e2485c2004-12-10 15:51:16 +00001922instructions and can commonly be strength reduced from other
Chris Lattner261efe92003-11-25 01:02:51 +00001923instructions. They require two operands, execute an operation on them,
1924and produce a single value. The resulting value of the bitwise binary
1925operators is always the same type as its first operand.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001926</div>
Chris Lattner00950542001-06-06 20:29:01 +00001927<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001928<div class="doc_subsubsection"> <a name="i_and">'<tt>and</tt>'
1929Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001930<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001931<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001932<pre> &lt;result&gt; = and &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001933</pre>
Chris Lattner00950542001-06-06 20:29:01 +00001934<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001935<p>The '<tt>and</tt>' instruction returns the bitwise logical and of
1936its two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001937<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001938<p>The two arguments to the '<tt>and</tt>' instruction must be <a
Chris Lattner261efe92003-11-25 01:02:51 +00001939 href="#t_integral">integral</a> values. Both arguments must have
1940identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001941<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001942<p>The truth table used for the '<tt>and</tt>' instruction is:</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001943<p> </p>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00001944<div style="align: center">
Misha Brukman9d0919f2003-11-08 01:05:38 +00001945<table border="1" cellspacing="0" cellpadding="4">
Chris Lattner261efe92003-11-25 01:02:51 +00001946 <tbody>
1947 <tr>
1948 <td>In0</td>
1949 <td>In1</td>
1950 <td>Out</td>
1951 </tr>
1952 <tr>
1953 <td>0</td>
1954 <td>0</td>
1955 <td>0</td>
1956 </tr>
1957 <tr>
1958 <td>0</td>
1959 <td>1</td>
1960 <td>0</td>
1961 </tr>
1962 <tr>
1963 <td>1</td>
1964 <td>0</td>
1965 <td>0</td>
1966 </tr>
1967 <tr>
1968 <td>1</td>
1969 <td>1</td>
1970 <td>1</td>
1971 </tr>
1972 </tbody>
1973</table>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00001974</div>
Chris Lattner00950542001-06-06 20:29:01 +00001975<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00001976<pre> &lt;result&gt; = and i32 4, %var <i>; yields {i32}:result = 4 &amp; %var</i>
1977 &lt;result&gt; = and i32 15, 40 <i>; yields {i32}:result = 8</i>
1978 &lt;result&gt; = and i32 4, 8 <i>; yields {i32}:result = 0</i>
Chris Lattner00950542001-06-06 20:29:01 +00001979</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001980</div>
Chris Lattner00950542001-06-06 20:29:01 +00001981<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00001982<div class="doc_subsubsection"> <a name="i_or">'<tt>or</tt>' Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001983<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00001984<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00001985<pre> &lt;result&gt; = or &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00001986</pre>
Chris Lattner261efe92003-11-25 01:02:51 +00001987<h5>Overview:</h5>
1988<p>The '<tt>or</tt>' instruction returns the bitwise logical inclusive
1989or of its two operands.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001990<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001991<p>The two arguments to the '<tt>or</tt>' instruction must be <a
Chris Lattner261efe92003-11-25 01:02:51 +00001992 href="#t_integral">integral</a> values. Both arguments must have
1993identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00001994<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00001995<p>The truth table used for the '<tt>or</tt>' instruction is:</p>
Chris Lattner261efe92003-11-25 01:02:51 +00001996<p> </p>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00001997<div style="align: center">
Chris Lattner261efe92003-11-25 01:02:51 +00001998<table border="1" cellspacing="0" cellpadding="4">
1999 <tbody>
2000 <tr>
2001 <td>In0</td>
2002 <td>In1</td>
2003 <td>Out</td>
2004 </tr>
2005 <tr>
2006 <td>0</td>
2007 <td>0</td>
2008 <td>0</td>
2009 </tr>
2010 <tr>
2011 <td>0</td>
2012 <td>1</td>
2013 <td>1</td>
2014 </tr>
2015 <tr>
2016 <td>1</td>
2017 <td>0</td>
2018 <td>1</td>
2019 </tr>
2020 <tr>
2021 <td>1</td>
2022 <td>1</td>
2023 <td>1</td>
2024 </tr>
2025 </tbody>
2026</table>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00002027</div>
Chris Lattner00950542001-06-06 20:29:01 +00002028<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002029<pre> &lt;result&gt; = or i32 4, %var <i>; yields {i32}:result = 4 | %var</i>
2030 &lt;result&gt; = or i32 15, 40 <i>; yields {i32}:result = 47</i>
2031 &lt;result&gt; = or i32 4, 8 <i>; yields {i32}:result = 12</i>
Chris Lattner00950542001-06-06 20:29:01 +00002032</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002033</div>
Chris Lattner00950542001-06-06 20:29:01 +00002034<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00002035<div class="doc_subsubsection"> <a name="i_xor">'<tt>xor</tt>'
2036Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002037<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00002038<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00002039<pre> &lt;result&gt; = xor &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00002040</pre>
Chris Lattner00950542001-06-06 20:29:01 +00002041<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00002042<p>The '<tt>xor</tt>' instruction returns the bitwise logical exclusive
2043or of its two operands. The <tt>xor</tt> is used to implement the
2044"one's complement" operation, which is the "~" operator in C.</p>
Chris Lattner00950542001-06-06 20:29:01 +00002045<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002046<p>The two arguments to the '<tt>xor</tt>' instruction must be <a
Chris Lattner261efe92003-11-25 01:02:51 +00002047 href="#t_integral">integral</a> values. Both arguments must have
2048identical types.</p>
Chris Lattner00950542001-06-06 20:29:01 +00002049<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002050<p>The truth table used for the '<tt>xor</tt>' instruction is:</p>
Chris Lattner261efe92003-11-25 01:02:51 +00002051<p> </p>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00002052<div style="align: center">
Chris Lattner261efe92003-11-25 01:02:51 +00002053<table border="1" cellspacing="0" cellpadding="4">
2054 <tbody>
2055 <tr>
2056 <td>In0</td>
2057 <td>In1</td>
2058 <td>Out</td>
2059 </tr>
2060 <tr>
2061 <td>0</td>
2062 <td>0</td>
2063 <td>0</td>
2064 </tr>
2065 <tr>
2066 <td>0</td>
2067 <td>1</td>
2068 <td>1</td>
2069 </tr>
2070 <tr>
2071 <td>1</td>
2072 <td>0</td>
2073 <td>1</td>
2074 </tr>
2075 <tr>
2076 <td>1</td>
2077 <td>1</td>
2078 <td>0</td>
2079 </tr>
2080 </tbody>
2081</table>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00002082</div>
Chris Lattner261efe92003-11-25 01:02:51 +00002083<p> </p>
Chris Lattner00950542001-06-06 20:29:01 +00002084<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002085<pre> &lt;result&gt; = xor i32 4, %var <i>; yields {i32}:result = 4 ^ %var</i>
2086 &lt;result&gt; = xor i32 15, 40 <i>; yields {i32}:result = 39</i>
2087 &lt;result&gt; = xor i32 4, 8 <i>; yields {i32}:result = 12</i>
2088 &lt;result&gt; = xor i32 %V, -1 <i>; yields {i32}:result = ~%V</i>
Chris Lattner00950542001-06-06 20:29:01 +00002089</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002090</div>
Chris Lattner00950542001-06-06 20:29:01 +00002091<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00002092<div class="doc_subsubsection"> <a name="i_shl">'<tt>shl</tt>'
2093Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002094<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00002095<h5>Syntax:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002096<pre> &lt;result&gt; = shl &lt;ty&gt; &lt;var1&gt;, i8 &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00002097</pre>
Chris Lattner00950542001-06-06 20:29:01 +00002098<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00002099<p>The '<tt>shl</tt>' instruction returns the first operand shifted to
2100the left a specified number of bits.</p>
Chris Lattner00950542001-06-06 20:29:01 +00002101<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002102<p>The first argument to the '<tt>shl</tt>' instruction must be an <a
Reid Spencerca86e162006-12-31 07:07:53 +00002103 href="#t_integer">integer</a> type. The second argument must be an '<tt>i8</tt>'
Chris Lattner261efe92003-11-25 01:02:51 +00002104type.</p>
Chris Lattner00950542001-06-06 20:29:01 +00002105<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002106<p>The value produced is <tt>var1</tt> * 2<sup><tt>var2</tt></sup>.</p>
Chris Lattner00950542001-06-06 20:29:01 +00002107<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002108<pre> &lt;result&gt; = shl i32 4, i8 %var <i>; yields {i32}:result = 4 &lt;&lt; %var</i>
2109 &lt;result&gt; = shl i32 4, i8 2 <i>; yields {i32}:result = 16</i>
2110 &lt;result&gt; = shl i32 1, i8 10 <i>; yields {i32}:result = 1024</i>
Chris Lattner00950542001-06-06 20:29:01 +00002111</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002112</div>
Chris Lattner00950542001-06-06 20:29:01 +00002113<!-- _______________________________________________________________________ -->
Reid Spencer3822ff52006-11-08 06:47:33 +00002114<div class="doc_subsubsection"> <a name="i_lshr">'<tt>lshr</tt>'
Chris Lattner261efe92003-11-25 01:02:51 +00002115Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002116<div class="doc_text">
Chris Lattner00950542001-06-06 20:29:01 +00002117<h5>Syntax:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002118<pre> &lt;result&gt; = lshr &lt;ty&gt; &lt;var1&gt;, i8 &lt;var2&gt; <i>; yields {ty}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00002119</pre>
Reid Spencer3822ff52006-11-08 06:47:33 +00002120
Chris Lattner00950542001-06-06 20:29:01 +00002121<h5>Overview:</h5>
Reid Spencer3822ff52006-11-08 06:47:33 +00002122<p>The '<tt>lshr</tt>' instruction (logical shift right) returns the first
2123operand shifted to the right a specified number of bits.</p>
2124
Chris Lattner00950542001-06-06 20:29:01 +00002125<h5>Arguments:</h5>
Reid Spencer3822ff52006-11-08 06:47:33 +00002126<p>The first argument to the '<tt>lshr</tt>' instruction must be an <a
Reid Spencerca86e162006-12-31 07:07:53 +00002127 href="#t_integer">integer</a> type. The second argument must be an '<tt>i8</tt>' type.</p>
Reid Spencer3822ff52006-11-08 06:47:33 +00002128
Chris Lattner00950542001-06-06 20:29:01 +00002129<h5>Semantics:</h5>
Reid Spencer3822ff52006-11-08 06:47:33 +00002130<p>This instruction always performs a logical shift right operation, regardless
2131of whether the arguments are unsigned or not. The <tt>var2</tt> most significant
2132bits will be filled with zero bits after the shift.</p>
2133
Chris Lattner00950542001-06-06 20:29:01 +00002134<h5>Example:</h5>
Reid Spencer3822ff52006-11-08 06:47:33 +00002135<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002136 &lt;result&gt; = lshr i32 4, i8 1 <i>; yields {i32}:result = 2</i>
2137 &lt;result&gt; = lshr i32 4, i8 2 <i>; yields {i32}:result = 1</i>
2138 &lt;result&gt; = lshr i8 4, i8 3 <i>; yields {i8 }:result = 0</i>
2139 &lt;result&gt; = lshr i8 -2, i8 1 <i>; yields {i8 }:result = 0x7FFFFFFF </i>
Reid Spencer3822ff52006-11-08 06:47:33 +00002140</pre>
2141</div>
2142
2143<!-- ======================================================================= -->
2144<div class="doc_subsubsection"> <a name="i_ashr">'<tt>ashr</tt>'
2145Instruction</a> </div>
2146<div class="doc_text">
2147
2148<h5>Syntax:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002149<pre> &lt;result&gt; = ashr &lt;ty&gt; &lt;var1&gt;, i8 &lt;var2&gt; <i>; yields {ty}:result</i>
Reid Spencer3822ff52006-11-08 06:47:33 +00002150</pre>
2151
2152<h5>Overview:</h5>
2153<p>The '<tt>ashr</tt>' instruction (arithmetic shift right) returns the first
2154operand shifted to the right a specified number of bits.</p>
2155
2156<h5>Arguments:</h5>
2157<p>The first argument to the '<tt>ashr</tt>' instruction must be an
2158<a href="#t_integer">integer</a> type. The second argument must be an
Reid Spencerca86e162006-12-31 07:07:53 +00002159'<tt>i8</tt>' type.</p>
Reid Spencer3822ff52006-11-08 06:47:33 +00002160
2161<h5>Semantics:</h5>
2162<p>This instruction always performs an arithmetic shift right operation,
2163regardless of whether the arguments are signed or not. The <tt>var2</tt> most
2164significant bits will be filled with the sign bit of <tt>var1</tt>.</p>
2165
2166<h5>Example:</h5>
2167<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002168 &lt;result&gt; = ashr i32 4, i8 1 <i>; yields {i32}:result = 2</i>
2169 &lt;result&gt; = ashr i32 4, i8 2 <i>; yields {i32}:result = 1</i>
2170 &lt;result&gt; = ashr i8 4, i8 3 <i>; yields {i8}:result = 0</i>
2171 &lt;result&gt; = ashr i8 -2, i8 1 <i>; yields {i8 }:result = -1</i>
Chris Lattner00950542001-06-06 20:29:01 +00002172</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002173</div>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002174
Chris Lattner00950542001-06-06 20:29:01 +00002175<!-- ======================================================================= -->
Chris Lattner2cbdc452005-11-06 08:02:57 +00002176<div class="doc_subsection">
Chris Lattner3df241e2006-04-08 23:07:04 +00002177 <a name="vectorops">Vector Operations</a>
2178</div>
2179
2180<div class="doc_text">
2181
2182<p>LLVM supports several instructions to represent vector operations in a
2183target-independent manner. This instructions cover the element-access and
2184vector-specific operations needed to process vectors effectively. While LLVM
2185does directly support these vector operations, many sophisticated algorithms
2186will want to use target-specific intrinsics to take full advantage of a specific
2187target.</p>
2188
2189</div>
2190
2191<!-- _______________________________________________________________________ -->
2192<div class="doc_subsubsection">
2193 <a name="i_extractelement">'<tt>extractelement</tt>' Instruction</a>
2194</div>
2195
2196<div class="doc_text">
2197
2198<h5>Syntax:</h5>
2199
2200<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002201 &lt;result&gt; = extractelement &lt;n x &lt;ty&gt;&gt; &lt;val&gt;, i32 &lt;idx&gt; <i>; yields &lt;ty&gt;</i>
Chris Lattner3df241e2006-04-08 23:07:04 +00002202</pre>
2203
2204<h5>Overview:</h5>
2205
2206<p>
2207The '<tt>extractelement</tt>' instruction extracts a single scalar
2208element from a packed vector at a specified index.
2209</p>
2210
2211
2212<h5>Arguments:</h5>
2213
2214<p>
2215The first operand of an '<tt>extractelement</tt>' instruction is a
2216value of <a href="#t_packed">packed</a> type. The second operand is
2217an index indicating the position from which to extract the element.
2218The index may be a variable.</p>
2219
2220<h5>Semantics:</h5>
2221
2222<p>
2223The result is a scalar of the same type as the element type of
2224<tt>val</tt>. Its value is the value at position <tt>idx</tt> of
2225<tt>val</tt>. If <tt>idx</tt> exceeds the length of <tt>val</tt>, the
2226results are undefined.
2227</p>
2228
2229<h5>Example:</h5>
2230
2231<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002232 %result = extractelement &lt;4 x i32&gt; %vec, i32 0 <i>; yields i32</i>
Chris Lattner3df241e2006-04-08 23:07:04 +00002233</pre>
2234</div>
2235
2236
2237<!-- _______________________________________________________________________ -->
2238<div class="doc_subsubsection">
2239 <a name="i_insertelement">'<tt>insertelement</tt>' Instruction</a>
2240</div>
2241
2242<div class="doc_text">
2243
2244<h5>Syntax:</h5>
2245
2246<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002247 &lt;result&gt; = insertelement &lt;n x &lt;ty&gt;&gt; &lt;val&gt;, &lt;ty&gt; &lt;elt&gt, i32 &lt;idx&gt; <i>; yields &lt;n x &lt;ty&gt;&gt;</i>
Chris Lattner3df241e2006-04-08 23:07:04 +00002248</pre>
2249
2250<h5>Overview:</h5>
2251
2252<p>
2253The '<tt>insertelement</tt>' instruction inserts a scalar
2254element into a packed vector at a specified index.
2255</p>
2256
2257
2258<h5>Arguments:</h5>
2259
2260<p>
2261The first operand of an '<tt>insertelement</tt>' instruction is a
2262value of <a href="#t_packed">packed</a> type. The second operand is a
2263scalar value whose type must equal the element type of the first
2264operand. The third operand is an index indicating the position at
2265which to insert the value. The index may be a variable.</p>
2266
2267<h5>Semantics:</h5>
2268
2269<p>
2270The result is a packed vector of the same type as <tt>val</tt>. Its
2271element values are those of <tt>val</tt> except at position
2272<tt>idx</tt>, where it gets the value <tt>elt</tt>. If <tt>idx</tt>
2273exceeds the length of <tt>val</tt>, the results are undefined.
2274</p>
2275
2276<h5>Example:</h5>
2277
2278<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002279 %result = insertelement &lt;4 x i32&gt; %vec, i32 1, i32 0 <i>; yields &lt;4 x i32&gt;</i>
Chris Lattner3df241e2006-04-08 23:07:04 +00002280</pre>
2281</div>
2282
2283<!-- _______________________________________________________________________ -->
2284<div class="doc_subsubsection">
2285 <a name="i_shufflevector">'<tt>shufflevector</tt>' Instruction</a>
2286</div>
2287
2288<div class="doc_text">
2289
2290<h5>Syntax:</h5>
2291
2292<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002293 &lt;result&gt; = shufflevector &lt;n x &lt;ty&gt;&gt; &lt;v1&gt;, &lt;n x &lt;ty&gt;&gt; &lt;v2&gt;, &lt;n x i32&gt; &lt;mask&gt; <i>; yields &lt;n x &lt;ty&gt;&gt;</i>
Chris Lattner3df241e2006-04-08 23:07:04 +00002294</pre>
2295
2296<h5>Overview:</h5>
2297
2298<p>
2299The '<tt>shufflevector</tt>' instruction constructs a permutation of elements
2300from two input vectors, returning a vector of the same type.
2301</p>
2302
2303<h5>Arguments:</h5>
2304
2305<p>
2306The first two operands of a '<tt>shufflevector</tt>' instruction are vectors
2307with types that match each other and types that match the result of the
2308instruction. The third argument is a shuffle mask, which has the same number
Reid Spencerca86e162006-12-31 07:07:53 +00002309of elements as the other vector type, but whose element type is always 'i32'.
Chris Lattner3df241e2006-04-08 23:07:04 +00002310</p>
2311
2312<p>
2313The shuffle mask operand is required to be a constant vector with either
2314constant integer or undef values.
2315</p>
2316
2317<h5>Semantics:</h5>
2318
2319<p>
2320The elements of the two input vectors are numbered from left to right across
2321both of the vectors. The shuffle mask operand specifies, for each element of
2322the result vector, which element of the two input registers the result element
2323gets. The element selector may be undef (meaning "don't care") and the second
2324operand may be undef if performing a shuffle from only one vector.
2325</p>
2326
2327<h5>Example:</h5>
2328
2329<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002330 %result = shufflevector &lt;4 x i32&gt; %v1, &lt;4 x i32&gt; %v2,
2331 &lt;4 x i32&gt; &lt;i32 0, i32 4, i32 1, i32 5&gt; <i>; yields &lt;4 x i32&gt;</i>
2332 %result = shufflevector &lt;4 x i32&gt; %v1, &lt;4 x i32&gt; undef,
2333 &lt;4 x i32&gt; &lt;i32 0, i32 1, i32 2, i32 3&gt; <i>; yields &lt;4 x i32&gt;</i> - Identity shuffle.
Chris Lattner3df241e2006-04-08 23:07:04 +00002334</pre>
2335</div>
2336
Tanya Lattner09474292006-04-14 19:24:33 +00002337
Chris Lattner3df241e2006-04-08 23:07:04 +00002338<!-- ======================================================================= -->
2339<div class="doc_subsection">
Chris Lattner884a9702006-08-15 00:45:58 +00002340 <a name="memoryops">Memory Access and Addressing Operations</a>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002341</div>
2342
Misha Brukman9d0919f2003-11-08 01:05:38 +00002343<div class="doc_text">
Chris Lattner2cbdc452005-11-06 08:02:57 +00002344
Chris Lattner261efe92003-11-25 01:02:51 +00002345<p>A key design point of an SSA-based representation is how it
2346represents memory. In LLVM, no memory locations are in SSA form, which
2347makes things very simple. This section describes how to read, write,
John Criswell9e2485c2004-12-10 15:51:16 +00002348allocate, and free memory in LLVM.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002349
Misha Brukman9d0919f2003-11-08 01:05:38 +00002350</div>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002351
Chris Lattner00950542001-06-06 20:29:01 +00002352<!-- _______________________________________________________________________ -->
Chris Lattner2cbdc452005-11-06 08:02:57 +00002353<div class="doc_subsubsection">
2354 <a name="i_malloc">'<tt>malloc</tt>' Instruction</a>
2355</div>
2356
Misha Brukman9d0919f2003-11-08 01:05:38 +00002357<div class="doc_text">
Chris Lattner2cbdc452005-11-06 08:02:57 +00002358
Chris Lattner00950542001-06-06 20:29:01 +00002359<h5>Syntax:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002360
2361<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002362 &lt;result&gt; = malloc &lt;type&gt;[, i32 &lt;NumElements&gt;][, align &lt;alignment&gt;] <i>; yields {type*}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00002363</pre>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002364
Chris Lattner00950542001-06-06 20:29:01 +00002365<h5>Overview:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002366
Chris Lattner261efe92003-11-25 01:02:51 +00002367<p>The '<tt>malloc</tt>' instruction allocates memory from the system
2368heap and returns a pointer to it.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002369
Chris Lattner00950542001-06-06 20:29:01 +00002370<h5>Arguments:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002371
2372<p>The '<tt>malloc</tt>' instruction allocates
2373<tt>sizeof(&lt;type&gt;)*NumElements</tt>
John Criswell6e4ca612004-02-24 16:13:56 +00002374bytes of memory from the operating system and returns a pointer of the
Chris Lattner2cbdc452005-11-06 08:02:57 +00002375appropriate type to the program. If "NumElements" is specified, it is the
2376number of elements allocated. If an alignment is specified, the value result
2377of the allocation is guaranteed to be aligned to at least that boundary. If
2378not specified, or if zero, the target can choose to align the allocation on any
2379convenient boundary.</p>
2380
Misha Brukman9d0919f2003-11-08 01:05:38 +00002381<p>'<tt>type</tt>' must be a sized type.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002382
Chris Lattner00950542001-06-06 20:29:01 +00002383<h5>Semantics:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002384
Chris Lattner261efe92003-11-25 01:02:51 +00002385<p>Memory is allocated using the system "<tt>malloc</tt>" function, and
2386a pointer is returned.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002387
Chris Lattner2cbdc452005-11-06 08:02:57 +00002388<h5>Example:</h5>
2389
2390<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002391 %array = malloc [4 x i8 ] <i>; yields {[%4 x i8]*}:array</i>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002392
Reid Spencerca86e162006-12-31 07:07:53 +00002393 %size = <a href="#i_add">add</a> i32 2, 2 <i>; yields {i32}:size = i32 4</i>
2394 %array1 = malloc i8, i32 4 <i>; yields {i8*}:array1</i>
2395 %array2 = malloc [12 x i8], i32 %size <i>; yields {[12 x i8]*}:array2</i>
2396 %array3 = malloc i32, i32 4, align 1024 <i>; yields {i32*}:array3</i>
2397 %array4 = malloc i32, align 1024 <i>; yields {i32*}:array4</i>
Chris Lattner00950542001-06-06 20:29:01 +00002398</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002399</div>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002400
Chris Lattner00950542001-06-06 20:29:01 +00002401<!-- _______________________________________________________________________ -->
Chris Lattner2cbdc452005-11-06 08:02:57 +00002402<div class="doc_subsubsection">
2403 <a name="i_free">'<tt>free</tt>' Instruction</a>
2404</div>
2405
Misha Brukman9d0919f2003-11-08 01:05:38 +00002406<div class="doc_text">
Chris Lattner2cbdc452005-11-06 08:02:57 +00002407
Chris Lattner00950542001-06-06 20:29:01 +00002408<h5>Syntax:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002409
2410<pre>
2411 free &lt;type&gt; &lt;value&gt; <i>; yields {void}</i>
Chris Lattner00950542001-06-06 20:29:01 +00002412</pre>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002413
Chris Lattner00950542001-06-06 20:29:01 +00002414<h5>Overview:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002415
Chris Lattner261efe92003-11-25 01:02:51 +00002416<p>The '<tt>free</tt>' instruction returns memory back to the unused
John Criswellc1f786c2005-05-13 22:25:59 +00002417memory heap to be reallocated in the future.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002418
Chris Lattner00950542001-06-06 20:29:01 +00002419<h5>Arguments:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002420
Chris Lattner261efe92003-11-25 01:02:51 +00002421<p>'<tt>value</tt>' shall be a pointer value that points to a value
2422that was allocated with the '<tt><a href="#i_malloc">malloc</a></tt>'
2423instruction.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002424
Chris Lattner00950542001-06-06 20:29:01 +00002425<h5>Semantics:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002426
John Criswell9e2485c2004-12-10 15:51:16 +00002427<p>Access to the memory pointed to by the pointer is no longer defined
Chris Lattner261efe92003-11-25 01:02:51 +00002428after this instruction executes.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002429
Chris Lattner00950542001-06-06 20:29:01 +00002430<h5>Example:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002431
2432<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002433 %array = <a href="#i_malloc">malloc</a> [4 x i8] <i>; yields {[4 x i8]*}:array</i>
2434 free [4 x i8]* %array
Chris Lattner00950542001-06-06 20:29:01 +00002435</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002436</div>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002437
Chris Lattner00950542001-06-06 20:29:01 +00002438<!-- _______________________________________________________________________ -->
Chris Lattner2cbdc452005-11-06 08:02:57 +00002439<div class="doc_subsubsection">
2440 <a name="i_alloca">'<tt>alloca</tt>' Instruction</a>
2441</div>
2442
Misha Brukman9d0919f2003-11-08 01:05:38 +00002443<div class="doc_text">
Chris Lattner2cbdc452005-11-06 08:02:57 +00002444
Chris Lattner00950542001-06-06 20:29:01 +00002445<h5>Syntax:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002446
2447<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002448 &lt;result&gt; = alloca &lt;type&gt;[, i32 &lt;NumElements&gt;][, align &lt;alignment&gt;] <i>; yields {type*}:result</i>
Chris Lattner00950542001-06-06 20:29:01 +00002449</pre>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002450
Chris Lattner00950542001-06-06 20:29:01 +00002451<h5>Overview:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002452
Chris Lattner261efe92003-11-25 01:02:51 +00002453<p>The '<tt>alloca</tt>' instruction allocates memory on the current
2454stack frame of the procedure that is live until the current function
2455returns to its caller.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002456
Chris Lattner00950542001-06-06 20:29:01 +00002457<h5>Arguments:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002458
John Criswell9e2485c2004-12-10 15:51:16 +00002459<p>The '<tt>alloca</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
Chris Lattner261efe92003-11-25 01:02:51 +00002460bytes of memory on the runtime stack, returning a pointer of the
Chris Lattner2cbdc452005-11-06 08:02:57 +00002461appropriate type to the program. If "NumElements" is specified, it is the
2462number of elements allocated. If an alignment is specified, the value result
2463of the allocation is guaranteed to be aligned to at least that boundary. If
2464not specified, or if zero, the target can choose to align the allocation on any
2465convenient boundary.</p>
2466
Misha Brukman9d0919f2003-11-08 01:05:38 +00002467<p>'<tt>type</tt>' may be any sized type.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002468
Chris Lattner00950542001-06-06 20:29:01 +00002469<h5>Semantics:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002470
John Criswellc1f786c2005-05-13 22:25:59 +00002471<p>Memory is allocated; a pointer is returned. '<tt>alloca</tt>'d
Chris Lattner261efe92003-11-25 01:02:51 +00002472memory is automatically released when the function returns. The '<tt>alloca</tt>'
2473instruction is commonly used to represent automatic variables that must
2474have an address available. When the function returns (either with the <tt><a
John Criswelldae2e932005-05-12 16:55:34 +00002475 href="#i_ret">ret</a></tt> or <tt><a href="#i_unwind">unwind</a></tt>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002476instructions), the memory is reclaimed.</p>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002477
Chris Lattner00950542001-06-06 20:29:01 +00002478<h5>Example:</h5>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002479
2480<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002481 %ptr = alloca i32 <i>; yields {i32*}:ptr</i>
2482 %ptr = alloca i32, i32 4 <i>; yields {i32*}:ptr</i>
2483 %ptr = alloca i32, i32 4, align 1024 <i>; yields {i32*}:ptr</i>
2484 %ptr = alloca i32, align 1024 <i>; yields {i32*}:ptr</i>
Chris Lattner00950542001-06-06 20:29:01 +00002485</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002486</div>
Chris Lattner2cbdc452005-11-06 08:02:57 +00002487
Chris Lattner00950542001-06-06 20:29:01 +00002488<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00002489<div class="doc_subsubsection"> <a name="i_load">'<tt>load</tt>'
2490Instruction</a> </div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002491<div class="doc_text">
Chris Lattner2b7d3202002-05-06 03:03:22 +00002492<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00002493<pre> &lt;result&gt; = load &lt;ty&gt;* &lt;pointer&gt;<br> &lt;result&gt; = volatile load &lt;ty&gt;* &lt;pointer&gt;<br></pre>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002494<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002495<p>The '<tt>load</tt>' instruction is used to read from memory.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002496<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00002497<p>The argument to the '<tt>load</tt>' instruction specifies the memory
John Criswell0ec250c2005-10-24 16:17:18 +00002498address from which to load. The pointer must point to a <a
Chris Lattnere53e5082004-06-03 22:57:15 +00002499 href="#t_firstclass">first class</a> type. If the <tt>load</tt> is
John Criswell0ec250c2005-10-24 16:17:18 +00002500marked as <tt>volatile</tt>, then the optimizer is not allowed to modify
Chris Lattner261efe92003-11-25 01:02:51 +00002501the number or order of execution of this <tt>load</tt> with other
2502volatile <tt>load</tt> and <tt><a href="#i_store">store</a></tt>
2503instructions. </p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002504<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002505<p>The location of memory pointed to is loaded.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002506<h5>Examples:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002507<pre> %ptr = <a href="#i_alloca">alloca</a> i32 <i>; yields {i32*}:ptr</i>
Chris Lattner261efe92003-11-25 01:02:51 +00002508 <a
Reid Spencerca86e162006-12-31 07:07:53 +00002509 href="#i_store">store</a> i32 3, i32* %ptr <i>; yields {void}</i>
2510 %val = load i32* %ptr <i>; yields {i32}:val = i32 3</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002511</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002512</div>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002513<!-- _______________________________________________________________________ -->
Chris Lattner261efe92003-11-25 01:02:51 +00002514<div class="doc_subsubsection"> <a name="i_store">'<tt>store</tt>'
2515Instruction</a> </div>
Reid Spencer035ab572006-11-09 21:18:01 +00002516<div class="doc_text">
Chris Lattner2b7d3202002-05-06 03:03:22 +00002517<h5>Syntax:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00002518<pre> store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt; <i>; yields {void}</i>
Chris Lattnerf0651072003-09-08 18:27:49 +00002519 volatile store &lt;ty&gt; &lt;value&gt;, &lt;ty&gt;* &lt;pointer&gt; <i>; yields {void}</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002520</pre>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002521<h5>Overview:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002522<p>The '<tt>store</tt>' instruction is used to write to memory.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002523<h5>Arguments:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00002524<p>There are two arguments to the '<tt>store</tt>' instruction: a value
John Criswell0ec250c2005-10-24 16:17:18 +00002525to store and an address in which to store it. The type of the '<tt>&lt;pointer&gt;</tt>'
Chris Lattner261efe92003-11-25 01:02:51 +00002526operand must be a pointer to the type of the '<tt>&lt;value&gt;</tt>'
John Criswellc1f786c2005-05-13 22:25:59 +00002527operand. If the <tt>store</tt> is marked as <tt>volatile</tt>, then the
Chris Lattner261efe92003-11-25 01:02:51 +00002528optimizer is not allowed to modify the number or order of execution of
2529this <tt>store</tt> with other volatile <tt>load</tt> and <tt><a
2530 href="#i_store">store</a></tt> instructions.</p>
2531<h5>Semantics:</h5>
2532<p>The contents of memory are updated to contain '<tt>&lt;value&gt;</tt>'
2533at the location specified by the '<tt>&lt;pointer&gt;</tt>' operand.</p>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002534<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00002535<pre> %ptr = <a href="#i_alloca">alloca</a> i32 <i>; yields {i32*}:ptr</i>
Chris Lattner261efe92003-11-25 01:02:51 +00002536 <a
Reid Spencerca86e162006-12-31 07:07:53 +00002537 href="#i_store">store</a> i32 3, i32* %ptr <i>; yields {void}</i>
2538 %val = load i32* %ptr <i>; yields {i32}:val = i32 3</i>
Chris Lattner2b7d3202002-05-06 03:03:22 +00002539</pre>
Reid Spencer47ce1792006-11-09 21:15:49 +00002540</div>
2541
Chris Lattner2b7d3202002-05-06 03:03:22 +00002542<!-- _______________________________________________________________________ -->
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002543<div class="doc_subsubsection">
2544 <a name="i_getelementptr">'<tt>getelementptr</tt>' Instruction</a>
2545</div>
2546
Misha Brukman9d0919f2003-11-08 01:05:38 +00002547<div class="doc_text">
Chris Lattner7faa8832002-04-14 06:13:44 +00002548<h5>Syntax:</h5>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002549<pre>
2550 &lt;result&gt; = getelementptr &lt;ty&gt;* &lt;ptrval&gt;{, &lt;ty&gt; &lt;idx&gt;}*
2551</pre>
2552
Chris Lattner7faa8832002-04-14 06:13:44 +00002553<h5>Overview:</h5>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002554
2555<p>
2556The '<tt>getelementptr</tt>' instruction is used to get the address of a
2557subelement of an aggregate data structure.</p>
2558
Chris Lattner7faa8832002-04-14 06:13:44 +00002559<h5>Arguments:</h5>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002560
Reid Spencer85f5b5b2006-12-04 21:29:24 +00002561<p>This instruction takes a list of integer operands that indicate what
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002562elements of the aggregate object to index to. The actual types of the arguments
2563provided depend on the type of the first pointer argument. The
2564'<tt>getelementptr</tt>' instruction is used to index down through the type
John Criswellfc6b8952005-05-16 16:17:45 +00002565levels of a structure or to a specific index in an array. When indexing into a
Reid Spencerca86e162006-12-31 07:07:53 +00002566structure, only <tt>i32</tt> integer constants are allowed. When indexing
Reid Spencer85f5b5b2006-12-04 21:29:24 +00002567into an array or pointer, only integers of 32 or 64 bits are allowed, and will
2568be sign extended to 64-bit values.</p>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002569
Chris Lattner261efe92003-11-25 01:02:51 +00002570<p>For example, let's consider a C code fragment and how it gets
2571compiled to LLVM:</p>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002572
2573<pre>
2574 struct RT {
2575 char A;
Reid Spencerca86e162006-12-31 07:07:53 +00002576 i32 B[10][20];
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002577 char C;
2578 };
2579 struct ST {
Reid Spencerca86e162006-12-31 07:07:53 +00002580 i32 X;
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002581 double Y;
2582 struct RT Z;
2583 };
2584
Reid Spencerca86e162006-12-31 07:07:53 +00002585 define i32 *foo(struct ST *s) {
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002586 return &amp;s[1].Z.B[5][13];
2587 }
2588</pre>
2589
Misha Brukman9d0919f2003-11-08 01:05:38 +00002590<p>The LLVM code generated by the GCC frontend is:</p>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002591
2592<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002593 %RT = type { i8 , [10 x [20 x i32]], i8 }
2594 %ST = type { i32, double, %RT }
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002595
Brian Gaeke7283e7c2004-07-02 21:08:14 +00002596 implementation
2597
Reid Spencerca86e162006-12-31 07:07:53 +00002598 define i32* %foo(%ST* %s) {
Brian Gaeke7283e7c2004-07-02 21:08:14 +00002599 entry:
Reid Spencerca86e162006-12-31 07:07:53 +00002600 %reg = getelementptr %ST* %s, i32 1, i32 2, i32 1, i32 5, i32 13
2601 ret i32* %reg
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002602 }
2603</pre>
2604
Chris Lattner7faa8832002-04-14 06:13:44 +00002605<h5>Semantics:</h5>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002606
2607<p>The index types specified for the '<tt>getelementptr</tt>' instruction depend
John Criswellc1f786c2005-05-13 22:25:59 +00002608on the pointer type that is being indexed into. <a href="#t_pointer">Pointer</a>
Reid Spencer85f5b5b2006-12-04 21:29:24 +00002609and <a href="#t_array">array</a> types can use a 32-bit or 64-bit
Reid Spencer42ddd842006-12-03 16:53:48 +00002610<a href="#t_integer">integer</a> type but the value will always be sign extended
Reid Spencerca86e162006-12-31 07:07:53 +00002611to 64-bits. <a href="#t_struct">Structure</a> types, require <tt>i32</tt>
Reid Spencer42ddd842006-12-03 16:53:48 +00002612<b>constants</b>.</p>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002613
Misha Brukman9d0919f2003-11-08 01:05:38 +00002614<p>In the example above, the first index is indexing into the '<tt>%ST*</tt>'
Reid Spencerca86e162006-12-31 07:07:53 +00002615type, which is a pointer, yielding a '<tt>%ST</tt>' = '<tt>{ i32, double, %RT
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002616}</tt>' type, a structure. The second index indexes into the third element of
Reid Spencerca86e162006-12-31 07:07:53 +00002617the structure, yielding a '<tt>%RT</tt>' = '<tt>{ i8 , [10 x [20 x i32]],
2618i8 }</tt>' type, another structure. The third index indexes into the second
2619element of the structure, yielding a '<tt>[10 x [20 x i32]]</tt>' type, an
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002620array. The two dimensions of the array are subscripted into, yielding an
Reid Spencerca86e162006-12-31 07:07:53 +00002621'<tt>i32</tt>' type. The '<tt>getelementptr</tt>' instruction returns a pointer
2622to this element, thus computing a value of '<tt>i32*</tt>' type.</p>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002623
Chris Lattner261efe92003-11-25 01:02:51 +00002624<p>Note that it is perfectly legal to index partially through a
2625structure, returning a pointer to an inner element. Because of this,
2626the LLVM code for the given testcase is equivalent to:</p>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002627
2628<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002629 define i32* %foo(%ST* %s) {
2630 %t1 = getelementptr %ST* %s, i32 1 <i>; yields %ST*:%t1</i>
2631 %t2 = getelementptr %ST* %t1, i32 0, i32 2 <i>; yields %RT*:%t2</i>
2632 %t3 = getelementptr %RT* %t2, i32 0, i32 1 <i>; yields [10 x [20 x i32]]*:%t3</i>
2633 %t4 = getelementptr [10 x [20 x i32]]* %t3, i32 0, i32 5 <i>; yields [20 x i32]*:%t4</i>
2634 %t5 = getelementptr [20 x i32]* %t4, i32 0, i32 13 <i>; yields i32*:%t5</i>
2635 ret i32* %t5
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002636 }
Chris Lattner6536cfe2002-05-06 22:08:29 +00002637</pre>
Chris Lattnere67a9512005-06-24 17:22:57 +00002638
2639<p>Note that it is undefined to access an array out of bounds: array and
2640pointer indexes must always be within the defined bounds of the array type.
2641The one exception for this rules is zero length arrays. These arrays are
2642defined to be accessible as variable length arrays, which requires access
2643beyond the zero'th element.</p>
2644
Chris Lattner884a9702006-08-15 00:45:58 +00002645<p>The getelementptr instruction is often confusing. For some more insight
2646into how it works, see <a href="GetElementPtr.html">the getelementptr
2647FAQ</a>.</p>
2648
Chris Lattner7faa8832002-04-14 06:13:44 +00002649<h5>Example:</h5>
Chris Lattnere67a9512005-06-24 17:22:57 +00002650
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002651<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002652 <i>; yields [12 x i8]*:aptr</i>
2653 %aptr = getelementptr {i32, [12 x i8]}* %sptr, i64 0, i32 1
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002654</pre>
Chris Lattnerf74d5c72004-04-05 01:30:49 +00002655</div>
Reid Spencer47ce1792006-11-09 21:15:49 +00002656
Chris Lattner00950542001-06-06 20:29:01 +00002657<!-- ======================================================================= -->
Reid Spencer2fd21e62006-11-08 01:18:52 +00002658<div class="doc_subsection"> <a name="convertops">Conversion Operations</a>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002659</div>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002660<div class="doc_text">
Reid Spencer2fd21e62006-11-08 01:18:52 +00002661<p>The instructions in this category are the conversion instructions (casting)
2662which all take a single operand and a type. They perform various bit conversions
2663on the operand.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00002664</div>
Chris Lattnercc37aae2004-03-12 05:50:16 +00002665
Chris Lattner6536cfe2002-05-06 22:08:29 +00002666<!-- _______________________________________________________________________ -->
Chris Lattnercc37aae2004-03-12 05:50:16 +00002667<div class="doc_subsubsection">
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002668 <a name="i_trunc">'<tt>trunc .. to</tt>' Instruction</a>
2669</div>
2670<div class="doc_text">
2671
2672<h5>Syntax:</h5>
2673<pre>
2674 &lt;result&gt; = trunc &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
2675</pre>
2676
2677<h5>Overview:</h5>
2678<p>
2679The '<tt>trunc</tt>' instruction truncates its operand to the type <tt>ty2</tt>.
2680</p>
2681
2682<h5>Arguments:</h5>
2683<p>
2684The '<tt>trunc</tt>' instruction takes a <tt>value</tt> to trunc, which must
2685be an <a href="#t_integer">integer</a> type, and a type that specifies the size
2686and type of the result, which must be an <a href="#t_integral">integral</a>
Reid Spencerd4448792006-11-09 23:03:26 +00002687type. The bit size of <tt>value</tt> must be larger than the bit size of
2688<tt>ty2</tt>. Equal sized types are not allowed.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002689
2690<h5>Semantics:</h5>
2691<p>
2692The '<tt>trunc</tt>' instruction truncates the high order bits in <tt>value</tt>
Reid Spencerd4448792006-11-09 23:03:26 +00002693and converts the remaining bits to <tt>ty2</tt>. Since the source size must be
2694larger than the destination size, <tt>trunc</tt> cannot be a <i>no-op cast</i>.
2695It will always truncate bits.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002696
2697<h5>Example:</h5>
2698<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002699 %X = trunc i32 257 to i8 <i>; yields i8:1</i>
2700 %Y = trunc i32 123 to bool <i>; yields bool:true</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002701</pre>
2702</div>
2703
2704<!-- _______________________________________________________________________ -->
2705<div class="doc_subsubsection">
2706 <a name="i_zext">'<tt>zext .. to</tt>' Instruction</a>
2707</div>
2708<div class="doc_text">
2709
2710<h5>Syntax:</h5>
2711<pre>
2712 &lt;result&gt; = zext &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
2713</pre>
2714
2715<h5>Overview:</h5>
2716<p>The '<tt>zext</tt>' instruction zero extends its operand to type
2717<tt>ty2</tt>.</p>
2718
2719
2720<h5>Arguments:</h5>
2721<p>The '<tt>zext</tt>' instruction takes a value to cast, which must be of
2722<a href="#t_integral">integral</a> type, and a type to cast it to, which must
2723also be of <a href="#t_integral">integral</a> type. The bit size of the
Reid Spencerd4448792006-11-09 23:03:26 +00002724<tt>value</tt> must be smaller than the bit size of the destination type,
2725<tt>ty2</tt>.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002726
2727<h5>Semantics:</h5>
2728<p>The <tt>zext</tt> fills the high order bits of the <tt>value</tt> with zero
2729bits until it reaches the size of the destination type, <tt>ty2</tt>. When the
2730the operand and the type are the same size, no bit filling is done and the
2731cast is considered a <i>no-op cast</i> because no bits change (only the type
2732changes).</p>
2733
Reid Spencerd4448792006-11-09 23:03:26 +00002734<p>When zero extending from bool, the result will alwasy be either 0 or 1.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002735
2736<h5>Example:</h5>
2737<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002738 %X = zext i32 257 to i64 <i>; yields i64:257</i>
2739 %Y = zext bool true to i32 <i>; yields i32:1</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002740</pre>
2741</div>
2742
2743<!-- _______________________________________________________________________ -->
2744<div class="doc_subsubsection">
2745 <a name="i_sext">'<tt>sext .. to</tt>' Instruction</a>
2746</div>
2747<div class="doc_text">
2748
2749<h5>Syntax:</h5>
2750<pre>
2751 &lt;result&gt; = sext &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
2752</pre>
2753
2754<h5>Overview:</h5>
2755<p>The '<tt>sext</tt>' sign extends <tt>value</tt> to the type <tt>ty2</tt>.</p>
2756
2757<h5>Arguments:</h5>
2758<p>
2759The '<tt>sext</tt>' instruction takes a value to cast, which must be of
2760<a href="#t_integral">integral</a> type, and a type to cast it to, which must
Reid Spencerd4448792006-11-09 23:03:26 +00002761also be of <a href="#t_integral">integral</a> type. The bit size of the
2762<tt>value</tt> must be smaller than the bit size of the destination type,
2763<tt>ty2</tt>.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002764
2765<h5>Semantics:</h5>
2766<p>
2767The '<tt>sext</tt>' instruction performs a sign extension by copying the sign
2768bit (highest order bit) of the <tt>value</tt> until it reaches the bit size of
2769the type <tt>ty2</tt>. When the the operand and the type are the same size,
2770no bit filling is done and the cast is considered a <i>no-op cast</i> because
2771no bits change (only the type changes).</p>
2772
Reid Spencerd4448792006-11-09 23:03:26 +00002773<p>When sign extending from bool, the extension always results in -1 or 0.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002774
2775<h5>Example:</h5>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002776<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002777 %X = sext i8 -1 to i16 <i>; yields i16 :65535</i>
2778 %Y = sext bool true to i32 <i>; yields i32:-1</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002779</pre>
2780</div>
2781
2782<!-- _______________________________________________________________________ -->
2783<div class="doc_subsubsection">
Reid Spencer3fa91b02006-11-09 21:48:10 +00002784 <a name="i_fptrunc">'<tt>fptrunc .. to</tt>' Instruction</a>
2785</div>
2786
2787<div class="doc_text">
2788
2789<h5>Syntax:</h5>
2790
2791<pre>
2792 &lt;result&gt; = fptrunc &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
2793</pre>
2794
2795<h5>Overview:</h5>
2796<p>The '<tt>fptrunc</tt>' instruction truncates <tt>value</tt> to type
2797<tt>ty2</tt>.</p>
2798
2799
2800<h5>Arguments:</h5>
2801<p>The '<tt>fptrunc</tt>' instruction takes a <a href="#t_floating">floating
2802 point</a> value to cast and a <a href="#t_floating">floating point</a> type to
2803cast it to. The size of <tt>value</tt> must be larger than the size of
2804<tt>ty2</tt>. This implies that <tt>fptrunc</tt> cannot be used to make a
2805<i>no-op cast</i>.</p>
2806
2807<h5>Semantics:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002808<p> The '<tt>fptrunc</tt>' instruction truncates a <tt>value</tt> from a larger
2809<a href="#t_floating">floating point</a> type to a smaller
2810<a href="#t_floating">floating point</a> type. If the value cannot fit within
2811the destination type, <tt>ty2</tt>, then the results are undefined.</p>
Reid Spencer3fa91b02006-11-09 21:48:10 +00002812
2813<h5>Example:</h5>
2814<pre>
2815 %X = fptrunc double 123.0 to float <i>; yields float:123.0</i>
2816 %Y = fptrunc double 1.0E+300 to float <i>; yields undefined</i>
2817</pre>
2818</div>
2819
2820<!-- _______________________________________________________________________ -->
2821<div class="doc_subsubsection">
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002822 <a name="i_fpext">'<tt>fpext .. to</tt>' Instruction</a>
2823</div>
2824<div class="doc_text">
2825
2826<h5>Syntax:</h5>
2827<pre>
2828 &lt;result&gt; = fpext &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
2829</pre>
2830
2831<h5>Overview:</h5>
2832<p>The '<tt>fpext</tt>' extends a floating point <tt>value</tt> to a larger
2833floating point value.</p>
2834
2835<h5>Arguments:</h5>
2836<p>The '<tt>fpext</tt>' instruction takes a
2837<a href="#t_floating">floating point</a> <tt>value</tt> to cast,
Reid Spencerd4448792006-11-09 23:03:26 +00002838and a <a href="#t_floating">floating point</a> type to cast it to. The source
2839type must be smaller than the destination type.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002840
2841<h5>Semantics:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002842<p>The '<tt>fpext</tt>' instruction extends the <tt>value</tt> from a smaller
2843<a href="t_floating">floating point</a> type to a larger
2844<a href="t_floating">floating point</a> type. The <tt>fpext</tt> cannot be
2845used to make a <i>no-op cast</i> because it always changes bits. Use
Reid Spencer5c0ef472006-11-11 23:08:07 +00002846<tt>bitcast</tt> to make a <i>no-op cast</i> for a floating point cast.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002847
2848<h5>Example:</h5>
2849<pre>
2850 %X = fpext float 3.1415 to double <i>; yields double:3.1415</i>
2851 %Y = fpext float 1.0 to float <i>; yields float:1.0 (no-op)</i>
2852</pre>
2853</div>
2854
2855<!-- _______________________________________________________________________ -->
2856<div class="doc_subsubsection">
Reid Spencerd4448792006-11-09 23:03:26 +00002857 <a name="i_fp2uint">'<tt>fptoui .. to</tt>' Instruction</a>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002858</div>
2859<div class="doc_text">
2860
2861<h5>Syntax:</h5>
2862<pre>
2863 &lt;result&gt; = fp2uint &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
2864</pre>
2865
2866<h5>Overview:</h5>
2867<p>The '<tt>fp2uint</tt>' converts a floating point <tt>value</tt> to its
2868unsigned integer equivalent of type <tt>ty2</tt>.
2869</p>
2870
2871<h5>Arguments:</h5>
2872<p>The '<tt>fp2uint</tt>' instruction takes a value to cast, which must be a
2873<a href="#t_floating">floating point</a> value, and a type to cast it to, which
2874must be an <a href="#t_integral">integral</a> type.</p>
2875
2876<h5>Semantics:</h5>
2877<p> The '<tt>fp2uint</tt>' instruction converts its
2878<a href="#t_floating">floating point</a> operand into the nearest (rounding
2879towards zero) unsigned integer value. If the value cannot fit in <tt>ty2</tt>,
2880the results are undefined.</p>
2881
2882<p>When converting to bool, the conversion is done as a comparison against
2883zero. If the <tt>value</tt> was zero, the bool result will be <tt>false</tt>.
2884If the <tt>value</tt> was non-zero, the bool result will be <tt>true</tt>.</p>
2885
2886<h5>Example:</h5>
2887<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002888 %X = fp2uint double 123.0 to i32 <i>; yields i32:123</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002889 %Y = fp2uint float 1.0E+300 to bool <i>; yields bool:true</i>
Reid Spencerca86e162006-12-31 07:07:53 +00002890 %X = fp2uint float 1.04E+17 to i8 <i>; yields undefined:1</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002891</pre>
2892</div>
2893
2894<!-- _______________________________________________________________________ -->
2895<div class="doc_subsubsection">
Reid Spencerd4448792006-11-09 23:03:26 +00002896 <a name="i_fptosi">'<tt>fptosi .. to</tt>' Instruction</a>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002897</div>
2898<div class="doc_text">
2899
2900<h5>Syntax:</h5>
2901<pre>
Reid Spencerd4448792006-11-09 23:03:26 +00002902 &lt;result&gt; = fptosi &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002903</pre>
2904
2905<h5>Overview:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002906<p>The '<tt>fptosi</tt>' instruction converts
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002907<a href="#t_floating">floating point</a> <tt>value</tt> to type <tt>ty2</tt>.
Chris Lattnercc37aae2004-03-12 05:50:16 +00002908</p>
2909
2910
Chris Lattner6536cfe2002-05-06 22:08:29 +00002911<h5>Arguments:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002912<p> The '<tt>fptosi</tt>' instruction takes a value to cast, which must be a
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002913<a href="#t_floating">floating point</a> value, and a type to cast it to, which
2914must also be an <a href="#t_integral">integral</a> type.</p>
Chris Lattnercc37aae2004-03-12 05:50:16 +00002915
Chris Lattner6536cfe2002-05-06 22:08:29 +00002916<h5>Semantics:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002917<p>The '<tt>fptosi</tt>' instruction converts its
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002918<a href="#t_floating">floating point</a> operand into the nearest (rounding
2919towards zero) signed integer value. If the value cannot fit in <tt>ty2</tt>,
2920the results are undefined.</p>
Chris Lattnercc37aae2004-03-12 05:50:16 +00002921
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002922<p>When converting to bool, the conversion is done as a comparison against
2923zero. If the <tt>value</tt> was zero, the bool result will be <tt>false</tt>.
2924If the <tt>value</tt> was non-zero, the bool result will be <tt>true</tt>.</p>
Chris Lattnercc37aae2004-03-12 05:50:16 +00002925
Chris Lattner33ba0d92001-07-09 00:26:23 +00002926<h5>Example:</h5>
Chris Lattnercc37aae2004-03-12 05:50:16 +00002927<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002928 %X = fptosi double -123.0 to i32 <i>; yields i32:-123</i>
Reid Spencerd4448792006-11-09 23:03:26 +00002929 %Y = fptosi float 1.0E-247 to bool <i>; yields bool:true</i>
Reid Spencerca86e162006-12-31 07:07:53 +00002930 %X = fptosi float 1.04E+17 to i8 <i>; yields undefined:1</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002931</pre>
2932</div>
2933
2934<!-- _______________________________________________________________________ -->
2935<div class="doc_subsubsection">
Reid Spencerd4448792006-11-09 23:03:26 +00002936 <a name="i_uitofp">'<tt>uitofp .. to</tt>' Instruction</a>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002937</div>
2938<div class="doc_text">
2939
2940<h5>Syntax:</h5>
2941<pre>
Reid Spencerd4448792006-11-09 23:03:26 +00002942 &lt;result&gt; = uitofp &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002943</pre>
2944
2945<h5>Overview:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002946<p>The '<tt>uitofp</tt>' instruction regards <tt>value</tt> as an unsigned
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002947integer and converts that value to the <tt>ty2</tt> type.</p>
2948
2949
2950<h5>Arguments:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002951<p>The '<tt>uitofp</tt>' instruction takes a value to cast, which must be an
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002952<a href="#t_integral">integral</a> value, and a type to cast it to, which must
2953be a <a href="#t_floating">floating point</a> type.</p>
2954
2955<h5>Semantics:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002956<p>The '<tt>uitofp</tt>' instruction interprets its operand as an unsigned
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002957integer quantity and converts it to the corresponding floating point value. If
2958the value cannot fit in the floating point value, the results are undefined.</p>
2959
2960
2961<h5>Example:</h5>
2962<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002963 %X = uitofp i32 257 to float <i>; yields float:257.0</i>
2964 %Y = uitofp i8 -1 to double <i>; yields double:255.0</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002965</pre>
2966</div>
2967
2968<!-- _______________________________________________________________________ -->
2969<div class="doc_subsubsection">
Reid Spencerd4448792006-11-09 23:03:26 +00002970 <a name="i_sitofp">'<tt>sitofp .. to</tt>' Instruction</a>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002971</div>
2972<div class="doc_text">
2973
2974<h5>Syntax:</h5>
2975<pre>
Reid Spencerd4448792006-11-09 23:03:26 +00002976 &lt;result&gt; = sitofp &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002977</pre>
2978
2979<h5>Overview:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002980<p>The '<tt>sitofp</tt>' instruction regards <tt>value</tt> as a signed
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002981integer and converts that value to the <tt>ty2</tt> type.</p>
2982
2983<h5>Arguments:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002984<p>The '<tt>sitofp</tt>' instruction takes a value to cast, which must be an
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002985<a href="#t_integral">integral</a> value, and a type to cast it to, which must be
2986a <a href="#t_floating">floating point</a> type.</p>
2987
2988<h5>Semantics:</h5>
Reid Spencerd4448792006-11-09 23:03:26 +00002989<p>The '<tt>sitofp</tt>' instruction interprets its operand as a signed
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002990integer quantity and converts it to the corresponding floating point value. If
2991the value cannot fit in the floating point value, the results are undefined.</p>
2992
2993<h5>Example:</h5>
2994<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00002995 %X = sitofp i32 257 to float <i>; yields float:257.0</i>
2996 %Y = sitofp i8 -1 to double <i>; yields double:-1.0</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00002997</pre>
2998</div>
2999
3000<!-- _______________________________________________________________________ -->
3001<div class="doc_subsubsection">
Reid Spencer72679252006-11-11 21:00:47 +00003002 <a name="i_ptrtoint">'<tt>ptrtoint .. to</tt>' Instruction</a>
3003</div>
3004<div class="doc_text">
3005
3006<h5>Syntax:</h5>
3007<pre>
3008 &lt;result&gt; = ptrtoint &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
3009</pre>
3010
3011<h5>Overview:</h5>
3012<p>The '<tt>ptrtoint</tt>' instruction converts the pointer <tt>value</tt> to
3013the integer type <tt>ty2</tt>.</p>
3014
3015<h5>Arguments:</h5>
3016<p>The '<tt>ptrtoint</tt>' instruction takes a <tt>value</tt> to cast, which
3017must be a <a href="t_pointer">pointer</a> value, and a type to cast it to
3018<tt>ty2</tt>, which must be an <a href="#t_integer">integer</a> type.
3019
3020<h5>Semantics:</h5>
3021<p>The '<tt>ptrtoint</tt>' instruction converts <tt>value</tt> to integer type
3022<tt>ty2</tt> by interpreting the pointer value as an integer and either
3023truncating or zero extending that value to the size of the integer type. If
3024<tt>value</tt> is smaller than <tt>ty2</tt> then a zero extension is done. If
3025<tt>value</tt> is larger than <tt>ty2</tt> then a truncation is done. If they
3026are the same size, then nothing is done (<i>no-op cast</i>).</p>
3027
3028<h5>Example:</h5>
3029<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003030 %X = ptrtoint i32* %X to i8 <i>; yields truncation on 32-bit</i>
3031 %Y = ptrtoint i32* %x to i64 <i>; yields zero extend on 32-bit</i>
Reid Spencer72679252006-11-11 21:00:47 +00003032</pre>
3033</div>
3034
3035<!-- _______________________________________________________________________ -->
3036<div class="doc_subsubsection">
3037 <a name="i_inttoptr">'<tt>inttoptr .. to</tt>' Instruction</a>
3038</div>
3039<div class="doc_text">
3040
3041<h5>Syntax:</h5>
3042<pre>
3043 &lt;result&gt; = inttoptr &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
3044</pre>
3045
3046<h5>Overview:</h5>
3047<p>The '<tt>inttoptr</tt>' instruction converts an integer <tt>value</tt> to
3048a pointer type, <tt>ty2</tt>.</p>
3049
3050<h5>Arguments:</h5>
3051<p>The '<tt>inttoptr</tt>' instruction takes an <a href="i_integer">integer</a>
3052value to cast, and a type to cast it to, which must be a
3053<a href="#t_pointer">pointer</a> type. </tt>
3054
3055<h5>Semantics:</h5>
3056<p>The '<tt>inttoptr</tt>' instruction converts <tt>value</tt> to type
3057<tt>ty2</tt> by applying either a zero extension or a truncation depending on
3058the size of the integer <tt>value</tt>. If <tt>value</tt> is larger than the
3059size of a pointer then a truncation is done. If <tt>value</tt> is smaller than
3060the size of a pointer then a zero extension is done. If they are the same size,
3061nothing is done (<i>no-op cast</i>).</p>
3062
3063<h5>Example:</h5>
3064<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003065 %X = inttoptr i32 255 to i32* <i>; yields zero extend on 64-bit</i>
3066 %X = inttoptr i32 255 to i32* <i>; yields no-op on 32-bit </i>
3067 %Y = inttoptr i16 0 to i32* <i>; yields zero extend on 32-bit</i>
Reid Spencer72679252006-11-11 21:00:47 +00003068</pre>
3069</div>
3070
3071<!-- _______________________________________________________________________ -->
3072<div class="doc_subsubsection">
Reid Spencer5c0ef472006-11-11 23:08:07 +00003073 <a name="i_bitcast">'<tt>bitcast .. to</tt>' Instruction</a>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00003074</div>
3075<div class="doc_text">
3076
3077<h5>Syntax:</h5>
3078<pre>
Reid Spencer5c0ef472006-11-11 23:08:07 +00003079 &lt;result&gt; = bitcast &lt;ty&gt; &lt;value&gt; to &lt;ty2&gt; <i>; yields ty2</i>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00003080</pre>
3081
3082<h5>Overview:</h5>
Reid Spencer5c0ef472006-11-11 23:08:07 +00003083<p>The '<tt>bitcast</tt>' instruction converts <tt>value</tt> to type
Reid Spencer9dee3ac2006-11-08 01:11:31 +00003084<tt>ty2</tt> without changing any bits.</p>
3085
3086<h5>Arguments:</h5>
Reid Spencer5c0ef472006-11-11 23:08:07 +00003087<p>The '<tt>bitcast</tt>' instruction takes a value to cast, which must be
Reid Spencer9dee3ac2006-11-08 01:11:31 +00003088a first class value, and a type to cast it to, which must also be a <a
3089 href="#t_firstclass">first class</a> type. The bit sizes of <tt>value</tt>
3090and the destination type, <tt>ty2</tt>, must be identical.</p>
3091
3092<h5>Semantics:</h5>
Reid Spencer5c0ef472006-11-11 23:08:07 +00003093<p>The '<tt>bitcast</tt>' instruction converts <tt>value</tt> to type
Reid Spencer72679252006-11-11 21:00:47 +00003094<tt>ty2</tt>. It is always a <i>no-op cast</i> because no bits change with
3095this conversion. The conversion is done as if the <tt>value</tt> had been
3096stored to memory and read back as type <tt>ty2</tt>. Pointer types may only be
3097converted to other pointer types with this instruction. To convert pointers to
3098other types, use the <a href="#i_inttoptr">inttoptr</a> or
3099<a href="#i_ptrtoint">ptrtoint</a> instructions first.</p>
Reid Spencer9dee3ac2006-11-08 01:11:31 +00003100
3101<h5>Example:</h5>
3102<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003103 %X = bitcast i8 255 to i8 <i>; yields i8 :-1</i>
3104 %Y = bitcast i32* %x to sint* <i>; yields sint*:%x</i>
3105 %Z = bitcast <2xint> %V to i64; <i>; yields i64: %V</i>
Chris Lattner33ba0d92001-07-09 00:26:23 +00003106</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00003107</div>
Chris Lattnercc37aae2004-03-12 05:50:16 +00003108
Reid Spencer2fd21e62006-11-08 01:18:52 +00003109<!-- ======================================================================= -->
3110<div class="doc_subsection"> <a name="otherops">Other Operations</a> </div>
3111<div class="doc_text">
3112<p>The instructions in this category are the "miscellaneous"
3113instructions, which defy better classification.</p>
3114</div>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003115
3116<!-- _______________________________________________________________________ -->
3117<div class="doc_subsubsection"><a name="i_icmp">'<tt>icmp</tt>' Instruction</a>
3118</div>
3119<div class="doc_text">
3120<h5>Syntax:</h5>
3121<pre> &lt;result&gt; = icmp &lt;cond&gt; &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
3122</pre>
3123<h5>Overview:</h5>
3124<p>The '<tt>icmp</tt>' instruction returns a boolean value based on comparison
3125of its two integer operands.</p>
3126<h5>Arguments:</h5>
3127<p>The '<tt>icmp</tt>' instruction takes three operands. The first operand is
3128the condition code which indicates the kind of comparison to perform. It is not
3129a value, just a keyword. The possibilities for the condition code are:
3130<ol>
3131 <li><tt>eq</tt>: equal</li>
3132 <li><tt>ne</tt>: not equal </li>
3133 <li><tt>ugt</tt>: unsigned greater than</li>
3134 <li><tt>uge</tt>: unsigned greater or equal</li>
3135 <li><tt>ult</tt>: unsigned less than</li>
3136 <li><tt>ule</tt>: unsigned less or equal</li>
3137 <li><tt>sgt</tt>: signed greater than</li>
3138 <li><tt>sge</tt>: signed greater or equal</li>
3139 <li><tt>slt</tt>: signed less than</li>
3140 <li><tt>sle</tt>: signed less or equal</li>
3141</ol>
Reid Spencer350f8aa2007-01-04 05:19:58 +00003142<p>The remaining two arguments must be <a href="#t_integral">integral</a> or
3143<a href="#t_pointer">pointer</a> typed. They must also be identical types.</p>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003144<h5>Semantics:</h5>
3145<p>The '<tt>icmp</tt>' compares <tt>var1</tt> and <tt>var2</tt> according to
3146the condition code given as <tt>cond</tt>. The comparison performed always
3147yields a <a href="#t_bool">bool</a> result, as follows:
3148<ol>
3149 <li><tt>eq</tt>: yields <tt>true</tt> if the operands are equal,
3150 <tt>false</tt> otherwise. No sign interpretation is necessary or performed.
3151 </li>
3152 <li><tt>ne</tt>: yields <tt>true</tt> if the operands are unequal,
3153 <tt>false</tt> otherwise. No sign interpretation is necessary or performed.
3154 <li><tt>ugt</tt>: interprets the operands as unsigned values and yields
3155 <tt>true</tt> if <tt>var1</tt> is greater than <tt>var2</tt>.</li>
3156 <li><tt>uge</tt>: interprets the operands as unsigned values and yields
3157 <tt>true</tt> if <tt>var1</tt> is greater than or equal to <tt>var2</tt>.</li>
3158 <li><tt>ult</tt>: interprets the operands as unsigned values and yields
3159 <tt>true</tt> if <tt>var1</tt> is less than <tt>var2</tt>.</li>
3160 <li><tt>ule</tt>: interprets the operands as unsigned values and yields
3161 <tt>true</tt> if <tt>var1</tt> is less than or equal to <tt>var2</tt>.</li>
3162 <li><tt>sgt</tt>: interprets the operands as signed values and yields
3163 <tt>true</tt> if <tt>var1</tt> is greater than <tt>var2</tt>.</li>
3164 <li><tt>sge</tt>: interprets the operands as signed values and yields
3165 <tt>true</tt> if <tt>var1</tt> is greater than or equal to <tt>var2</tt>.</li>
3166 <li><tt>slt</tt>: interprets the operands as signed values and yields
3167 <tt>true</tt> if <tt>var1</tt> is less than <tt>var2</tt>.</li>
3168 <li><tt>sle</tt>: interprets the operands as signed values and yields
3169 <tt>true</tt> if <tt>var1</tt> is less than or equal to <tt>var2</tt>.</li>
3170 </li>
3171</ol>
3172<p>If the operands are <a href="#t_pointer">pointer</a> typed, the pointer
3173values are treated as integers and then compared.</p>
3174<p>If the operands are <a href="#t_packed">packed</a> typed, the elements of
Reid Spencerb7f26282006-11-19 03:00:14 +00003175the vector are compared in turn and the predicate must hold for all
3176elements.</p>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003177
3178<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00003179<pre> &lt;result&gt; = icmp eq i32 4, 5 <i>; yields: result=false</i>
3180 &lt;result&gt; = icmp ne float* %X, %X <i>; yields: result=false</i>
3181 &lt;result&gt; = icmp ult i16 4, 5 <i>; yields: result=true</i>
3182 &lt;result&gt; = icmp sgt i16 4, 5 <i>; yields: result=false</i>
3183 &lt;result&gt; = icmp ule i16 -4, 5 <i>; yields: result=false</i>
3184 &lt;result&gt; = icmp sge i16 4, 5 <i>; yields: result=false</i>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003185</pre>
3186</div>
3187
3188<!-- _______________________________________________________________________ -->
3189<div class="doc_subsubsection"><a name="i_fcmp">'<tt>fcmp</tt>' Instruction</a>
3190</div>
3191<div class="doc_text">
3192<h5>Syntax:</h5>
3193<pre> &lt;result&gt; = fcmp &lt;cond&gt; &lt;ty&gt; &lt;var1&gt;, &lt;var2&gt; <i>; yields {bool}:result</i>
3194</pre>
3195<h5>Overview:</h5>
3196<p>The '<tt>fcmp</tt>' instruction returns a boolean value based on comparison
3197of its floating point operands.</p>
3198<h5>Arguments:</h5>
3199<p>The '<tt>fcmp</tt>' instruction takes three operands. The first operand is
3200the condition code which indicates the kind of comparison to perform. It is not
3201a value, just a keyword. The possibilities for the condition code are:
3202<ol>
Reid Spencerb7f26282006-11-19 03:00:14 +00003203 <li><tt>false</tt>: no comparison, always returns false</li>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003204 <li><tt>oeq</tt>: ordered and equal</li>
3205 <li><tt>ogt</tt>: ordered and greater than </li>
3206 <li><tt>oge</tt>: ordered and greater than or equal</li>
3207 <li><tt>olt</tt>: ordered and less than </li>
3208 <li><tt>ole</tt>: ordered and less than or equal</li>
3209 <li><tt>one</tt>: ordered and not equal</li>
3210 <li><tt>ord</tt>: ordered (no nans)</li>
3211 <li><tt>ueq</tt>: unordered or equal</li>
3212 <li><tt>ugt</tt>: unordered or greater than </li>
3213 <li><tt>uge</tt>: unordered or greater than or equal</li>
3214 <li><tt>ult</tt>: unordered or less than </li>
3215 <li><tt>ule</tt>: unordered or less than or equal</li>
3216 <li><tt>une</tt>: unordered or not equal</li>
3217 <li><tt>uno</tt>: unordered (either nans)</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003218 <li><tt>true</tt>: no comparison, always returns true</li>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003219</ol>
Reid Spencer93a49852006-12-06 07:08:07 +00003220<p>In the preceding, <i>ordered</i> means that neither operand is a QNAN while
3221<i>unordered</i> means that either operand may be a QNAN.</p>
Reid Spencer350f8aa2007-01-04 05:19:58 +00003222<p>The <tt>val1</tt> and <tt>val2</tt> arguments must be
3223<a href="#t_floating">floating point</a> typed. They must have identical
3224types.</p>
Reid Spencerb7f26282006-11-19 03:00:14 +00003225<p>In the foregoing, <i>ordered</i> means that neither operand is a QNAN and
3226<i>unordered</i> means that either operand is a QNAN.</p>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003227<h5>Semantics:</h5>
3228<p>The '<tt>fcmp</tt>' compares <tt>var1</tt> and <tt>var2</tt> according to
3229the condition code given as <tt>cond</tt>. The comparison performed always
3230yields a <a href="#t_bool">bool</a> result, as follows:
3231<ol>
3232 <li><tt>false</tt>: always yields <tt>false</tt>, regardless of operands.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003233 <li><tt>oeq</tt>: yields <tt>true</tt> if both operands are not a QNAN and
Reid Spencerf3a70a62006-11-18 21:50:54 +00003234 <tt>var1</tt> is equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003235 <li><tt>ogt</tt>: yields <tt>true</tt> if both operands are not a QNAN and
Reid Spencerf3a70a62006-11-18 21:50:54 +00003236 <tt>var1</tt> is greather than <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003237 <li><tt>oge</tt>: yields <tt>true</tt> if both operands are not a QNAN and
Reid Spencerf3a70a62006-11-18 21:50:54 +00003238 <tt>var1</tt> is greater than or equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003239 <li><tt>olt</tt>: yields <tt>true</tt> if both operands are not a QNAN and
Reid Spencerf3a70a62006-11-18 21:50:54 +00003240 <tt>var1</tt> is less than <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003241 <li><tt>ole</tt>: yields <tt>true</tt> if both operands are not a QNAN and
Reid Spencerf3a70a62006-11-18 21:50:54 +00003242 <tt>var1</tt> is less than or equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003243 <li><tt>one</tt>: yields <tt>true</tt> if both operands are not a QNAN and
Reid Spencerf3a70a62006-11-18 21:50:54 +00003244 <tt>var1</tt> is not equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003245 <li><tt>ord</tt>: yields <tt>true</tt> if both operands are not a QNAN.</li>
3246 <li><tt>ueq</tt>: yields <tt>true</tt> if either operand is a QNAN or
Reid Spencerf3a70a62006-11-18 21:50:54 +00003247 <tt>var1</tt> is equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003248 <li><tt>ugt</tt>: yields <tt>true</tt> if either operand is a QNAN or
Reid Spencerf3a70a62006-11-18 21:50:54 +00003249 <tt>var1</tt> is greater than <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003250 <li><tt>uge</tt>: yields <tt>true</tt> if either operand is a QNAN or
Reid Spencerf3a70a62006-11-18 21:50:54 +00003251 <tt>var1</tt> is greater than or equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003252 <li><tt>ult</tt>: yields <tt>true</tt> if either operand is a QNAN or
Reid Spencerf3a70a62006-11-18 21:50:54 +00003253 <tt>var1</tt> is less than <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003254 <li><tt>ule</tt>: yields <tt>true</tt> if either operand is a QNAN or
Reid Spencerf3a70a62006-11-18 21:50:54 +00003255 <tt>var1</tt> is less than or equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003256 <li><tt>une</tt>: yields <tt>true</tt> if either operand is a QNAN or
Reid Spencerf3a70a62006-11-18 21:50:54 +00003257 <tt>var1</tt> is not equal to <tt>var2</tt>.</li>
Reid Spencerb7f26282006-11-19 03:00:14 +00003258 <li><tt>uno</tt>: yields <tt>true</tt> if either operand is a QNAN.</li>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003259 <li><tt>true</tt>: always yields <tt>true</tt>, regardless of operands.</li>
3260</ol>
3261<p>If the operands are <a href="#t_packed">packed</a> typed, the elements of
3262the vector are compared in turn and the predicate must hold for all elements.
Reid Spencerb7f26282006-11-19 03:00:14 +00003263</p>
Reid Spencerf3a70a62006-11-18 21:50:54 +00003264
3265<h5>Example:</h5>
3266<pre> &lt;result&gt; = fcmp oeq float 4.0, 5.0 <i>; yields: result=false</i>
3267 &lt;result&gt; = icmp one float 4.0, 5.0 <i>; yields: result=true</i>
3268 &lt;result&gt; = icmp olt float 4.0, 5.0 <i>; yields: result=true</i>
3269 &lt;result&gt; = icmp ueq double 1.0, 2.0 <i>; yields: result=false</i>
3270</pre>
3271</div>
3272
Reid Spencer2fd21e62006-11-08 01:18:52 +00003273<!-- _______________________________________________________________________ -->
3274<div class="doc_subsubsection"> <a name="i_phi">'<tt>phi</tt>'
3275Instruction</a> </div>
3276<div class="doc_text">
3277<h5>Syntax:</h5>
3278<pre> &lt;result&gt; = phi &lt;ty&gt; [ &lt;val0&gt;, &lt;label0&gt;], ...<br></pre>
3279<h5>Overview:</h5>
3280<p>The '<tt>phi</tt>' instruction is used to implement the &#966; node in
3281the SSA graph representing the function.</p>
3282<h5>Arguments:</h5>
3283<p>The type of the incoming values are specified with the first type
3284field. After this, the '<tt>phi</tt>' instruction takes a list of pairs
3285as arguments, with one pair for each predecessor basic block of the
3286current block. Only values of <a href="#t_firstclass">first class</a>
3287type may be used as the value arguments to the PHI node. Only labels
3288may be used as the label arguments.</p>
3289<p>There must be no non-phi instructions between the start of a basic
3290block and the PHI instructions: i.e. PHI instructions must be first in
3291a basic block.</p>
3292<h5>Semantics:</h5>
3293<p>At runtime, the '<tt>phi</tt>' instruction logically takes on the
3294value specified by the parameter, depending on which basic block we
3295came from in the last <a href="#terminators">terminator</a> instruction.</p>
3296<h5>Example:</h5>
Reid Spencerca86e162006-12-31 07:07:53 +00003297<pre>Loop: ; Infinite loop that counts from 0 on up...<br> %indvar = phi i32 [ 0, %LoopHeader ], [ %nextindvar, %Loop ]<br> %nextindvar = add i32 %indvar, 1<br> br label %Loop<br></pre>
Reid Spencer2fd21e62006-11-08 01:18:52 +00003298</div>
3299
Chris Lattnercc37aae2004-03-12 05:50:16 +00003300<!-- _______________________________________________________________________ -->
3301<div class="doc_subsubsection">
3302 <a name="i_select">'<tt>select</tt>' Instruction</a>
3303</div>
3304
3305<div class="doc_text">
3306
3307<h5>Syntax:</h5>
3308
3309<pre>
3310 &lt;result&gt; = select bool &lt;cond&gt;, &lt;ty&gt; &lt;val1&gt;, &lt;ty&gt; &lt;val2&gt; <i>; yields ty</i>
3311</pre>
3312
3313<h5>Overview:</h5>
3314
3315<p>
3316The '<tt>select</tt>' instruction is used to choose one value based on a
3317condition, without branching.
3318</p>
3319
3320
3321<h5>Arguments:</h5>
3322
3323<p>
3324The '<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.
3325</p>
3326
3327<h5>Semantics:</h5>
3328
3329<p>
3330If the boolean condition evaluates to true, the instruction returns the first
John Criswellfc6b8952005-05-16 16:17:45 +00003331value argument; otherwise, it returns the second value argument.
Chris Lattnercc37aae2004-03-12 05:50:16 +00003332</p>
3333
3334<h5>Example:</h5>
3335
3336<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003337 %X = select bool true, i8 17, i8 42 <i>; yields i8:17</i>
Chris Lattnercc37aae2004-03-12 05:50:16 +00003338</pre>
3339</div>
3340
Robert Bocchino05ccd702006-01-15 20:48:27 +00003341
3342<!-- _______________________________________________________________________ -->
3343<div class="doc_subsubsection">
Chris Lattner2bff5242005-05-06 05:47:36 +00003344 <a name="i_call">'<tt>call</tt>' Instruction</a>
3345</div>
3346
Misha Brukman9d0919f2003-11-08 01:05:38 +00003347<div class="doc_text">
Chris Lattner2bff5242005-05-06 05:47:36 +00003348
Chris Lattner00950542001-06-06 20:29:01 +00003349<h5>Syntax:</h5>
Chris Lattner2bff5242005-05-06 05:47:36 +00003350<pre>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00003351 &lt;result&gt; = [tail] call [<a href="#callingconv">cconv</a>] &lt;ty&gt;* &lt;fnptrval&gt;(&lt;param list&gt;)
Chris Lattner2bff5242005-05-06 05:47:36 +00003352</pre>
3353
Chris Lattner00950542001-06-06 20:29:01 +00003354<h5>Overview:</h5>
Chris Lattner2bff5242005-05-06 05:47:36 +00003355
Misha Brukman9d0919f2003-11-08 01:05:38 +00003356<p>The '<tt>call</tt>' instruction represents a simple function call.</p>
Chris Lattner2bff5242005-05-06 05:47:36 +00003357
Chris Lattner00950542001-06-06 20:29:01 +00003358<h5>Arguments:</h5>
Chris Lattner2bff5242005-05-06 05:47:36 +00003359
Misha Brukman9d0919f2003-11-08 01:05:38 +00003360<p>This instruction requires several arguments:</p>
Chris Lattner2bff5242005-05-06 05:47:36 +00003361
Chris Lattner6536cfe2002-05-06 22:08:29 +00003362<ol>
Chris Lattner261efe92003-11-25 01:02:51 +00003363 <li>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00003364 <p>The optional "tail" marker indicates whether the callee function accesses
3365 any allocas or varargs in the caller. If the "tail" marker is present, the
Chris Lattner2bff5242005-05-06 05:47:36 +00003366 function call is eligible for tail call optimization. Note that calls may
3367 be marked "tail" even if they do not occur before a <a
3368 href="#i_ret"><tt>ret</tt></a> instruction.
Chris Lattner261efe92003-11-25 01:02:51 +00003369 </li>
3370 <li>
Chris Lattnerbad10ee2005-05-06 22:57:40 +00003371 <p>The optional "cconv" marker indicates which <a href="callingconv">calling
3372 convention</a> the call should use. If none is specified, the call defaults
3373 to using C calling conventions.
3374 </li>
3375 <li>
Chris Lattner2bff5242005-05-06 05:47:36 +00003376 <p>'<tt>ty</tt>': shall be the signature of the pointer to function value
3377 being invoked. The argument types must match the types implied by this
John Criswellfc6b8952005-05-16 16:17:45 +00003378 signature. This type can be omitted if the function is not varargs and
3379 if the function type does not return a pointer to a function.</p>
Chris Lattner2bff5242005-05-06 05:47:36 +00003380 </li>
3381 <li>
3382 <p>'<tt>fnptrval</tt>': An LLVM value containing a pointer to a function to
3383 be invoked. In most cases, this is a direct function invocation, but
3384 indirect <tt>call</tt>s are just as possible, calling an arbitrary pointer
John Criswellfc6b8952005-05-16 16:17:45 +00003385 to function value.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00003386 </li>
3387 <li>
3388 <p>'<tt>function args</tt>': argument list whose types match the
Reid Spencera7e302a2005-05-01 22:22:57 +00003389 function signature argument types. All arguments must be of
3390 <a href="#t_firstclass">first class</a> type. If the function signature
3391 indicates the function accepts a variable number of arguments, the extra
3392 arguments can be specified.</p>
Chris Lattner261efe92003-11-25 01:02:51 +00003393 </li>
Chris Lattner6536cfe2002-05-06 22:08:29 +00003394</ol>
Chris Lattner2bff5242005-05-06 05:47:36 +00003395
Chris Lattner00950542001-06-06 20:29:01 +00003396<h5>Semantics:</h5>
Chris Lattner2bff5242005-05-06 05:47:36 +00003397
Chris Lattner261efe92003-11-25 01:02:51 +00003398<p>The '<tt>call</tt>' instruction is used to cause control flow to
3399transfer to a specified function, with its incoming arguments bound to
3400the specified values. Upon a '<tt><a href="#i_ret">ret</a></tt>'
3401instruction in the called function, control flow continues with the
3402instruction after the function call, and the return value of the
3403function is bound to the result argument. This is a simpler case of
3404the <a href="#i_invoke">invoke</a> instruction.</p>
Chris Lattner2bff5242005-05-06 05:47:36 +00003405
Chris Lattner00950542001-06-06 20:29:01 +00003406<h5>Example:</h5>
Chris Lattner2bff5242005-05-06 05:47:36 +00003407
3408<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003409 %retval = call i32 %test(i32 %argc)
3410 call i32(i8 *, ...) *%printf(i8 * %msg, i32 12, i8 42);
3411 %X = tail call i32 %foo()
3412 %Y = tail call <a href="#callingconv">fastcc</a> i32 %foo()
Chris Lattner2bff5242005-05-06 05:47:36 +00003413</pre>
3414
Misha Brukman9d0919f2003-11-08 01:05:38 +00003415</div>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003416
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003417<!-- _______________________________________________________________________ -->
Chris Lattnere19d7a72004-09-27 21:51:25 +00003418<div class="doc_subsubsection">
Chris Lattnerfb6977d2006-01-13 23:26:01 +00003419 <a name="i_va_arg">'<tt>va_arg</tt>' Instruction</a>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003420</div>
3421
Misha Brukman9d0919f2003-11-08 01:05:38 +00003422<div class="doc_text">
Chris Lattnere19d7a72004-09-27 21:51:25 +00003423
Chris Lattner8d1a81d2003-10-18 05:51:36 +00003424<h5>Syntax:</h5>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003425
3426<pre>
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003427 &lt;resultval&gt; = va_arg &lt;va_list*&gt; &lt;arglist&gt;, &lt;argty&gt;
Chris Lattnere19d7a72004-09-27 21:51:25 +00003428</pre>
3429
Chris Lattner8d1a81d2003-10-18 05:51:36 +00003430<h5>Overview:</h5>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003431
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003432<p>The '<tt>va_arg</tt>' instruction is used to access arguments passed through
Chris Lattnere19d7a72004-09-27 21:51:25 +00003433the "variable argument" area of a function call. It is used to implement the
3434<tt>va_arg</tt> macro in C.</p>
3435
Chris Lattner8d1a81d2003-10-18 05:51:36 +00003436<h5>Arguments:</h5>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003437
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003438<p>This instruction takes a <tt>va_list*</tt> value and the type of
3439the argument. It returns a value of the specified argument type and
Jeff Cohen25d4f7e2005-11-11 02:15:27 +00003440increments the <tt>va_list</tt> to point to the next argument. Again, the
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003441actual type of <tt>va_list</tt> is target specific.</p>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003442
Chris Lattner8d1a81d2003-10-18 05:51:36 +00003443<h5>Semantics:</h5>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003444
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003445<p>The '<tt>va_arg</tt>' instruction loads an argument of the specified
3446type from the specified <tt>va_list</tt> and causes the
3447<tt>va_list</tt> to point to the next argument. For more information,
3448see the variable argument handling <a href="#int_varargs">Intrinsic
3449Functions</a>.</p>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003450
3451<p>It is legal for this instruction to be called in a function which does not
3452take a variable number of arguments, for example, the <tt>vfprintf</tt>
Misha Brukman9d0919f2003-11-08 01:05:38 +00003453function.</p>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003454
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003455<p><tt>va_arg</tt> is an LLVM instruction instead of an <a
John Criswellfc6b8952005-05-16 16:17:45 +00003456href="#intrinsics">intrinsic function</a> because it takes a type as an
Chris Lattnere19d7a72004-09-27 21:51:25 +00003457argument.</p>
3458
Chris Lattner8d1a81d2003-10-18 05:51:36 +00003459<h5>Example:</h5>
Chris Lattnere19d7a72004-09-27 21:51:25 +00003460
3461<p>See the <a href="#int_varargs">variable argument processing</a> section.</p>
3462
Misha Brukman9d0919f2003-11-08 01:05:38 +00003463</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00003464
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003465<!-- *********************************************************************** -->
Chris Lattner261efe92003-11-25 01:02:51 +00003466<div class="doc_section"> <a name="intrinsics">Intrinsic Functions</a> </div>
3467<!-- *********************************************************************** -->
Chris Lattner8ff75902004-01-06 05:31:32 +00003468
Misha Brukman9d0919f2003-11-08 01:05:38 +00003469<div class="doc_text">
Chris Lattner33aec9e2004-02-12 17:01:32 +00003470
3471<p>LLVM supports the notion of an "intrinsic function". These functions have
John Criswellfc6b8952005-05-16 16:17:45 +00003472well known names and semantics and are required to follow certain
Chris Lattner33aec9e2004-02-12 17:01:32 +00003473restrictions. Overall, these instructions represent an extension mechanism for
3474the LLVM language that does not require changing all of the transformations in
3475LLVM to add to the language (or the bytecode reader/writer, the parser,
3476etc...).</p>
3477
John Criswellfc6b8952005-05-16 16:17:45 +00003478<p>Intrinsic function names must all start with an "<tt>llvm.</tt>" prefix. This
3479prefix is reserved in LLVM for intrinsic names; thus, functions may not be named
Chris Lattner33aec9e2004-02-12 17:01:32 +00003480this. Intrinsic functions must always be external functions: you cannot define
3481the body of intrinsic functions. Intrinsic functions may only be used in call
3482or invoke instructions: it is illegal to take the address of an intrinsic
3483function. Additionally, because intrinsic functions are part of the LLVM
3484language, it is required that they all be documented here if any are added.</p>
3485
3486
John Criswellfc6b8952005-05-16 16:17:45 +00003487<p>To learn how to add an intrinsic function, please see the <a
Chris Lattner590cff32005-05-11 03:35:57 +00003488href="ExtendingLLVM.html">Extending LLVM Guide</a>.
Chris Lattner33aec9e2004-02-12 17:01:32 +00003489</p>
3490
Misha Brukman9d0919f2003-11-08 01:05:38 +00003491</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00003492
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003493<!-- ======================================================================= -->
Chris Lattner8ff75902004-01-06 05:31:32 +00003494<div class="doc_subsection">
3495 <a name="int_varargs">Variable Argument Handling Intrinsics</a>
3496</div>
3497
Misha Brukman9d0919f2003-11-08 01:05:38 +00003498<div class="doc_text">
Chris Lattnerd7923912004-05-23 21:06:01 +00003499
Misha Brukman9d0919f2003-11-08 01:05:38 +00003500<p>Variable argument support is defined in LLVM with the <a
Chris Lattnerfb6977d2006-01-13 23:26:01 +00003501 href="#i_va_arg"><tt>va_arg</tt></a> instruction and these three
Chris Lattner261efe92003-11-25 01:02:51 +00003502intrinsic functions. These functions are related to the similarly
3503named macros defined in the <tt>&lt;stdarg.h&gt;</tt> header file.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +00003504
Chris Lattner261efe92003-11-25 01:02:51 +00003505<p>All of these functions operate on arguments that use a
3506target-specific value type "<tt>va_list</tt>". The LLVM assembly
3507language reference manual does not define what this type is, so all
3508transformations should be prepared to handle intrinsics with any type
3509used.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +00003510
Chris Lattner374ab302006-05-15 17:26:46 +00003511<p>This example shows how the <a href="#i_va_arg"><tt>va_arg</tt></a>
Chris Lattner261efe92003-11-25 01:02:51 +00003512instruction and the variable argument handling intrinsic functions are
3513used.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +00003514
Chris Lattner33aec9e2004-02-12 17:01:32 +00003515<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003516define i32 %test(i32 %X, ...) {
Chris Lattner33aec9e2004-02-12 17:01:32 +00003517 ; Initialize variable argument processing
Reid Spencerca86e162006-12-31 07:07:53 +00003518 %ap = alloca i8 *
3519 call void %<a href="#i_va_start">llvm.va_start</a>(i8 ** %ap)
Chris Lattner33aec9e2004-02-12 17:01:32 +00003520
3521 ; Read a single integer argument
Reid Spencerca86e162006-12-31 07:07:53 +00003522 %tmp = va_arg i8 ** %ap, i32
Chris Lattner33aec9e2004-02-12 17:01:32 +00003523
3524 ; Demonstrate usage of llvm.va_copy and llvm.va_end
Reid Spencerca86e162006-12-31 07:07:53 +00003525 %aq = alloca i8 *
3526 call void %<a href="#i_va_copy">llvm.va_copy</a>(i8 ** %aq, i8 ** %ap)
3527 call void %<a href="#i_va_end">llvm.va_end</a>(i8 ** %aq)
Chris Lattner33aec9e2004-02-12 17:01:32 +00003528
3529 ; Stop processing of arguments.
Reid Spencerca86e162006-12-31 07:07:53 +00003530 call void %<a href="#i_va_end">llvm.va_end</a>(i8 ** %ap)
3531 ret i32 %tmp
Chris Lattner33aec9e2004-02-12 17:01:32 +00003532}
3533</pre>
Misha Brukman9d0919f2003-11-08 01:05:38 +00003534</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00003535
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003536<!-- _______________________________________________________________________ -->
Chris Lattner8ff75902004-01-06 05:31:32 +00003537<div class="doc_subsubsection">
3538 <a name="i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a>
3539</div>
3540
3541
Misha Brukman9d0919f2003-11-08 01:05:38 +00003542<div class="doc_text">
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003543<h5>Syntax:</h5>
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003544<pre> declare void %llvm.va_start(&lt;va_list&gt;* &lt;arglist&gt;)<br></pre>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003545<h5>Overview:</h5>
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003546<P>The '<tt>llvm.va_start</tt>' intrinsic initializes
3547<tt>*&lt;arglist&gt;</tt> for subsequent use by <tt><a
3548href="#i_va_arg">va_arg</a></tt>.</p>
3549
3550<h5>Arguments:</h5>
3551
3552<P>The argument is a pointer to a <tt>va_list</tt> element to initialize.</p>
3553
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003554<h5>Semantics:</h5>
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003555
3556<P>The '<tt>llvm.va_start</tt>' intrinsic works just like the <tt>va_start</tt>
3557macro available in C. In a target-dependent way, it initializes the
3558<tt>va_list</tt> element the argument points to, so that the next call to
3559<tt>va_arg</tt> will produce the first variable argument passed to the function.
3560Unlike the C <tt>va_start</tt> macro, this intrinsic does not need to know the
3561last argument of the function, the compiler can figure that out.</p>
3562
Misha Brukman9d0919f2003-11-08 01:05:38 +00003563</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00003564
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003565<!-- _______________________________________________________________________ -->
Chris Lattner8ff75902004-01-06 05:31:32 +00003566<div class="doc_subsubsection">
3567 <a name="i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a>
3568</div>
3569
Misha Brukman9d0919f2003-11-08 01:05:38 +00003570<div class="doc_text">
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003571<h5>Syntax:</h5>
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003572<pre> declare void %llvm.va_end(&lt;va_list*&gt; &lt;arglist&gt;)<br></pre>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003573<h5>Overview:</h5>
Chris Lattner261efe92003-11-25 01:02:51 +00003574<p>The '<tt>llvm.va_end</tt>' intrinsic destroys <tt>&lt;arglist&gt;</tt>
3575which has been initialized previously with <tt><a href="#i_va_start">llvm.va_start</a></tt>
3576or <tt><a href="#i_va_copy">llvm.va_copy</a></tt>.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003577<h5>Arguments:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00003578<p>The argument is a <tt>va_list</tt> to destroy.</p>
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003579<h5>Semantics:</h5>
Misha Brukman9d0919f2003-11-08 01:05:38 +00003580<p>The '<tt>llvm.va_end</tt>' intrinsic works just like the <tt>va_end</tt>
Chris Lattner261efe92003-11-25 01:02:51 +00003581macro available in C. In a target-dependent way, it destroys the <tt>va_list</tt>.
3582Calls to <a href="#i_va_start"><tt>llvm.va_start</tt></a> and <a
3583 href="#i_va_copy"><tt>llvm.va_copy</tt></a> must be matched exactly
3584with calls to <tt>llvm.va_end</tt>.</p>
Misha Brukman9d0919f2003-11-08 01:05:38 +00003585</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00003586
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003587<!-- _______________________________________________________________________ -->
Chris Lattner8ff75902004-01-06 05:31:32 +00003588<div class="doc_subsubsection">
3589 <a name="i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a>
3590</div>
3591
Misha Brukman9d0919f2003-11-08 01:05:38 +00003592<div class="doc_text">
Chris Lattnerd7923912004-05-23 21:06:01 +00003593
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003594<h5>Syntax:</h5>
Chris Lattnerd7923912004-05-23 21:06:01 +00003595
3596<pre>
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003597 declare void %llvm.va_copy(&lt;va_list&gt;* &lt;destarglist&gt;,
Andrew Lenharthd0a4c622005-06-22 20:38:11 +00003598 &lt;va_list&gt;* &lt;srcarglist&gt;)
Chris Lattnerd7923912004-05-23 21:06:01 +00003599</pre>
3600
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003601<h5>Overview:</h5>
Chris Lattnerd7923912004-05-23 21:06:01 +00003602
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003603<p>The '<tt>llvm.va_copy</tt>' intrinsic copies the current argument position from
3604the source argument list to the destination argument list.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +00003605
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003606<h5>Arguments:</h5>
Chris Lattnerd7923912004-05-23 21:06:01 +00003607
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003608<p>The first argument is a pointer to a <tt>va_list</tt> element to initialize.
Andrew Lenharthd0a4c622005-06-22 20:38:11 +00003609The second argument is a pointer to a <tt>va_list</tt> element to copy from.</p>
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003610
Chris Lattnerd7923912004-05-23 21:06:01 +00003611
Chris Lattnerd9ad5b32003-05-08 04:57:36 +00003612<h5>Semantics:</h5>
Chris Lattnerd7923912004-05-23 21:06:01 +00003613
Andrew Lenharth8bf607a2005-06-18 18:28:17 +00003614<p>The '<tt>llvm.va_copy</tt>' intrinsic works just like the <tt>va_copy</tt> macro
3615available in C. In a target-dependent way, it copies the source
3616<tt>va_list</tt> element into the destination list. This intrinsic is necessary
3617because the <tt><a href="i_va_begin">llvm.va_begin</a></tt> intrinsic may be
Chris Lattnerd7923912004-05-23 21:06:01 +00003618arbitrarily complex and require memory allocation, for example.</p>
3619
Misha Brukman9d0919f2003-11-08 01:05:38 +00003620</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00003621
Chris Lattner33aec9e2004-02-12 17:01:32 +00003622<!-- ======================================================================= -->
3623<div class="doc_subsection">
Chris Lattnerd7923912004-05-23 21:06:01 +00003624 <a name="int_gc">Accurate Garbage Collection Intrinsics</a>
3625</div>
3626
3627<div class="doc_text">
3628
3629<p>
3630LLVM support for <a href="GarbageCollection.html">Accurate Garbage
3631Collection</a> requires the implementation and generation of these intrinsics.
3632These intrinsics allow identification of <a href="#i_gcroot">GC roots on the
3633stack</a>, as well as garbage collector implementations that require <a
3634href="#i_gcread">read</a> and <a href="#i_gcwrite">write</a> barriers.
3635Front-ends for type-safe garbage collected languages should generate these
3636intrinsics to make use of the LLVM garbage collectors. For more details, see <a
3637href="GarbageCollection.html">Accurate Garbage Collection with LLVM</a>.
3638</p>
3639</div>
3640
3641<!-- _______________________________________________________________________ -->
3642<div class="doc_subsubsection">
3643 <a name="i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a>
3644</div>
3645
3646<div class="doc_text">
3647
3648<h5>Syntax:</h5>
3649
3650<pre>
Reid Spencera8d451e2005-04-26 20:50:44 +00003651 declare void %llvm.gcroot(&lt;ty&gt;** %ptrloc, &lt;ty2&gt;* %metadata)
Chris Lattnerd7923912004-05-23 21:06:01 +00003652</pre>
3653
3654<h5>Overview:</h5>
3655
John Criswell9e2485c2004-12-10 15:51:16 +00003656<p>The '<tt>llvm.gcroot</tt>' intrinsic declares the existence of a GC root to
Chris Lattnerd7923912004-05-23 21:06:01 +00003657the code generator, and allows some metadata to be associated with it.</p>
3658
3659<h5>Arguments:</h5>
3660
3661<p>The first argument specifies the address of a stack object that contains the
3662root pointer. The second pointer (which must be either a constant or a global
3663value address) contains the meta-data to be associated with the root.</p>
3664
3665<h5>Semantics:</h5>
3666
3667<p>At runtime, a call to this intrinsics stores a null pointer into the "ptrloc"
3668location. At compile-time, the code generator generates information to allow
3669the runtime to find the pointer at GC safe points.
3670</p>
3671
3672</div>
3673
3674
3675<!-- _______________________________________________________________________ -->
3676<div class="doc_subsubsection">
3677 <a name="i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a>
3678</div>
3679
3680<div class="doc_text">
3681
3682<h5>Syntax:</h5>
3683
3684<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003685 declare i8 * %llvm.gcread(i8 * %ObjPtr, i8 ** %Ptr)
Chris Lattnerd7923912004-05-23 21:06:01 +00003686</pre>
3687
3688<h5>Overview:</h5>
3689
3690<p>The '<tt>llvm.gcread</tt>' intrinsic identifies reads of references from heap
3691locations, allowing garbage collector implementations that require read
3692barriers.</p>
3693
3694<h5>Arguments:</h5>
3695
Chris Lattner80626e92006-03-14 20:02:51 +00003696<p>The second argument is the address to read from, which should be an address
3697allocated from the garbage collector. The first object is a pointer to the
3698start of the referenced object, if needed by the language runtime (otherwise
3699null).</p>
Chris Lattnerd7923912004-05-23 21:06:01 +00003700
3701<h5>Semantics:</h5>
3702
3703<p>The '<tt>llvm.gcread</tt>' intrinsic has the same semantics as a load
3704instruction, but may be replaced with substantially more complex code by the
3705garbage collector runtime, as needed.</p>
3706
3707</div>
3708
3709
3710<!-- _______________________________________________________________________ -->
3711<div class="doc_subsubsection">
3712 <a name="i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a>
3713</div>
3714
3715<div class="doc_text">
3716
3717<h5>Syntax:</h5>
3718
3719<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003720 declare void %llvm.gcwrite(i8 * %P1, i8 * %Obj, i8 ** %P2)
Chris Lattnerd7923912004-05-23 21:06:01 +00003721</pre>
3722
3723<h5>Overview:</h5>
3724
3725<p>The '<tt>llvm.gcwrite</tt>' intrinsic identifies writes of references to heap
3726locations, allowing garbage collector implementations that require write
3727barriers (such as generational or reference counting collectors).</p>
3728
3729<h5>Arguments:</h5>
3730
Chris Lattner80626e92006-03-14 20:02:51 +00003731<p>The first argument is the reference to store, the second is the start of the
3732object to store it to, and the third is the address of the field of Obj to
3733store to. If the runtime does not require a pointer to the object, Obj may be
3734null.</p>
Chris Lattnerd7923912004-05-23 21:06:01 +00003735
3736<h5>Semantics:</h5>
3737
3738<p>The '<tt>llvm.gcwrite</tt>' intrinsic has the same semantics as a store
3739instruction, but may be replaced with substantially more complex code by the
3740garbage collector runtime, as needed.</p>
3741
3742</div>
3743
3744
3745
3746<!-- ======================================================================= -->
3747<div class="doc_subsection">
Chris Lattner10610642004-02-14 04:08:35 +00003748 <a name="int_codegen">Code Generator Intrinsics</a>
3749</div>
3750
3751<div class="doc_text">
3752<p>
3753These intrinsics are provided by LLVM to expose special features that may only
3754be implemented with code generator support.
3755</p>
3756
3757</div>
3758
3759<!-- _______________________________________________________________________ -->
3760<div class="doc_subsubsection">
3761 <a name="i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a>
3762</div>
3763
3764<div class="doc_text">
3765
3766<h5>Syntax:</h5>
3767<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003768 declare i8 *%llvm.returnaddress(i32 &lt;level&gt;)
Chris Lattner10610642004-02-14 04:08:35 +00003769</pre>
3770
3771<h5>Overview:</h5>
3772
3773<p>
Chris Lattner32b5d712006-10-15 20:05:59 +00003774The '<tt>llvm.returnaddress</tt>' intrinsic attempts to compute a
3775target-specific value indicating the return address of the current function
3776or one of its callers.
Chris Lattner10610642004-02-14 04:08:35 +00003777</p>
3778
3779<h5>Arguments:</h5>
3780
3781<p>
3782The argument to this intrinsic indicates which function to return the address
3783for. Zero indicates the calling function, one indicates its caller, etc. The
3784argument is <b>required</b> to be a constant integer value.
3785</p>
3786
3787<h5>Semantics:</h5>
3788
3789<p>
3790The '<tt>llvm.returnaddress</tt>' intrinsic either returns a pointer indicating
3791the return address of the specified call frame, or zero if it cannot be
3792identified. The value returned by this intrinsic is likely to be incorrect or 0
3793for arguments other than zero, so it should only be used for debugging purposes.
3794</p>
3795
3796<p>
3797Note that calling this intrinsic does not prevent function inlining or other
Chris Lattnerb40bb382005-03-07 20:30:51 +00003798aggressive transformations, so the value returned may not be that of the obvious
Chris Lattner10610642004-02-14 04:08:35 +00003799source-language caller.
3800</p>
3801</div>
3802
3803
3804<!-- _______________________________________________________________________ -->
3805<div class="doc_subsubsection">
3806 <a name="i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a>
3807</div>
3808
3809<div class="doc_text">
3810
3811<h5>Syntax:</h5>
3812<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003813 declare i8 *%llvm.frameaddress(i32 &lt;level&gt;)
Chris Lattner10610642004-02-14 04:08:35 +00003814</pre>
3815
3816<h5>Overview:</h5>
3817
3818<p>
Chris Lattner32b5d712006-10-15 20:05:59 +00003819The '<tt>llvm.frameaddress</tt>' intrinsic attempts to return the
3820target-specific frame pointer value for the specified stack frame.
Chris Lattner10610642004-02-14 04:08:35 +00003821</p>
3822
3823<h5>Arguments:</h5>
3824
3825<p>
3826The argument to this intrinsic indicates which function to return the frame
3827pointer for. Zero indicates the calling function, one indicates its caller,
3828etc. The argument is <b>required</b> to be a constant integer value.
3829</p>
3830
3831<h5>Semantics:</h5>
3832
3833<p>
3834The '<tt>llvm.frameaddress</tt>' intrinsic either returns a pointer indicating
3835the frame address of the specified call frame, or zero if it cannot be
3836identified. The value returned by this intrinsic is likely to be incorrect or 0
3837for arguments other than zero, so it should only be used for debugging purposes.
3838</p>
3839
3840<p>
3841Note that calling this intrinsic does not prevent function inlining or other
Chris Lattnerb40bb382005-03-07 20:30:51 +00003842aggressive transformations, so the value returned may not be that of the obvious
Chris Lattner10610642004-02-14 04:08:35 +00003843source-language caller.
3844</p>
3845</div>
3846
Chris Lattner9a9d7ac2005-02-28 19:24:19 +00003847<!-- _______________________________________________________________________ -->
3848<div class="doc_subsubsection">
Chris Lattner57e1f392006-01-13 02:03:13 +00003849 <a name="i_stacksave">'<tt>llvm.stacksave</tt>' Intrinsic</a>
3850</div>
3851
3852<div class="doc_text">
3853
3854<h5>Syntax:</h5>
3855<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003856 declare i8 *%llvm.stacksave()
Chris Lattner57e1f392006-01-13 02:03:13 +00003857</pre>
3858
3859<h5>Overview:</h5>
3860
3861<p>
3862The '<tt>llvm.stacksave</tt>' intrinsic is used to remember the current state of
3863the function stack, for use with <a href="#i_stackrestore">
3864<tt>llvm.stackrestore</tt></a>. This is useful for implementing language
3865features like scoped automatic variable sized arrays in C99.
3866</p>
3867
3868<h5>Semantics:</h5>
3869
3870<p>
3871This intrinsic returns a opaque pointer value that can be passed to <a
3872href="#i_stackrestore"><tt>llvm.stackrestore</tt></a>. When an
3873<tt>llvm.stackrestore</tt> intrinsic is executed with a value saved from
3874<tt>llvm.stacksave</tt>, it effectively restores the state of the stack to the
3875state it was in when the <tt>llvm.stacksave</tt> intrinsic executed. In
3876practice, this pops any <a href="#i_alloca">alloca</a> blocks from the stack
3877that were allocated after the <tt>llvm.stacksave</tt> was executed.
3878</p>
3879
3880</div>
3881
3882<!-- _______________________________________________________________________ -->
3883<div class="doc_subsubsection">
3884 <a name="i_stackrestore">'<tt>llvm.stackrestore</tt>' Intrinsic</a>
3885</div>
3886
3887<div class="doc_text">
3888
3889<h5>Syntax:</h5>
3890<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003891 declare void %llvm.stackrestore(i8 * %ptr)
Chris Lattner57e1f392006-01-13 02:03:13 +00003892</pre>
3893
3894<h5>Overview:</h5>
3895
3896<p>
3897The '<tt>llvm.stackrestore</tt>' intrinsic is used to restore the state of
3898the function stack to the state it was in when the corresponding <a
3899href="#llvm.stacksave"><tt>llvm.stacksave</tt></a> intrinsic executed. This is
3900useful for implementing language features like scoped automatic variable sized
3901arrays in C99.
3902</p>
3903
3904<h5>Semantics:</h5>
3905
3906<p>
3907See the description for <a href="#i_stacksave"><tt>llvm.stacksave</tt></a>.
3908</p>
3909
3910</div>
3911
3912
3913<!-- _______________________________________________________________________ -->
3914<div class="doc_subsubsection">
Chris Lattner9a9d7ac2005-02-28 19:24:19 +00003915 <a name="i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a>
3916</div>
3917
3918<div class="doc_text">
3919
3920<h5>Syntax:</h5>
3921<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003922 declare void %llvm.prefetch(i8 * &lt;address&gt;,
3923 i32 &lt;rw&gt;, i32 &lt;locality&gt;)
Chris Lattner9a9d7ac2005-02-28 19:24:19 +00003924</pre>
3925
3926<h5>Overview:</h5>
3927
3928
3929<p>
3930The '<tt>llvm.prefetch</tt>' intrinsic is a hint to the code generator to insert
John Criswellfc6b8952005-05-16 16:17:45 +00003931a prefetch instruction if supported; otherwise, it is a noop. Prefetches have
3932no
3933effect on the behavior of the program but can change its performance
Chris Lattner2a615362005-02-28 19:47:14 +00003934characteristics.
Chris Lattner9a9d7ac2005-02-28 19:24:19 +00003935</p>
3936
3937<h5>Arguments:</h5>
3938
3939<p>
3940<tt>address</tt> is the address to be prefetched, <tt>rw</tt> is the specifier
3941determining if the fetch should be for a read (0) or write (1), and
3942<tt>locality</tt> is a temporal locality specifier ranging from (0) - no
Chris Lattneraeffb4a2005-03-07 20:31:38 +00003943locality, to (3) - extremely local keep in cache. The <tt>rw</tt> and
Chris Lattner9a9d7ac2005-02-28 19:24:19 +00003944<tt>locality</tt> arguments must be constant integers.
3945</p>
3946
3947<h5>Semantics:</h5>
3948
3949<p>
3950This intrinsic does not modify the behavior of the program. In particular,
3951prefetches cannot trap and do not produce a value. On targets that support this
3952intrinsic, the prefetch can provide hints to the processor cache for better
3953performance.
3954</p>
3955
3956</div>
3957
Andrew Lenharth7f4ec3b2005-03-28 20:05:49 +00003958<!-- _______________________________________________________________________ -->
3959<div class="doc_subsubsection">
3960 <a name="i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a>
3961</div>
3962
3963<div class="doc_text">
3964
3965<h5>Syntax:</h5>
3966<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00003967 declare void %llvm.pcmarker( i32 &lt;id&gt; )
Andrew Lenharth7f4ec3b2005-03-28 20:05:49 +00003968</pre>
3969
3970<h5>Overview:</h5>
3971
3972
3973<p>
John Criswellfc6b8952005-05-16 16:17:45 +00003974The '<tt>llvm.pcmarker</tt>' intrinsic is a method to export a Program Counter
3975(PC) in a region of
Andrew Lenharth7f4ec3b2005-03-28 20:05:49 +00003976code to simulators and other tools. The method is target specific, but it is
3977expected that the marker will use exported symbols to transmit the PC of the marker.
Jeff Cohen25d4f7e2005-11-11 02:15:27 +00003978The marker makes no guarantees that it will remain with any specific instruction
Chris Lattnerd07c3f42005-11-15 06:07:55 +00003979after optimizations. It is possible that the presence of a marker will inhibit
Chris Lattnerb3e7afd2006-03-24 07:16:10 +00003980optimizations. The intended use is to be inserted after optimizations to allow
John Criswellfc6b8952005-05-16 16:17:45 +00003981correlations of simulation runs.
Andrew Lenharth7f4ec3b2005-03-28 20:05:49 +00003982</p>
3983
3984<h5>Arguments:</h5>
3985
3986<p>
3987<tt>id</tt> is a numerical id identifying the marker.
3988</p>
3989
3990<h5>Semantics:</h5>
3991
3992<p>
3993This intrinsic does not modify the behavior of the program. Backends that do not
3994support this intrinisic may ignore it.
3995</p>
3996
3997</div>
3998
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003999<!-- _______________________________________________________________________ -->
4000<div class="doc_subsubsection">
4001 <a name="i_readcyclecounter">'<tt>llvm.readcyclecounter</tt>' Intrinsic</a>
4002</div>
4003
4004<div class="doc_text">
4005
4006<h5>Syntax:</h5>
4007<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004008 declare i64 %llvm.readcyclecounter( )
Andrew Lenharth51b8d542005-11-11 16:47:30 +00004009</pre>
4010
4011<h5>Overview:</h5>
4012
4013
4014<p>
4015The '<tt>llvm.readcyclecounter</tt>' intrinsic provides access to the cycle
4016counter register (or similar low latency, high accuracy clocks) on those targets
4017that support it. On X86, it should map to RDTSC. On Alpha, it should map to RPCC.
4018As the backing counters overflow quickly (on the order of 9 seconds on alpha), this
4019should only be used for small timings.
4020</p>
4021
4022<h5>Semantics:</h5>
4023
4024<p>
4025When directly supported, reading the cycle counter should not modify any memory.
4026Implementations are allowed to either return a application specific value or a
4027system wide value. On backends without support, this is lowered to a constant 0.
4028</p>
4029
4030</div>
4031
Chris Lattner10610642004-02-14 04:08:35 +00004032<!-- ======================================================================= -->
4033<div class="doc_subsection">
Chris Lattner33aec9e2004-02-12 17:01:32 +00004034 <a name="int_libc">Standard C Library Intrinsics</a>
4035</div>
4036
4037<div class="doc_text">
4038<p>
Chris Lattner10610642004-02-14 04:08:35 +00004039LLVM provides intrinsics for a few important standard C library functions.
4040These intrinsics allow source-language front-ends to pass information about the
4041alignment of the pointer arguments to the code generator, providing opportunity
4042for more efficient code generation.
Chris Lattner33aec9e2004-02-12 17:01:32 +00004043</p>
4044
4045</div>
4046
4047<!-- _______________________________________________________________________ -->
4048<div class="doc_subsubsection">
4049 <a name="i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a>
4050</div>
4051
4052<div class="doc_text">
4053
4054<h5>Syntax:</h5>
4055<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004056 declare void %llvm.memcpy.i32(i8 * &lt;dest&gt;, i8 * &lt;src&gt;,
4057 i32 &lt;len&gt;, i32 &lt;align&gt;)
4058 declare void %llvm.memcpy.i64(i8 * &lt;dest&gt;, i8 * &lt;src&gt;,
4059 i64 &lt;len&gt;, i32 &lt;align&gt;)
Chris Lattner33aec9e2004-02-12 17:01:32 +00004060</pre>
4061
4062<h5>Overview:</h5>
4063
4064<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004065The '<tt>llvm.memcpy.*</tt>' intrinsics copy a block of memory from the source
Chris Lattner33aec9e2004-02-12 17:01:32 +00004066location to the destination location.
4067</p>
4068
4069<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004070Note that, unlike the standard libc function, the <tt>llvm.memcpy.*</tt>
4071intrinsics do not return a value, and takes an extra alignment argument.
Chris Lattner33aec9e2004-02-12 17:01:32 +00004072</p>
4073
4074<h5>Arguments:</h5>
4075
4076<p>
4077The first argument is a pointer to the destination, the second is a pointer to
Chris Lattner5b310c32006-03-03 00:07:20 +00004078the source. The third argument is an integer argument
Chris Lattner33aec9e2004-02-12 17:01:32 +00004079specifying the number of bytes to copy, and the fourth argument is the alignment
4080of the source and destination locations.
4081</p>
4082
Chris Lattner3301ced2004-02-12 21:18:15 +00004083<p>
4084If the call to this intrinisic has an alignment value that is not 0 or 1, then
Chris Lattnerf0afc2c2006-03-04 00:02:10 +00004085the caller guarantees that both the source and destination pointers are aligned
4086to that boundary.
Chris Lattner3301ced2004-02-12 21:18:15 +00004087</p>
4088
Chris Lattner33aec9e2004-02-12 17:01:32 +00004089<h5>Semantics:</h5>
4090
4091<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004092The '<tt>llvm.memcpy.*</tt>' intrinsics copy a block of memory from the source
Chris Lattner33aec9e2004-02-12 17:01:32 +00004093location to the destination location, which are not allowed to overlap. It
4094copies "len" bytes of memory over. If the argument is known to be aligned to
4095some boundary, this can be specified as the fourth argument, otherwise it should
4096be set to 0 or 1.
4097</p>
4098</div>
4099
4100
Chris Lattner0eb51b42004-02-12 18:10:10 +00004101<!-- _______________________________________________________________________ -->
4102<div class="doc_subsubsection">
4103 <a name="i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a>
4104</div>
4105
4106<div class="doc_text">
4107
4108<h5>Syntax:</h5>
4109<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004110 declare void %llvm.memmove.i32(i8 * &lt;dest&gt;, i8 * &lt;src&gt;,
4111 i32 &lt;len&gt;, i32 &lt;align&gt;)
4112 declare void %llvm.memmove.i64(i8 * &lt;dest&gt;, i8 * &lt;src&gt;,
4113 i64 &lt;len&gt;, i32 &lt;align&gt;)
Chris Lattner0eb51b42004-02-12 18:10:10 +00004114</pre>
4115
4116<h5>Overview:</h5>
4117
4118<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004119The '<tt>llvm.memmove.*</tt>' intrinsics move a block of memory from the source
4120location to the destination location. It is similar to the
4121'<tt>llvm.memcmp</tt>' intrinsic but allows the two memory locations to overlap.
Chris Lattner0eb51b42004-02-12 18:10:10 +00004122</p>
4123
4124<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004125Note that, unlike the standard libc function, the <tt>llvm.memmove.*</tt>
4126intrinsics do not return a value, and takes an extra alignment argument.
Chris Lattner0eb51b42004-02-12 18:10:10 +00004127</p>
4128
4129<h5>Arguments:</h5>
4130
4131<p>
4132The first argument is a pointer to the destination, the second is a pointer to
Chris Lattner5b310c32006-03-03 00:07:20 +00004133the source. The third argument is an integer argument
Chris Lattner0eb51b42004-02-12 18:10:10 +00004134specifying the number of bytes to copy, and the fourth argument is the alignment
4135of the source and destination locations.
4136</p>
4137
Chris Lattner3301ced2004-02-12 21:18:15 +00004138<p>
4139If the call to this intrinisic has an alignment value that is not 0 or 1, then
Chris Lattnerf0afc2c2006-03-04 00:02:10 +00004140the caller guarantees that the source and destination pointers are aligned to
4141that boundary.
Chris Lattner3301ced2004-02-12 21:18:15 +00004142</p>
4143
Chris Lattner0eb51b42004-02-12 18:10:10 +00004144<h5>Semantics:</h5>
4145
4146<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004147The '<tt>llvm.memmove.*</tt>' intrinsics copy a block of memory from the source
Chris Lattner0eb51b42004-02-12 18:10:10 +00004148location to the destination location, which may overlap. It
4149copies "len" bytes of memory over. If the argument is known to be aligned to
4150some boundary, this can be specified as the fourth argument, otherwise it should
4151be set to 0 or 1.
4152</p>
4153</div>
4154
Chris Lattner8ff75902004-01-06 05:31:32 +00004155
Chris Lattner10610642004-02-14 04:08:35 +00004156<!-- _______________________________________________________________________ -->
4157<div class="doc_subsubsection">
Chris Lattner5b310c32006-03-03 00:07:20 +00004158 <a name="i_memset">'<tt>llvm.memset.*</tt>' Intrinsics</a>
Chris Lattner10610642004-02-14 04:08:35 +00004159</div>
4160
4161<div class="doc_text">
4162
4163<h5>Syntax:</h5>
4164<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004165 declare void %llvm.memset.i32(i8 * &lt;dest&gt;, i8 &lt;val&gt;,
4166 i32 &lt;len&gt;, i32 &lt;align&gt;)
4167 declare void %llvm.memset.i64(i8 * &lt;dest&gt;, i8 &lt;val&gt;,
4168 i64 &lt;len&gt;, i32 &lt;align&gt;)
Chris Lattner10610642004-02-14 04:08:35 +00004169</pre>
4170
4171<h5>Overview:</h5>
4172
4173<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004174The '<tt>llvm.memset.*</tt>' intrinsics fill a block of memory with a particular
Chris Lattner10610642004-02-14 04:08:35 +00004175byte value.
4176</p>
4177
4178<p>
4179Note that, unlike the standard libc function, the <tt>llvm.memset</tt> intrinsic
4180does not return a value, and takes an extra alignment argument.
4181</p>
4182
4183<h5>Arguments:</h5>
4184
4185<p>
4186The first argument is a pointer to the destination to fill, the second is the
Chris Lattner5b310c32006-03-03 00:07:20 +00004187byte value to fill it with, the third argument is an integer
Chris Lattner10610642004-02-14 04:08:35 +00004188argument specifying the number of bytes to fill, and the fourth argument is the
4189known alignment of destination location.
4190</p>
4191
4192<p>
4193If the call to this intrinisic has an alignment value that is not 0 or 1, then
Chris Lattnerf0afc2c2006-03-04 00:02:10 +00004194the caller guarantees that the destination pointer is aligned to that boundary.
Chris Lattner10610642004-02-14 04:08:35 +00004195</p>
4196
4197<h5>Semantics:</h5>
4198
4199<p>
Chris Lattner5b310c32006-03-03 00:07:20 +00004200The '<tt>llvm.memset.*</tt>' intrinsics fill "len" bytes of memory starting at
4201the
Chris Lattner10610642004-02-14 04:08:35 +00004202destination location. If the argument is known to be aligned to some boundary,
4203this can be specified as the fourth argument, otherwise it should be set to 0 or
42041.
4205</p>
4206</div>
4207
4208
Chris Lattner32006282004-06-11 02:28:03 +00004209<!-- _______________________________________________________________________ -->
4210<div class="doc_subsubsection">
Reid Spencer0b118202006-01-16 21:12:35 +00004211 <a name="i_isunordered">'<tt>llvm.isunordered.*</tt>' Intrinsic</a>
Alkis Evlogimenos26bbe932004-06-13 01:16:15 +00004212</div>
4213
4214<div class="doc_text">
4215
4216<h5>Syntax:</h5>
4217<pre>
Reid Spencer0b118202006-01-16 21:12:35 +00004218 declare bool %llvm.isunordered.f32(float Val1, float Val2)
4219 declare bool %llvm.isunordered.f64(double Val1, double Val2)
Alkis Evlogimenos26bbe932004-06-13 01:16:15 +00004220</pre>
4221
4222<h5>Overview:</h5>
4223
4224<p>
Reid Spencer0b118202006-01-16 21:12:35 +00004225The '<tt>llvm.isunordered</tt>' intrinsics return true if either or both of the
Alkis Evlogimenos26bbe932004-06-13 01:16:15 +00004226specified floating point values is a NAN.
4227</p>
4228
4229<h5>Arguments:</h5>
4230
4231<p>
4232The arguments are floating point numbers of the same type.
4233</p>
4234
4235<h5>Semantics:</h5>
4236
4237<p>
4238If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise
4239false.
4240</p>
4241</div>
4242
4243
Chris Lattnera4d74142005-07-21 01:29:16 +00004244<!-- _______________________________________________________________________ -->
4245<div class="doc_subsubsection">
Chris Lattnerec6cb612006-01-16 22:38:59 +00004246 <a name="i_sqrt">'<tt>llvm.sqrt.*</tt>' Intrinsic</a>
Chris Lattnera4d74142005-07-21 01:29:16 +00004247</div>
4248
4249<div class="doc_text">
4250
4251<h5>Syntax:</h5>
4252<pre>
Chris Lattnerf4d252d2006-09-08 06:34:02 +00004253 declare float %llvm.sqrt.f32(float %Val)
4254 declare double %llvm.sqrt.f64(double %Val)
Chris Lattnera4d74142005-07-21 01:29:16 +00004255</pre>
4256
4257<h5>Overview:</h5>
4258
4259<p>
Reid Spencer0b118202006-01-16 21:12:35 +00004260The '<tt>llvm.sqrt</tt>' intrinsics return the sqrt of the specified operand,
Chris Lattnera4d74142005-07-21 01:29:16 +00004261returning the same value as the libm '<tt>sqrt</tt>' function would. Unlike
4262<tt>sqrt</tt> in libm, however, <tt>llvm.sqrt</tt> has undefined behavior for
4263negative numbers (which allows for better optimization).
4264</p>
4265
4266<h5>Arguments:</h5>
4267
4268<p>
4269The argument and return value are floating point numbers of the same type.
4270</p>
4271
4272<h5>Semantics:</h5>
4273
4274<p>
4275This function returns the sqrt of the specified operand if it is a positive
4276floating point number.
4277</p>
4278</div>
4279
Chris Lattnerf4d252d2006-09-08 06:34:02 +00004280<!-- _______________________________________________________________________ -->
4281<div class="doc_subsubsection">
4282 <a name="i_powi">'<tt>llvm.powi.*</tt>' Intrinsic</a>
4283</div>
4284
4285<div class="doc_text">
4286
4287<h5>Syntax:</h5>
4288<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004289 declare float %llvm.powi.f32(float %Val, i32 %power)
4290 declare double %llvm.powi.f64(double %Val, i32 %power)
Chris Lattnerf4d252d2006-09-08 06:34:02 +00004291</pre>
4292
4293<h5>Overview:</h5>
4294
4295<p>
4296The '<tt>llvm.powi.*</tt>' intrinsics return the first operand raised to the
4297specified (positive or negative) power. The order of evaluation of
4298multiplications is not defined.
4299</p>
4300
4301<h5>Arguments:</h5>
4302
4303<p>
4304The second argument is an integer power, and the first is a value to raise to
4305that power.
4306</p>
4307
4308<h5>Semantics:</h5>
4309
4310<p>
4311This function returns the first value raised to the second power with an
4312unspecified sequence of rounding operations.</p>
4313</div>
4314
4315
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004316<!-- ======================================================================= -->
4317<div class="doc_subsection">
Nate Begeman7e36c472006-01-13 23:26:38 +00004318 <a name="int_manip">Bit Manipulation Intrinsics</a>
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004319</div>
4320
4321<div class="doc_text">
4322<p>
Nate Begeman7e36c472006-01-13 23:26:38 +00004323LLVM provides intrinsics for a few important bit manipulation operations.
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004324These allow efficient code generation for some algorithms.
4325</p>
4326
4327</div>
4328
4329<!-- _______________________________________________________________________ -->
4330<div class="doc_subsubsection">
Nate Begeman7e36c472006-01-13 23:26:38 +00004331 <a name="i_bswap">'<tt>llvm.bswap.*</tt>' Intrinsics</a>
4332</div>
4333
4334<div class="doc_text">
4335
4336<h5>Syntax:</h5>
4337<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004338 declare i16 %llvm.bswap.i16(i16 &lt;id&gt;)
4339 declare i32 %llvm.bswap.i32(i32 &lt;id&gt;)
4340 declare i64 %llvm.bswap.i64(i64 &lt;id&gt;)
Nate Begeman7e36c472006-01-13 23:26:38 +00004341</pre>
4342
4343<h5>Overview:</h5>
4344
4345<p>
4346The '<tt>llvm.bwsap</tt>' family of intrinsics is used to byteswap a 16, 32 or
434764 bit quantity. These are useful for performing operations on data that is not
4348in the target's native byte order.
4349</p>
4350
4351<h5>Semantics:</h5>
4352
4353<p>
Reid Spencerca86e162006-12-31 07:07:53 +00004354The <tt>llvm.bswap.16</tt> intrinsic returns an i16 value that has the high
4355and low byte of the input i16 swapped. Similarly, the <tt>llvm.bswap.i32</tt>
4356intrinsic returns an i32 value that has the four bytes of the input i32
4357swapped, so that if the input bytes are numbered 0, 1, 2, 3 then the returned
4358i32 will have its bytes in 3, 2, 1, 0 order. The <tt>llvm.bswap.i64</tt>
4359intrinsic extends this concept to 64 bits.
Nate Begeman7e36c472006-01-13 23:26:38 +00004360</p>
4361
4362</div>
4363
4364<!-- _______________________________________________________________________ -->
4365<div class="doc_subsubsection">
Reid Spencer0b118202006-01-16 21:12:35 +00004366 <a name="int_ctpop">'<tt>llvm.ctpop.*</tt>' Intrinsic</a>
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004367</div>
4368
4369<div class="doc_text">
4370
4371<h5>Syntax:</h5>
4372<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004373 declare i8 %llvm.ctpop.i8 (i8 &lt;src&gt;)
4374 declare i16 %llvm.ctpop.i16(i16 &lt;src&gt;)
4375 declare i32 %llvm.ctpop.i32(i32 &lt;src&gt;)
4376 declare i64 %llvm.ctpop.i64(i64 &lt;src&gt;)
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004377</pre>
4378
4379<h5>Overview:</h5>
4380
4381<p>
Chris Lattnerec6cb612006-01-16 22:38:59 +00004382The '<tt>llvm.ctpop</tt>' family of intrinsics counts the number of bits set in a
4383value.
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004384</p>
4385
4386<h5>Arguments:</h5>
4387
4388<p>
Chris Lattnercfe6b372005-05-07 01:46:40 +00004389The only argument is the value to be counted. The argument may be of any
Chris Lattnerec6cb612006-01-16 22:38:59 +00004390unsigned integer type. The return type must match the argument type.
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004391</p>
4392
4393<h5>Semantics:</h5>
4394
4395<p>
4396The '<tt>llvm.ctpop</tt>' intrinsic counts the 1's in a variable.
4397</p>
4398</div>
4399
4400<!-- _______________________________________________________________________ -->
4401<div class="doc_subsubsection">
Chris Lattner8a886be2006-01-16 22:34:14 +00004402 <a name="int_ctlz">'<tt>llvm.ctlz.*</tt>' Intrinsic</a>
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004403</div>
4404
4405<div class="doc_text">
4406
4407<h5>Syntax:</h5>
4408<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004409 declare i8 %llvm.ctlz.i8 (i8 &lt;src&gt;)
4410 declare i16 %llvm.ctlz.i16(i16 &lt;src&gt;)
4411 declare i32 %llvm.ctlz.i32(i32 &lt;src&gt;)
4412 declare i64 %llvm.ctlz.i64(i64 &lt;src&gt;)
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004413</pre>
4414
4415<h5>Overview:</h5>
4416
4417<p>
Reid Spencer0b118202006-01-16 21:12:35 +00004418The '<tt>llvm.ctlz</tt>' family of intrinsic functions counts the number of
4419leading zeros in a variable.
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004420</p>
4421
4422<h5>Arguments:</h5>
4423
4424<p>
Chris Lattnercfe6b372005-05-07 01:46:40 +00004425The only argument is the value to be counted. The argument may be of any
Chris Lattnerec6cb612006-01-16 22:38:59 +00004426unsigned integer type. The return type must match the argument type.
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004427</p>
4428
4429<h5>Semantics:</h5>
4430
4431<p>
Chris Lattnereff29ab2005-05-15 19:39:26 +00004432The '<tt>llvm.ctlz</tt>' intrinsic counts the leading (most significant) zeros
4433in a variable. If the src == 0 then the result is the size in bits of the type
Reid Spencerca86e162006-12-31 07:07:53 +00004434of src. For example, <tt>llvm.ctlz(i32 2) = 30</tt>.
Andrew Lenharthec370fd2005-05-03 18:01:48 +00004435</p>
4436</div>
Chris Lattner32006282004-06-11 02:28:03 +00004437
4438
Chris Lattnereff29ab2005-05-15 19:39:26 +00004439
4440<!-- _______________________________________________________________________ -->
4441<div class="doc_subsubsection">
Chris Lattner8a886be2006-01-16 22:34:14 +00004442 <a name="int_cttz">'<tt>llvm.cttz.*</tt>' Intrinsic</a>
Chris Lattnereff29ab2005-05-15 19:39:26 +00004443</div>
4444
4445<div class="doc_text">
4446
4447<h5>Syntax:</h5>
4448<pre>
Reid Spencerca86e162006-12-31 07:07:53 +00004449 declare i8 %llvm.cttz.i8 (i8 &lt;src&gt;)
4450 declare i16 %llvm.cttz.i16(i16 &lt;src&gt;)
4451 declare i32 %llvm.cttz.i32(i32 &lt;src&gt;)
4452 declare i64 %llvm.cttz.i64(i64 &lt;src&gt;)
Chris Lattnereff29ab2005-05-15 19:39:26 +00004453</pre>
4454
4455<h5>Overview:</h5>
4456
4457<p>
Reid Spencer0b118202006-01-16 21:12:35 +00004458The '<tt>llvm.cttz</tt>' family of intrinsic functions counts the number of
4459trailing zeros.
Chris Lattnereff29ab2005-05-15 19:39:26 +00004460</p>
4461
4462<h5>Arguments:</h5>
4463
4464<p>
4465The only argument is the value to be counted. The argument may be of any
Chris Lattnerec6cb612006-01-16 22:38:59 +00004466unsigned integer type. The return type must match the argument type.
Chris Lattnereff29ab2005-05-15 19:39:26 +00004467</p>
4468
4469<h5>Semantics:</h5>
4470
4471<p>
4472The '<tt>llvm.cttz</tt>' intrinsic counts the trailing (least significant) zeros
4473in a variable. If the src == 0 then the result is the size in bits of the type
4474of src. For example, <tt>llvm.cttz(2) = 1</tt>.
4475</p>
4476</div>
4477
Chris Lattner8ff75902004-01-06 05:31:32 +00004478<!-- ======================================================================= -->
4479<div class="doc_subsection">
4480 <a name="int_debugger">Debugger Intrinsics</a>
4481</div>
4482
4483<div class="doc_text">
4484<p>
4485The LLVM debugger intrinsics (which all start with <tt>llvm.dbg.</tt> prefix),
4486are described in the <a
4487href="SourceLevelDebugging.html#format_common_intrinsics">LLVM Source Level
4488Debugging</a> document.
4489</p>
4490</div>
4491
4492
Chris Lattner00950542001-06-06 20:29:01 +00004493<!-- *********************************************************************** -->
Chris Lattner00950542001-06-06 20:29:01 +00004494<hr>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00004495<address>
4496 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
4497 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
4498 <a href="http://validator.w3.org/check/referer"><img
4499 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
4500
4501 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
Reid Spencer05fe4b02006-03-14 05:39:39 +00004502 <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
Misha Brukmandaa4cb02004-03-01 17:47:27 +00004503 Last modified: $Date$
4504</address>
Misha Brukman9d0919f2003-11-08 01:05:38 +00004505</body>
4506</html>