Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 3 | <html> |
| 4 | <head> |
| 5 | <title>LLVM Assembly Language Reference Manual</title> |
Reid Spencer | 3921c74 | 2004-08-26 20:44:00 +0000 | [diff] [blame] | 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 7 | <meta name="author" content="Chris Lattner"> |
| 8 | <meta name="description" |
| 9 | content="LLVM Assembly Language Reference Manual."> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 10 | <link rel="stylesheet" href="llvm.css" type="text/css"> |
| 11 | </head> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 12 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 13 | <body> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 14 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 15 | <div class="doc_title"> LLVM Language Reference Manual </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 16 | <ol> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 17 | <li><a href="#abstract">Abstract</a></li> |
| 18 | <li><a href="#introduction">Introduction</a></li> |
| 19 | <li><a href="#identifiers">Identifiers</a></li> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 20 | <li><a href="#highlevel">High Level Structure</a> |
| 21 | <ol> |
| 22 | <li><a href="#modulestructure">Module Structure</a></li> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 23 | <li><a href="#linkage">Linkage Types</a></li> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 24 | <li><a href="#globalvars">Global Variables</a></li> |
| 25 | <li><a href="#functionstructure">Function Structure</a></li> |
| 26 | </ol> |
| 27 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 28 | <li><a href="#typesystem">Type System</a> |
| 29 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 30 | <li><a href="#t_primitive">Primitive Types</a> |
| 31 | <ol> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 32 | <li><a href="#t_classifications">Type Classifications</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 33 | </ol> |
| 34 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 35 | <li><a href="#t_derived">Derived Types</a> |
| 36 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 37 | <li><a href="#t_array">Array Type</a></li> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 38 | <li><a href="#t_function">Function Type</a></li> |
| 39 | <li><a href="#t_pointer">Pointer Type</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 40 | <li><a href="#t_struct">Structure Type</a></li> |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 41 | <li><a href="#t_packed">Packed Type</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 42 | </ol> |
| 43 | </li> |
| 44 | </ol> |
| 45 | </li> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 46 | <li><a href="#constants">Constants</a> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 47 | <ol> |
| 48 | <li><a href="#simpleconstants">Simple Constants</a> |
| 49 | <li><a href="#aggregateconstants">Aggregate Constants</a> |
| 50 | <li><a href="#globalconstants">Global Variable and Function Addresses</a> |
| 51 | <li><a href="#undefvalues">Undefined Values</a> |
| 52 | <li><a href="#constantexprs">Constant Expressions</a> |
| 53 | </ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 54 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 55 | <li><a href="#instref">Instruction Reference</a> |
| 56 | <ol> |
| 57 | <li><a href="#terminators">Terminator Instructions</a> |
| 58 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 59 | <li><a href="#i_ret">'<tt>ret</tt>' Instruction</a></li> |
| 60 | <li><a href="#i_br">'<tt>br</tt>' Instruction</a></li> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 61 | <li><a href="#i_switch">'<tt>switch</tt>' Instruction</a></li> |
| 62 | <li><a href="#i_invoke">'<tt>invoke</tt>' Instruction</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 63 | <li><a href="#i_unwind">'<tt>unwind</tt>' Instruction</a></li> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 64 | <li><a href="#i_unreachable">'<tt>unreachable</tt>' Instruction</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 65 | </ol> |
| 66 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 67 | <li><a href="#binaryops">Binary Operations</a> |
| 68 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 69 | <li><a href="#i_add">'<tt>add</tt>' Instruction</a></li> |
| 70 | <li><a href="#i_sub">'<tt>sub</tt>' Instruction</a></li> |
| 71 | <li><a href="#i_mul">'<tt>mul</tt>' Instruction</a></li> |
| 72 | <li><a href="#i_div">'<tt>div</tt>' Instruction</a></li> |
| 73 | <li><a href="#i_rem">'<tt>rem</tt>' Instruction</a></li> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 74 | <li><a href="#i_setcc">'<tt>set<i>cc</i></tt>' Instructions</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 75 | </ol> |
| 76 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 77 | <li><a href="#bitwiseops">Bitwise Binary Operations</a> |
| 78 | <ol> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 79 | <li><a href="#i_and">'<tt>and</tt>' Instruction</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 80 | <li><a href="#i_or">'<tt>or</tt>' Instruction</a></li> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 81 | <li><a href="#i_xor">'<tt>xor</tt>' Instruction</a></li> |
| 82 | <li><a href="#i_shl">'<tt>shl</tt>' Instruction</a></li> |
| 83 | <li><a href="#i_shr">'<tt>shr</tt>' Instruction</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 84 | </ol> |
| 85 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 86 | <li><a href="#memoryops">Memory Access Operations</a> |
| 87 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 88 | <li><a href="#i_malloc">'<tt>malloc</tt>' Instruction</a></li> |
| 89 | <li><a href="#i_free">'<tt>free</tt>' Instruction</a></li> |
| 90 | <li><a href="#i_alloca">'<tt>alloca</tt>' Instruction</a></li> |
| 91 | <li><a href="#i_load">'<tt>load</tt>' Instruction</a></li> |
| 92 | <li><a href="#i_store">'<tt>store</tt>' Instruction</a></li> |
| 93 | <li><a href="#i_getelementptr">'<tt>getelementptr</tt>' Instruction</a></li> |
| 94 | </ol> |
| 95 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 96 | <li><a href="#otherops">Other Operations</a> |
| 97 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 98 | <li><a href="#i_phi">'<tt>phi</tt>' Instruction</a></li> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 99 | <li><a href="#i_cast">'<tt>cast .. to</tt>' Instruction</a></li> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 100 | <li><a href="#i_select">'<tt>select</tt>' Instruction</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 101 | <li><a href="#i_call">'<tt>call</tt>' Instruction</a></li> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 102 | <li><a href="#i_vanext">'<tt>vanext</tt>' Instruction</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 103 | <li><a href="#i_vaarg">'<tt>vaarg</tt>' Instruction</a></li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 104 | </ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 105 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 106 | </ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 107 | </li> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 108 | <li><a href="#intrinsics">Intrinsic Functions</a> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 109 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 110 | <li><a href="#int_varargs">Variable Argument Handling Intrinsics</a> |
| 111 | <ol> |
| 112 | <li><a href="#i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a></li> |
| 113 | <li><a href="#i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a></li> |
| 114 | <li><a href="#i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a></li> |
| 115 | </ol> |
| 116 | </li> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 117 | <li><a href="#int_gc">Accurate Garbage Collection Intrinsics</a> |
| 118 | <ol> |
| 119 | <li><a href="#i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a></li> |
| 120 | <li><a href="#i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a></li> |
| 121 | <li><a href="#i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a></li> |
| 122 | </ol> |
| 123 | </li> |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 124 | <li><a href="#int_codegen">Code Generator Intrinsics</a> |
| 125 | <ol> |
| 126 | <li><a href="#i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a></li> |
| 127 | <li><a href="#i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a></li> |
Chris Lattner | 9a9d7ac | 2005-02-28 19:24:19 +0000 | [diff] [blame] | 128 | <li><a href="#i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a></li> |
Andrew Lenharth | 7f4ec3b | 2005-03-28 20:05:49 +0000 | [diff] [blame] | 129 | <li><a href="#i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a></li> |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 130 | </ol> |
| 131 | </li> |
| 132 | <li><a href="#int_os">Operating System Intrinsics</a> |
| 133 | <ol> |
Chris Lattner | 3200628 | 2004-06-11 02:28:03 +0000 | [diff] [blame] | 134 | <li><a href="#i_readport">'<tt>llvm.readport</tt>' Intrinsic</a></li> |
| 135 | <li><a href="#i_writeport">'<tt>llvm.writeport</tt>' Intrinsic</a></li> |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 136 | <li><a href="#i_readio">'<tt>llvm.readio</tt>' Intrinsic</a></li> |
| 137 | <li><a href="#i_writeio">'<tt>llvm.writeio</tt>' Intrinsic</a></li> |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 138 | </ol> |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 139 | <li><a href="#int_libc">Standard C Library Intrinsics</a> |
| 140 | <ol> |
| 141 | <li><a href="#i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a></li> |
Chris Lattner | 0eb51b4 | 2004-02-12 18:10:10 +0000 | [diff] [blame] | 142 | <li><a href="#i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a></li> |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 143 | <li><a href="#i_memset">'<tt>llvm.memset</tt>' Intrinsic</a></li> |
Alkis Evlogimenos | 9685372 | 2004-06-12 19:19:14 +0000 | [diff] [blame] | 144 | <li><a href="#i_isunordered">'<tt>llvm.isunordered</tt>' Intrinsic</a></li> |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 145 | </ol> |
| 146 | </li> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 147 | <li><a href="#int_debugger">Debugger intrinsics</a></li> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 148 | </ol> |
| 149 | </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 150 | </ol> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 151 | |
| 152 | <div class="doc_author"> |
| 153 | <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a> |
| 154 | and <a href="mailto:vadve@cs.uiuc.edu">Vikram Adve</a></p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 155 | </div> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 156 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 157 | <!-- *********************************************************************** --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 158 | <div class="doc_section"> <a name="abstract">Abstract </a></div> |
| 159 | <!-- *********************************************************************** --> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 160 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 161 | <div class="doc_text"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 162 | <p>This document is a reference manual for the LLVM assembly language. |
| 163 | LLVM is an SSA based representation that provides type safety, |
| 164 | low-level operations, flexibility, and the capability of representing |
| 165 | 'all' high-level languages cleanly. It is the common code |
| 166 | representation used throughout all phases of the LLVM compilation |
| 167 | strategy.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 168 | </div> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 169 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 170 | <!-- *********************************************************************** --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 171 | <div class="doc_section"> <a name="introduction">Introduction</a> </div> |
| 172 | <!-- *********************************************************************** --> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 173 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 174 | <div class="doc_text"> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 175 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 176 | <p>The LLVM code representation is designed to be used in three |
| 177 | different forms: as an in-memory compiler IR, as an on-disk bytecode |
| 178 | representation (suitable for fast loading by a Just-In-Time compiler), |
| 179 | and as a human readable assembly language representation. This allows |
| 180 | LLVM to provide a powerful intermediate representation for efficient |
| 181 | compiler transformations and analysis, while providing a natural means |
| 182 | to debug and visualize the transformations. The three different forms |
| 183 | of LLVM are all equivalent. This document describes the human readable |
| 184 | representation and notation.</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 185 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 186 | <p>The LLVM representation aims to be a light-weight and low-level |
| 187 | while being expressive, typed, and extensible at the same time. It |
| 188 | aims to be a "universal IR" of sorts, by being at a low enough level |
| 189 | that high-level ideas may be cleanly mapped to it (similar to how |
| 190 | microprocessors are "universal IR's", allowing many source languages to |
| 191 | be mapped to them). By providing type information, LLVM can be used as |
| 192 | the target of optimizations: for example, through pointer analysis, it |
| 193 | can be proven that a C automatic variable is never accessed outside of |
| 194 | the current function... allowing it to be promoted to a simple SSA |
| 195 | value instead of a memory location.</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 196 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 197 | </div> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 198 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 199 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 200 | <div class="doc_subsubsection"> <a name="wellformed">Well-Formedness</a> </div> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 201 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 202 | <div class="doc_text"> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 203 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 204 | <p>It is important to note that this document describes 'well formed' |
| 205 | LLVM assembly language. There is a difference between what the parser |
| 206 | accepts and what is considered 'well formed'. For example, the |
| 207 | following instruction is syntactically okay, but not well formed:</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 208 | |
| 209 | <pre> |
| 210 | %x = <a href="#i_add">add</a> int 1, %x |
| 211 | </pre> |
| 212 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 213 | <p>...because the definition of <tt>%x</tt> does not dominate all of |
| 214 | its uses. The LLVM infrastructure provides a verification pass that may |
| 215 | be used to verify that an LLVM module is well formed. This pass is |
| 216 | automatically run by the parser after parsing input assembly, and by |
| 217 | the optimizer before it outputs bytecode. The violations pointed out |
| 218 | by the verifier pass indicate bugs in transformation passes or input to |
| 219 | the parser.</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 220 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 221 | <!-- Describe the typesetting conventions here. --> </div> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 222 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 223 | <!-- *********************************************************************** --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 224 | <div class="doc_section"> <a name="identifiers">Identifiers</a> </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 225 | <!-- *********************************************************************** --> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 226 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 227 | <div class="doc_text"> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 228 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 229 | <p>LLVM uses three different forms of identifiers, for different |
| 230 | purposes:</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 231 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 232 | <ol> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 233 | <li>Named values are represented as a string of characters with a '%' prefix. |
| 234 | For example, %foo, %DivisionByZero, %a.really.long.identifier. The actual |
| 235 | regular expression used is '<tt>%[a-zA-Z$._][a-zA-Z$._0-9]*</tt>'. |
| 236 | Identifiers which require other characters in their names can be surrounded |
| 237 | with quotes. In this way, anything except a <tt>"</tt> character can be used |
| 238 | in a name.</li> |
| 239 | |
| 240 | <li>Unnamed values are represented as an unsigned numeric value with a '%' |
| 241 | prefix. For example, %12, %2, %44.</li> |
| 242 | |
Reid Spencer | cc16dc3 | 2004-12-09 18:02:53 +0000 | [diff] [blame] | 243 | <li>Constants, which are described in a <a href="#constants">section about |
| 244 | constants</a>, below.</li> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 245 | </ol> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 246 | |
| 247 | <p>LLVM requires that values start with a '%' sign for two reasons: Compilers |
| 248 | don't need to worry about name clashes with reserved words, and the set of |
| 249 | reserved words may be expanded in the future without penalty. Additionally, |
| 250 | unnamed identifiers allow a compiler to quickly come up with a temporary |
| 251 | variable without having to avoid symbol table conflicts.</p> |
| 252 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 253 | <p>Reserved words in LLVM are very similar to reserved words in other |
| 254 | languages. There are keywords for different opcodes ('<tt><a |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 255 | href="#i_add">add</a></tt>', '<tt><a href="#i_cast">cast</a></tt>', '<tt><a |
| 256 | href="#i_ret">ret</a></tt>', etc...), for primitive type names ('<tt><a |
| 257 | href="#t_void">void</a></tt>', '<tt><a href="#t_uint">uint</a></tt>', etc...), |
| 258 | and others. These reserved words cannot conflict with variable names, because |
| 259 | none of them start with a '%' character.</p> |
| 260 | |
| 261 | <p>Here is an example of LLVM code to multiply the integer variable |
| 262 | '<tt>%X</tt>' by 8:</p> |
| 263 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 264 | <p>The easy way:</p> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 265 | |
| 266 | <pre> |
| 267 | %result = <a href="#i_mul">mul</a> uint %X, 8 |
| 268 | </pre> |
| 269 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 270 | <p>After strength reduction:</p> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 271 | |
| 272 | <pre> |
| 273 | %result = <a href="#i_shl">shl</a> uint %X, ubyte 3 |
| 274 | </pre> |
| 275 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 276 | <p>And the hard way:</p> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 277 | |
| 278 | <pre> |
| 279 | <a href="#i_add">add</a> uint %X, %X <i>; yields {uint}:%0</i> |
| 280 | <a href="#i_add">add</a> uint %0, %0 <i>; yields {uint}:%1</i> |
| 281 | %result = <a href="#i_add">add</a> uint %1, %1 |
| 282 | </pre> |
| 283 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 284 | <p>This last way of multiplying <tt>%X</tt> by 8 illustrates several |
| 285 | important lexical features of LLVM:</p> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 286 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 287 | <ol> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 288 | |
| 289 | <li>Comments are delimited with a '<tt>;</tt>' and go until the end of |
| 290 | line.</li> |
| 291 | |
| 292 | <li>Unnamed temporaries are created when the result of a computation is not |
| 293 | assigned to a named value.</li> |
| 294 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 295 | <li>Unnamed temporaries are numbered sequentially</li> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 296 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 297 | </ol> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 298 | |
| 299 | <p>...and it also show a convention that we follow in this document. When |
| 300 | demonstrating instructions, we will follow an instruction with a comment that |
| 301 | defines the type and name of value produced. Comments are shown in italic |
| 302 | text.</p> |
| 303 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 304 | </div> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 305 | |
| 306 | <!-- *********************************************************************** --> |
| 307 | <div class="doc_section"> <a name="highlevel">High Level Structure</a> </div> |
| 308 | <!-- *********************************************************************** --> |
| 309 | |
| 310 | <!-- ======================================================================= --> |
| 311 | <div class="doc_subsection"> <a name="modulestructure">Module Structure</a> |
| 312 | </div> |
| 313 | |
| 314 | <div class="doc_text"> |
| 315 | |
| 316 | <p>LLVM programs are composed of "Module"s, each of which is a |
| 317 | translation unit of the input programs. Each module consists of |
| 318 | functions, global variables, and symbol table entries. Modules may be |
| 319 | combined together with the LLVM linker, which merges function (and |
| 320 | global variable) definitions, resolves forward declarations, and merges |
| 321 | symbol table entries. Here is an example of the "hello world" module:</p> |
| 322 | |
| 323 | <pre><i>; Declare the string constant as a global constant...</i> |
| 324 | <a href="#identifiers">%.LC0</a> = <a href="#linkage_internal">internal</a> <a |
| 325 | href="#globalvars">constant</a> <a href="#t_array">[13 x sbyte]</a> c"hello world\0A\00" <i>; [13 x sbyte]*</i> |
| 326 | |
| 327 | <i>; External declaration of the puts function</i> |
| 328 | <a href="#functionstructure">declare</a> int %puts(sbyte*) <i>; int(sbyte*)* </i> |
| 329 | |
| 330 | <i>; Definition of main function</i> |
| 331 | int %main() { <i>; int()* </i> |
| 332 | <i>; Convert [13x sbyte]* to sbyte *...</i> |
| 333 | %cast210 = <a |
| 334 | href="#i_getelementptr">getelementptr</a> [13 x sbyte]* %.LC0, long 0, long 0 <i>; sbyte*</i> |
| 335 | |
| 336 | <i>; Call puts function to write out the string to stdout...</i> |
| 337 | <a |
| 338 | href="#i_call">call</a> int %puts(sbyte* %cast210) <i>; int</i> |
| 339 | <a |
| 340 | href="#i_ret">ret</a> int 0<br>}<br></pre> |
| 341 | |
| 342 | <p>This example is made up of a <a href="#globalvars">global variable</a> |
| 343 | named "<tt>.LC0</tt>", an external declaration of the "<tt>puts</tt>" |
| 344 | function, and a <a href="#functionstructure">function definition</a> |
| 345 | for "<tt>main</tt>".</p> |
| 346 | |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 347 | <p>In general, a module is made up of a list of global values, |
| 348 | where both functions and global variables are global values. Global values are |
| 349 | represented by a pointer to a memory location (in this case, a pointer to an |
| 350 | array of char, and a pointer to a function), and have one of the following <a |
| 351 | href="#linkage">linkage types</a>.</p> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 352 | |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 353 | </div> |
| 354 | |
| 355 | <!-- ======================================================================= --> |
| 356 | <div class="doc_subsection"> |
| 357 | <a name="linkage">Linkage Types</a> |
| 358 | </div> |
| 359 | |
| 360 | <div class="doc_text"> |
| 361 | |
| 362 | <p> |
| 363 | All Global Variables and Functions have one of the following types of linkage: |
| 364 | </p> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 365 | |
| 366 | <dl> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 367 | |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 368 | <dt><tt><b><a name="linkage_internal">internal</a></b></tt> </dt> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 369 | |
| 370 | <dd>Global values with internal linkage are only directly accessible by |
| 371 | objects in the current module. In particular, linking code into a module with |
| 372 | an internal global value may cause the internal to be renamed as necessary to |
| 373 | avoid collisions. Because the symbol is internal to the module, all |
| 374 | references can be updated. This corresponds to the notion of the |
| 375 | '<tt>static</tt>' keyword in C, or the idea of "anonymous namespaces" in C++. |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 376 | </dd> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 377 | |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 378 | <dt><tt><b><a name="linkage_linkonce">linkonce</a></b></tt>: </dt> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 379 | |
| 380 | <dd>"<tt>linkonce</tt>" linkage is similar to <tt>internal</tt> linkage, with |
| 381 | the twist that linking together two modules defining the same |
| 382 | <tt>linkonce</tt> globals will cause one of the globals to be discarded. This |
| 383 | is typically used to implement inline functions. Unreferenced |
| 384 | <tt>linkonce</tt> globals are allowed to be discarded. |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 385 | </dd> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 386 | |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 387 | <dt><tt><b><a name="linkage_weak">weak</a></b></tt>: </dt> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 388 | |
| 389 | <dd>"<tt>weak</tt>" linkage is exactly the same as <tt>linkonce</tt> linkage, |
| 390 | except that unreferenced <tt>weak</tt> globals may not be discarded. This is |
| 391 | used to implement constructs in C such as "<tt>int X;</tt>" at global scope. |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 392 | </dd> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 393 | |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 394 | <dt><tt><b><a name="linkage_appending">appending</a></b></tt>: </dt> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 395 | |
| 396 | <dd>"<tt>appending</tt>" linkage may only be applied to global variables of |
| 397 | pointer to array type. When two global variables with appending linkage are |
| 398 | linked together, the two global arrays are appended together. This is the |
| 399 | LLVM, typesafe, equivalent of having the system linker append together |
| 400 | "sections" with identical names when .o files are linked. |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 401 | </dd> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 402 | |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 403 | <dt><tt><b><a name="linkage_external">externally visible</a></b></tt>:</dt> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 404 | |
| 405 | <dd>If none of the above identifiers are used, the global is externally |
| 406 | visible, meaning that it participates in linkage and can be used to resolve |
| 407 | external symbol references. |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 408 | </dd> |
| 409 | </dl> |
| 410 | |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 411 | <p><a name="linkage_external">For example, since the "<tt>.LC0</tt>" |
| 412 | variable is defined to be internal, if another module defined a "<tt>.LC0</tt>" |
| 413 | variable and was linked with this one, one of the two would be renamed, |
| 414 | preventing a collision. Since "<tt>main</tt>" and "<tt>puts</tt>" are |
| 415 | external (i.e., lacking any linkage declarations), they are accessible |
| 416 | outside of the current module. It is illegal for a function <i>declaration</i> |
| 417 | to have any linkage type other than "externally visible".</a></p> |
Chris Lattner | e5d947b | 2004-12-09 16:36:40 +0000 | [diff] [blame] | 418 | |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 419 | </div> |
| 420 | |
| 421 | <!-- ======================================================================= --> |
| 422 | <div class="doc_subsection"> |
| 423 | <a name="globalvars">Global Variables</a> |
| 424 | </div> |
| 425 | |
| 426 | <div class="doc_text"> |
| 427 | |
Chris Lattner | 3689a34 | 2005-02-12 19:30:21 +0000 | [diff] [blame] | 428 | <p>Global variables define regions of memory allocated at compilation time |
| 429 | instead of run-time. Global variables may optionally be initialized. A |
| 430 | variable may be defined as a global "constant", which indicates that the |
| 431 | contents of the variable will <b>never</b> be modified (enabling better |
| 432 | optimization, allowing the global data to be placed in the read-only section of |
| 433 | an executable, etc). Note that variables that need runtime initialization |
| 434 | cannot be marked "constant", as there is a store to the variable.</p> |
| 435 | |
| 436 | <p> |
| 437 | LLVM explicitly allows <em>declarations</em> of global variables to be marked |
| 438 | constant, even if the final definition of the global is not. This capability |
| 439 | can be used to enable slightly better optimization of the program, but requires |
| 440 | the language definition to guarantee that optimizations based on the |
| 441 | 'constantness' are valid for the translation units that do not include the |
| 442 | definition. |
| 443 | </p> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 444 | |
| 445 | <p>As SSA values, global variables define pointer values that are in |
| 446 | scope (i.e. they dominate) all basic blocks in the program. Global |
| 447 | variables always define a pointer to their "content" type because they |
| 448 | describe a region of memory, and all memory objects in LLVM are |
| 449 | accessed through pointers.</p> |
| 450 | |
| 451 | </div> |
| 452 | |
| 453 | |
| 454 | <!-- ======================================================================= --> |
| 455 | <div class="doc_subsection"> |
| 456 | <a name="functionstructure">Functions</a> |
| 457 | </div> |
| 458 | |
| 459 | <div class="doc_text"> |
| 460 | |
| 461 | <p>LLVM function definitions are composed of a (possibly empty) argument list, |
| 462 | an opening curly brace, a list of basic blocks, and a closing curly brace. LLVM |
| 463 | function declarations are defined with the "<tt>declare</tt>" keyword, a |
| 464 | function name, and a function signature.</p> |
| 465 | |
| 466 | <p>A function definition contains a list of basic blocks, forming the CFG for |
| 467 | the function. Each basic block may optionally start with a label (giving the |
| 468 | basic block a symbol table entry), contains a list of instructions, and ends |
| 469 | with a <a href="#terminators">terminator</a> instruction (such as a branch or |
| 470 | function return).</p> |
| 471 | |
| 472 | <p>The first basic block in program is special in two ways: it is immediately |
| 473 | executed on entrance to the function, and it is not allowed to have predecessor |
| 474 | basic blocks (i.e. there can not be any branches to the entry block of a |
| 475 | function). Because the block can have no predecessors, it also cannot have any |
| 476 | <a href="#i_phi">PHI nodes</a>.</p> |
| 477 | |
| 478 | <p>LLVM functions are identified by their name and type signature. Hence, two |
| 479 | functions with the same name but different parameter lists or return values are |
Chris Lattner | d4f6b17 | 2005-03-07 22:13:59 +0000 | [diff] [blame] | 480 | considered different functions, and LLVM will resolve references to each |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 481 | appropriately.</p> |
| 482 | |
| 483 | </div> |
| 484 | |
| 485 | |
| 486 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 487 | <!-- *********************************************************************** --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 488 | <div class="doc_section"> <a name="typesystem">Type System</a> </div> |
| 489 | <!-- *********************************************************************** --> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 490 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 491 | <div class="doc_text"> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 492 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 493 | <p>The LLVM type system is one of the most important features of the |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 494 | intermediate representation. Being typed enables a number of |
| 495 | optimizations to be performed on the IR directly, without having to do |
| 496 | extra analyses on the side before the transformation. A strong type |
| 497 | system makes it easier to read the generated code and enables novel |
| 498 | analyses and transformations that are not feasible to perform on normal |
| 499 | three address code representations.</p> |
Chris Lattner | fa73021 | 2004-12-09 16:11:40 +0000 | [diff] [blame] | 500 | |
| 501 | </div> |
| 502 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 503 | <!-- ======================================================================= --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 504 | <div class="doc_subsection"> <a name="t_primitive">Primitive Types</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 505 | <div class="doc_text"> |
John Criswell | 4457dc9 | 2004-04-09 16:48:45 +0000 | [diff] [blame] | 506 | <p>The primitive types are the fundamental building blocks of the LLVM |
Chris Lattner | d4f6b17 | 2005-03-07 22:13:59 +0000 | [diff] [blame] | 507 | system. The current set of primitive types is as follows:</p> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 508 | |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 509 | <table class="layout"> |
| 510 | <tr class="layout"> |
| 511 | <td class="left"> |
| 512 | <table> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 513 | <tbody> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 514 | <tr><th>Type</th><th>Description</th></tr> |
| 515 | <tr><td><tt>void</tt></td><td>No value</td></tr> |
Misha Brukman | cfa87bc | 2005-04-22 18:02:52 +0000 | [diff] [blame^] | 516 | <tr><td><tt>ubyte</tt></td><td>Unsigned 8-bit value</td></tr> |
| 517 | <tr><td><tt>ushort</tt></td><td>Unsigned 16-bit value</td></tr> |
| 518 | <tr><td><tt>uint</tt></td><td>Unsigned 32-bit value</td></tr> |
| 519 | <tr><td><tt>ulong</tt></td><td>Unsigned 64-bit value</td></tr> |
| 520 | <tr><td><tt>float</tt></td><td>32-bit floating point value</td></tr> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 521 | <tr><td><tt>label</tt></td><td>Branch destination</td></tr> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 522 | </tbody> |
| 523 | </table> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 524 | </td> |
| 525 | <td class="right"> |
| 526 | <table> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 527 | <tbody> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 528 | <tr><th>Type</th><th>Description</th></tr> |
| 529 | <tr><td><tt>bool</tt></td><td>True or False value</td></tr> |
Misha Brukman | cfa87bc | 2005-04-22 18:02:52 +0000 | [diff] [blame^] | 530 | <tr><td><tt>sbyte</tt></td><td>Signed 8-bit value</td></tr> |
| 531 | <tr><td><tt>short</tt></td><td>Signed 16-bit value</td></tr> |
| 532 | <tr><td><tt>int</tt></td><td>Signed 32-bit value</td></tr> |
| 533 | <tr><td><tt>long</tt></td><td>Signed 64-bit value</td></tr> |
| 534 | <tr><td><tt>double</tt></td><td>64-bit floating point value</td></tr> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 535 | </tbody> |
| 536 | </table> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 537 | </td> |
| 538 | </tr> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 539 | </table> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 540 | </div> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 541 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 542 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 543 | <div class="doc_subsubsection"> <a name="t_classifications">Type |
| 544 | Classifications</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 545 | <div class="doc_text"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 546 | <p>These different primitive types fall into a few useful |
| 547 | classifications:</p> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 548 | |
| 549 | <table border="1" cellspacing="0" cellpadding="4"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 550 | <tbody> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 551 | <tr><th>Classification</th><th>Types</th></tr> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 552 | <tr> |
| 553 | <td><a name="t_signed">signed</a></td> |
| 554 | <td><tt>sbyte, short, int, long, float, double</tt></td> |
| 555 | </tr> |
| 556 | <tr> |
| 557 | <td><a name="t_unsigned">unsigned</a></td> |
| 558 | <td><tt>ubyte, ushort, uint, ulong</tt></td> |
| 559 | </tr> |
| 560 | <tr> |
| 561 | <td><a name="t_integer">integer</a></td> |
| 562 | <td><tt>ubyte, sbyte, ushort, short, uint, int, ulong, long</tt></td> |
| 563 | </tr> |
| 564 | <tr> |
| 565 | <td><a name="t_integral">integral</a></td> |
Misha Brukman | c24b758 | 2004-08-12 20:16:08 +0000 | [diff] [blame] | 566 | <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long</tt> |
| 567 | </td> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 568 | </tr> |
| 569 | <tr> |
| 570 | <td><a name="t_floating">floating point</a></td> |
| 571 | <td><tt>float, double</tt></td> |
| 572 | </tr> |
| 573 | <tr> |
| 574 | <td><a name="t_firstclass">first class</a></td> |
Misha Brukman | c24b758 | 2004-08-12 20:16:08 +0000 | [diff] [blame] | 575 | <td><tt>bool, ubyte, sbyte, ushort, short, uint, int, ulong, long,<br> |
| 576 | float, double, <a href="#t_pointer">pointer</a>, |
| 577 | <a href="#t_packed">packed</a></tt></td> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 578 | </tr> |
| 579 | </tbody> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 580 | </table> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 581 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 582 | <p>The <a href="#t_firstclass">first class</a> types are perhaps the |
| 583 | most important. Values of these types are the only ones which can be |
| 584 | produced by instructions, passed as arguments, or used as operands to |
| 585 | instructions. This means that all structures and arrays must be |
| 586 | manipulated either by pointer or by component.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 587 | </div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 588 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 589 | <!-- ======================================================================= --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 590 | <div class="doc_subsection"> <a name="t_derived">Derived Types</a> </div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 591 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 592 | <div class="doc_text"> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 593 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 594 | <p>The real power in LLVM comes from the derived types in the system. |
| 595 | This is what allows a programmer to represent arrays, functions, |
| 596 | pointers, and other useful types. Note that these derived types may be |
| 597 | recursive: For example, it is possible to have a two dimensional array.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 598 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 599 | </div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 600 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 601 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 602 | <div class="doc_subsubsection"> <a name="t_array">Array Type</a> </div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 603 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 604 | <div class="doc_text"> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 605 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 606 | <h5>Overview:</h5> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 607 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 608 | <p>The array type is a very simple derived type that arranges elements |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 609 | sequentially in memory. The array type requires a size (number of |
| 610 | elements) and an underlying data type.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 611 | |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 612 | <h5>Syntax:</h5> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 613 | |
| 614 | <pre> |
| 615 | [<# elements> x <elementtype>] |
| 616 | </pre> |
| 617 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 618 | <p>The number of elements is a constant integer value, elementtype may |
| 619 | be any type with a size.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 620 | |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 621 | <h5>Examples:</h5> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 622 | <table class="layout"> |
| 623 | <tr class="layout"> |
| 624 | <td class="left"> |
| 625 | <tt>[40 x int ]</tt><br/> |
| 626 | <tt>[41 x int ]</tt><br/> |
| 627 | <tt>[40 x uint]</tt><br/> |
| 628 | </td> |
| 629 | <td class="left"> |
| 630 | Array of 40 integer values.<br/> |
| 631 | Array of 41 integer values.<br/> |
| 632 | Array of 40 unsigned integer values.<br/> |
| 633 | </td> |
| 634 | </tr> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 635 | </table> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 636 | <p>Here are some examples of multidimensional arrays:</p> |
| 637 | <table class="layout"> |
| 638 | <tr class="layout"> |
| 639 | <td class="left"> |
| 640 | <tt>[3 x [4 x int]]</tt><br/> |
| 641 | <tt>[12 x [10 x float]]</tt><br/> |
| 642 | <tt>[2 x [3 x [4 x uint]]]</tt><br/> |
| 643 | </td> |
| 644 | <td class="left"> |
| 645 | 3x4 array integer values.<br/> |
| 646 | 12x10 array of single precision floating point values.<br/> |
| 647 | 2x3x4 array of unsigned integer values.<br/> |
| 648 | </td> |
| 649 | </tr> |
| 650 | </table> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 651 | </div> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 652 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 653 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 654 | <div class="doc_subsubsection"> <a name="t_function">Function Type</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 655 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 656 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 657 | <p>The function type can be thought of as a function signature. It |
| 658 | consists of a return type and a list of formal parameter types. |
John Criswell | 009900b | 2003-11-25 21:45:46 +0000 | [diff] [blame] | 659 | Function types are usually used to build virtual function tables |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 660 | (which are structures of pointers to functions), for indirect function |
| 661 | calls, and when defining a function.</p> |
John Criswell | 009900b | 2003-11-25 21:45:46 +0000 | [diff] [blame] | 662 | <p> |
| 663 | The return type of a function type cannot be an aggregate type. |
| 664 | </p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 665 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 666 | <pre> <returntype> (<parameter list>)<br></pre> |
Misha Brukman | c24b758 | 2004-08-12 20:16:08 +0000 | [diff] [blame] | 667 | <p>Where '<tt><parameter list></tt>' is a comma-separated list of type |
| 668 | specifiers. Optionally, the parameter list may include a type <tt>...</tt>, |
Chris Lattner | 27f71f2 | 2003-09-03 00:41:47 +0000 | [diff] [blame] | 669 | which indicates that the function takes a variable number of arguments. |
| 670 | Variable argument functions can access their arguments with the <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 671 | href="#int_varargs">variable argument handling intrinsic</a> functions.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 672 | <h5>Examples:</h5> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 673 | <table class="layout"> |
| 674 | <tr class="layout"> |
| 675 | <td class="left"> |
| 676 | <tt>int (int)</tt> <br/> |
| 677 | <tt>float (int, int *) *</tt><br/> |
| 678 | <tt>int (sbyte *, ...)</tt><br/> |
| 679 | </td> |
| 680 | <td class="left"> |
| 681 | function taking an <tt>int</tt>, returning an <tt>int</tt><br/> |
| 682 | <a href="#t_pointer">Pointer</a> to a function that takes an |
Misha Brukman | c24b758 | 2004-08-12 20:16:08 +0000 | [diff] [blame] | 683 | <tt>int</tt> and a <a href="#t_pointer">pointer</a> to <tt>int</tt>, |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 684 | returning <tt>float</tt>.<br/> |
| 685 | A vararg function that takes at least one <a href="#t_pointer">pointer</a> |
| 686 | to <tt>sbyte</tt> (signed char in C), which returns an integer. This is |
| 687 | the signature for <tt>printf</tt> in LLVM.<br/> |
| 688 | </td> |
| 689 | </tr> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 690 | </table> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 691 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 692 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 693 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 694 | <div class="doc_subsubsection"> <a name="t_struct">Structure Type</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 695 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 696 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 697 | <p>The structure type is used to represent a collection of data members |
| 698 | together in memory. The packing of the field types is defined to match |
| 699 | the ABI of the underlying processor. The elements of a structure may |
| 700 | be any type that has a size.</p> |
| 701 | <p>Structures are accessed using '<tt><a href="#i_load">load</a></tt> |
| 702 | and '<tt><a href="#i_store">store</a></tt>' by getting a pointer to a |
| 703 | field with the '<tt><a href="#i_getelementptr">getelementptr</a></tt>' |
| 704 | instruction.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 705 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 706 | <pre> { <type list> }<br></pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 707 | <h5>Examples:</h5> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 708 | <table class="layout"> |
| 709 | <tr class="layout"> |
| 710 | <td class="left"> |
| 711 | <tt>{ int, int, int }</tt><br/> |
| 712 | <tt>{ float, int (int) * }</tt><br/> |
| 713 | </td> |
| 714 | <td class="left"> |
| 715 | a triple of three <tt>int</tt> values<br/> |
| 716 | A pair, where the first element is a <tt>float</tt> and the second element |
| 717 | is a <a href="#t_pointer">pointer</a> to a <a href="#t_function">function</a> |
| 718 | that takes an <tt>int</tt>, returning an <tt>int</tt>.<br/> |
| 719 | </td> |
| 720 | </tr> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 721 | </table> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 722 | </div> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 723 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 724 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 725 | <div class="doc_subsubsection"> <a name="t_pointer">Pointer Type</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 726 | <div class="doc_text"> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 727 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 728 | <p>As in many languages, the pointer type represents a pointer or |
| 729 | reference to another object, which must live in memory.</p> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 730 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 731 | <pre> <type> *<br></pre> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 732 | <h5>Examples:</h5> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 733 | <table class="layout"> |
| 734 | <tr class="layout"> |
| 735 | <td class="left"> |
| 736 | <tt>[4x int]*</tt><br/> |
| 737 | <tt>int (int *) *</tt><br/> |
| 738 | </td> |
| 739 | <td class="left"> |
| 740 | A <a href="#t_pointer">pointer</a> to <a href="#t_array">array</a> of |
| 741 | four <tt>int</tt> values<br/> |
| 742 | A <a href="#t_pointer">pointer</a> to a <a |
Chris Lattner | a977c48 | 2005-02-19 02:22:14 +0000 | [diff] [blame] | 743 | href="#t_function">function</a> that takes an <tt>int*</tt>, returning an |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 744 | <tt>int</tt>.<br/> |
| 745 | </td> |
| 746 | </tr> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 747 | </table> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 748 | </div> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 749 | |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 750 | <!-- _______________________________________________________________________ --> |
| 751 | <div class="doc_subsubsection"> <a name="t_packed">Packed Type</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 752 | <div class="doc_text"> |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 753 | <h5>Overview:</h5> |
| 754 | <p>A packed type is a simple derived type that represents a vector |
| 755 | of elements. Packed types are used when multiple primitive data |
| 756 | are operated in parallel using a single instruction (SIMD). |
| 757 | A packed type requires a size (number of |
| 758 | elements) and an underlying primitive data type. Packed types are |
| 759 | considered <a href="#t_firstclass">first class</a>.</p> |
| 760 | <h5>Syntax:</h5> |
| 761 | <pre> < <# elements> x <elementtype> ><br></pre> |
| 762 | <p>The number of elements is a constant integer value, elementtype may |
| 763 | be any integral or floating point type.</p> |
| 764 | <h5>Examples:</h5> |
Reid Spencer | d3f876c | 2004-11-01 08:19:36 +0000 | [diff] [blame] | 765 | <table class="layout"> |
| 766 | <tr class="layout"> |
| 767 | <td class="left"> |
| 768 | <tt><4 x int></tt><br/> |
| 769 | <tt><8 x float></tt><br/> |
| 770 | <tt><2 x uint></tt><br/> |
| 771 | </td> |
| 772 | <td class="left"> |
| 773 | Packed vector of 4 integer values.<br/> |
| 774 | Packed vector of 8 floating-point values.<br/> |
| 775 | Packed vector of 2 unsigned integer values.<br/> |
| 776 | </td> |
| 777 | </tr> |
| 778 | </table> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 779 | </div> |
| 780 | |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 781 | <!-- *********************************************************************** --> |
| 782 | <div class="doc_section"> <a name="constants">Constants</a> </div> |
| 783 | <!-- *********************************************************************** --> |
| 784 | |
| 785 | <div class="doc_text"> |
| 786 | |
| 787 | <p>LLVM has several different basic types of constants. This section describes |
| 788 | them all and their syntax.</p> |
| 789 | |
| 790 | </div> |
| 791 | |
| 792 | <!-- ======================================================================= --> |
Reid Spencer | cc16dc3 | 2004-12-09 18:02:53 +0000 | [diff] [blame] | 793 | <div class="doc_subsection"><a name="simpleconstants">Simple Constants</a></div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 794 | |
| 795 | <div class="doc_text"> |
| 796 | |
| 797 | <dl> |
| 798 | <dt><b>Boolean constants</b></dt> |
| 799 | |
| 800 | <dd>The two strings '<tt>true</tt>' and '<tt>false</tt>' are both valid |
| 801 | constants of the <tt><a href="#t_primitive">bool</a></tt> type. |
| 802 | </dd> |
| 803 | |
| 804 | <dt><b>Integer constants</b></dt> |
| 805 | |
Reid Spencer | cc16dc3 | 2004-12-09 18:02:53 +0000 | [diff] [blame] | 806 | <dd>Standard integers (such as '4') are constants of the <a |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 807 | href="#t_integer">integer</a> type. Negative numbers may be used with signed |
| 808 | integer types. |
| 809 | </dd> |
| 810 | |
| 811 | <dt><b>Floating point constants</b></dt> |
| 812 | |
| 813 | <dd>Floating point constants use standard decimal notation (e.g. 123.421), |
| 814 | exponential notation (e.g. 1.23421e+2), or a more precise hexadecimal |
Reid Spencer | cc16dc3 | 2004-12-09 18:02:53 +0000 | [diff] [blame] | 815 | notation. Floating point constants have an optional hexadecimal |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 816 | notation (see below). Floating point constants must have a <a |
| 817 | href="#t_floating">floating point</a> type. </dd> |
| 818 | |
| 819 | <dt><b>Null pointer constants</b></dt> |
| 820 | |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 821 | <dd>The identifier '<tt>null</tt>' is recognized as a null pointer constant |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 822 | and must be of <a href="#t_pointer">pointer type</a>.</dd> |
| 823 | |
| 824 | </dl> |
| 825 | |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 826 | <p>The one non-intuitive notation for constants is the optional hexadecimal form |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 827 | of floating point constants. For example, the form '<tt>double |
| 828 | 0x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double |
| 829 | 4.5e+15</tt>'. The only time hexadecimal floating point constants are required |
Reid Spencer | cc16dc3 | 2004-12-09 18:02:53 +0000 | [diff] [blame] | 830 | (and the only time that they are generated by the disassembler) is when a |
| 831 | floating point constant must be emitted but it cannot be represented as a |
| 832 | decimal floating point number. For example, NaN's, infinities, and other |
| 833 | special values are represented in their IEEE hexadecimal format so that |
| 834 | assembly and disassembly do not cause any bits to change in the constants.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 835 | |
| 836 | </div> |
| 837 | |
| 838 | <!-- ======================================================================= --> |
| 839 | <div class="doc_subsection"><a name="aggregateconstants">Aggregate Constants</a> |
| 840 | </div> |
| 841 | |
| 842 | <div class="doc_text"> |
Chris Lattner | d4f6b17 | 2005-03-07 22:13:59 +0000 | [diff] [blame] | 843 | <p>Aggregate constants arise from aggregation of simple constants |
| 844 | and smaller aggregate constants.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 845 | |
| 846 | <dl> |
| 847 | <dt><b>Structure constants</b></dt> |
| 848 | |
| 849 | <dd>Structure constants are represented with notation similar to structure |
| 850 | type definitions (a comma separated list of elements, surrounded by braces |
Chris Lattner | d4f6b17 | 2005-03-07 22:13:59 +0000 | [diff] [blame] | 851 | (<tt>{}</tt>)). For example: "<tt>{ int 4, float 17.0, int* %G }</tt>", |
| 852 | where "<tt>%G</tt>" is declared as "<tt>%G = external global int</tt>". Structure constants |
| 853 | must have <a href="#t_struct">structure type</a>, and the number and |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 854 | types of elements must match those specified by the type. |
| 855 | </dd> |
| 856 | |
| 857 | <dt><b>Array constants</b></dt> |
| 858 | |
| 859 | <dd>Array constants are represented with notation similar to array type |
| 860 | definitions (a comma separated list of elements, surrounded by square brackets |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 861 | (<tt>[]</tt>)). For example: "<tt>[ int 42, int 11, int 74 ]</tt>". Array |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 862 | constants must have <a href="#t_array">array type</a>, and the number and |
| 863 | types of elements must match those specified by the type. |
| 864 | </dd> |
| 865 | |
| 866 | <dt><b>Packed constants</b></dt> |
| 867 | |
| 868 | <dd>Packed constants are represented with notation similar to packed type |
| 869 | definitions (a comma separated list of elements, surrounded by |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 870 | less-than/greater-than's (<tt><></tt>)). For example: "<tt>< int 42, |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 871 | int 11, int 74, int 100 ></tt>". Packed constants must have <a |
| 872 | href="#t_packed">packed type</a>, and the number and types of elements must |
| 873 | match those specified by the type. |
| 874 | </dd> |
| 875 | |
| 876 | <dt><b>Zero initialization</b></dt> |
| 877 | |
| 878 | <dd>The string '<tt>zeroinitializer</tt>' can be used to zero initialize a |
| 879 | value to zero of <em>any</em> type, including scalar and aggregate types. |
| 880 | This is often used to avoid having to print large zero initializers (e.g. for |
| 881 | large arrays), and is always exactly equivalent to using explicit zero |
| 882 | initializers. |
| 883 | </dd> |
| 884 | </dl> |
| 885 | |
| 886 | </div> |
| 887 | |
| 888 | <!-- ======================================================================= --> |
| 889 | <div class="doc_subsection"> |
| 890 | <a name="globalconstants">Global Variable and Function Addresses</a> |
| 891 | </div> |
| 892 | |
| 893 | <div class="doc_text"> |
| 894 | |
| 895 | <p>The addresses of <a href="#globalvars">global variables</a> and <a |
| 896 | href="#functionstructure">functions</a> are always implicitly valid (link-time) |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 897 | constants. These constants are explicitly referenced when the <a |
| 898 | href="#identifiers">identifier for the global</a> is used and always have <a |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 899 | href="#t_pointer">pointer</a> type. For example, the following is a legal LLVM |
| 900 | file:</p> |
| 901 | |
| 902 | <pre> |
| 903 | %X = global int 17 |
| 904 | %Y = global int 42 |
| 905 | %Z = global [2 x int*] [ int* %X, int* %Y ] |
| 906 | </pre> |
| 907 | |
| 908 | </div> |
| 909 | |
| 910 | <!-- ======================================================================= --> |
Reid Spencer | 2dc45b8 | 2004-12-09 18:13:12 +0000 | [diff] [blame] | 911 | <div class="doc_subsection"><a name="undefvalues">Undefined Values</a></div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 912 | <div class="doc_text"> |
Reid Spencer | 2dc45b8 | 2004-12-09 18:13:12 +0000 | [diff] [blame] | 913 | <p>The string '<tt>undef</tt>' is recognized as a type-less constant that has |
| 914 | no specific value. Undefined values may be of any type, and be used anywhere |
| 915 | a constant is permitted.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 916 | |
Reid Spencer | 2dc45b8 | 2004-12-09 18:13:12 +0000 | [diff] [blame] | 917 | <p>Undefined values indicate to the compiler that the program is well defined |
| 918 | no matter what value is used, giving the compiler more freedom to optimize. |
| 919 | </p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 920 | </div> |
| 921 | |
| 922 | <!-- ======================================================================= --> |
| 923 | <div class="doc_subsection"><a name="constantexprs">Constant Expressions</a> |
| 924 | </div> |
| 925 | |
| 926 | <div class="doc_text"> |
| 927 | |
| 928 | <p>Constant expressions are used to allow expressions involving other constants |
| 929 | to be used as constants. Constant expressions may be of any <a |
| 930 | href="#t_firstclass">first class</a> type, and may involve any LLVM operation |
| 931 | that does not have side effects (e.g. load and call are not supported). The |
| 932 | following is the syntax for constant expressions:</p> |
| 933 | |
| 934 | <dl> |
| 935 | <dt><b><tt>cast ( CST to TYPE )</tt></b></dt> |
| 936 | |
| 937 | <dd>Cast a constant to another type.</dd> |
| 938 | |
| 939 | <dt><b><tt>getelementptr ( CSTPTR, IDX0, IDX1, ... )</tt></b></dt> |
| 940 | |
| 941 | <dd>Perform the <a href="#i_getelementptr">getelementptr operation</a> on |
| 942 | constants. As with the <a href="#i_getelementptr">getelementptr</a> |
| 943 | instruction, the index list may have zero or more indexes, which are required |
| 944 | to make sense for the type of "CSTPTR".</dd> |
| 945 | |
| 946 | <dt><b><tt>OPCODE ( LHS, RHS )</tt></b></dt> |
| 947 | |
Reid Spencer | 2dc45b8 | 2004-12-09 18:13:12 +0000 | [diff] [blame] | 948 | <dd>Perform the specified operation of the LHS and RHS constants. OPCODE may |
| 949 | be any of the <a href="#binaryops">binary</a> or <a href="#bitwiseops">bitwise |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 950 | binary</a> operations. The constraints on operands are the same as those for |
| 951 | the corresponding instruction (e.g. no bitwise operations on floating point |
| 952 | are allowed).</dd> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 953 | </dl> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 954 | </div> |
Chris Lattner | 9ee5d22 | 2004-03-08 16:49:10 +0000 | [diff] [blame] | 955 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 956 | <!-- *********************************************************************** --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 957 | <div class="doc_section"> <a name="instref">Instruction Reference</a> </div> |
| 958 | <!-- *********************************************************************** --> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 959 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 960 | <div class="doc_text"> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 961 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 962 | <p>The LLVM instruction set consists of several different |
| 963 | classifications of instructions: <a href="#terminators">terminator |
| 964 | instructions</a>, <a href="#binaryops">binary instructions</a>, <a |
| 965 | href="#memoryops">memory instructions</a>, and <a href="#otherops">other |
| 966 | instructions</a>.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 967 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 968 | </div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 969 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 970 | <!-- ======================================================================= --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 971 | <div class="doc_subsection"> <a name="terminators">Terminator |
| 972 | Instructions</a> </div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 973 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 974 | <div class="doc_text"> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 975 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 976 | <p>As mentioned <a href="#functionstructure">previously</a>, every |
| 977 | basic block in a program ends with a "Terminator" instruction, which |
| 978 | indicates which block should be executed after the current block is |
| 979 | finished. These terminator instructions typically yield a '<tt>void</tt>' |
| 980 | value: they produce control flow, not values (the one exception being |
| 981 | the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction).</p> |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 982 | <p>There are six different terminator instructions: the '<a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 983 | href="#i_ret"><tt>ret</tt></a>' instruction, the '<a href="#i_br"><tt>br</tt></a>' |
| 984 | instruction, the '<a href="#i_switch"><tt>switch</tt></a>' instruction, |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 985 | the '<a href="#i_invoke"><tt>invoke</tt></a>' instruction, the '<a |
| 986 | href="#i_unwind"><tt>unwind</tt></a>' instruction, and the '<a |
| 987 | href="#i_unreachable"><tt>unreachable</tt></a>' instruction.</p> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 988 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 989 | </div> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 990 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 991 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 992 | <div class="doc_subsubsection"> <a name="i_ret">'<tt>ret</tt>' |
| 993 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 994 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 995 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 996 | <pre> ret <type> <value> <i>; Return a value from a non-void function</i> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 997 | ret void <i>; Return from void function</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 998 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 999 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1000 | <p>The '<tt>ret</tt>' instruction is used to return control flow (and a |
| 1001 | value) from a function, back to the caller.</p> |
John Criswell | 4457dc9 | 2004-04-09 16:48:45 +0000 | [diff] [blame] | 1002 | <p>There are two forms of the '<tt>ret</tt>' instruction: one that |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1003 | returns a value and then causes control flow, and one that just causes |
| 1004 | control flow to occur.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1005 | <h5>Arguments:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1006 | <p>The '<tt>ret</tt>' instruction may return any '<a |
| 1007 | href="#t_firstclass">first class</a>' type. Notice that a function is |
| 1008 | not <a href="#wellformed">well formed</a> if there exists a '<tt>ret</tt>' |
| 1009 | instruction inside of the function that returns a value that does not |
| 1010 | match the return type of the function.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1011 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1012 | <p>When the '<tt>ret</tt>' instruction is executed, control flow |
| 1013 | returns back to the calling function's context. If the caller is a "<a |
John Criswell | fa08187 | 2004-06-25 15:16:57 +0000 | [diff] [blame] | 1014 | href="#i_call"><tt>call</tt></a>" instruction, execution continues at |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1015 | the instruction after the call. If the caller was an "<a |
| 1016 | href="#i_invoke"><tt>invoke</tt></a>" instruction, execution continues |
| 1017 | at the beginning "normal" of the destination block. If the instruction |
| 1018 | returns a value, that value shall set the call or invoke instruction's |
| 1019 | return value.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1020 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1021 | <pre> ret int 5 <i>; Return an integer value of 5</i> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1022 | ret void <i>; Return from a void function</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1023 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1024 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1025 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1026 | <div class="doc_subsubsection"> <a name="i_br">'<tt>br</tt>' Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1027 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1028 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1029 | <pre> br bool <cond>, label <iftrue>, label <iffalse><br> br label <dest> <i>; Unconditional branch</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1030 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1031 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1032 | <p>The '<tt>br</tt>' instruction is used to cause control flow to |
| 1033 | transfer to a different basic block in the current function. There are |
| 1034 | two forms of this instruction, corresponding to a conditional branch |
| 1035 | and an unconditional branch.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1036 | <h5>Arguments:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1037 | <p>The conditional branch form of the '<tt>br</tt>' instruction takes a |
| 1038 | single '<tt>bool</tt>' value and two '<tt>label</tt>' values. The |
| 1039 | unconditional form of the '<tt>br</tt>' instruction takes a single '<tt>label</tt>' |
| 1040 | value as a target.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1041 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1042 | <p>Upon execution of a conditional '<tt>br</tt>' instruction, the '<tt>bool</tt>' |
| 1043 | argument is evaluated. If the value is <tt>true</tt>, control flows |
| 1044 | to the '<tt>iftrue</tt>' <tt>label</tt> argument. If "cond" is <tt>false</tt>, |
| 1045 | control flows to the '<tt>iffalse</tt>' <tt>label</tt> argument.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1046 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1047 | <pre>Test:<br> %cond = <a href="#i_setcc">seteq</a> int %a, %b<br> br bool %cond, label %IfEqual, label %IfUnequal<br>IfEqual:<br> <a |
| 1048 | href="#i_ret">ret</a> int 1<br>IfUnequal:<br> <a href="#i_ret">ret</a> int 0<br></pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1049 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1050 | <!-- _______________________________________________________________________ --> |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1051 | <div class="doc_subsubsection"> |
| 1052 | <a name="i_switch">'<tt>switch</tt>' Instruction</a> |
| 1053 | </div> |
| 1054 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1055 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1056 | <h5>Syntax:</h5> |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1057 | |
| 1058 | <pre> |
| 1059 | switch <intty> <value>, label <defaultdest> [ <intty> <val>, label <dest> ... ] |
| 1060 | </pre> |
| 1061 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1062 | <h5>Overview:</h5> |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1063 | |
| 1064 | <p>The '<tt>switch</tt>' instruction is used to transfer control flow to one of |
| 1065 | several different places. It is a generalization of the '<tt>br</tt>' |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1066 | instruction, allowing a branch to occur to one of many possible |
| 1067 | destinations.</p> |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1068 | |
| 1069 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1070 | <h5>Arguments:</h5> |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1071 | |
| 1072 | <p>The '<tt>switch</tt>' instruction uses three parameters: an integer |
| 1073 | comparison value '<tt>value</tt>', a default '<tt>label</tt>' destination, and |
| 1074 | an array of pairs of comparison value constants and '<tt>label</tt>'s. The |
| 1075 | table is not allowed to contain duplicate constant entries.</p> |
| 1076 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1077 | <h5>Semantics:</h5> |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1078 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1079 | <p>The <tt>switch</tt> instruction specifies a table of values and |
| 1080 | destinations. When the '<tt>switch</tt>' instruction is executed, this |
John Criswell | 8411475 | 2004-06-25 16:05:06 +0000 | [diff] [blame] | 1081 | table is searched for the given value. If the value is found, control flow is |
| 1082 | transfered to the corresponding destination; otherwise, control flow is |
| 1083 | transfered to the default destination.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1084 | |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1085 | <h5>Implementation:</h5> |
| 1086 | |
| 1087 | <p>Depending on properties of the target machine and the particular |
| 1088 | <tt>switch</tt> instruction, this instruction may be code generated in different |
John Criswell | 8411475 | 2004-06-25 16:05:06 +0000 | [diff] [blame] | 1089 | ways. For example, it could be generated as a series of chained conditional |
| 1090 | branches or with a lookup table.</p> |
Chris Lattner | c88c17b | 2004-02-24 04:54:45 +0000 | [diff] [blame] | 1091 | |
| 1092 | <h5>Example:</h5> |
| 1093 | |
| 1094 | <pre> |
| 1095 | <i>; Emulate a conditional br instruction</i> |
| 1096 | %Val = <a href="#i_cast">cast</a> bool %value to int |
| 1097 | switch int %Val, label %truedest [int 0, label %falsedest ] |
| 1098 | |
| 1099 | <i>; Emulate an unconditional br instruction</i> |
| 1100 | switch uint 0, label %dest [ ] |
| 1101 | |
| 1102 | <i>; Implement a jump table:</i> |
| 1103 | switch uint %val, label %otherwise [ uint 0, label %onzero |
| 1104 | uint 1, label %onone |
| 1105 | uint 2, label %ontwo ] |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1106 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1107 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1108 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1109 | <div class="doc_subsubsection"> <a name="i_invoke">'<tt>invoke</tt>' |
| 1110 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1111 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1112 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1113 | <pre> <result> = invoke <ptr to function ty> %<function ptr val>(<function args>)<br> to label <normal label> except label <exception label><br></pre> |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1114 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1115 | <p>The '<tt>invoke</tt>' instruction causes control to transfer to a |
| 1116 | specified function, with the possibility of control flow transfer to |
| 1117 | either the '<tt>normal</tt>' <tt>label</tt> label or the '<tt>exception</tt>'<tt>label</tt>. |
| 1118 | If the callee function returns with the "<tt><a href="#i_ret">ret</a></tt>" |
| 1119 | instruction, control flow will return to the "normal" label. If the |
| 1120 | callee (or any indirect callees) returns with the "<a href="#i_unwind"><tt>unwind</tt></a>" |
| 1121 | instruction, control is interrupted, and continued at the dynamically |
| 1122 | nearest "except" label.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1123 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1124 | <p>This instruction requires several arguments:</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1125 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1126 | <li>'<tt>ptr to function ty</tt>': shall be the signature of the |
| 1127 | pointer to function value being invoked. In most cases, this is a |
| 1128 | direct function invocation, but indirect <tt>invoke</tt>s are just as |
| 1129 | possible, branching off an arbitrary pointer to function value. </li> |
| 1130 | <li>'<tt>function ptr val</tt>': An LLVM value containing a pointer |
| 1131 | to a function to be invoked. </li> |
| 1132 | <li>'<tt>function args</tt>': argument list whose types match the |
| 1133 | function signature argument types. If the function signature indicates |
| 1134 | the function accepts a variable number of arguments, the extra |
| 1135 | arguments can be specified. </li> |
| 1136 | <li>'<tt>normal label</tt>': the label reached when the called |
| 1137 | function executes a '<tt><a href="#i_ret">ret</a></tt>' instruction. </li> |
| 1138 | <li>'<tt>exception label</tt>': the label reached when a callee |
| 1139 | returns with the <a href="#i_unwind"><tt>unwind</tt></a> instruction. </li> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1140 | </ol> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1141 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1142 | <p>This instruction is designed to operate as a standard '<tt><a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1143 | href="#i_call">call</a></tt>' instruction in most regards. The |
| 1144 | primary difference is that it establishes an association with a label, |
| 1145 | which is used by the runtime library to unwind the stack.</p> |
| 1146 | <p>This instruction is used in languages with destructors to ensure |
| 1147 | that proper cleanup is performed in the case of either a <tt>longjmp</tt> |
| 1148 | or a thrown exception. Additionally, this is important for |
| 1149 | implementation of '<tt>catch</tt>' clauses in high-level languages that |
| 1150 | support them.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1151 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1152 | <pre> %retval = invoke int %Test(int 15)<br> to label %Continue<br> except label %TestCleanup <i>; {int}:retval set</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1153 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1154 | </div> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1155 | |
| 1156 | |
Chris Lattner | 27f71f2 | 2003-09-03 00:41:47 +0000 | [diff] [blame] | 1157 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1158 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1159 | <div class="doc_subsubsection"> <a name="i_unwind">'<tt>unwind</tt>' |
| 1160 | Instruction</a> </div> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1161 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1162 | <div class="doc_text"> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1163 | |
Chris Lattner | 27f71f2 | 2003-09-03 00:41:47 +0000 | [diff] [blame] | 1164 | <h5>Syntax:</h5> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1165 | <pre> |
| 1166 | unwind |
| 1167 | </pre> |
| 1168 | |
Chris Lattner | 27f71f2 | 2003-09-03 00:41:47 +0000 | [diff] [blame] | 1169 | <h5>Overview:</h5> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1170 | |
| 1171 | <p>The '<tt>unwind</tt>' instruction unwinds the stack, continuing control flow |
| 1172 | at the first callee in the dynamic call stack which used an <a |
| 1173 | href="#i_invoke"><tt>invoke</tt></a> instruction to perform the call. This is |
| 1174 | primarily used to implement exception handling.</p> |
| 1175 | |
Chris Lattner | 27f71f2 | 2003-09-03 00:41:47 +0000 | [diff] [blame] | 1176 | <h5>Semantics:</h5> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1177 | |
| 1178 | <p>The '<tt>unwind</tt>' intrinsic causes execution of the current function to |
| 1179 | immediately halt. The dynamic call stack is then searched for the first <a |
| 1180 | href="#i_invoke"><tt>invoke</tt></a> instruction on the call stack. Once found, |
| 1181 | execution continues at the "exceptional" destination block specified by the |
| 1182 | <tt>invoke</tt> instruction. If there is no <tt>invoke</tt> instruction in the |
| 1183 | dynamic call chain, undefined behavior results.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1184 | </div> |
Chris Lattner | 35eca58 | 2004-10-16 18:04:13 +0000 | [diff] [blame] | 1185 | |
| 1186 | <!-- _______________________________________________________________________ --> |
| 1187 | |
| 1188 | <div class="doc_subsubsection"> <a name="i_unreachable">'<tt>unreachable</tt>' |
| 1189 | Instruction</a> </div> |
| 1190 | |
| 1191 | <div class="doc_text"> |
| 1192 | |
| 1193 | <h5>Syntax:</h5> |
| 1194 | <pre> |
| 1195 | unreachable |
| 1196 | </pre> |
| 1197 | |
| 1198 | <h5>Overview:</h5> |
| 1199 | |
| 1200 | <p>The '<tt>unreachable</tt>' instruction has no defined semantics. This |
| 1201 | instruction is used to inform the optimizer that a particular portion of the |
| 1202 | code is not reachable. This can be used to indicate that the code after a |
| 1203 | no-return function cannot be reached, and other facts.</p> |
| 1204 | |
| 1205 | <h5>Semantics:</h5> |
| 1206 | |
| 1207 | <p>The '<tt>unreachable</tt>' instruction has no defined semantics.</p> |
| 1208 | </div> |
| 1209 | |
| 1210 | |
| 1211 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1212 | <!-- ======================================================================= --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1213 | <div class="doc_subsection"> <a name="binaryops">Binary Operations</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1214 | <div class="doc_text"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1215 | <p>Binary operators are used to do most of the computation in a |
| 1216 | program. They require two operands, execute an operation on them, and |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 1217 | produce a single value. The operands might represent |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 1218 | multiple data, as is the case with the <a href="#t_packed">packed</a> data type. |
| 1219 | The result value of a binary operator is not |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1220 | necessarily the same type as its operands.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1221 | <p>There are several different binary operators:</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1222 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1223 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1224 | <div class="doc_subsubsection"> <a name="i_add">'<tt>add</tt>' |
| 1225 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1226 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1227 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1228 | <pre> <result> = add <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1229 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1230 | <h5>Overview:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1231 | <p>The '<tt>add</tt>' instruction returns the sum of its two operands.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1232 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1233 | <p>The two arguments to the '<tt>add</tt>' instruction must be either <a |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 1234 | href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> values. |
| 1235 | This instruction can also take <a href="#t_packed">packed</a> versions of the values. |
| 1236 | Both arguments must have identical types.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1237 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1238 | <p>The value produced is the integer or floating point sum of the two |
| 1239 | operands.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1240 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1241 | <pre> <result> = add int 4, %var <i>; yields {int}:result = 4 + %var</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1242 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1243 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1244 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1245 | <div class="doc_subsubsection"> <a name="i_sub">'<tt>sub</tt>' |
| 1246 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1247 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1248 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1249 | <pre> <result> = sub <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1250 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1251 | <h5>Overview:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1252 | <p>The '<tt>sub</tt>' instruction returns the difference of its two |
| 1253 | operands.</p> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1254 | <p>Note that the '<tt>sub</tt>' instruction is used to represent the '<tt>neg</tt>' |
| 1255 | instruction present in most other intermediate representations.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1256 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1257 | <p>The two arguments to the '<tt>sub</tt>' instruction must be either <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1258 | href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 1259 | values. |
| 1260 | This instruction can also take <a href="#t_packed">packed</a> versions of the values. |
| 1261 | Both arguments must have identical types.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1262 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1263 | <p>The value produced is the integer or floating point difference of |
| 1264 | the two operands.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1265 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1266 | <pre> <result> = sub int 4, %var <i>; yields {int}:result = 4 - %var</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1267 | <result> = sub int 0, %val <i>; yields {int}:result = -%var</i> |
| 1268 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1269 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1270 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1271 | <div class="doc_subsubsection"> <a name="i_mul">'<tt>mul</tt>' |
| 1272 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1273 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1274 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1275 | <pre> <result> = mul <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1276 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1277 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1278 | <p>The '<tt>mul</tt>' instruction returns the product of its two |
| 1279 | operands.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1280 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1281 | <p>The two arguments to the '<tt>mul</tt>' instruction must be either <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1282 | href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 1283 | values. |
| 1284 | This instruction can also take <a href="#t_packed">packed</a> versions of the values. |
| 1285 | Both arguments must have identical types.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1286 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1287 | <p>The value produced is the integer or floating point product of the |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1288 | two operands.</p> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1289 | <p>There is no signed vs unsigned multiplication. The appropriate |
| 1290 | action is taken based on the type of the operand.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1291 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1292 | <pre> <result> = mul int 4, %var <i>; yields {int}:result = 4 * %var</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1293 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1294 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1295 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1296 | <div class="doc_subsubsection"> <a name="i_div">'<tt>div</tt>' |
| 1297 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1298 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1299 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1300 | <pre> <result> = div <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
| 1301 | </pre> |
| 1302 | <h5>Overview:</h5> |
| 1303 | <p>The '<tt>div</tt>' instruction returns the quotient of its two |
| 1304 | operands.</p> |
| 1305 | <h5>Arguments:</h5> |
| 1306 | <p>The two arguments to the '<tt>div</tt>' instruction must be either <a |
| 1307 | href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 1308 | values. |
| 1309 | This instruction can also take <a href="#t_packed">packed</a> versions of the values. |
| 1310 | Both arguments must have identical types.</p> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1311 | <h5>Semantics:</h5> |
| 1312 | <p>The value produced is the integer or floating point quotient of the |
| 1313 | two operands.</p> |
| 1314 | <h5>Example:</h5> |
| 1315 | <pre> <result> = div int 4, %var <i>; yields {int}:result = 4 / %var</i> |
| 1316 | </pre> |
| 1317 | </div> |
| 1318 | <!-- _______________________________________________________________________ --> |
| 1319 | <div class="doc_subsubsection"> <a name="i_rem">'<tt>rem</tt>' |
| 1320 | Instruction</a> </div> |
| 1321 | <div class="doc_text"> |
| 1322 | <h5>Syntax:</h5> |
| 1323 | <pre> <result> = rem <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
| 1324 | </pre> |
| 1325 | <h5>Overview:</h5> |
| 1326 | <p>The '<tt>rem</tt>' instruction returns the remainder from the |
| 1327 | division of its two operands.</p> |
| 1328 | <h5>Arguments:</h5> |
| 1329 | <p>The two arguments to the '<tt>rem</tt>' instruction must be either <a |
| 1330 | href="#t_integer">integer</a> or <a href="#t_floating">floating point</a> |
Chris Lattner | a58561b | 2004-08-12 19:12:28 +0000 | [diff] [blame] | 1331 | values. |
| 1332 | This instruction can also take <a href="#t_packed">packed</a> versions of the values. |
| 1333 | Both arguments must have identical types.</p> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1334 | <h5>Semantics:</h5> |
| 1335 | <p>This returns the <i>remainder</i> of a division (where the result |
| 1336 | has the same sign as the divisor), not the <i>modulus</i> (where the |
| 1337 | result has the same sign as the dividend) of a value. For more |
| 1338 | information about the difference, see: <a |
| 1339 | href="http://mathforum.org/dr.math/problems/anne.4.28.99.html">The |
| 1340 | Math Forum</a>.</p> |
| 1341 | <h5>Example:</h5> |
| 1342 | <pre> <result> = rem int 4, %var <i>; yields {int}:result = 4 % %var</i> |
| 1343 | </pre> |
| 1344 | </div> |
| 1345 | <!-- _______________________________________________________________________ --> |
| 1346 | <div class="doc_subsubsection"> <a name="i_setcc">'<tt>set<i>cc</i></tt>' |
| 1347 | Instructions</a> </div> |
| 1348 | <div class="doc_text"> |
| 1349 | <h5>Syntax:</h5> |
| 1350 | <pre> <result> = seteq <ty> <var1>, <var2> <i>; yields {bool}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1351 | <result> = setne <ty> <var1>, <var2> <i>; yields {bool}:result</i> |
| 1352 | <result> = setlt <ty> <var1>, <var2> <i>; yields {bool}:result</i> |
| 1353 | <result> = setgt <ty> <var1>, <var2> <i>; yields {bool}:result</i> |
| 1354 | <result> = setle <ty> <var1>, <var2> <i>; yields {bool}:result</i> |
| 1355 | <result> = setge <ty> <var1>, <var2> <i>; yields {bool}:result</i> |
| 1356 | </pre> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1357 | <h5>Overview:</h5> |
| 1358 | <p>The '<tt>set<i>cc</i></tt>' family of instructions returns a boolean |
| 1359 | value based on a comparison of their two operands.</p> |
| 1360 | <h5>Arguments:</h5> |
| 1361 | <p>The two arguments to the '<tt>set<i>cc</i></tt>' instructions must |
| 1362 | be of <a href="#t_firstclass">first class</a> type (it is not possible |
| 1363 | to compare '<tt>label</tt>'s, '<tt>array</tt>'s, '<tt>structure</tt>' |
| 1364 | or '<tt>void</tt>' values, etc...). Both arguments must have identical |
| 1365 | types.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1366 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1367 | <p>The '<tt>seteq</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>' |
| 1368 | value if both operands are equal.<br> |
| 1369 | The '<tt>setne</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>' |
| 1370 | value if both operands are unequal.<br> |
| 1371 | The '<tt>setlt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>' |
| 1372 | value if the first operand is less than the second operand.<br> |
| 1373 | The '<tt>setgt</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>' |
| 1374 | value if the first operand is greater than the second operand.<br> |
| 1375 | The '<tt>setle</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>' |
| 1376 | value if the first operand is less than or equal to the second operand.<br> |
| 1377 | The '<tt>setge</tt>' instruction yields a <tt>true</tt> '<tt>bool</tt>' |
| 1378 | value if the first operand is greater than or equal to the second |
| 1379 | operand.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1380 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1381 | <pre> <result> = seteq int 4, 5 <i>; yields {bool}:result = false</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1382 | <result> = setne float 4, 5 <i>; yields {bool}:result = true</i> |
| 1383 | <result> = setlt uint 4, 5 <i>; yields {bool}:result = true</i> |
| 1384 | <result> = setgt sbyte 4, 5 <i>; yields {bool}:result = false</i> |
| 1385 | <result> = setle sbyte 4, 5 <i>; yields {bool}:result = true</i> |
| 1386 | <result> = setge sbyte 4, 5 <i>; yields {bool}:result = false</i> |
| 1387 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1388 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1389 | <!-- ======================================================================= --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1390 | <div class="doc_subsection"> <a name="bitwiseops">Bitwise Binary |
| 1391 | Operations</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1392 | <div class="doc_text"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1393 | <p>Bitwise binary operators are used to do various forms of |
| 1394 | bit-twiddling in a program. They are generally very efficient |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 1395 | instructions and can commonly be strength reduced from other |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1396 | instructions. They require two operands, execute an operation on them, |
| 1397 | and produce a single value. The resulting value of the bitwise binary |
| 1398 | operators is always the same type as its first operand.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1399 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1400 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1401 | <div class="doc_subsubsection"> <a name="i_and">'<tt>and</tt>' |
| 1402 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1403 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1404 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1405 | <pre> <result> = and <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1406 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1407 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1408 | <p>The '<tt>and</tt>' instruction returns the bitwise logical and of |
| 1409 | its two operands.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1410 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1411 | <p>The two arguments to the '<tt>and</tt>' instruction must be <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1412 | href="#t_integral">integral</a> values. Both arguments must have |
| 1413 | identical types.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1414 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1415 | <p>The truth table used for the '<tt>and</tt>' instruction is:</p> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1416 | <p> </p> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 1417 | <div style="align: center"> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1418 | <table border="1" cellspacing="0" cellpadding="4"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1419 | <tbody> |
| 1420 | <tr> |
| 1421 | <td>In0</td> |
| 1422 | <td>In1</td> |
| 1423 | <td>Out</td> |
| 1424 | </tr> |
| 1425 | <tr> |
| 1426 | <td>0</td> |
| 1427 | <td>0</td> |
| 1428 | <td>0</td> |
| 1429 | </tr> |
| 1430 | <tr> |
| 1431 | <td>0</td> |
| 1432 | <td>1</td> |
| 1433 | <td>0</td> |
| 1434 | </tr> |
| 1435 | <tr> |
| 1436 | <td>1</td> |
| 1437 | <td>0</td> |
| 1438 | <td>0</td> |
| 1439 | </tr> |
| 1440 | <tr> |
| 1441 | <td>1</td> |
| 1442 | <td>1</td> |
| 1443 | <td>1</td> |
| 1444 | </tr> |
| 1445 | </tbody> |
| 1446 | </table> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 1447 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1448 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1449 | <pre> <result> = and int 4, %var <i>; yields {int}:result = 4 & %var</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1450 | <result> = and int 15, 40 <i>; yields {int}:result = 8</i> |
| 1451 | <result> = and int 4, 8 <i>; yields {int}:result = 0</i> |
| 1452 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1453 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1454 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1455 | <div class="doc_subsubsection"> <a name="i_or">'<tt>or</tt>' Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1456 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1457 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1458 | <pre> <result> = or <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1459 | </pre> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1460 | <h5>Overview:</h5> |
| 1461 | <p>The '<tt>or</tt>' instruction returns the bitwise logical inclusive |
| 1462 | or of its two operands.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1463 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1464 | <p>The two arguments to the '<tt>or</tt>' instruction must be <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1465 | href="#t_integral">integral</a> values. Both arguments must have |
| 1466 | identical types.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1467 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1468 | <p>The truth table used for the '<tt>or</tt>' instruction is:</p> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1469 | <p> </p> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 1470 | <div style="align: center"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1471 | <table border="1" cellspacing="0" cellpadding="4"> |
| 1472 | <tbody> |
| 1473 | <tr> |
| 1474 | <td>In0</td> |
| 1475 | <td>In1</td> |
| 1476 | <td>Out</td> |
| 1477 | </tr> |
| 1478 | <tr> |
| 1479 | <td>0</td> |
| 1480 | <td>0</td> |
| 1481 | <td>0</td> |
| 1482 | </tr> |
| 1483 | <tr> |
| 1484 | <td>0</td> |
| 1485 | <td>1</td> |
| 1486 | <td>1</td> |
| 1487 | </tr> |
| 1488 | <tr> |
| 1489 | <td>1</td> |
| 1490 | <td>0</td> |
| 1491 | <td>1</td> |
| 1492 | </tr> |
| 1493 | <tr> |
| 1494 | <td>1</td> |
| 1495 | <td>1</td> |
| 1496 | <td>1</td> |
| 1497 | </tr> |
| 1498 | </tbody> |
| 1499 | </table> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 1500 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1501 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1502 | <pre> <result> = or int 4, %var <i>; yields {int}:result = 4 | %var</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1503 | <result> = or int 15, 40 <i>; yields {int}:result = 47</i> |
| 1504 | <result> = or int 4, 8 <i>; yields {int}:result = 12</i> |
| 1505 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1506 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1507 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1508 | <div class="doc_subsubsection"> <a name="i_xor">'<tt>xor</tt>' |
| 1509 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1510 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1511 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1512 | <pre> <result> = xor <ty> <var1>, <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1513 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1514 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1515 | <p>The '<tt>xor</tt>' instruction returns the bitwise logical exclusive |
| 1516 | or of its two operands. The <tt>xor</tt> is used to implement the |
| 1517 | "one's complement" operation, which is the "~" operator in C.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1518 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1519 | <p>The two arguments to the '<tt>xor</tt>' instruction must be <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1520 | href="#t_integral">integral</a> values. Both arguments must have |
| 1521 | identical types.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1522 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1523 | <p>The truth table used for the '<tt>xor</tt>' instruction is:</p> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1524 | <p> </p> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 1525 | <div style="align: center"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1526 | <table border="1" cellspacing="0" cellpadding="4"> |
| 1527 | <tbody> |
| 1528 | <tr> |
| 1529 | <td>In0</td> |
| 1530 | <td>In1</td> |
| 1531 | <td>Out</td> |
| 1532 | </tr> |
| 1533 | <tr> |
| 1534 | <td>0</td> |
| 1535 | <td>0</td> |
| 1536 | <td>0</td> |
| 1537 | </tr> |
| 1538 | <tr> |
| 1539 | <td>0</td> |
| 1540 | <td>1</td> |
| 1541 | <td>1</td> |
| 1542 | </tr> |
| 1543 | <tr> |
| 1544 | <td>1</td> |
| 1545 | <td>0</td> |
| 1546 | <td>1</td> |
| 1547 | </tr> |
| 1548 | <tr> |
| 1549 | <td>1</td> |
| 1550 | <td>1</td> |
| 1551 | <td>0</td> |
| 1552 | </tr> |
| 1553 | </tbody> |
| 1554 | </table> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 1555 | </div> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1556 | <p> </p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1557 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1558 | <pre> <result> = xor int 4, %var <i>; yields {int}:result = 4 ^ %var</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1559 | <result> = xor int 15, 40 <i>; yields {int}:result = 39</i> |
| 1560 | <result> = xor int 4, 8 <i>; yields {int}:result = 12</i> |
Chris Lattner | 27f71f2 | 2003-09-03 00:41:47 +0000 | [diff] [blame] | 1561 | <result> = xor int %V, -1 <i>; yields {int}:result = ~%V</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1562 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1563 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1564 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1565 | <div class="doc_subsubsection"> <a name="i_shl">'<tt>shl</tt>' |
| 1566 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1567 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1568 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1569 | <pre> <result> = shl <ty> <var1>, ubyte <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1570 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1571 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1572 | <p>The '<tt>shl</tt>' instruction returns the first operand shifted to |
| 1573 | the left a specified number of bits.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1574 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1575 | <p>The first argument to the '<tt>shl</tt>' instruction must be an <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1576 | href="#t_integer">integer</a> type. The second argument must be an '<tt>ubyte</tt>' |
| 1577 | type.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1578 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1579 | <p>The value produced is <tt>var1</tt> * 2<sup><tt>var2</tt></sup>.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1580 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1581 | <pre> <result> = shl int 4, ubyte %var <i>; yields {int}:result = 4 << %var</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1582 | <result> = shl int 4, ubyte 2 <i>; yields {int}:result = 16</i> |
| 1583 | <result> = shl int 1, ubyte 10 <i>; yields {int}:result = 1024</i> |
| 1584 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1585 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1586 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1587 | <div class="doc_subsubsection"> <a name="i_shr">'<tt>shr</tt>' |
| 1588 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1589 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1590 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1591 | <pre> <result> = shr <ty> <var1>, ubyte <var2> <i>; yields {ty}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1592 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1593 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1594 | <p>The '<tt>shr</tt>' instruction returns the first operand shifted to |
| 1595 | the right a specified number of bits.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1596 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1597 | <p>The first argument to the '<tt>shr</tt>' instruction must be an <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1598 | href="#t_integer">integer</a> type. The second argument must be an '<tt>ubyte</tt>' |
| 1599 | type.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1600 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1601 | <p>If the first argument is a <a href="#t_signed">signed</a> type, the |
| 1602 | most significant bit is duplicated in the newly free'd bit positions. |
| 1603 | If the first argument is unsigned, zero bits shall fill the empty |
| 1604 | positions.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1605 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1606 | <pre> <result> = shr int 4, ubyte %var <i>; yields {int}:result = 4 >> %var</i> |
Chris Lattner | 8c6bb90 | 2003-06-18 21:30:51 +0000 | [diff] [blame] | 1607 | <result> = shr uint 4, ubyte 1 <i>; yields {uint}:result = 2</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1608 | <result> = shr int 4, ubyte 2 <i>; yields {int}:result = 1</i> |
Chris Lattner | 8c6bb90 | 2003-06-18 21:30:51 +0000 | [diff] [blame] | 1609 | <result> = shr sbyte 4, ubyte 3 <i>; yields {sbyte}:result = 0</i> |
| 1610 | <result> = shr sbyte -2, ubyte 1 <i>; yields {sbyte}:result = -1</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1611 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1612 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1613 | <!-- ======================================================================= --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1614 | <div class="doc_subsection"> <a name="memoryops">Memory Access |
| 1615 | Operations</a></div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1616 | <div class="doc_text"> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1617 | <p>A key design point of an SSA-based representation is how it |
| 1618 | represents memory. In LLVM, no memory locations are in SSA form, which |
| 1619 | makes things very simple. This section describes how to read, write, |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 1620 | allocate, and free memory in LLVM.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1621 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1622 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1623 | <div class="doc_subsubsection"> <a name="i_malloc">'<tt>malloc</tt>' |
| 1624 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1625 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1626 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1627 | <pre> <result> = malloc <type>, uint <NumElements> <i>; yields {type*}:result</i> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1628 | <result> = malloc <type> <i>; yields {type*}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1629 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1630 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1631 | <p>The '<tt>malloc</tt>' instruction allocates memory from the system |
| 1632 | heap and returns a pointer to it.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1633 | <h5>Arguments:</h5> |
John Criswell | 6e4ca61 | 2004-02-24 16:13:56 +0000 | [diff] [blame] | 1634 | <p>The '<tt>malloc</tt>' instruction allocates <tt>sizeof(<type>)*NumElements</tt> |
| 1635 | bytes of memory from the operating system and returns a pointer of the |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1636 | appropriate type to the program. The second form of the instruction is |
| 1637 | a shorter version of the first instruction that defaults to allocating |
| 1638 | one element.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1639 | <p>'<tt>type</tt>' must be a sized type.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1640 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1641 | <p>Memory is allocated using the system "<tt>malloc</tt>" function, and |
| 1642 | a pointer is returned.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1643 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1644 | <pre> %array = malloc [4 x ubyte ] <i>; yields {[%4 x ubyte]*}:array</i> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1645 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1646 | %size = <a |
| 1647 | href="#i_add">add</a> uint 2, 2 <i>; yields {uint}:size = uint 4</i> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1648 | %array1 = malloc ubyte, uint 4 <i>; yields {ubyte*}:array1</i> |
| 1649 | %array2 = malloc [12 x ubyte], uint %size <i>; yields {[12 x ubyte]*}:array2</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1650 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1651 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1652 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1653 | <div class="doc_subsubsection"> <a name="i_free">'<tt>free</tt>' |
| 1654 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1655 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1656 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1657 | <pre> free <type> <value> <i>; yields {void}</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1658 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1659 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1660 | <p>The '<tt>free</tt>' instruction returns memory back to the unused |
| 1661 | memory heap, to be reallocated in the future.</p> |
| 1662 | <p> </p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1663 | <h5>Arguments:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1664 | <p>'<tt>value</tt>' shall be a pointer value that points to a value |
| 1665 | that was allocated with the '<tt><a href="#i_malloc">malloc</a></tt>' |
| 1666 | instruction.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1667 | <h5>Semantics:</h5> |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 1668 | <p>Access to the memory pointed to by the pointer is no longer defined |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1669 | after this instruction executes.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1670 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1671 | <pre> %array = <a href="#i_malloc">malloc</a> [4 x ubyte] <i>; yields {[4 x ubyte]*}:array</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1672 | free [4 x ubyte]* %array |
| 1673 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1674 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1675 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1676 | <div class="doc_subsubsection"> <a name="i_alloca">'<tt>alloca</tt>' |
| 1677 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1678 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1679 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1680 | <pre> <result> = alloca <type>, uint <NumElements> <i>; yields {type*}:result</i> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1681 | <result> = alloca <type> <i>; yields {type*}:result</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1682 | </pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1683 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1684 | <p>The '<tt>alloca</tt>' instruction allocates memory on the current |
| 1685 | stack frame of the procedure that is live until the current function |
| 1686 | returns to its caller.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1687 | <h5>Arguments:</h5> |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 1688 | <p>The '<tt>alloca</tt>' instruction allocates <tt>sizeof(<type>)*NumElements</tt> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1689 | bytes of memory on the runtime stack, returning a pointer of the |
| 1690 | appropriate type to the program. The second form of the instruction is |
| 1691 | a shorter version of the first that defaults to allocating one element.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1692 | <p>'<tt>type</tt>' may be any sized type.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1693 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1694 | <p>Memory is allocated, a pointer is returned. '<tt>alloca</tt>'d |
| 1695 | memory is automatically released when the function returns. The '<tt>alloca</tt>' |
| 1696 | instruction is commonly used to represent automatic variables that must |
| 1697 | have an address available. When the function returns (either with the <tt><a |
| 1698 | href="#i_ret">ret</a></tt> or <tt><a href="#i_invoke">invoke</a></tt> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1699 | instructions), the memory is reclaimed.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1700 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1701 | <pre> %ptr = alloca int <i>; yields {int*}:ptr</i> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1702 | %ptr = alloca int, uint 4 <i>; yields {int*}:ptr</i> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1703 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1704 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1705 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1706 | <div class="doc_subsubsection"> <a name="i_load">'<tt>load</tt>' |
| 1707 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1708 | <div class="doc_text"> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1709 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1710 | <pre> <result> = load <ty>* <pointer><br> <result> = volatile load <ty>* <pointer><br></pre> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1711 | <h5>Overview:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1712 | <p>The '<tt>load</tt>' instruction is used to read from memory.</p> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1713 | <h5>Arguments:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1714 | <p>The argument to the '<tt>load</tt>' instruction specifies the memory |
| 1715 | address to load from. The pointer must point to a <a |
Chris Lattner | e53e508 | 2004-06-03 22:57:15 +0000 | [diff] [blame] | 1716 | href="#t_firstclass">first class</a> type. If the <tt>load</tt> is |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1717 | marked as <tt>volatile</tt> then the optimizer is not allowed to modify |
| 1718 | the number or order of execution of this <tt>load</tt> with other |
| 1719 | volatile <tt>load</tt> and <tt><a href="#i_store">store</a></tt> |
| 1720 | instructions. </p> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1721 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1722 | <p>The location of memory pointed to is loaded.</p> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1723 | <h5>Examples:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1724 | <pre> %ptr = <a href="#i_alloca">alloca</a> int <i>; yields {int*}:ptr</i> |
| 1725 | <a |
| 1726 | href="#i_store">store</a> int 3, int* %ptr <i>; yields {void}</i> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1727 | %val = load int* %ptr <i>; yields {int}:val = int 3</i> |
| 1728 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1729 | </div> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1730 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1731 | <div class="doc_subsubsection"> <a name="i_store">'<tt>store</tt>' |
| 1732 | Instruction</a> </div> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1733 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1734 | <pre> store <ty> <value>, <ty>* <pointer> <i>; yields {void}</i> |
Chris Lattner | f065107 | 2003-09-08 18:27:49 +0000 | [diff] [blame] | 1735 | volatile store <ty> <value>, <ty>* <pointer> <i>; yields {void}</i> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1736 | </pre> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1737 | <h5>Overview:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1738 | <p>The '<tt>store</tt>' instruction is used to write to memory.</p> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1739 | <h5>Arguments:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1740 | <p>There are two arguments to the '<tt>store</tt>' instruction: a value |
| 1741 | to store and an address to store it into. The type of the '<tt><pointer></tt>' |
| 1742 | operand must be a pointer to the type of the '<tt><value></tt>' |
| 1743 | operand. If the <tt>store</tt> is marked as <tt>volatile</tt> then the |
| 1744 | optimizer is not allowed to modify the number or order of execution of |
| 1745 | this <tt>store</tt> with other volatile <tt>load</tt> and <tt><a |
| 1746 | href="#i_store">store</a></tt> instructions.</p> |
| 1747 | <h5>Semantics:</h5> |
| 1748 | <p>The contents of memory are updated to contain '<tt><value></tt>' |
| 1749 | at the location specified by the '<tt><pointer></tt>' operand.</p> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1750 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1751 | <pre> %ptr = <a href="#i_alloca">alloca</a> int <i>; yields {int*}:ptr</i> |
| 1752 | <a |
| 1753 | href="#i_store">store</a> int 3, int* %ptr <i>; yields {void}</i> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1754 | %val = load int* %ptr <i>; yields {int}:val = int 3</i> |
| 1755 | </pre> |
Chris Lattner | 2b7d320 | 2002-05-06 03:03:22 +0000 | [diff] [blame] | 1756 | <!-- _______________________________________________________________________ --> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1757 | <div class="doc_subsubsection"> |
| 1758 | <a name="i_getelementptr">'<tt>getelementptr</tt>' Instruction</a> |
| 1759 | </div> |
| 1760 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1761 | <div class="doc_text"> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1762 | <h5>Syntax:</h5> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1763 | <pre> |
| 1764 | <result> = getelementptr <ty>* <ptrval>{, <ty> <idx>}* |
| 1765 | </pre> |
| 1766 | |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1767 | <h5>Overview:</h5> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1768 | |
| 1769 | <p> |
| 1770 | The '<tt>getelementptr</tt>' instruction is used to get the address of a |
| 1771 | subelement of an aggregate data structure.</p> |
| 1772 | |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1773 | <h5>Arguments:</h5> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1774 | |
| 1775 | <p>This instruction takes a list of integer constants that indicate what |
| 1776 | elements of the aggregate object to index to. The actual types of the arguments |
| 1777 | provided depend on the type of the first pointer argument. The |
| 1778 | '<tt>getelementptr</tt>' instruction is used to index down through the type |
| 1779 | levels of a structure. When indexing into a structure, only <tt>uint</tt> |
| 1780 | integer constants are allowed. When indexing into an array or pointer |
| 1781 | <tt>int</tt> and <tt>long</tt> indexes are allowed of any sign.</p> |
| 1782 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1783 | <p>For example, let's consider a C code fragment and how it gets |
| 1784 | compiled to LLVM:</p> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1785 | |
| 1786 | <pre> |
| 1787 | struct RT { |
| 1788 | char A; |
| 1789 | int B[10][20]; |
| 1790 | char C; |
| 1791 | }; |
| 1792 | struct ST { |
| 1793 | int X; |
| 1794 | double Y; |
| 1795 | struct RT Z; |
| 1796 | }; |
| 1797 | |
| 1798 | int *foo(struct ST *s) { |
| 1799 | return &s[1].Z.B[5][13]; |
| 1800 | } |
| 1801 | </pre> |
| 1802 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1803 | <p>The LLVM code generated by the GCC frontend is:</p> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1804 | |
| 1805 | <pre> |
| 1806 | %RT = type { sbyte, [10 x [20 x int]], sbyte } |
| 1807 | %ST = type { int, double, %RT } |
| 1808 | |
Brian Gaeke | 7283e7c | 2004-07-02 21:08:14 +0000 | [diff] [blame] | 1809 | implementation |
| 1810 | |
| 1811 | int* %foo(%ST* %s) { |
| 1812 | entry: |
| 1813 | %reg = getelementptr %ST* %s, int 1, uint 2, uint 1, int 5, int 13 |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1814 | ret int* %reg |
| 1815 | } |
| 1816 | </pre> |
| 1817 | |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1818 | <h5>Semantics:</h5> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1819 | |
| 1820 | <p>The index types specified for the '<tt>getelementptr</tt>' instruction depend |
Chris Lattner | e53e508 | 2004-06-03 22:57:15 +0000 | [diff] [blame] | 1821 | on the pointer type that is being index into. <a href="#t_pointer">Pointer</a> |
| 1822 | and <a href="#t_array">array</a> types require <tt>uint</tt>, <tt>int</tt>, |
| 1823 | <tt>ulong</tt>, or <tt>long</tt> values, and <a href="#t_struct">structure</a> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1824 | types require <tt>uint</tt> <b>constants</b>.</p> |
| 1825 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1826 | <p>In the example above, the first index is indexing into the '<tt>%ST*</tt>' |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1827 | type, which is a pointer, yielding a '<tt>%ST</tt>' = '<tt>{ int, double, %RT |
| 1828 | }</tt>' type, a structure. The second index indexes into the third element of |
| 1829 | the structure, yielding a '<tt>%RT</tt>' = '<tt>{ sbyte, [10 x [20 x int]], |
| 1830 | sbyte }</tt>' type, another structure. The third index indexes into the second |
| 1831 | element of the structure, yielding a '<tt>[10 x [20 x int]]</tt>' type, an |
| 1832 | array. The two dimensions of the array are subscripted into, yielding an |
| 1833 | '<tt>int</tt>' type. The '<tt>getelementptr</tt>' instruction return a pointer |
| 1834 | to this element, thus computing a value of '<tt>int*</tt>' type.</p> |
| 1835 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1836 | <p>Note that it is perfectly legal to index partially through a |
| 1837 | structure, returning a pointer to an inner element. Because of this, |
| 1838 | the LLVM code for the given testcase is equivalent to:</p> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1839 | |
| 1840 | <pre> |
Chris Lattner | d4f6b17 | 2005-03-07 22:13:59 +0000 | [diff] [blame] | 1841 | int* %foo(%ST* %s) { |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1842 | %t1 = getelementptr %ST* %s, int 1 <i>; yields %ST*:%t1</i> |
| 1843 | %t2 = getelementptr %ST* %t1, int 0, uint 2 <i>; yields %RT*:%t2</i> |
| 1844 | %t3 = getelementptr %RT* %t2, int 0, uint 1 <i>; yields [10 x [20 x int]]*:%t3</i> |
| 1845 | %t4 = getelementptr [10 x [20 x int]]* %t3, int 0, int 5 <i>; yields [20 x int]*:%t4</i> |
| 1846 | %t5 = getelementptr [20 x int]* %t4, int 0, int 13 <i>; yields int*:%t5</i> |
| 1847 | ret int* %t5 |
| 1848 | } |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1849 | </pre> |
Chris Lattner | 7faa883 | 2002-04-14 06:13:44 +0000 | [diff] [blame] | 1850 | <h5>Example:</h5> |
Chris Lattner | f74d5c7 | 2004-04-05 01:30:49 +0000 | [diff] [blame] | 1851 | <pre> |
| 1852 | <i>; yields [12 x ubyte]*:aptr</i> |
| 1853 | %aptr = getelementptr {int, [12 x ubyte]}* %sptr, long 0, uint 1 |
| 1854 | </pre> |
| 1855 | |
| 1856 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1857 | <!-- ======================================================================= --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1858 | <div class="doc_subsection"> <a name="otherops">Other Operations</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1859 | <div class="doc_text"> |
John Criswell | 4457dc9 | 2004-04-09 16:48:45 +0000 | [diff] [blame] | 1860 | <p>The instructions in this category are the "miscellaneous" |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1861 | instructions, which defy better classification.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1862 | </div> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1863 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1864 | <div class="doc_subsubsection"> <a name="i_phi">'<tt>phi</tt>' |
| 1865 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1866 | <div class="doc_text"> |
Chris Lattner | 33ba0d9 | 2001-07-09 00:26:23 +0000 | [diff] [blame] | 1867 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1868 | <pre> <result> = phi <ty> [ <val0>, <label0>], ...<br></pre> |
Chris Lattner | 33ba0d9 | 2001-07-09 00:26:23 +0000 | [diff] [blame] | 1869 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1870 | <p>The '<tt>phi</tt>' instruction is used to implement the φ node in |
| 1871 | the SSA graph representing the function.</p> |
Chris Lattner | 33ba0d9 | 2001-07-09 00:26:23 +0000 | [diff] [blame] | 1872 | <h5>Arguments:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1873 | <p>The type of the incoming values are specified with the first type |
| 1874 | field. After this, the '<tt>phi</tt>' instruction takes a list of pairs |
| 1875 | as arguments, with one pair for each predecessor basic block of the |
| 1876 | current block. Only values of <a href="#t_firstclass">first class</a> |
| 1877 | type may be used as the value arguments to the PHI node. Only labels |
| 1878 | may be used as the label arguments.</p> |
| 1879 | <p>There must be no non-phi instructions between the start of a basic |
| 1880 | block and the PHI instructions: i.e. PHI instructions must be first in |
| 1881 | a basic block.</p> |
Chris Lattner | 33ba0d9 | 2001-07-09 00:26:23 +0000 | [diff] [blame] | 1882 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1883 | <p>At runtime, the '<tt>phi</tt>' instruction logically takes on the |
| 1884 | value specified by the parameter, depending on which basic block we |
| 1885 | came from in the last <a href="#terminators">terminator</a> instruction.</p> |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1886 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1887 | <pre>Loop: ; Infinite loop that counts from 0 on up...<br> %indvar = phi uint [ 0, %LoopHeader ], [ %nextindvar, %Loop ]<br> %nextindvar = add uint %indvar, 1<br> br label %Loop<br></pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1888 | </div> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1889 | |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1890 | <!-- _______________________________________________________________________ --> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1891 | <div class="doc_subsubsection"> |
| 1892 | <a name="i_cast">'<tt>cast .. to</tt>' Instruction</a> |
| 1893 | </div> |
| 1894 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1895 | <div class="doc_text"> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1896 | |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1897 | <h5>Syntax:</h5> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1898 | |
| 1899 | <pre> |
| 1900 | <result> = cast <ty> <value> to <ty2> <i>; yields ty2</i> |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1901 | </pre> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1902 | |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1903 | <h5>Overview:</h5> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1904 | |
| 1905 | <p> |
| 1906 | The '<tt>cast</tt>' instruction is used as the primitive means to convert |
| 1907 | integers to floating point, change data type sizes, and break type safety (by |
| 1908 | casting pointers). |
| 1909 | </p> |
| 1910 | |
| 1911 | |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1912 | <h5>Arguments:</h5> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1913 | |
| 1914 | <p> |
| 1915 | The '<tt>cast</tt>' instruction takes a value to cast, which must be a first |
| 1916 | class value, and a type to cast it to, which must also be a <a |
| 1917 | href="#t_firstclass">first class</a> type. |
| 1918 | </p> |
| 1919 | |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 1920 | <h5>Semantics:</h5> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1921 | |
| 1922 | <p> |
| 1923 | This instruction follows the C rules for explicit casts when determining how the |
| 1924 | data being cast must change to fit in its new container. |
| 1925 | </p> |
| 1926 | |
| 1927 | <p> |
| 1928 | When casting to bool, any value that would be considered true in the context of |
| 1929 | a C '<tt>if</tt>' condition is converted to the boolean '<tt>true</tt>' values, |
| 1930 | all else are '<tt>false</tt>'. |
| 1931 | </p> |
| 1932 | |
| 1933 | <p> |
| 1934 | When extending an integral value from a type of one signness to another (for |
| 1935 | example '<tt>sbyte</tt>' to '<tt>ulong</tt>'), the value is sign-extended if the |
| 1936 | <b>source</b> value is signed, and zero-extended if the source value is |
| 1937 | unsigned. <tt>bool</tt> values are always zero extended into either zero or |
| 1938 | one. |
| 1939 | </p> |
| 1940 | |
Chris Lattner | 33ba0d9 | 2001-07-09 00:26:23 +0000 | [diff] [blame] | 1941 | <h5>Example:</h5> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1942 | |
| 1943 | <pre> |
| 1944 | %X = cast int 257 to ubyte <i>; yields ubyte:1</i> |
Chris Lattner | 7bae395 | 2002-06-25 18:03:17 +0000 | [diff] [blame] | 1945 | %Y = cast int 123 to bool <i>; yields bool:true</i> |
Chris Lattner | 33ba0d9 | 2001-07-09 00:26:23 +0000 | [diff] [blame] | 1946 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1947 | </div> |
Chris Lattner | cc37aae | 2004-03-12 05:50:16 +0000 | [diff] [blame] | 1948 | |
| 1949 | <!-- _______________________________________________________________________ --> |
| 1950 | <div class="doc_subsubsection"> |
| 1951 | <a name="i_select">'<tt>select</tt>' Instruction</a> |
| 1952 | </div> |
| 1953 | |
| 1954 | <div class="doc_text"> |
| 1955 | |
| 1956 | <h5>Syntax:</h5> |
| 1957 | |
| 1958 | <pre> |
| 1959 | <result> = select bool <cond>, <ty> <val1>, <ty> <val2> <i>; yields ty</i> |
| 1960 | </pre> |
| 1961 | |
| 1962 | <h5>Overview:</h5> |
| 1963 | |
| 1964 | <p> |
| 1965 | The '<tt>select</tt>' instruction is used to choose one value based on a |
| 1966 | condition, without branching. |
| 1967 | </p> |
| 1968 | |
| 1969 | |
| 1970 | <h5>Arguments:</h5> |
| 1971 | |
| 1972 | <p> |
| 1973 | The '<tt>select</tt>' instruction requires a boolean value indicating the condition, and two values of the same <a href="#t_firstclass">first class</a> type. |
| 1974 | </p> |
| 1975 | |
| 1976 | <h5>Semantics:</h5> |
| 1977 | |
| 1978 | <p> |
| 1979 | If the boolean condition evaluates to true, the instruction returns the first |
| 1980 | value argument, otherwise it returns the second value argument. |
| 1981 | </p> |
| 1982 | |
| 1983 | <h5>Example:</h5> |
| 1984 | |
| 1985 | <pre> |
| 1986 | %X = select bool true, ubyte 17, ubyte 42 <i>; yields ubyte:17</i> |
| 1987 | </pre> |
| 1988 | </div> |
| 1989 | |
| 1990 | |
| 1991 | |
| 1992 | |
| 1993 | |
Chris Lattner | 33ba0d9 | 2001-07-09 00:26:23 +0000 | [diff] [blame] | 1994 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1995 | <div class="doc_subsubsection"> <a name="i_call">'<tt>call</tt>' |
| 1996 | Instruction</a> </div> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 1997 | <div class="doc_text"> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1998 | <h5>Syntax:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 1999 | <pre> <result> = call <ty>* <fnptrval>(<param list>)<br></pre> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2000 | <h5>Overview:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2001 | <p>The '<tt>call</tt>' instruction represents a simple function call.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2002 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2003 | <p>This instruction requires several arguments:</p> |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 2004 | <ol> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2005 | <li> |
| 2006 | <p>'<tt>ty</tt>': shall be the signature of the pointer to function |
| 2007 | value being invoked. The argument types must match the types implied |
| 2008 | by this signature.</p> |
| 2009 | </li> |
| 2010 | <li> |
| 2011 | <p>'<tt>fnptrval</tt>': An LLVM value containing a pointer to a |
| 2012 | function to be invoked. In most cases, this is a direct function |
| 2013 | invocation, but indirect <tt>call</tt>s are just as possible, |
| 2014 | calling an arbitrary pointer to function values.</p> |
| 2015 | </li> |
| 2016 | <li> |
| 2017 | <p>'<tt>function args</tt>': argument list whose types match the |
| 2018 | function signature argument types. If the function signature |
| 2019 | indicates the function accepts a variable number of arguments, the |
| 2020 | extra arguments can be specified.</p> |
| 2021 | </li> |
Chris Lattner | 6536cfe | 2002-05-06 22:08:29 +0000 | [diff] [blame] | 2022 | </ol> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2023 | <h5>Semantics:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2024 | <p>The '<tt>call</tt>' instruction is used to cause control flow to |
| 2025 | transfer to a specified function, with its incoming arguments bound to |
| 2026 | the specified values. Upon a '<tt><a href="#i_ret">ret</a></tt>' |
| 2027 | instruction in the called function, control flow continues with the |
| 2028 | instruction after the function call, and the return value of the |
| 2029 | function is bound to the result argument. This is a simpler case of |
| 2030 | the <a href="#i_invoke">invoke</a> instruction.</p> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2031 | <h5>Example:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2032 | <pre> %retval = call int %test(int %argc)<br> call int(sbyte*, ...) *%printf(sbyte* %msg, int 12, sbyte 42);<br></pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2033 | </div> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2034 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2035 | <!-- _______________________________________________________________________ --> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2036 | <div class="doc_subsubsection"> |
| 2037 | <a name="i_vanext">'<tt>vanext</tt>' Instruction</a> |
| 2038 | </div> |
| 2039 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2040 | <div class="doc_text"> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2041 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2042 | <h5>Syntax:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2043 | |
| 2044 | <pre> |
| 2045 | <resultarglist> = vanext <va_list> <arglist>, <argty> |
| 2046 | </pre> |
| 2047 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2048 | <h5>Overview:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2049 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2050 | <p>The '<tt>vanext</tt>' instruction is used to access arguments passed |
| 2051 | through the "variable argument" area of a function call. It is used to |
| 2052 | implement the <tt>va_arg</tt> macro in C.</p> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2053 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2054 | <h5>Arguments:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2055 | |
| 2056 | <p>This instruction takes a <tt>va_list</tt> value and the type of the |
| 2057 | argument. It returns another <tt>va_list</tt>. The actual type of |
| 2058 | <tt>va_list</tt> may be defined differently for different targets. Most targets |
| 2059 | use a <tt>va_list</tt> type of <tt>sbyte*</tt> or some other pointer type.</p> |
| 2060 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2061 | <h5>Semantics:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2062 | |
| 2063 | <p>The '<tt>vanext</tt>' instruction advances the specified <tt>va_list</tt> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2064 | past an argument of the specified type. In conjunction with the <a |
| 2065 | href="#i_vaarg"><tt>vaarg</tt></a> instruction, it is used to implement |
| 2066 | the <tt>va_arg</tt> macro available in C. For more information, see |
| 2067 | the variable argument handling <a href="#int_varargs">Intrinsic |
| 2068 | Functions</a>.</p> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2069 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2070 | <p>It is legal for this instruction to be called in a function which |
| 2071 | does not take a variable number of arguments, for example, the <tt>vfprintf</tt> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2072 | function.</p> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2073 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2074 | <p><tt>vanext</tt> is an LLVM instruction instead of an <a |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2075 | href="#intrinsics">intrinsic function</a> because it takes a type as an |
| 2076 | argument. The type refers to the current argument in the <tt>va_list</tt>, it |
| 2077 | tells the compiler how far on the stack it needs to advance to find the next |
| 2078 | argument</p> |
| 2079 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2080 | <h5>Example:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2081 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2082 | <p>See the <a href="#int_varargs">variable argument processing</a> |
| 2083 | section.</p> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2084 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2085 | </div> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2086 | |
Chris Lattner | 8d1a81d | 2003-10-18 05:51:36 +0000 | [diff] [blame] | 2087 | <!-- _______________________________________________________________________ --> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2088 | <div class="doc_subsubsection"> |
| 2089 | <a name="i_vaarg">'<tt>vaarg</tt>' Instruction</a> |
| 2090 | </div> |
| 2091 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2092 | <div class="doc_text"> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2093 | |
Chris Lattner | 8d1a81d | 2003-10-18 05:51:36 +0000 | [diff] [blame] | 2094 | <h5>Syntax:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2095 | |
| 2096 | <pre> |
| 2097 | <resultval> = vaarg <va_list> <arglist>, <argty> |
| 2098 | </pre> |
| 2099 | |
Chris Lattner | 8d1a81d | 2003-10-18 05:51:36 +0000 | [diff] [blame] | 2100 | <h5>Overview:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2101 | |
| 2102 | <p>The '<tt>vaarg</tt>' instruction is used to access arguments passed through |
| 2103 | the "variable argument" area of a function call. It is used to implement the |
| 2104 | <tt>va_arg</tt> macro in C.</p> |
| 2105 | |
Chris Lattner | 8d1a81d | 2003-10-18 05:51:36 +0000 | [diff] [blame] | 2106 | <h5>Arguments:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2107 | |
| 2108 | <p>This instruction takes a <tt>va_list</tt> value and the type of the |
| 2109 | argument. It returns a value of the specified argument type. Again, the actual |
| 2110 | type of <tt>va_list</tt> is target specific.</p> |
| 2111 | |
Chris Lattner | 8d1a81d | 2003-10-18 05:51:36 +0000 | [diff] [blame] | 2112 | <h5>Semantics:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2113 | |
| 2114 | <p>The '<tt>vaarg</tt>' instruction loads an argument of the specified type from |
| 2115 | the specified <tt>va_list</tt>. In conjunction with the <a |
| 2116 | href="#i_vanext"><tt>vanext</tt></a> instruction, it is used to implement the |
| 2117 | <tt>va_arg</tt> macro available in C. For more information, see the variable |
| 2118 | argument handling <a href="#int_varargs">Intrinsic Functions</a>.</p> |
| 2119 | |
| 2120 | <p>It is legal for this instruction to be called in a function which does not |
| 2121 | take a variable number of arguments, for example, the <tt>vfprintf</tt> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2122 | function.</p> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2123 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2124 | <p><tt>vaarg</tt> is an LLVM instruction instead of an <a |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2125 | href="#intrinsics">intrinsic function</a> because it takes an type as an |
| 2126 | argument.</p> |
| 2127 | |
Chris Lattner | 8d1a81d | 2003-10-18 05:51:36 +0000 | [diff] [blame] | 2128 | <h5>Example:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2129 | |
| 2130 | <p>See the <a href="#int_varargs">variable argument processing</a> section.</p> |
| 2131 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2132 | </div> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2133 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2134 | <!-- *********************************************************************** --> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2135 | <div class="doc_section"> <a name="intrinsics">Intrinsic Functions</a> </div> |
| 2136 | <!-- *********************************************************************** --> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2137 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2138 | <div class="doc_text"> |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 2139 | |
| 2140 | <p>LLVM supports the notion of an "intrinsic function". These functions have |
| 2141 | well known names and semantics, and are required to follow certain |
| 2142 | restrictions. Overall, these instructions represent an extension mechanism for |
| 2143 | the LLVM language that does not require changing all of the transformations in |
| 2144 | LLVM to add to the language (or the bytecode reader/writer, the parser, |
| 2145 | etc...).</p> |
| 2146 | |
| 2147 | <p>Intrinsic function names must all start with an "<tt>llvm.</tt>" prefix, this |
| 2148 | prefix is reserved in LLVM for intrinsic names, thus functions may not be named |
| 2149 | this. Intrinsic functions must always be external functions: you cannot define |
| 2150 | the body of intrinsic functions. Intrinsic functions may only be used in call |
| 2151 | or invoke instructions: it is illegal to take the address of an intrinsic |
| 2152 | function. Additionally, because intrinsic functions are part of the LLVM |
| 2153 | language, it is required that they all be documented here if any are added.</p> |
| 2154 | |
| 2155 | |
| 2156 | <p> |
| 2157 | Adding an intrinsic to LLVM is straight-forward if it is possible to express the |
| 2158 | concept in LLVM directly (ie, code generator support is not _required_). To do |
| 2159 | this, extend the default implementation of the IntrinsicLowering class to handle |
| 2160 | the intrinsic. Code generators use this class to lower intrinsics they do not |
| 2161 | understand to raw LLVM instructions that they do. |
| 2162 | </p> |
| 2163 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2164 | </div> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2165 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2166 | <!-- ======================================================================= --> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2167 | <div class="doc_subsection"> |
| 2168 | <a name="int_varargs">Variable Argument Handling Intrinsics</a> |
| 2169 | </div> |
| 2170 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2171 | <div class="doc_text"> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2172 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2173 | <p>Variable argument support is defined in LLVM with the <a |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2174 | href="#i_vanext"><tt>vanext</tt></a> instruction and these three |
| 2175 | intrinsic functions. These functions are related to the similarly |
| 2176 | named macros defined in the <tt><stdarg.h></tt> header file.</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2177 | |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2178 | <p>All of these functions operate on arguments that use a |
| 2179 | target-specific value type "<tt>va_list</tt>". The LLVM assembly |
| 2180 | language reference manual does not define what this type is, so all |
| 2181 | transformations should be prepared to handle intrinsics with any type |
| 2182 | used.</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2183 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2184 | <p>This example shows how the <a href="#i_vanext"><tt>vanext</tt></a> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2185 | instruction and the variable argument handling intrinsic functions are |
| 2186 | used.</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2187 | |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 2188 | <pre> |
| 2189 | int %test(int %X, ...) { |
| 2190 | ; Initialize variable argument processing |
| 2191 | %ap = call sbyte* %<a href="#i_va_start">llvm.va_start</a>() |
| 2192 | |
| 2193 | ; Read a single integer argument |
| 2194 | %tmp = vaarg sbyte* %ap, int |
| 2195 | |
| 2196 | ; Advance to the next argument |
| 2197 | %ap2 = vanext sbyte* %ap, int |
| 2198 | |
| 2199 | ; Demonstrate usage of llvm.va_copy and llvm.va_end |
| 2200 | %aq = call sbyte* %<a href="#i_va_copy">llvm.va_copy</a>(sbyte* %ap2) |
| 2201 | call void %<a href="#i_va_end">llvm.va_end</a>(sbyte* %aq) |
| 2202 | |
| 2203 | ; Stop processing of arguments. |
| 2204 | call void %<a href="#i_va_end">llvm.va_end</a>(sbyte* %ap2) |
| 2205 | ret int %tmp |
| 2206 | } |
| 2207 | </pre> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2208 | </div> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2209 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2210 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2211 | <div class="doc_subsubsection"> |
| 2212 | <a name="i_va_start">'<tt>llvm.va_start</tt>' Intrinsic</a> |
| 2213 | </div> |
| 2214 | |
| 2215 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2216 | <div class="doc_text"> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2217 | <h5>Syntax:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2218 | <pre> call <va_list> ()* %llvm.va_start()<br></pre> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2219 | <h5>Overview:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2220 | <p>The '<tt>llvm.va_start</tt>' intrinsic returns a new <tt><arglist></tt> |
| 2221 | for subsequent use by the variable argument intrinsics.</p> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2222 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2223 | <p>The '<tt>llvm.va_start</tt>' intrinsic works just like the <tt>va_start</tt> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2224 | macro available in C. In a target-dependent way, it initializes and |
| 2225 | returns a <tt>va_list</tt> element, so that the next <tt>vaarg</tt> |
| 2226 | will produce the first variable argument passed to the function. Unlike |
| 2227 | the C <tt>va_start</tt> macro, this intrinsic does not need to know the |
| 2228 | last argument of the function, the compiler can figure that out.</p> |
| 2229 | <p>Note that this intrinsic function is only legal to be called from |
| 2230 | within the body of a variable argument function.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2231 | </div> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2232 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2233 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2234 | <div class="doc_subsubsection"> |
| 2235 | <a name="i_va_end">'<tt>llvm.va_end</tt>' Intrinsic</a> |
| 2236 | </div> |
| 2237 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2238 | <div class="doc_text"> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2239 | <h5>Syntax:</h5> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2240 | <pre> call void (<va_list>)* %llvm.va_end(<va_list> <arglist>)<br></pre> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2241 | <h5>Overview:</h5> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2242 | <p>The '<tt>llvm.va_end</tt>' intrinsic destroys <tt><arglist></tt> |
| 2243 | which has been initialized previously with <tt><a href="#i_va_start">llvm.va_start</a></tt> |
| 2244 | or <tt><a href="#i_va_copy">llvm.va_copy</a></tt>.</p> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2245 | <h5>Arguments:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2246 | <p>The argument is a <tt>va_list</tt> to destroy.</p> |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2247 | <h5>Semantics:</h5> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2248 | <p>The '<tt>llvm.va_end</tt>' intrinsic works just like the <tt>va_end</tt> |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 2249 | macro available in C. In a target-dependent way, it destroys the <tt>va_list</tt>. |
| 2250 | Calls to <a href="#i_va_start"><tt>llvm.va_start</tt></a> and <a |
| 2251 | href="#i_va_copy"><tt>llvm.va_copy</tt></a> must be matched exactly |
| 2252 | with calls to <tt>llvm.va_end</tt>.</p> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2253 | </div> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2254 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2255 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2256 | <div class="doc_subsubsection"> |
| 2257 | <a name="i_va_copy">'<tt>llvm.va_copy</tt>' Intrinsic</a> |
| 2258 | </div> |
| 2259 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2260 | <div class="doc_text"> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2261 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2262 | <h5>Syntax:</h5> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2263 | |
| 2264 | <pre> |
Chris Lattner | e19d7a7 | 2004-09-27 21:51:25 +0000 | [diff] [blame] | 2265 | call <va_list> (<va_list>)* %llvm.va_copy(<va_list> <destarglist>) |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2266 | </pre> |
| 2267 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2268 | <h5>Overview:</h5> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2269 | |
| 2270 | <p>The '<tt>llvm.va_copy</tt>' intrinsic copies the current argument position |
| 2271 | from the source argument list to the destination argument list.</p> |
| 2272 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2273 | <h5>Arguments:</h5> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2274 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2275 | <p>The argument is the <tt>va_list</tt> to copy.</p> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2276 | |
Chris Lattner | d9ad5b3 | 2003-05-08 04:57:36 +0000 | [diff] [blame] | 2277 | <h5>Semantics:</h5> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2278 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2279 | <p>The '<tt>llvm.va_copy</tt>' intrinsic works just like the <tt>va_copy</tt> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2280 | macro available in C. In a target-dependent way, it copies the source |
| 2281 | <tt>va_list</tt> element into the returned list. This intrinsic is necessary |
Chris Lattner | fcd3725 | 2004-06-21 22:52:48 +0000 | [diff] [blame] | 2282 | because the <tt><a href="#i_va_start">llvm.va_start</a></tt> intrinsic may be |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2283 | arbitrarily complex and require memory allocation, for example.</p> |
| 2284 | |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 2285 | </div> |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2286 | |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 2287 | <!-- ======================================================================= --> |
| 2288 | <div class="doc_subsection"> |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2289 | <a name="int_gc">Accurate Garbage Collection Intrinsics</a> |
| 2290 | </div> |
| 2291 | |
| 2292 | <div class="doc_text"> |
| 2293 | |
| 2294 | <p> |
| 2295 | LLVM support for <a href="GarbageCollection.html">Accurate Garbage |
| 2296 | Collection</a> requires the implementation and generation of these intrinsics. |
| 2297 | These intrinsics allow identification of <a href="#i_gcroot">GC roots on the |
| 2298 | stack</a>, as well as garbage collector implementations that require <a |
| 2299 | href="#i_gcread">read</a> and <a href="#i_gcwrite">write</a> barriers. |
| 2300 | Front-ends for type-safe garbage collected languages should generate these |
| 2301 | intrinsics to make use of the LLVM garbage collectors. For more details, see <a |
| 2302 | href="GarbageCollection.html">Accurate Garbage Collection with LLVM</a>. |
| 2303 | </p> |
| 2304 | </div> |
| 2305 | |
| 2306 | <!-- _______________________________________________________________________ --> |
| 2307 | <div class="doc_subsubsection"> |
| 2308 | <a name="i_gcroot">'<tt>llvm.gcroot</tt>' Intrinsic</a> |
| 2309 | </div> |
| 2310 | |
| 2311 | <div class="doc_text"> |
| 2312 | |
| 2313 | <h5>Syntax:</h5> |
| 2314 | |
| 2315 | <pre> |
| 2316 | call void (<ty>**, <ty2>*)* %llvm.gcroot(<ty>** %ptrloc, <ty2>* %metadata) |
| 2317 | </pre> |
| 2318 | |
| 2319 | <h5>Overview:</h5> |
| 2320 | |
John Criswell | 9e2485c | 2004-12-10 15:51:16 +0000 | [diff] [blame] | 2321 | <p>The '<tt>llvm.gcroot</tt>' intrinsic declares the existence of a GC root to |
Chris Lattner | d792391 | 2004-05-23 21:06:01 +0000 | [diff] [blame] | 2322 | the code generator, and allows some metadata to be associated with it.</p> |
| 2323 | |
| 2324 | <h5>Arguments:</h5> |
| 2325 | |
| 2326 | <p>The first argument specifies the address of a stack object that contains the |
| 2327 | root pointer. The second pointer (which must be either a constant or a global |
| 2328 | value address) contains the meta-data to be associated with the root.</p> |
| 2329 | |
| 2330 | <h5>Semantics:</h5> |
| 2331 | |
| 2332 | <p>At runtime, a call to this intrinsics stores a null pointer into the "ptrloc" |
| 2333 | location. At compile-time, the code generator generates information to allow |
| 2334 | the runtime to find the pointer at GC safe points. |
| 2335 | </p> |
| 2336 | |
| 2337 | </div> |
| 2338 | |
| 2339 | |
| 2340 | <!-- _______________________________________________________________________ --> |
| 2341 | <div class="doc_subsubsection"> |
| 2342 | <a name="i_gcread">'<tt>llvm.gcread</tt>' Intrinsic</a> |
| 2343 | </div> |
| 2344 | |
| 2345 | <div class="doc_text"> |
| 2346 | |
| 2347 | <h5>Syntax:</h5> |
| 2348 | |
| 2349 | <pre> |
| 2350 | call sbyte* (sbyte**)* %llvm.gcread(sbyte** %Ptr) |
| 2351 | </pre> |
| 2352 | |
| 2353 | <h5>Overview:</h5> |
| 2354 | |
| 2355 | <p>The '<tt>llvm.gcread</tt>' intrinsic identifies reads of references from heap |
| 2356 | locations, allowing garbage collector implementations that require read |
| 2357 | barriers.</p> |
| 2358 | |
| 2359 | <h5>Arguments:</h5> |
| 2360 | |
| 2361 | <p>The argument is the address to read from, which should be an address |
| 2362 | allocated from the garbage collector.</p> |
| 2363 | |
| 2364 | <h5>Semantics:</h5> |
| 2365 | |
| 2366 | <p>The '<tt>llvm.gcread</tt>' intrinsic has the same semantics as a load |
| 2367 | instruction, but may be replaced with substantially more complex code by the |
| 2368 | garbage collector runtime, as needed.</p> |
| 2369 | |
| 2370 | </div> |
| 2371 | |
| 2372 | |
| 2373 | <!-- _______________________________________________________________________ --> |
| 2374 | <div class="doc_subsubsection"> |
| 2375 | <a name="i_gcwrite">'<tt>llvm.gcwrite</tt>' Intrinsic</a> |
| 2376 | </div> |
| 2377 | |
| 2378 | <div class="doc_text"> |
| 2379 | |
| 2380 | <h5>Syntax:</h5> |
| 2381 | |
| 2382 | <pre> |
| 2383 | call void (sbyte*, sbyte**)* %llvm.gcwrite(sbyte* %P1, sbyte** %P2) |
| 2384 | </pre> |
| 2385 | |
| 2386 | <h5>Overview:</h5> |
| 2387 | |
| 2388 | <p>The '<tt>llvm.gcwrite</tt>' intrinsic identifies writes of references to heap |
| 2389 | locations, allowing garbage collector implementations that require write |
| 2390 | barriers (such as generational or reference counting collectors).</p> |
| 2391 | |
| 2392 | <h5>Arguments:</h5> |
| 2393 | |
| 2394 | <p>The first argument is the reference to store, and the second is the heap |
| 2395 | location to store to.</p> |
| 2396 | |
| 2397 | <h5>Semantics:</h5> |
| 2398 | |
| 2399 | <p>The '<tt>llvm.gcwrite</tt>' intrinsic has the same semantics as a store |
| 2400 | instruction, but may be replaced with substantially more complex code by the |
| 2401 | garbage collector runtime, as needed.</p> |
| 2402 | |
| 2403 | </div> |
| 2404 | |
| 2405 | |
| 2406 | |
| 2407 | <!-- ======================================================================= --> |
| 2408 | <div class="doc_subsection"> |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 2409 | <a name="int_codegen">Code Generator Intrinsics</a> |
| 2410 | </div> |
| 2411 | |
| 2412 | <div class="doc_text"> |
| 2413 | <p> |
| 2414 | These intrinsics are provided by LLVM to expose special features that may only |
| 2415 | be implemented with code generator support. |
| 2416 | </p> |
| 2417 | |
| 2418 | </div> |
| 2419 | |
| 2420 | <!-- _______________________________________________________________________ --> |
| 2421 | <div class="doc_subsubsection"> |
| 2422 | <a name="i_returnaddress">'<tt>llvm.returnaddress</tt>' Intrinsic</a> |
| 2423 | </div> |
| 2424 | |
| 2425 | <div class="doc_text"> |
| 2426 | |
| 2427 | <h5>Syntax:</h5> |
| 2428 | <pre> |
| 2429 | call void* ()* %llvm.returnaddress(uint <level>) |
| 2430 | </pre> |
| 2431 | |
| 2432 | <h5>Overview:</h5> |
| 2433 | |
| 2434 | <p> |
| 2435 | The '<tt>llvm.returnaddress</tt>' intrinsic returns a target-specific value |
| 2436 | indicating the return address of the current function or one of its callers. |
| 2437 | </p> |
| 2438 | |
| 2439 | <h5>Arguments:</h5> |
| 2440 | |
| 2441 | <p> |
| 2442 | The argument to this intrinsic indicates which function to return the address |
| 2443 | for. Zero indicates the calling function, one indicates its caller, etc. The |
| 2444 | argument is <b>required</b> to be a constant integer value. |
| 2445 | </p> |
| 2446 | |
| 2447 | <h5>Semantics:</h5> |
| 2448 | |
| 2449 | <p> |
| 2450 | The '<tt>llvm.returnaddress</tt>' intrinsic either returns a pointer indicating |
| 2451 | the return address of the specified call frame, or zero if it cannot be |
| 2452 | identified. The value returned by this intrinsic is likely to be incorrect or 0 |
| 2453 | for arguments other than zero, so it should only be used for debugging purposes. |
| 2454 | </p> |
| 2455 | |
| 2456 | <p> |
| 2457 | Note that calling this intrinsic does not prevent function inlining or other |
Chris Lattner | b40bb38 | 2005-03-07 20:30:51 +0000 | [diff] [blame] | 2458 | aggressive transformations, so the value returned may not be that of the obvious |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 2459 | source-language caller. |
| 2460 | </p> |
| 2461 | </div> |
| 2462 | |
| 2463 | |
| 2464 | <!-- _______________________________________________________________________ --> |
| 2465 | <div class="doc_subsubsection"> |
| 2466 | <a name="i_frameaddress">'<tt>llvm.frameaddress</tt>' Intrinsic</a> |
| 2467 | </div> |
| 2468 | |
| 2469 | <div class="doc_text"> |
| 2470 | |
| 2471 | <h5>Syntax:</h5> |
| 2472 | <pre> |
| 2473 | call void* ()* %llvm.frameaddress(uint <level>) |
| 2474 | </pre> |
| 2475 | |
| 2476 | <h5>Overview:</h5> |
| 2477 | |
| 2478 | <p> |
| 2479 | The '<tt>llvm.frameaddress</tt>' intrinsic returns the target-specific frame |
| 2480 | pointer value for the specified stack frame. |
| 2481 | </p> |
| 2482 | |
| 2483 | <h5>Arguments:</h5> |
| 2484 | |
| 2485 | <p> |
| 2486 | The argument to this intrinsic indicates which function to return the frame |
| 2487 | pointer for. Zero indicates the calling function, one indicates its caller, |
| 2488 | etc. The argument is <b>required</b> to be a constant integer value. |
| 2489 | </p> |
| 2490 | |
| 2491 | <h5>Semantics:</h5> |
| 2492 | |
| 2493 | <p> |
| 2494 | The '<tt>llvm.frameaddress</tt>' intrinsic either returns a pointer indicating |
| 2495 | the frame address of the specified call frame, or zero if it cannot be |
| 2496 | identified. The value returned by this intrinsic is likely to be incorrect or 0 |
| 2497 | for arguments other than zero, so it should only be used for debugging purposes. |
| 2498 | </p> |
| 2499 | |
| 2500 | <p> |
| 2501 | Note that calling this intrinsic does not prevent function inlining or other |
Chris Lattner | b40bb38 | 2005-03-07 20:30:51 +0000 | [diff] [blame] | 2502 | aggressive transformations, so the value returned may not be that of the obvious |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 2503 | source-language caller. |
| 2504 | </p> |
| 2505 | </div> |
| 2506 | |
Chris Lattner | 9a9d7ac | 2005-02-28 19:24:19 +0000 | [diff] [blame] | 2507 | <!-- _______________________________________________________________________ --> |
| 2508 | <div class="doc_subsubsection"> |
| 2509 | <a name="i_prefetch">'<tt>llvm.prefetch</tt>' Intrinsic</a> |
| 2510 | </div> |
| 2511 | |
| 2512 | <div class="doc_text"> |
| 2513 | |
| 2514 | <h5>Syntax:</h5> |
| 2515 | <pre> |
| 2516 | call void (sbyte *, uint, uint)* %llvm.prefetch(sbyte * <address>, |
| 2517 | uint <rw>, |
| 2518 | uint <locality>) |
| 2519 | </pre> |
| 2520 | |
| 2521 | <h5>Overview:</h5> |
| 2522 | |
| 2523 | |
| 2524 | <p> |
| 2525 | The '<tt>llvm.prefetch</tt>' intrinsic is a hint to the code generator to insert |
| 2526 | a prefetch instruction if supported, otherwise it is a noop. Prefetches have no |
Chris Lattner | 2a61536 | 2005-02-28 19:47:14 +0000 | [diff] [blame] | 2527 | effect on the behavior of the program, but can change its performance |
| 2528 | characteristics. |
Chris Lattner | 9a9d7ac | 2005-02-28 19:24:19 +0000 | [diff] [blame] | 2529 | </p> |
| 2530 | |
| 2531 | <h5>Arguments:</h5> |
| 2532 | |
| 2533 | <p> |
| 2534 | <tt>address</tt> is the address to be prefetched, <tt>rw</tt> is the specifier |
| 2535 | determining if the fetch should be for a read (0) or write (1), and |
| 2536 | <tt>locality</tt> is a temporal locality specifier ranging from (0) - no |
Chris Lattner | aeffb4a | 2005-03-07 20:31:38 +0000 | [diff] [blame] | 2537 | locality, to (3) - extremely local keep in cache. The <tt>rw</tt> and |
Chris Lattner | 9a9d7ac | 2005-02-28 19:24:19 +0000 | [diff] [blame] | 2538 | <tt>locality</tt> arguments must be constant integers. |
| 2539 | </p> |
| 2540 | |
| 2541 | <h5>Semantics:</h5> |
| 2542 | |
| 2543 | <p> |
| 2544 | This intrinsic does not modify the behavior of the program. In particular, |
| 2545 | prefetches cannot trap and do not produce a value. On targets that support this |
| 2546 | intrinsic, the prefetch can provide hints to the processor cache for better |
| 2547 | performance. |
| 2548 | </p> |
| 2549 | |
| 2550 | </div> |
| 2551 | |
Andrew Lenharth | 7f4ec3b | 2005-03-28 20:05:49 +0000 | [diff] [blame] | 2552 | <!-- _______________________________________________________________________ --> |
| 2553 | <div class="doc_subsubsection"> |
| 2554 | <a name="i_pcmarker">'<tt>llvm.pcmarker</tt>' Intrinsic</a> |
| 2555 | </div> |
| 2556 | |
| 2557 | <div class="doc_text"> |
| 2558 | |
| 2559 | <h5>Syntax:</h5> |
| 2560 | <pre> |
| 2561 | call void (uint)* %llvm.pcmarker( uint <id> ) |
| 2562 | </pre> |
| 2563 | |
| 2564 | <h5>Overview:</h5> |
| 2565 | |
| 2566 | |
| 2567 | <p> |
| 2568 | The '<tt>llvm.pcmarker</tt>' intrinsic is a method to export a PC in a region of |
| 2569 | code to simulators and other tools. The method is target specific, but it is |
| 2570 | expected that the marker will use exported symbols to transmit the PC of the marker. |
| 2571 | The marker makes no guaranties that it will remain with any specific instruction |
| 2572 | after optimizations. It is possible that the presense of a marker will inhibit |
| 2573 | optimizations. The intended use is to be inserted after optmizations to allow |
| 2574 | corrolations of simulation runs. |
| 2575 | </p> |
| 2576 | |
| 2577 | <h5>Arguments:</h5> |
| 2578 | |
| 2579 | <p> |
| 2580 | <tt>id</tt> is a numerical id identifying the marker. |
| 2581 | </p> |
| 2582 | |
| 2583 | <h5>Semantics:</h5> |
| 2584 | |
| 2585 | <p> |
| 2586 | This intrinsic does not modify the behavior of the program. Backends that do not |
| 2587 | support this intrinisic may ignore it. |
| 2588 | </p> |
| 2589 | |
| 2590 | </div> |
| 2591 | |
Chris Lattner | 9a9d7ac | 2005-02-28 19:24:19 +0000 | [diff] [blame] | 2592 | |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 2593 | <!-- ======================================================================= --> |
| 2594 | <div class="doc_subsection"> |
| 2595 | <a name="int_os">Operating System Intrinsics</a> |
| 2596 | </div> |
| 2597 | |
| 2598 | <div class="doc_text"> |
| 2599 | <p> |
| 2600 | These intrinsics are provided by LLVM to support the implementation of |
| 2601 | operating system level code. |
| 2602 | </p> |
| 2603 | |
| 2604 | </div> |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2605 | |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2606 | <!-- _______________________________________________________________________ --> |
| 2607 | <div class="doc_subsubsection"> |
| 2608 | <a name="i_readport">'<tt>llvm.readport</tt>' Intrinsic</a> |
| 2609 | </div> |
| 2610 | |
| 2611 | <div class="doc_text"> |
| 2612 | |
| 2613 | <h5>Syntax:</h5> |
| 2614 | <pre> |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 2615 | call <integer type> (<integer type>)* %llvm.readport (<integer type> <address>) |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2616 | </pre> |
| 2617 | |
| 2618 | <h5>Overview:</h5> |
| 2619 | |
| 2620 | <p> |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 2621 | The '<tt>llvm.readport</tt>' intrinsic reads data from the specified hardware |
| 2622 | I/O port. |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2623 | </p> |
| 2624 | |
| 2625 | <h5>Arguments:</h5> |
| 2626 | |
| 2627 | <p> |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 2628 | The argument to this intrinsic indicates the hardware I/O address from which |
| 2629 | to read the data. The address is in the hardware I/O address namespace (as |
| 2630 | opposed to being a memory location for memory mapped I/O). |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2631 | </p> |
| 2632 | |
| 2633 | <h5>Semantics:</h5> |
| 2634 | |
| 2635 | <p> |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 2636 | The '<tt>llvm.readport</tt>' intrinsic reads data from the hardware I/O port |
| 2637 | specified by <i>address</i> and returns the value. The address and return |
| 2638 | value must be integers, but the size is dependent upon the platform upon which |
| 2639 | the program is code generated. For example, on x86, the address must be an |
Misha Brukman | cfa87bc | 2005-04-22 18:02:52 +0000 | [diff] [blame^] | 2640 | unsigned 16-bit value, and the return value must be 8, 16, or 32 bits. |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2641 | </p> |
| 2642 | |
| 2643 | </div> |
| 2644 | |
| 2645 | <!-- _______________________________________________________________________ --> |
| 2646 | <div class="doc_subsubsection"> |
| 2647 | <a name="i_writeport">'<tt>llvm.writeport</tt>' Intrinsic</a> |
| 2648 | </div> |
| 2649 | |
| 2650 | <div class="doc_text"> |
| 2651 | |
| 2652 | <h5>Syntax:</h5> |
| 2653 | <pre> |
Chris Lattner | c3f5976 | 2004-12-09 17:30:23 +0000 | [diff] [blame] | 2654 | call void (<integer type>, <integer type>)* |
| 2655 | %llvm.writeport (<integer type> <value>, |
| 2656 | <integer type> <address>) |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2657 | </pre> |
| 2658 | |
| 2659 | <h5>Overview:</h5> |
| 2660 | |
| 2661 | <p> |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 2662 | The '<tt>llvm.writeport</tt>' intrinsic writes data to the specified hardware |
| 2663 | I/O port. |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2664 | </p> |
| 2665 | |
| 2666 | <h5>Arguments:</h5> |
| 2667 | |
| 2668 | <p> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2669 | The first argument is the value to write to the I/O port. |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2670 | </p> |
| 2671 | |
| 2672 | <p> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2673 | The second argument indicates the hardware I/O address to which data should be |
| 2674 | written. The address is in the hardware I/O address namespace (as opposed to |
| 2675 | being a memory location for memory mapped I/O). |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2676 | </p> |
| 2677 | |
| 2678 | <h5>Semantics:</h5> |
| 2679 | |
| 2680 | <p> |
| 2681 | The '<tt>llvm.writeport</tt>' intrinsic writes <i>value</i> to the I/O port |
| 2682 | specified by <i>address</i>. The address and value must be integers, but the |
| 2683 | size is dependent upon the platform upon which the program is code generated. |
Misha Brukman | cfa87bc | 2005-04-22 18:02:52 +0000 | [diff] [blame^] | 2684 | For example, on x86, the address must be an unsigned 16-bit value, and the |
John Criswell | 7123e27 | 2004-04-09 16:43:20 +0000 | [diff] [blame] | 2685 | value written must be 8, 16, or 32 bits in length. |
John Criswell | cfd3bac | 2004-04-09 15:23:37 +0000 | [diff] [blame] | 2686 | </p> |
| 2687 | |
| 2688 | </div> |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 2689 | |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2690 | <!-- _______________________________________________________________________ --> |
| 2691 | <div class="doc_subsubsection"> |
| 2692 | <a name="i_readio">'<tt>llvm.readio</tt>' Intrinsic</a> |
| 2693 | </div> |
| 2694 | |
| 2695 | <div class="doc_text"> |
| 2696 | |
| 2697 | <h5>Syntax:</h5> |
| 2698 | <pre> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2699 | call <result> (<ty>*)* %llvm.readio (<ty> * <pointer>) |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2700 | </pre> |
| 2701 | |
| 2702 | <h5>Overview:</h5> |
| 2703 | |
| 2704 | <p> |
| 2705 | The '<tt>llvm.readio</tt>' intrinsic reads data from a memory mapped I/O |
| 2706 | address. |
| 2707 | </p> |
| 2708 | |
| 2709 | <h5>Arguments:</h5> |
| 2710 | |
| 2711 | <p> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2712 | The argument to this intrinsic is a pointer indicating the memory address from |
| 2713 | which to read the data. The data must be a |
| 2714 | <a href="#t_firstclass">first class</a> type. |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2715 | </p> |
| 2716 | |
| 2717 | <h5>Semantics:</h5> |
| 2718 | |
| 2719 | <p> |
| 2720 | The '<tt>llvm.readio</tt>' intrinsic reads data from a memory mapped I/O |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2721 | location specified by <i>pointer</i> and returns the value. The argument must |
| 2722 | be a pointer, and the return value must be a |
| 2723 | <a href="#t_firstclass">first class</a> type. However, certain architectures |
Misha Brukman | cfa87bc | 2005-04-22 18:02:52 +0000 | [diff] [blame^] | 2724 | may not support I/O on all first class types. For example, 32-bit processors |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2725 | may only support I/O on data types that are 32 bits or less. |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2726 | </p> |
| 2727 | |
| 2728 | <p> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2729 | This intrinsic enforces an in-order memory model for llvm.readio and |
| 2730 | llvm.writeio calls on machines that use dynamic scheduling. Dynamically |
| 2731 | scheduled processors may execute loads and stores out of order, re-ordering at |
| 2732 | run time accesses to memory mapped I/O registers. Using these intrinsics |
| 2733 | ensures that accesses to memory mapped I/O registers occur in program order. |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2734 | </p> |
| 2735 | |
| 2736 | </div> |
| 2737 | |
| 2738 | <!-- _______________________________________________________________________ --> |
| 2739 | <div class="doc_subsubsection"> |
| 2740 | <a name="i_writeio">'<tt>llvm.writeio</tt>' Intrinsic</a> |
| 2741 | </div> |
| 2742 | |
| 2743 | <div class="doc_text"> |
| 2744 | |
| 2745 | <h5>Syntax:</h5> |
| 2746 | <pre> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2747 | call void (<ty1>, <ty2>*)* %llvm.writeio (<ty1> <value>, <ty2> * <pointer>) |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2748 | </pre> |
| 2749 | |
| 2750 | <h5>Overview:</h5> |
| 2751 | |
| 2752 | <p> |
| 2753 | The '<tt>llvm.writeio</tt>' intrinsic writes data to the specified memory |
| 2754 | mapped I/O address. |
| 2755 | </p> |
| 2756 | |
| 2757 | <h5>Arguments:</h5> |
| 2758 | |
| 2759 | <p> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2760 | The first argument is the value to write to the memory mapped I/O location. |
| 2761 | The second argument is a pointer indicating the memory address to which the |
| 2762 | data should be written. |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2763 | </p> |
| 2764 | |
| 2765 | <h5>Semantics:</h5> |
| 2766 | |
| 2767 | <p> |
| 2768 | The '<tt>llvm.writeio</tt>' intrinsic writes <i>value</i> to the memory mapped |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2769 | I/O address specified by <i>pointer</i>. The value must be a |
| 2770 | <a href="#t_firstclass">first class</a> type. However, certain architectures |
Misha Brukman | cfa87bc | 2005-04-22 18:02:52 +0000 | [diff] [blame^] | 2771 | may not support I/O on all first class types. For example, 32-bit processors |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2772 | may only support I/O on data types that are 32 bits or less. |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2773 | </p> |
| 2774 | |
| 2775 | <p> |
John Criswell | 96db6fc | 2004-04-12 16:33:19 +0000 | [diff] [blame] | 2776 | This intrinsic enforces an in-order memory model for llvm.readio and |
| 2777 | llvm.writeio calls on machines that use dynamic scheduling. Dynamically |
| 2778 | scheduled processors may execute loads and stores out of order, re-ordering at |
| 2779 | run time accesses to memory mapped I/O registers. Using these intrinsics |
| 2780 | ensures that accesses to memory mapped I/O registers occur in program order. |
John Criswell | 183402a | 2004-04-12 15:02:16 +0000 | [diff] [blame] | 2781 | </p> |
| 2782 | |
| 2783 | </div> |
| 2784 | |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 2785 | <!-- ======================================================================= --> |
| 2786 | <div class="doc_subsection"> |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 2787 | <a name="int_libc">Standard C Library Intrinsics</a> |
| 2788 | </div> |
| 2789 | |
| 2790 | <div class="doc_text"> |
| 2791 | <p> |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 2792 | LLVM provides intrinsics for a few important standard C library functions. |
| 2793 | These intrinsics allow source-language front-ends to pass information about the |
| 2794 | alignment of the pointer arguments to the code generator, providing opportunity |
| 2795 | for more efficient code generation. |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 2796 | </p> |
| 2797 | |
| 2798 | </div> |
| 2799 | |
| 2800 | <!-- _______________________________________________________________________ --> |
| 2801 | <div class="doc_subsubsection"> |
| 2802 | <a name="i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a> |
| 2803 | </div> |
| 2804 | |
| 2805 | <div class="doc_text"> |
| 2806 | |
| 2807 | <h5>Syntax:</h5> |
| 2808 | <pre> |
| 2809 | call void (sbyte*, sbyte*, uint, uint)* %llvm.memcpy(sbyte* <dest>, sbyte* <src>, |
| 2810 | uint <len>, uint <align>) |
| 2811 | </pre> |
| 2812 | |
| 2813 | <h5>Overview:</h5> |
| 2814 | |
| 2815 | <p> |
| 2816 | The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source |
| 2817 | location to the destination location. |
| 2818 | </p> |
| 2819 | |
| 2820 | <p> |
| 2821 | Note that, unlike the standard libc function, the <tt>llvm.memcpy</tt> intrinsic |
| 2822 | does not return a value, and takes an extra alignment argument. |
| 2823 | </p> |
| 2824 | |
| 2825 | <h5>Arguments:</h5> |
| 2826 | |
| 2827 | <p> |
| 2828 | The first argument is a pointer to the destination, the second is a pointer to |
| 2829 | the source. The third argument is an (arbitrarily sized) integer argument |
| 2830 | specifying the number of bytes to copy, and the fourth argument is the alignment |
| 2831 | of the source and destination locations. |
| 2832 | </p> |
| 2833 | |
Chris Lattner | 3301ced | 2004-02-12 21:18:15 +0000 | [diff] [blame] | 2834 | <p> |
| 2835 | If the call to this intrinisic has an alignment value that is not 0 or 1, then |
| 2836 | the caller guarantees that the size of the copy is a multiple of the alignment |
| 2837 | and that both the source and destination pointers are aligned to that boundary. |
| 2838 | </p> |
| 2839 | |
Chris Lattner | 33aec9e | 2004-02-12 17:01:32 +0000 | [diff] [blame] | 2840 | <h5>Semantics:</h5> |
| 2841 | |
| 2842 | <p> |
| 2843 | The '<tt>llvm.memcpy</tt>' intrinsic copies a block of memory from the source |
| 2844 | location to the destination location, which are not allowed to overlap. It |
| 2845 | copies "len" bytes of memory over. If the argument is known to be aligned to |
| 2846 | some boundary, this can be specified as the fourth argument, otherwise it should |
| 2847 | be set to 0 or 1. |
| 2848 | </p> |
| 2849 | </div> |
| 2850 | |
| 2851 | |
Chris Lattner | 0eb51b4 | 2004-02-12 18:10:10 +0000 | [diff] [blame] | 2852 | <!-- _______________________________________________________________________ --> |
| 2853 | <div class="doc_subsubsection"> |
| 2854 | <a name="i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a> |
| 2855 | </div> |
| 2856 | |
| 2857 | <div class="doc_text"> |
| 2858 | |
| 2859 | <h5>Syntax:</h5> |
| 2860 | <pre> |
| 2861 | call void (sbyte*, sbyte*, uint, uint)* %llvm.memmove(sbyte* <dest>, sbyte* <src>, |
| 2862 | uint <len>, uint <align>) |
| 2863 | </pre> |
| 2864 | |
| 2865 | <h5>Overview:</h5> |
| 2866 | |
| 2867 | <p> |
| 2868 | The '<tt>llvm.memmove</tt>' intrinsic moves a block of memory from the source |
| 2869 | location to the destination location. It is similar to the '<tt>llvm.memcpy</tt>' |
| 2870 | intrinsic but allows the two memory locations to overlap. |
| 2871 | </p> |
| 2872 | |
| 2873 | <p> |
| 2874 | Note that, unlike the standard libc function, the <tt>llvm.memmove</tt> intrinsic |
| 2875 | does not return a value, and takes an extra alignment argument. |
| 2876 | </p> |
| 2877 | |
| 2878 | <h5>Arguments:</h5> |
| 2879 | |
| 2880 | <p> |
| 2881 | The first argument is a pointer to the destination, the second is a pointer to |
| 2882 | the source. The third argument is an (arbitrarily sized) integer argument |
| 2883 | specifying the number of bytes to copy, and the fourth argument is the alignment |
| 2884 | of the source and destination locations. |
| 2885 | </p> |
| 2886 | |
Chris Lattner | 3301ced | 2004-02-12 21:18:15 +0000 | [diff] [blame] | 2887 | <p> |
| 2888 | If the call to this intrinisic has an alignment value that is not 0 or 1, then |
| 2889 | the caller guarantees that the size of the copy is a multiple of the alignment |
| 2890 | and that both the source and destination pointers are aligned to that boundary. |
| 2891 | </p> |
| 2892 | |
Chris Lattner | 0eb51b4 | 2004-02-12 18:10:10 +0000 | [diff] [blame] | 2893 | <h5>Semantics:</h5> |
| 2894 | |
| 2895 | <p> |
| 2896 | The '<tt>llvm.memmove</tt>' intrinsic copies a block of memory from the source |
| 2897 | location to the destination location, which may overlap. It |
| 2898 | copies "len" bytes of memory over. If the argument is known to be aligned to |
| 2899 | some boundary, this can be specified as the fourth argument, otherwise it should |
| 2900 | be set to 0 or 1. |
| 2901 | </p> |
| 2902 | </div> |
| 2903 | |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2904 | |
Chris Lattner | 1061064 | 2004-02-14 04:08:35 +0000 | [diff] [blame] | 2905 | <!-- _______________________________________________________________________ --> |
| 2906 | <div class="doc_subsubsection"> |
| 2907 | <a name="i_memset">'<tt>llvm.memset</tt>' Intrinsic</a> |
| 2908 | </div> |
| 2909 | |
| 2910 | <div class="doc_text"> |
| 2911 | |
| 2912 | <h5>Syntax:</h5> |
| 2913 | <pre> |
| 2914 | call void (sbyte*, ubyte, uint, uint)* %llvm.memset(sbyte* <dest>, ubyte <val>, |
| 2915 | uint <len>, uint <align>) |
| 2916 | </pre> |
| 2917 | |
| 2918 | <h5>Overview:</h5> |
| 2919 | |
| 2920 | <p> |
| 2921 | The '<tt>llvm.memset</tt>' intrinsic fills a block of memory with a particular |
| 2922 | byte value. |
| 2923 | </p> |
| 2924 | |
| 2925 | <p> |
| 2926 | Note that, unlike the standard libc function, the <tt>llvm.memset</tt> intrinsic |
| 2927 | does not return a value, and takes an extra alignment argument. |
| 2928 | </p> |
| 2929 | |
| 2930 | <h5>Arguments:</h5> |
| 2931 | |
| 2932 | <p> |
| 2933 | The first argument is a pointer to the destination to fill, the second is the |
| 2934 | byte value to fill it with, the third argument is an (arbitrarily sized) integer |
| 2935 | argument specifying the number of bytes to fill, and the fourth argument is the |
| 2936 | known alignment of destination location. |
| 2937 | </p> |
| 2938 | |
| 2939 | <p> |
| 2940 | If the call to this intrinisic has an alignment value that is not 0 or 1, then |
| 2941 | the caller guarantees that the size of the copy is a multiple of the alignment |
| 2942 | and that the destination pointer is aligned to that boundary. |
| 2943 | </p> |
| 2944 | |
| 2945 | <h5>Semantics:</h5> |
| 2946 | |
| 2947 | <p> |
| 2948 | The '<tt>llvm.memset</tt>' intrinsic fills "len" bytes of memory starting at the |
| 2949 | destination location. If the argument is known to be aligned to some boundary, |
| 2950 | this can be specified as the fourth argument, otherwise it should be set to 0 or |
| 2951 | 1. |
| 2952 | </p> |
| 2953 | </div> |
| 2954 | |
| 2955 | |
Chris Lattner | 3200628 | 2004-06-11 02:28:03 +0000 | [diff] [blame] | 2956 | <!-- _______________________________________________________________________ --> |
| 2957 | <div class="doc_subsubsection"> |
Alkis Evlogimenos | 26bbe93 | 2004-06-13 01:16:15 +0000 | [diff] [blame] | 2958 | <a name="i_isunordered">'<tt>llvm.isunordered</tt>' Intrinsic</a> |
| 2959 | </div> |
| 2960 | |
| 2961 | <div class="doc_text"> |
| 2962 | |
| 2963 | <h5>Syntax:</h5> |
| 2964 | <pre> |
| 2965 | call bool (<float or double>, <float or double>)* %llvm.isunordered(<float or double> Val1, |
| 2966 | <float or double> Val2) |
| 2967 | </pre> |
| 2968 | |
| 2969 | <h5>Overview:</h5> |
| 2970 | |
| 2971 | <p> |
| 2972 | The '<tt>llvm.isunordered</tt>' intrinsic returns true if either or both of the |
| 2973 | specified floating point values is a NAN. |
| 2974 | </p> |
| 2975 | |
| 2976 | <h5>Arguments:</h5> |
| 2977 | |
| 2978 | <p> |
| 2979 | The arguments are floating point numbers of the same type. |
| 2980 | </p> |
| 2981 | |
| 2982 | <h5>Semantics:</h5> |
| 2983 | |
| 2984 | <p> |
| 2985 | If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise |
| 2986 | false. |
| 2987 | </p> |
| 2988 | </div> |
| 2989 | |
| 2990 | |
Chris Lattner | 3200628 | 2004-06-11 02:28:03 +0000 | [diff] [blame] | 2991 | |
| 2992 | |
Chris Lattner | 8ff7590 | 2004-01-06 05:31:32 +0000 | [diff] [blame] | 2993 | <!-- ======================================================================= --> |
| 2994 | <div class="doc_subsection"> |
| 2995 | <a name="int_debugger">Debugger Intrinsics</a> |
| 2996 | </div> |
| 2997 | |
| 2998 | <div class="doc_text"> |
| 2999 | <p> |
| 3000 | The LLVM debugger intrinsics (which all start with <tt>llvm.dbg.</tt> prefix), |
| 3001 | are described in the <a |
| 3002 | href="SourceLevelDebugging.html#format_common_intrinsics">LLVM Source Level |
| 3003 | Debugging</a> document. |
| 3004 | </p> |
| 3005 | </div> |
| 3006 | |
| 3007 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 3008 | <!-- *********************************************************************** --> |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 3009 | <hr> |
Misha Brukman | daa4cb0 | 2004-03-01 17:47:27 +0000 | [diff] [blame] | 3010 | <address> |
| 3011 | <a href="http://jigsaw.w3.org/css-validator/check/referer"><img |
| 3012 | src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a> |
| 3013 | <a href="http://validator.w3.org/check/referer"><img |
| 3014 | src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a> |
| 3015 | |
| 3016 | <a href="mailto:sabre@nondot.org">Chris Lattner</a><br> |
| 3017 | <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br> |
| 3018 | Last modified: $Date$ |
| 3019 | </address> |
Misha Brukman | 9d0919f | 2003-11-08 01:05:38 +0000 | [diff] [blame] | 3020 | </body> |
| 3021 | </html> |