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