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