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