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