Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 2 | <html> |
| 3 | <head> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 4 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 5 | <title>LLVM Bytecode File Format</title> |
| 6 | <link rel="stylesheet" href="llvm.css" type="text/css"> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 7 | <style type="text/css"> |
Reid Spencer | 2de2999 | 2004-08-03 20:21:05 +0000 | [diff] [blame] | 8 | TR, TD { border: 2px solid gray; padding-left: 4pt; padding-right: 4pt; |
| 9 | padding-top: 2pt; padding-bottom: 2pt; } |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 10 | TH { border: 2px solid gray; font-weight: bold; font-size: 105%; } |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 11 | TABLE { text-align: center; border: 2px solid black; |
Reid Spencer | 2de2999 | 2004-08-03 20:21:05 +0000 | [diff] [blame] | 12 | border-collapse: collapse; margin-top: 1em; margin-left: 1em; |
| 13 | margin-right: 1em; margin-bottom: 1em; } |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 14 | .td_left { border: 2px solid gray; text-align: left; } |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 15 | </style> |
| 16 | </head> |
| 17 | <body> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 18 | <div class="doc_title"> LLVM Bytecode File Format </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 19 | <ol> |
| 20 | <li><a href="#abstract">Abstract</a></li> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 21 | <li><a href="#concepts">Concepts</a> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 22 | <ol> |
| 23 | <li><a href="#blocks">Blocks</a></li> |
| 24 | <li><a href="#lists">Lists</a></li> |
| 25 | <li><a href="#fields">Fields</a></li> |
| 26 | <li><a href="#align">Alignment</a></li> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 27 | <li><a href="#vbr">Variable Bit-Rate Encoding</a></li> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 28 | <li><a href="#encoding">Encoding Primitives</a></li> |
| 29 | <li><a href="#slots">Slots</a></li> |
| 30 | </ol> |
| 31 | </li> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 32 | <li><a href="#general">General Structure</a> </li> |
| 33 | <li><a href="#blockdefs">Block Definitions</a> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 34 | <ol> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 35 | <li><a href="#signature">Signature Block</a></li> |
| 36 | <li><a href="#module">Module Block</a></li> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 37 | <li><a href="#globaltypes">Global Type Pool</a></li> |
| 38 | <li><a href="#globalinfo">Module Info Block</a></li> |
| 39 | <li><a href="#constantpool">Global Constant Pool</a></li> |
| 40 | <li><a href="#functiondefs">Function Definition</a></li> |
| 41 | <li><a href="#compactiontable">Compaction Table</a></li> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 42 | <li><a href="#instructionlist">Instructions List</a></li> |
| 43 | <li><a href="#instructions">Instructions</a></li> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 44 | <li><a href="#symtab">Symbol Table</a></li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 45 | </ol> |
| 46 | </li> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 47 | <li><a href="#versiondiffs">Version Differences</a> |
| 48 | <ol> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 49 | <li><a href="#vers13">Version 1.3 Differences From 1.4</a></li> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 50 | <li><a href="#vers12">Version 1.2 Differences From 1.3</a></li> |
| 51 | <li><a href="#vers11">Version 1.1 Differences From 1.2</a></li> |
| 52 | <li><a href="#vers10">Version 1.0 Differences From 1.1</a></li> |
| 53 | </ol> |
| 54 | </li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 55 | </ol> |
Chris Lattner | 8dabb50 | 2004-05-25 17:44:58 +0000 | [diff] [blame] | 56 | <div class="doc_author"> |
| 57 | <p>Written by <a href="mailto:rspencer@x10sys.com">Reid Spencer</a> |
| 58 | </p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 59 | </div> |
| 60 | <!-- *********************************************************************** --> |
| 61 | <div class="doc_section"> <a name="abstract">Abstract </a></div> |
| 62 | <!-- *********************************************************************** --> |
| 63 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 64 | <p>This document describes the LLVM bytecode file format. It specifies |
| 65 | the binary encoding rules of the bytecode file format so that |
| 66 | equivalent systems can encode bytecode files correctly. The LLVM |
| 67 | bytecode representation is used to store the intermediate |
| 68 | representation on disk in compacted form.</p> |
| 69 | <p>The LLVM bytecode format may change in the future, but LLVM will |
| 70 | always be backwards compatible with older formats. This document will |
| 71 | only describe the most current version of the bytecode format. See <a |
| 72 | href="#versiondiffs">Version Differences</a> for the details on how |
| 73 | the current version is different from previous versions.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 74 | </div> |
| 75 | <!-- *********************************************************************** --> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 76 | <div class="doc_section"> <a name="concepts">Concepts</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 77 | <!-- *********************************************************************** --> |
| 78 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 79 | <p>This section describes the general concepts of the bytecode file |
| 80 | format without getting into specific layout details. It is recommended |
| 81 | that you read this section thoroughly before interpreting the detailed |
| 82 | descriptions.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 83 | </div> |
| 84 | <!-- _______________________________________________________________________ --> |
| 85 | <div class="doc_subsection"><a name="blocks">Blocks</a> </div> |
| 86 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 87 | <p>LLVM bytecode files consist simply of a sequence of blocks of bytes |
| 88 | using a binary encoding Each block begins with an header of two |
| 89 | unsigned integers. The first value identifies the type of block and the |
| 90 | second value provides the size of the block in bytes. The block |
| 91 | identifier is used because it is possible for entire blocks to be |
| 92 | omitted from the file if they are empty. The block identifier helps the |
| 93 | reader determine which kind of block is next in the file. Note that |
| 94 | blocks can be nested within other blocks.</p> |
| 95 | <p> All blocks are variable length, and the block header specifies the |
| 96 | size of the block. All blocks begin on a byte index that is aligned to |
| 97 | an even 32-bit boundary. That is, the first block is 32-bit aligned |
| 98 | because it starts at offset 0. Each block is padded with zero fill |
| 99 | bytes to ensure that the next block also starts on a 32-bit boundary.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 100 | </div> |
| 101 | <!-- _______________________________________________________________________ --> |
| 102 | <div class="doc_subsection"><a name="lists">Lists</a> </div> |
| 103 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 104 | <p>LLVM Bytecode blocks often contain lists of things of a similar |
| 105 | type. For example, a function contains a list of instructions and a |
| 106 | function type contains a list of argument types. There are two basic |
| 107 | types of lists: length lists (<a href="#llist">llist</a>), and null |
| 108 | terminated lists (<a href="#zlist">zlist</a>), as described below in |
| 109 | the <a href="#encoding">Encoding Primitives</a>.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 110 | </div> |
| 111 | <!-- _______________________________________________________________________ --> |
| 112 | <div class="doc_subsection"><a name="fields">Fields</a> </div> |
| 113 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 114 | <p>Fields are units of information that LLVM knows how to write atomically. Most |
| 115 | fields have a uniform length or some kind of length indication built into their |
| 116 | encoding. For example, a constant string (array of bytes) is written simply as |
| 117 | the length followed by the characters. Although this is similar to a list, |
| 118 | constant strings are treated atomically and are thus fields.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 119 | <p>Fields use a condensed bit format specific to the type of information |
| 120 | they must contain. As few bits as possible are written for each field. The |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 121 | sections that follow will provide the details on how these fields are |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 122 | written and how the bits are to be interpreted.</p> |
| 123 | </div> |
| 124 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 125 | <div class="doc_subsection"><a name="align">Alignment</a> </div> |
Reid Spencer | 7aa940d | 2004-05-25 15:47:57 +0000 | [diff] [blame] | 126 | <div class="doc_text"> |
Reid Spencer | 267660f | 2004-08-03 20:33:56 +0000 | [diff] [blame] | 127 | <p>To support cross-platform differences, the bytecode file is aligned on |
| 128 | certain boundaries. This means that a small amount of padding (at most 3 |
| 129 | bytes) will be added to ensure that the next entry is aligned to a 32-bit |
| 130 | boundary.</p> |
Chris Lattner | 8dabb50 | 2004-05-25 17:44:58 +0000 | [diff] [blame] | 131 | </div> |
Reid Spencer | 7aa940d | 2004-05-25 15:47:57 +0000 | [diff] [blame] | 132 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 133 | <div class="doc_subsection"><a name="vbr">Variable Bit-Rate Encoding</a> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 134 | </div> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 135 | <div class="doc_text"> |
| 136 | <p>Most of the values written to LLVM bytecode files are small integers. To |
| 137 | minimize the number of bytes written for these quantities, an encoding scheme |
| 138 | similar to UTF-8 is used to write integer data. The scheme is known as |
| 139 | variable bit rate (vbr) encoding. In this encoding, the high bit of |
| 140 | each byte is used to indicate if more bytes follow. If (byte & |
| 141 | 0x80) is non-zero in any given byte, it means there is another byte |
| 142 | immediately following that also contributes to the value. For the final |
| 143 | byte (byte & 0x80) is false (the high bit is not set). In each byte |
| 144 | only the low seven bits contribute to the value. Consequently 32-bit |
| 145 | quantities can take from one to <em>five</em> bytes to encode. In |
| 146 | general, smaller quantities will encode in fewer bytes, as follows:</p> |
| 147 | <table> |
| 148 | <tbody> |
| 149 | <tr> |
| 150 | <th>Byte #</th> |
| 151 | <th>Significant Bits</th> |
| 152 | <th>Maximum Value</th> |
| 153 | </tr> |
| 154 | <tr> |
| 155 | <td>1</td> |
| 156 | <td>0-6</td> |
| 157 | <td>127</td> |
| 158 | </tr> |
| 159 | <tr> |
| 160 | <td>2</td> |
| 161 | <td>7-13</td> |
| 162 | <td>16,383</td> |
| 163 | </tr> |
| 164 | <tr> |
| 165 | <td>3</td> |
| 166 | <td>14-20</td> |
| 167 | <td>2,097,151</td> |
| 168 | </tr> |
| 169 | <tr> |
| 170 | <td>4</td> |
| 171 | <td>21-27</td> |
| 172 | <td>268,435,455</td> |
| 173 | </tr> |
| 174 | <tr> |
| 175 | <td>5</td> |
| 176 | <td>28-34</td> |
| 177 | <td>34,359,738,367</td> |
| 178 | </tr> |
| 179 | <tr> |
| 180 | <td>6</td> |
| 181 | <td>35-41</td> |
| 182 | <td>4,398,046,511,103</td> |
| 183 | </tr> |
| 184 | <tr> |
| 185 | <td>7</td> |
| 186 | <td>42-48</td> |
| 187 | <td>562,949,953,421,311</td> |
| 188 | </tr> |
| 189 | <tr> |
| 190 | <td>8</td> |
| 191 | <td>49-55</td> |
| 192 | <td>72,057,594,037,927,935</td> |
| 193 | </tr> |
| 194 | <tr> |
| 195 | <td>9</td> |
| 196 | <td>56-62</td> |
| 197 | <td>9,223,372,036,854,775,807</td> |
| 198 | </tr> |
| 199 | <tr> |
| 200 | <td>10</td> |
| 201 | <td>63-69</td> |
| 202 | <td>1,180,591,620,717,411,303,423</td> |
| 203 | </tr> |
| 204 | </tbody> |
| 205 | </table> |
| 206 | <p>Note that in practice, the tenth byte could only encode bit 63 since |
| 207 | the maximum quantity to use this encoding is a 64-bit integer.</p> |
| 208 | <p><em>Signed</em> VBR values are encoded with the standard vbr |
| 209 | encoding, but with the sign bit as the low order bit instead of the |
| 210 | high order bit. This allows small negative quantities to be encoded |
| 211 | efficiently. For example, -3 |
| 212 | is encoded as "((3 << 1) | 1)" and 3 is encoded as "(3 << |
| 213 | 1) | 0)", emitted with the standard vbr encoding above.</p> |
| 214 | </div> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 215 | <!-- _______________________________________________________________________ --> |
| 216 | <div class="doc_subsection"><a name="encoding">Encoding Primitives</a> </div> |
| 217 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 218 | <p>Each field in the bytecode format is encoded into the file using a |
| 219 | small set of primitive formats. The table below defines the encoding |
| 220 | rules for the various primitives used and gives them each a type name. |
| 221 | The type names used in the descriptions of blocks and fields in the <a |
| 222 | href="#details">Detailed Layout</a>next section. Any type name with |
| 223 | the suffix <em>_vbr</em> indicates a quantity that is encoded using |
| 224 | variable bit rate encoding as described above.</p> |
| 225 | <table class="doc_table"> |
| 226 | <tbody> |
| 227 | <tr> |
| 228 | <th><b>Type</b></th> |
| 229 | <th class="td_left"><b>Rule</b></th> |
| 230 | </tr> |
| 231 | <tr> |
| 232 | <td><a name="unsigned"><b>unsigned</b></a></td> |
| 233 | <td class="td_left">A 32-bit unsigned integer that always occupies four |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 234 | consecutive bytes. The unsigned integer is encoded using LSB first |
| 235 | ordering. That is bits 2<sup>0</sup> through 2<sup>7</sup> are in the |
| 236 | byte with the lowest file offset (little endian).</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 237 | </tr> |
| 238 | <tr> |
Reid Spencer | 301fe48 | 2004-08-03 20:57:56 +0000 | [diff] [blame] | 239 | <td style="vertical-align: top;"><a name="uint24_vbr"> |
| 240 | <b>uint24_vbr</b></a></td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 241 | <td style="vertical-align: top; text-align: left;">A 24-bit unsigned |
| 242 | integer that occupies from one to four bytes using variable bit rate |
| 243 | encoding.</td> |
| 244 | </tr> |
| 245 | <tr> |
| 246 | <td><a name="uint32_vbr"><b>uint32_vbr</b></a></td> |
Reid Spencer | f08561f | 2004-08-03 19:20:18 +0000 | [diff] [blame] | 247 | <td class="td_left">A 32-bit unsigned integer that occupies from one to |
| 248 | five bytes using variable bit rate encoding.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 249 | </tr> |
| 250 | <tr> |
| 251 | <td><a name="uint64_vbr"><b>uint64_vbr</b></a></td> |
Reid Spencer | f08561f | 2004-08-03 19:20:18 +0000 | [diff] [blame] | 252 | <td class="td_left">A 64-bit unsigned integer that occupies from one to ten |
| 253 | bytes using variable bit rate encoding.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 254 | </tr> |
| 255 | <tr> |
| 256 | <td><a name="int64_vbr"><b>int64_vbr</b></a></td> |
Reid Spencer | f08561f | 2004-08-03 19:20:18 +0000 | [diff] [blame] | 257 | <td class="td_left">A 64-bit signed integer that occupies from one to ten |
| 258 | bytes using the signed variable bit rate encoding.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 259 | </tr> |
| 260 | <tr> |
| 261 | <td><a name="char"><b>char</b></a></td> |
Reid Spencer | f08561f | 2004-08-03 19:20:18 +0000 | [diff] [blame] | 262 | <td class="td_left">A single unsigned character encoded into one byte</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 263 | </tr> |
| 264 | <tr> |
| 265 | <td><a name="bit"><b>bit(n-m)</b></a></td> |
Reid Spencer | f08561f | 2004-08-03 19:20:18 +0000 | [diff] [blame] | 266 | <td class="td_left">A set of bit within some larger integer field. The values |
| 267 | of <code>n</code> and <code>m</code> specify the inclusive range of bits |
| 268 | that define the subfield. The value for <code>m</code> may be omitted if |
| 269 | its the same as <code>n</code>.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 270 | </tr> |
| 271 | <tr> |
| 272 | <td style="vertical-align: top;"><b><a name="float"><b>float</b></a></b></td> |
Reid Spencer | f08561f | 2004-08-03 19:20:18 +0000 | [diff] [blame] | 273 | <td style="vertical-align: top; text-align: left;">A floating point value encoded |
| 274 | as a 32-bit IEEE value written in little-endian form.<br> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 275 | </td> |
| 276 | </tr> |
| 277 | <tr> |
| 278 | <td style="vertical-align: top;"><b><b><a name="double"><b>double</b></a></b></b></td> |
Reid Spencer | f08561f | 2004-08-03 19:20:18 +0000 | [diff] [blame] | 279 | <td style="vertical-align: top; text-align: left;">A floating point value encoded |
| 280 | as a64-bit IEEE value written in little-endian form</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 281 | </tr> |
| 282 | <tr> |
| 283 | <td><a name="string"><b>string</b></a></td> |
| 284 | <td class="td_left">A uint32_vbr indicating the type of the |
| 285 | constant string which also includes its length, immediately followed by |
| 286 | the characters of the string. There is no terminating null byte in the |
| 287 | string.</td> |
| 288 | </tr> |
| 289 | <tr> |
| 290 | <td><a name="data"><b>data</b></a></td> |
| 291 | <td class="td_left">An arbitrarily long segment of data to which |
| 292 | no interpretation is implied. This is used for constant initializers.<br> |
| 293 | </td> |
| 294 | </tr> |
| 295 | <tr> |
| 296 | <td><a name="llist"><b>llist(x)</b></a></td> |
| 297 | <td class="td_left">A length list of x. This means the list is |
| 298 | encoded as an <a href="#uint32_vbr">uint32_vbr</a> providing the |
| 299 | length of the list, followed by a sequence of that many "x" items. This |
| 300 | implies that the reader should iterate the number of times provided by |
| 301 | the length.</td> |
| 302 | </tr> |
| 303 | <tr> |
| 304 | <td><a name="zlist"><b>zlist(x)</b></a></td> |
| 305 | <td class="td_left">A zero-terminated list of x. This means the |
| 306 | list is encoded as a sequence of an indeterminate number of "x" items, |
| 307 | followed by an <a href="#uint32_vbr">uint32_vbr</a> terminating value. |
| 308 | This implies that none of the "x" items can have a zero value (or else |
| 309 | the list terminates).</td> |
| 310 | </tr> |
| 311 | <tr> |
| 312 | <td><a name="block"><b>block</b></a></td> |
| 313 | <td class="td_left">A block of data that is logically related. A |
| 314 | block is an unsigned 32-bit integer that encodes the type of the block |
| 315 | in the low 5 bits and the size of the block in the high 27 bits. The |
| 316 | length does not include the block header or any alignment bytes at the |
| 317 | end of the block. Blocks may compose other blocks. </td> |
| 318 | </tr> |
| 319 | </tbody> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 320 | </table> |
| 321 | </div> |
| 322 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 323 | <div class="doc_subsection"><a name="notation">Field Notation</a> </div> |
| 324 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 325 | <p>In the detailed block and field descriptions that follow, a regex |
| 326 | like notation is used to describe optional and repeated fields. A very |
| 327 | limited subset of regex is used to describe these, as given in the |
| 328 | following table: </p> |
| 329 | <table class="doc_table"> |
| 330 | <tbody> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 331 | <tr> |
| 332 | <th><b>Character</b></th> |
| 333 | <th class="td_left"><b>Meaning</b></th> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 334 | </tr> |
| 335 | <tr> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 336 | <td><b><code>?</code></b></td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 337 | <td class="td_left">The question mark indicates 0 or 1 |
| 338 | occurrences of the thing preceding it.</td> |
| 339 | </tr> |
| 340 | <tr> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 341 | <td><b><code>*</code></b></td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 342 | <td class="td_left">The asterisk indicates 0 or more occurrences |
| 343 | of the thing preceding it.</td> |
| 344 | </tr> |
| 345 | <tr> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 346 | <td><b><code>+</code></b></td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 347 | <td class="td_left">The plus sign indicates 1 or more occurrences |
| 348 | of the thing preceding it.</td> |
| 349 | </tr> |
| 350 | <tr> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 351 | <td><b><code>()</code></b></td> |
| 352 | <td class="td_left">Parentheses are used for grouping.</td> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 353 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 354 | <tr> |
| 355 | <td><b><code>,</code></b></td> |
| 356 | <td class="td_left">The comma separates sequential fields.</td> |
| 357 | </tr> |
| 358 | </tbody> |
| 359 | </table> |
| 360 | <p>So, for example, consider the following specifications:</p> |
| 361 | <div class="doc_code"> |
| 362 | <ol> |
| 363 | <li><code>string?</code></li> |
| 364 | <li><code>(uint32_vbr,uin32_vbr)+</code></li> |
| 365 | <li><code>(unsigned?,uint32_vbr)*</code></li> |
| 366 | <li><code>(llist(unsigned))?</code></li> |
| 367 | </ol> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 368 | </div> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 369 | <p>with the following interpretations:</p> |
| 370 | <ol> |
| 371 | <li>An optional string. Matches either nothing or a single string</li> |
| 372 | <li>One or more pairs of uint32_vbr.</li> |
| 373 | <li>Zero or more occurrences of either an unsigned followed by a |
| 374 | uint32_vbr or just a uint32_vbr.</li> |
| 375 | <li>An optional length list of unsigned values.</li> |
| 376 | </ol> |
| 377 | </div> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 378 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 379 | <div class="doc_subsection"><a name="slots">Slots</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 380 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 381 | <p>The bytecode format uses the notion of a "slot" to reference Types |
| 382 | and Values. Since the bytecode file is a <em>direct</em> representation of |
| 383 | LLVM's intermediate representation, there is a need to represent pointers in |
| 384 | the file. Slots are used for this purpose. For example, if one has the following |
| 385 | assembly: |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 386 | </p> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 387 | <div class="doc_code"><code> %MyType = type { int, sbyte }<br> |
| 388 | %MyVar = external global %MyType |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 389 | </code></div> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 390 | <p>there are two definitions. The definition of <tt>%MyVar</tt> uses <tt>%MyType</tt>. |
| 391 | In the C++ IR this linkage between <tt>%MyVar</tt> and <tt>%MyType</tt> |
| 392 | is explicit through the use of C++ pointers. In bytecode, however, there's no |
| 393 | ability to store memory addresses. Instead, we compute and write out |
| 394 | slot numbers for every Type and Value written to the file.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 395 | <p>A slot number is simply an unsigned 32-bit integer encoded in the variable |
| 396 | bit rate scheme (see <a href="#encoding">encoding</a>). This ensures that |
| 397 | low slot numbers are encoded in one byte. Through various bits of magic LLVM |
| 398 | attempts to always keep the slot numbers low. The first attempt is to associate |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 399 | slot numbers with their "type plane". That is, Values of the same type |
| 400 | are written to the bytecode file in a list (sequentially). Their order in |
| 401 | that list determines their slot number. This means that slot #1 doesn't mean |
| 402 | anything unless you also specify for which type you want slot #1. Types are |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 403 | always written to the file first (in the <a href="#globaltypes">Global Type |
| 404 | Pool</a>) and in such a way that both forward and backward references of the |
| 405 | types can often be resolved with a single pass through the type pool. </p> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 406 | <p>Slot numbers are also kept small by rearranging their order. Because |
| 407 | of the structure of LLVM, certain values are much more likely to be used |
| 408 | frequently in the body of a function. For this reason, a compaction table is |
| 409 | provided in the body of a function if its use would make the function body |
| 410 | smaller. Suppose you have a function body that uses just the types "int*" and |
| 411 | "{double}" but uses them thousands of time. Its worthwhile to ensure that the |
| 412 | slot number for these types are low so they can be encoded in a single byte |
| 413 | (via vbr). This is exactly what the compaction table does.</p> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 414 | <p>In summary then, a slot number can be though of as just a vbr encoded index |
| 415 | into a list of Type* or Value*. To keep slot numbers low, Value* are indexed by |
| 416 | two slot numbers: the "type plane index" (type slot) and the "value index" |
| 417 | (value slot).</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 418 | </div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 419 | <!-- *********************************************************************** --> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 420 | <div class="doc_section"> <a name="general">General Structure</a> </div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 421 | <!-- *********************************************************************** --> |
| 422 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 423 | <p>This section provides the general structure of the LLVM bytecode |
| 424 | file format. The bytecode file format requires blocks to be in a |
| 425 | certain order and nested in a particular way so that an LLVM module can |
| 426 | be constructed efficiently from the contents of the file. This ordering |
| 427 | defines a general structure for bytecode files as shown below. The |
| 428 | table below shows the order in which all block types may appear. Please |
| 429 | note that some of the blocks are optional and some may be repeated. The |
| 430 | structure is fairly loose because optional blocks, if empty, are |
| 431 | completely omitted from the file.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 432 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 433 | <tbody> |
| 434 | <tr> |
| 435 | <th>ID</th> |
| 436 | <th>Parent</th> |
| 437 | <th>Optional?</th> |
| 438 | <th>Repeated?</th> |
| 439 | <th>Level</th> |
| 440 | <th>Block Type</th> |
| 441 | <th>Description</th> |
| 442 | </tr> |
| 443 | <tr> |
| 444 | <td>N/A</td> |
| 445 | <td>File</td> |
| 446 | <td>No</td> |
| 447 | <td>No</td> |
| 448 | <td>0</td> |
| 449 | <td class="td_left"><a href="#signature">Signature</a></td> |
| 450 | <td class="td_left">This contains the file signature (magic |
| 451 | number) that identifies the file as LLVM bytecode.</td> |
| 452 | </tr> |
| 453 | <tr> |
| 454 | <td>0x01</td> |
| 455 | <td>File</td> |
| 456 | <td>No</td> |
| 457 | <td>No</td> |
| 458 | <td>0</td> |
| 459 | <td class="td_left"><a href="#module">Module</a></td> |
| 460 | <td class="td_left">This is the top level block in a bytecode |
| 461 | file. It contains all the other blocks. </td> |
| 462 | </tr> |
| 463 | <tr> |
| 464 | <td>0x06</td> |
| 465 | <td>Module</td> |
| 466 | <td>No</td> |
| 467 | <td>No</td> |
| 468 | <td>1</td> |
| 469 | <td class="td_left"> <a href="#globaltypes">Global Type Pool</a></td> |
| 470 | <td class="td_left">This block contains all the global (module) |
| 471 | level types.</td> |
| 472 | </tr> |
| 473 | <tr> |
| 474 | <td>0x05</td> |
| 475 | <td>Module</td> |
| 476 | <td>No</td> |
| 477 | <td>No</td> |
| 478 | <td>1</td> |
| 479 | <td class="td_left"> <a href="#globalinfo">Module Globals Info</a></td> |
| 480 | <td class="td_left">This block contains the type, constness, and |
| 481 | linkage for each of the global variables in the module. It also |
| 482 | contains the type of the functions and the constant initializers.</td> |
| 483 | </tr> |
| 484 | <tr> |
| 485 | <td>0x03</td> |
| 486 | <td>Module</td> |
| 487 | <td>Yes</td> |
| 488 | <td>No</td> |
| 489 | <td>1</td> |
| 490 | <td class="td_left"> <a href="#constantpool">Module Constant Pool</a></td> |
| 491 | <td class="td_left">This block contains all the global constants |
| 492 | except function arguments, global values and constant strings.</td> |
| 493 | </tr> |
| 494 | <tr> |
| 495 | <td>0x02</td> |
| 496 | <td>Module</td> |
| 497 | <td>Yes</td> |
| 498 | <td>Yes</td> |
| 499 | <td>1</td> |
| 500 | <td class="td_left"> <a href="#functiondefs">Function Definitions</a>*</td> |
| 501 | <td class="td_left">One function block is written for each |
| 502 | function in the module. The function block contains the instructions, |
| 503 | compaction table, type constant pool, and symbol table for the function.</td> |
| 504 | </tr> |
| 505 | <tr> |
| 506 | <td>0x03</td> |
| 507 | <td>Function</td> |
| 508 | <td>Yes</td> |
| 509 | <td>No</td> |
| 510 | <td>2</td> |
| 511 | <td class="td_left"> <a |
| 512 | href="#constantpool">Function Constant Pool</a></td> |
| 513 | <td class="td_left">Any constants (including types) used solely |
| 514 | within the function are emitted here in the function constant pool. </td> |
| 515 | </tr> |
| 516 | <tr> |
| 517 | <td>0x08</td> |
| 518 | <td>Function</td> |
| 519 | <td>Yes</td> |
| 520 | <td>No</td> |
| 521 | <td>2</td> |
| 522 | <td class="td_left"> <a |
| 523 | href="#compactiontable">Compaction Table</a></td> |
| 524 | <td class="td_left">This table reduces bytecode size by providing |
| 525 | a funtion-local mapping of type and value slot numbers to their global |
| 526 | slot numbers</td> |
| 527 | </tr> |
| 528 | <tr> |
| 529 | <td>0x07</td> |
| 530 | <td>Function</td> |
| 531 | <td>No</td> |
| 532 | <td>No</td> |
| 533 | <td>2</td> |
| 534 | <td class="td_left"> <a |
| 535 | href="#instructionlist">Instruction List</a></td> |
| 536 | <td class="td_left">This block contains all the instructions of |
| 537 | the function. The basic blocks are inferred by terminating |
| 538 | instructions. </td> |
| 539 | </tr> |
| 540 | <tr> |
| 541 | <td>0x04</td> |
| 542 | <td>Function</td> |
| 543 | <td>Yes</td> |
| 544 | <td>No</td> |
| 545 | <td>2</td> |
| 546 | <td class="td_left"> <a |
| 547 | href="#symtab">Function Symbol Table</a></td> |
| 548 | <td class="td_left">This symbol table provides the names for the |
| 549 | function specific values used (basic block labels mostly).</td> |
| 550 | </tr> |
| 551 | <tr> |
| 552 | <td>0x04</td> |
| 553 | <td>Module</td> |
| 554 | <td>Yes</td> |
| 555 | <td>No</td> |
| 556 | <td>1</td> |
| 557 | <td class="td_left"> <a href="#symtab">Module Symbol Table</a></td> |
| 558 | <td class="td_left">This symbol table provides the names for the |
| 559 | various entries in the file that are not function specific (global |
| 560 | vars, and functions mostly).</td> |
| 561 | </tr> |
| 562 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 563 | </table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 564 | <p>Use the links in the table for details about the contents of each of |
| 565 | the block types.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 566 | </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 567 | <!-- *********************************************************************** --> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 568 | <div class="doc_section"> <a name="blockdefs">Block Definitions</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 569 | <!-- *********************************************************************** --> |
| 570 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 571 | <p>This section provides the detailed layout of the individual block |
| 572 | types in the LLVM bytecode file format. </p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 573 | </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 574 | <!-- _______________________________________________________________________ --> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 575 | <div class="doc_subsection"><a name="signature">Signature Block</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 576 | <div class="doc_text"> |
Chris Lattner | 2b90565 | 2004-05-24 05:35:17 +0000 | [diff] [blame] | 577 | <p>The signature occurs in every LLVM bytecode file and is always first. |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 578 | It simply provides a few bytes of data to identify the file as being an LLVM |
| 579 | bytecode file. This block is always four bytes in length and differs from the |
| 580 | other blocks because there is no identifier and no block length at the start |
| 581 | of the block. Essentially, this block is just the "magic number" for the file. |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 582 | </p> |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 583 | <p>There are two types of signatures for LLVM bytecode: uncompressed and |
| 584 | compressed as shown in the table below. </p> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 585 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 586 | <tbody> |
| 587 | <tr> |
| 588 | <th><b>Type</b></th> |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 589 | <th class="td_left"><b>Uncompressed</b></th> |
| 590 | <th class="td_left"><b>Compressed</b></th> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 591 | </tr> |
| 592 | <tr> |
| 593 | <td><a href="#char">char</a></td> |
| 594 | <td class="td_left">Constant "l" (0x6C)</td> |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 595 | <td class="td_left">Constant "l" (0x6C)</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 596 | </tr> |
| 597 | <tr> |
| 598 | <td><a href="#char">char</a></td> |
| 599 | <td class="td_left">Constant "l" (0x6C)</td> |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 600 | <td class="td_left">Constant "l" (0x6C)</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 601 | </tr> |
| 602 | <tr> |
| 603 | <td><a href="#char">char</a></td> |
| 604 | <td class="td_left">Constant "v" (0x76)</td> |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 605 | <td class="td_left">Constant "v" (0x76)</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 606 | </tr> |
| 607 | <tr> |
| 608 | <td><a href="#char">char</a></td> |
| 609 | <td class="td_left">Constant "m" (0x6D)</td> |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 610 | <td class="td_left">Constant "c" (0x63)</td> |
| 611 | </tr> |
| 612 | <tr> |
| 613 | <td><a href="#char">char</a></td> |
| 614 | <td class="td_left">N/A</td> |
| 615 | <td class="td_left">'0'=null,'1'=gzip,'2'=bzip2</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 616 | </tr> |
| 617 | </tbody> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 618 | </table> |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 619 | <p>In other words, the uncompressed signature is just the characters 'llvm' |
| 620 | while the compressed signature is the characters 'llvc' followed by an ascii |
| 621 | digit ('0', '1', or '2') that indicates the kind of compression used. A value of |
| 622 | '0' indicates that null compression was used. This can happen when compression |
| 623 | was requested on a platform that wasn't configured for gzip or bzip2. A value of |
| 624 | '1' means that the rest of the file is compressed using the gzip algorithm and |
| 625 | should be uncompressed before interpretation. A value of '2' means that the rest |
| 626 | of the file is compressed using the bzip2 algorithm and should be uncompressed |
| 627 | before interpretation. In all cases, the data resulting from uncompression |
| 628 | should be interpreted as if it occurred immediately after the 'llvm' |
| 629 | signature (i.e. the uncompressed data begins with the |
| 630 | <a href="#module">Module Block</a></p> |
| 631 | <p><b>NOTE:</b> As of LLVM 1.4, all bytecode files produced by the LLVM tools |
Reid Spencer | a4213b2 | 2004-11-08 09:10:50 +0000 | [diff] [blame] | 632 | are compressed by default. To disable compression, pass the |
Reid Spencer | da794e7 | 2004-11-08 08:55:21 +0000 | [diff] [blame] | 633 | <tt>--disable-compression</tt> option to the tool, if it supports it. |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 634 | </div> |
| 635 | <!-- _______________________________________________________________________ --> |
| 636 | <div class="doc_subsection"><a name="module">Module Block</a> </div> |
| 637 | <div class="doc_text"> |
| 638 | <p>The module block contains a small pre-amble and all the other blocks in |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 639 | the file. The table below shows the structure of the module block. Note that it |
| 640 | only provides the module identifier, size of the module block, and the format |
| 641 | information. Everything else is contained in other blocks, described in other |
| 642 | sections.</p> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 643 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 644 | <tbody> |
| 645 | <tr> |
| 646 | <th><b>Type</b></th> |
| 647 | <th class="td_left"><b>Field Description</b></th> |
| 648 | </tr> |
| 649 | <tr> |
Reid Spencer | 5bc74d5 | 2004-08-16 19:24:36 +0000 | [diff] [blame] | 650 | <td><a href="#unsigned">unsigned</a><br></td> |
| 651 | <td class="td_left"><a href="#mod_header">Module Block Identifier |
| 652 | (0x01)</a></td> |
| 653 | </tr> |
| 654 | <tr> |
| 655 | <td><a href="#unsigned">unsigned</a></td> |
| 656 | <td class="td_left"><a href="#mod_header">Module Block Size</a></td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 657 | </tr> |
| 658 | <tr> |
| 659 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 660 | <td class="td_left"><a href="#format">Format Information</a></td> |
| 661 | </tr> |
| 662 | <tr> |
| 663 | <td><a href="#block">block</a></td> |
| 664 | <td class="td_left"><a href="#globaltypes">Global Type Pool</a></td> |
| 665 | </tr> |
| 666 | <tr> |
| 667 | <td><a href="#block">block</a></td> |
| 668 | <td class="td_left"><a href="#globalinfo">Module Globals Info</a></td> |
| 669 | </tr> |
| 670 | <tr> |
| 671 | <td><a href="#block">block</a></td> |
| 672 | <td class="td_left"><a href="#constantpool">Module Constant Pool</a></td> |
| 673 | </tr> |
| 674 | <tr> |
| 675 | <td><a href="#block">block</a>*</td> |
| 676 | <td class="td_left"><a href="#functiondefs">Function Definitions</a></td> |
| 677 | </tr> |
| 678 | <tr> |
| 679 | <td><a href="#block">block</a></td> |
Reid Spencer | 8996e55 | 2004-08-17 00:49:03 +0000 | [diff] [blame] | 680 | <td class="td_left"><a href="#symtab">Module Symbol Table</a></td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 681 | </tr> |
| 682 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 683 | </table> |
| 684 | </div> |
Reid Spencer | 5bc74d5 | 2004-08-16 19:24:36 +0000 | [diff] [blame] | 685 | |
| 686 | <!-- _______________________________________________________________________ --> |
| 687 | <div class="doc_subsubsection"><a name="mod_header">Module Block Header</a></div> |
| 688 | <div class="doc_text"> |
| 689 | <p>The block header for the module block uses a longer format than the other |
| 690 | blocks in a bytecode file. Specifically, instead of encoding the type and size |
| 691 | of the block into a 32-bit integer with 5-bits for type and 27-bits for size, |
| 692 | the module block header uses two 32-bit unsigned values, one for type, and one |
| 693 | for size. While the 2<sup>27</sup> byte limit on block size is sufficient for the blocks |
| 694 | contained in the module, it isn't sufficient for the module block itself |
| 695 | because we want to ensure that bytecode files as large as 2<sup>32</sup> bytes |
| 696 | are possible. For this reason, the module block (and only the module block) |
| 697 | uses a long format header.</p> |
| 698 | </div> |
| 699 | |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 700 | <!-- _______________________________________________________________________ --> |
| 701 | <div class="doc_subsubsection"><a name="format">Format Information</a></div> |
| 702 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 703 | <p>The format information field is encoded into a <a href="#uint32_vbr">uint32_vbr</a> |
| 704 | as shown in the following table.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 705 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 706 | <tbody> |
| 707 | <tr> |
| 708 | <th><b>Type</b></th> |
| 709 | <th class="td_left"><b>Description</b></th> |
| 710 | </tr> |
| 711 | <tr> |
| 712 | <td><a href="#bit">bit(0)</a></td> |
| 713 | <td class="td_left">Target is big endian?</td> |
| 714 | </tr> |
| 715 | <tr> |
| 716 | <td><a href="#bit">bit(1)</a></td> |
| 717 | <td class="td_left">On target pointers are 64-bit?</td> |
| 718 | </tr> |
| 719 | <tr> |
| 720 | <td><a href="#bit">bit(2)</a></td> |
| 721 | <td class="td_left">Target has no endianess?</td> |
| 722 | </tr> |
| 723 | <tr> |
| 724 | <td><a href="#bit">bit(3)</a></td> |
| 725 | <td class="td_left">Target has no pointer size?</td> |
| 726 | </tr> |
| 727 | <tr> |
| 728 | <td><a href="#bit">bit(4-31)</a></td> |
| 729 | <td class="td_left">Bytecode format version</td> |
| 730 | </tr> |
| 731 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 732 | </table> |
| 733 | <p> |
| 734 | Of particular note, the bytecode format number is simply a 28-bit |
John Criswell | 611a8d1 | 2005-10-24 16:20:10 +0000 | [diff] [blame] | 735 | monotonically increasing integer that identifies the version of the bytecode |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 736 | format (which is not directly related to the LLVM release number). The |
| 737 | bytecode versions defined so far are (note that this document only |
| 738 | describes the latest version, 1.3):</p> |
Chris Lattner | 2b90565 | 2004-05-24 05:35:17 +0000 | [diff] [blame] | 739 | <ul> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 740 | <li>#0: LLVM 1.0 & 1.1</li> |
| 741 | <li>#1: LLVM 1.2</li> |
| 742 | <li>#2: LLVM 1.2.5 (not released)</li> |
John Criswell | 1d9be9e | 2005-10-24 17:10:57 +0000 | [diff] [blame] | 743 | <li>#3: LLVM 1.3</li> |
| 744 | <li>#4: LLVM 1.3.x (not released)</li> |
Tanya Lattner | fcccd6b | 2006-04-20 05:05:12 +0000 | [diff] [blame] | 745 | <li>#5: LLVM 1.4 and newer</li> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 746 | </li> |
Chris Lattner | 2b90565 | 2004-05-24 05:35:17 +0000 | [diff] [blame] | 747 | </ul> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 748 | <p>Note that we plan to eventually expand the target description |
| 749 | capabilities |
Reid Spencer | 05fe4b0 | 2006-03-14 05:39:39 +0000 | [diff] [blame] | 750 | of bytecode files to <a href="http://llvm.org/PR263">target |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 751 | triples</a>. |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 752 | </p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 753 | </div> |
| 754 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 755 | <div class="doc_subsection"><a name="globaltypes">Global Type Pool</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 756 | <div class="doc_text"> |
Chris Lattner | 2b90565 | 2004-05-24 05:35:17 +0000 | [diff] [blame] | 757 | <p>The global type pool consists of type definitions. Their order of appearance |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 758 | in the file determines their type slot number (0 based). Slot numbers are |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 759 | used to replace pointers in the intermediate representation. Each slot number |
| 760 | uniquely identifies one entry in a type plane (a collection of values of the |
| 761 | same type). Since all values have types and are associated with the order in |
| 762 | which the type pool is written, the global type pool <em>must</em> be written |
| 763 | as the first block of a module. If it is not, attempts to read the file will |
| 764 | fail because both forward and backward type resolution will not be possible.</p> |
| 765 | <p>The type pool is simply a list of type definitions, as shown in the |
| 766 | table below.</p> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 767 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 768 | <tbody> |
| 769 | <tr> |
| 770 | <th><b>Type</b></th> |
| 771 | <th class="td_left"><b>Field Description</b></th> |
| 772 | </tr> |
| 773 | <tr> |
| 774 | <td><a href="#unsigned">block</a></td> |
| 775 | <td class="td_left">Type Pool Identifier (0x06) + Size<br> |
| 776 | </td> |
| 777 | </tr> |
| 778 | <tr> |
| 779 | <td><a href="#llist">llist</a>(<a href="#type">type</a>)</td> |
| 780 | <td class="td_left">A length list of type definitions.</td> |
| 781 | </tr> |
| 782 | </tbody> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 783 | </table> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 784 | </div> |
| 785 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 786 | <div class="doc_subsubsection"><a name="type">Type Definitions</a></div> |
| 787 | <div class="doc_text"> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 788 | <p>Types in the type pool are defined using a different format for each kind |
| 789 | of type, as given in the following sections.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 790 | <h3>Primitive Types</h3> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 791 | <p>The primitive types encompass the basic integer and floating point |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 792 | types. They are encoded simply as their TypeID.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 793 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 794 | <tbody> |
| 795 | <tr> |
| 796 | <th><b>Type</b></th> |
| 797 | <th class="td_left"><b>Description</b></th> |
| 798 | </tr> |
| 799 | <tr> |
| 800 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 801 | <td class="td_left">Type ID for the primitive types (values 1 to |
| 802 | 11) <sup>1</sup></td> |
| 803 | </tr> |
| 804 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 805 | </table> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 806 | Notes: |
| 807 | <ol> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 808 | <li>The values for the Type IDs for the primitive types are provided |
| 809 | by the definition of the <code>llvm::Type::TypeID</code> enumeration |
| 810 | in <code>include/llvm/Type.h</code>. The enumeration gives the |
| 811 | following mapping: |
| 812 | <ol> |
| 813 | <li>bool</li> |
| 814 | <li>ubyte</li> |
| 815 | <li>sbyte</li> |
| 816 | <li>ushort</li> |
| 817 | <li>short</li> |
| 818 | <li>uint</li> |
| 819 | <li>int</li> |
| 820 | <li>ulong</li> |
| 821 | <li>long</li> |
| 822 | <li>float</li> |
| 823 | <li>double</li> |
| 824 | </ol> |
| 825 | </li> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 826 | </ol> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 827 | <h3>Function Types</h3> |
| 828 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 829 | <tbody> |
| 830 | <tr> |
| 831 | <th><b>Type</b></th> |
| 832 | <th class="td_left"><b>Description</b></th> |
| 833 | </tr> |
| 834 | <tr> |
| 835 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 836 | <td class="td_left">Type ID for function types (13)</td> |
| 837 | </tr> |
| 838 | <tr> |
| 839 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 840 | <td class="td_left">Type slot number of function's return type.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 841 | </tr> |
| 842 | <tr> |
| 843 | <td><a href="#llist">llist</a>(<a href="#uint24_vbr">uint24_vbr</a>)</td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 844 | <td class="td_left">Type slot number of each argument's type.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 845 | </tr> |
| 846 | <tr> |
| 847 | <td><a href="#uint32_vbr">uint32_vbr</a>?</td> |
| 848 | <td class="td_left">Value 0 if this is a varargs function, |
| 849 | missing otherwise.</td> |
| 850 | </tr> |
| 851 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 852 | </table> |
| 853 | <h3>Structure Types</h3> |
| 854 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 855 | <tbody> |
| 856 | <tr> |
| 857 | <th><b>Type</b></th> |
| 858 | <th class="td_left"><b>Description</b></th> |
| 859 | </tr> |
| 860 | <tr> |
| 861 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 862 | <td class="td_left">Type ID for structure types (14)</td> |
| 863 | </tr> |
| 864 | <tr> |
| 865 | <td><a href="#zlist">zlist</a>(<a href="#uint24_vbr">uint24_vbr</a>)</td> |
| 866 | <td class="td_left">Slot number of each of the element's fields.</td> |
| 867 | </tr> |
| 868 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 869 | </table> |
| 870 | <h3>Array Types</h3> |
| 871 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 872 | <tbody> |
| 873 | <tr> |
| 874 | <th><b>Type</b></th> |
| 875 | <th class="td_left"><b>Description</b></th> |
| 876 | </tr> |
| 877 | <tr> |
| 878 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 879 | <td class="td_left">Type ID for Array Types (15)</td> |
| 880 | </tr> |
| 881 | <tr> |
| 882 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 883 | <td class="td_left">Type slot number of array's element type.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 884 | </tr> |
| 885 | <tr> |
| 886 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 887 | <td class="td_left">The number of elements in the array.</td> |
| 888 | </tr> |
| 889 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 890 | </table> |
| 891 | <h3>Pointer Types</h3> |
| 892 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 893 | <tbody> |
| 894 | <tr> |
| 895 | <th><b>Type</b></th> |
| 896 | <th class="td_left"><b>Description</b></th> |
| 897 | </tr> |
| 898 | <tr> |
| 899 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 900 | <td class="td_left">Type ID For Pointer Types (16)</td> |
| 901 | </tr> |
| 902 | <tr> |
| 903 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 904 | <td class="td_left">Type slot number of pointer's element type.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 905 | </tr> |
| 906 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 907 | </table> |
| 908 | <h3>Opaque Types</h3> |
| 909 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 910 | <tbody> |
| 911 | <tr> |
| 912 | <th><b>Type</b></th> |
| 913 | <th class="td_left"><b>Description</b></th> |
| 914 | </tr> |
| 915 | <tr> |
| 916 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 917 | <td class="td_left">Type ID For Opaque Types (17)</td> |
| 918 | </tr> |
| 919 | </tbody> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 920 | </table> |
Brian Gaeke | 715c90b | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 921 | <h3>Packed Types</h3> |
| 922 | <table> |
| 923 | <tbody> |
| 924 | <tr> |
| 925 | <th><b>Type</b></th> |
| 926 | <th class="td_left"><b>Description</b></th> |
| 927 | </tr> |
| 928 | <tr> |
| 929 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 930 | <td class="td_left">Type ID for Packed Types (18)</td> |
| 931 | </tr> |
| 932 | <tr> |
| 933 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 934 | <td class="td_left">Slot number of packed vector's element type.</td> |
| 935 | </tr> |
| 936 | <tr> |
| 937 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 938 | <td class="td_left">The number of elements in the packed vector.</td> |
| 939 | </tr> |
| 940 | </tbody> |
| 941 | </table> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 942 | </div> |
| 943 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 944 | <div class="doc_subsection"><a name="globalinfo">Module Global Info</a> |
| 945 | </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 946 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 947 | <p>The module global info block contains the definitions of all global |
| 948 | variables including their initializers and the <em>declaration</em> of |
| 949 | all functions. The format is shown in the table below:</p> |
| 950 | <table> |
| 951 | <tbody> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 952 | <tr> |
| 953 | <th><b>Type</b></th> |
| 954 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 955 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 956 | <tr> |
| 957 | <td><a href="#block">block</a></td> |
Chris Lattner | 45f5051 | 2006-01-23 23:38:09 +0000 | [diff] [blame] | 958 | <td class="td_left">Module global info identifier (0x05) + size</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 959 | </tr> |
| 960 | <tr> |
| 961 | <td><a href="#zlist">zlist</a>(<a href="#globalvar">globalvar</a>)</td> |
| 962 | <td class="td_left">A zero terminated list of global var |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 963 | definitions occurring in the module.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 964 | </tr> |
| 965 | <tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 966 | <td><a href="#zlist">zlist</a>(<a href="#funcfield">funcfield</a>)</td> |
| 967 | <td class="td_left">A zero terminated list of function definitions |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 968 | occurring in the module.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 969 | </tr> |
| 970 | <tr> |
Chris Lattner | 45f5051 | 2006-01-23 23:38:09 +0000 | [diff] [blame] | 971 | <td><a href="#llist">llist</a>(<a href="#string">string</a>)</td> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 972 | <td class="td_left">A length list |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 973 | of strings that specify the names of the libraries that this module |
Chris Lattner | 45f5051 | 2006-01-23 23:38:09 +0000 | [diff] [blame] | 974 | depends upon.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 975 | </tr> |
| 976 | <tr> |
Chris Lattner | 45f5051 | 2006-01-23 23:38:09 +0000 | [diff] [blame] | 977 | <td><a href="#string">string</a></td> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 978 | <td class="td_left">The target |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 979 | triple for the module (blank means no target triple specified, i.e. a |
Chris Lattner | 45f5051 | 2006-01-23 23:38:09 +0000 | [diff] [blame] | 980 | platform independent module).</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 981 | </tr> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 982 | <tr> |
Chris Lattner | 45f5051 | 2006-01-23 23:38:09 +0000 | [diff] [blame] | 983 | <td><a href="#llist">llist</a>(<a href="#string">string</a>)</td> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 984 | <td class="td_left">A length list |
| 985 | of strings that defines a table of section strings for globals. A global's |
Chris Lattner | 45f5051 | 2006-01-23 23:38:09 +0000 | [diff] [blame] | 986 | SectionID is an index into this table.</td> |
| 987 | </tr> |
| 988 | <tr> |
| 989 | <td><a href="#string">string</a></td> |
| 990 | <td class="td_left">The inline asm block for this module.</td> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 991 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 992 | </tbody> |
| 993 | </table> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 994 | </div> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 995 | |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 996 | <!-- _______________________________________________________________________ --> |
| 997 | <div class="doc_subsubsection"><a name="globalvar">Global Variable Field</a> |
| 998 | </div> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 999 | |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1000 | <div class="doc_text"> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1001 | |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1002 | <p>Global variables are written using an <a href="#uint32_vbr">uint32_vbr</a> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1003 | that encodes information about the global variable, an optional extension vbr, |
| 1004 | and a an optional initializers for the global var.</p> |
| 1005 | |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1006 | <p>The table below provides the bit layout of the first <a |
| 1007 | href="#uint32_vbr">uint32_vbr</a> that describes the global variable.</p> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1008 | |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1009 | <table> |
| 1010 | <tbody> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 1011 | <tr> |
| 1012 | <th><b>Type</b></th> |
| 1013 | <th class="td_left"><b>Description</b></th> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 1014 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1015 | <tr> |
| 1016 | <td><a href="#bit">bit(0)</a></td> |
| 1017 | <td class="td_left">Is constant?</td> |
| 1018 | </tr> |
| 1019 | <tr> |
| 1020 | <td><a href="#bit">bit(1)</a></td> |
| 1021 | <td class="td_left">Has initializer? Note that this bit |
| 1022 | determines whether the constant initializer field (described below) |
| 1023 | follows. </td> |
| 1024 | </tr> |
| 1025 | <tr> |
| 1026 | <td><a href="#bit">bit(2-4)</a></td> |
| 1027 | <td class="td_left">Linkage type: 0=External, 1=Weak, |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame^] | 1028 | 2=Appending, 3=Internal, 4=LinkOnce, 5=DllImport, |
| 1029 | 6=DllExport, 7=ExternWeak</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1030 | </tr> |
| 1031 | <tr> |
| 1032 | <td><a href="#bit">bit(5-31)</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1033 | <td class="td_left">Type slot number of type for the global variable.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1034 | </tr> |
| 1035 | </tbody> |
| 1036 | </table> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1037 | |
| 1038 | <p>When the Linkage type is set to 3 (internal) and the initializer field is set |
| 1039 | to 0 (an invalid combination), an extension word follows the first <a |
| 1040 | href="#uint32_vbr">uint32_vbr</a> which encodes the real linkage and init flag, |
| 1041 | and can includes more information:</p> |
| 1042 | |
| 1043 | <table> |
| 1044 | <tbody> |
| 1045 | <tr> |
| 1046 | <th><b>Type</b></th> |
| 1047 | <th class="td_left"><b>Description</b></th> |
| 1048 | </tr> |
| 1049 | <tr> |
| 1050 | <td><a href="#bit">bit(0)</a></td> |
| 1051 | <td class="td_left">Has initializer? Indicates the real value of the "Has |
| 1052 | initializer" field for the global. </td> |
| 1053 | </tr> |
| 1054 | <tr> |
| 1055 | <td><a href="#bit">bit(2-4)</a></td> |
| 1056 | <td class="td_left">Linkage type: Indicates the real value of the "linkage |
| 1057 | type" field for the global.</td> |
| 1058 | </tr> |
| 1059 | <tr> |
| 1060 | <td><a href="#bit">bit(4-8)</a></td> |
| 1061 | <td class="td_left">The log-base-2 of the alignment for the global.</td> |
| 1062 | </tr> |
| 1063 | <tr> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 1064 | <td><a href="#bit">bit(9)</a></td> |
| 1065 | <td class="td_left">If this bit is set, a SectionID follows this vbr.</td> |
| 1066 | </tr> |
| 1067 | <tr> |
| 1068 | <td><a href="#bit">bit(10-31)</a></td> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1069 | <td class="td_left">Currently unassigned.</td> |
| 1070 | </tr> |
| 1071 | </tbody> |
| 1072 | </table> |
| 1073 | |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 1074 | <p>If the SectionID bit is set above, the following field is included:</p> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1075 | |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1076 | <table> |
| 1077 | <tbody> |
| 1078 | <tr> |
| 1079 | <th><b>Type</b></th> |
| 1080 | <th class="td_left"><b>Description</b></th> |
| 1081 | </tr> |
| 1082 | <tr> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 1083 | <td><a href="#uint32_vbr">uint32_vbr</a> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1084 | </td> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 1085 | <td class="td_left">An optional section ID number, specifying the string |
| 1086 | to use for the section of the global. This an index (+1) of an entry |
| 1087 | into the SectionID llist in the <a href="#globalinfo">Module Global |
| 1088 | Info</a> block. If this value is 0 or not present, the global has an |
| 1089 | empty section string.</td> |
| 1090 | </tr> |
| 1091 | </tbody> |
| 1092 | </table> |
| 1093 | |
| 1094 | <p>If the "Has initializer" field is set, the following field is included:</p> |
| 1095 | |
| 1096 | <table> |
| 1097 | <tbody> |
| 1098 | <tr> |
| 1099 | <th><b>Type</b></th> |
| 1100 | <th class="td_left"><b>Description</b></th> |
| 1101 | </tr> |
| 1102 | <tr> |
| 1103 | <td><a href="#uint32_vbr">uint32_vbr</a> |
| 1104 | </td> |
| 1105 | <td class="td_left">An optional value slot number for the global |
| 1106 | variable's constant initializer.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1107 | </tr> |
| 1108 | </tbody> |
| 1109 | </table> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1110 | </div> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1111 | |
| 1112 | <!-- _______________________________________________________________________ --> |
| 1113 | <div class="doc_subsubsection"><a name="funcfield">Function Field</a> |
| 1114 | </div> |
| 1115 | <div class="doc_text"> |
| 1116 | <p>Functions are written using an <a href="#uint32_vbr">uint32_vbr</a> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1117 | that encodes information about the function and a set of flags. If needed, |
| 1118 | an extension word may follow this first field.</p> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1119 | |
| 1120 | <p>The table below provides the bit layout of the <a |
| 1121 | href="#uint32_vbr">uint32_vbr</a> that describes the function.</p> |
| 1122 | |
| 1123 | <table> |
| 1124 | <tbody> |
| 1125 | <tr> |
| 1126 | <th><b>Type</b></th> |
| 1127 | <th class="td_left"><b>Description</b></th> |
| 1128 | </tr> |
| 1129 | <tr> |
Chris Lattner | ced6222 | 2004-11-15 22:54:50 +0000 | [diff] [blame] | 1130 | <td><a href="#bit">bit(0-3)</a></td> |
Chris Lattner | bad10ee | 2005-05-06 22:57:40 +0000 | [diff] [blame] | 1131 | <td class="td_left"> |
Chris Lattner | 52942b5 | 2005-11-06 07:48:11 +0000 | [diff] [blame] | 1132 | Encodes the calling convention number of the function. The |
Chris Lattner | bad10ee | 2005-05-06 22:57:40 +0000 | [diff] [blame] | 1133 | CC number of the function is the value of this field minus one. |
| 1134 | </td> |
Chris Lattner | ced6222 | 2004-11-15 22:54:50 +0000 | [diff] [blame] | 1135 | </tr> |
| 1136 | <tr> |
| 1137 | <td><a href="#bit">bit(4)</a></td> |
| 1138 | <td class="td_left">If this bit is set to 1, the indicated function is |
| 1139 | external, and there is no <a href="#functiondefs">Function Definiton |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame^] | 1140 | Block</a> in the bytecode file for the function. If the function is |
| 1141 | external and has <tt>dllimport or extern_weak</tt> linkage additional |
| 1142 | field in the extension word is used to indicate the actual linkage |
| 1143 | type.</td> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1144 | </tr> |
| 1145 | <tr> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1146 | <td><a href="#bit">bit(5-30)</a></td> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1147 | <td class="td_left">Type slot number of type for the function.</td> |
| 1148 | </tr> |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame^] | 1149 | <tr> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1150 | <td><a href="#bit">bit(31)</a></td> |
| 1151 | <td class="td_left">Indicates whether an extension word follows.</td> |
| 1152 | </tr> |
| 1153 | </tbody> |
| 1154 | </table> |
| 1155 | |
| 1156 | <p>If bit(31) is set, an additional <a href="#uint32_vbr">uint32_vbr</a> word |
| 1157 | follows with the following fields:</p> |
| 1158 | |
| 1159 | <table> |
| 1160 | <tbody> |
| 1161 | <tr> |
| 1162 | <th><b>Type</b></th> |
| 1163 | <th class="td_left"><b>Description</b></th> |
| 1164 | </tr> |
| 1165 | <tr> |
| 1166 | <td><a href="#bit">bit(0-4)</a></td> |
| 1167 | <td class="td_left">The log-base-2 of the alignment for the function.</td> |
| 1168 | </tr> |
| 1169 | <tr> |
Chris Lattner | 52942b5 | 2005-11-06 07:48:11 +0000 | [diff] [blame] | 1170 | <td><a href="#bit">bit(5-9)</a></td> |
| 1171 | <td class="td_left">The top nibble of the calling convention.</td> |
| 1172 | </tr> |
| 1173 | <tr> |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 1174 | <td><a href="#bit">bit(10)</a></td> |
| 1175 | <td class="td_left">If this bit is set, a SectionID follows this vbr.</td> |
| 1176 | </tr> |
| 1177 | <tr> |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame^] | 1178 | <td><a href="#bit">bit(11-12)</a></td> |
| 1179 | <td class="td_left">Linkage type for external functions. 0 - External |
| 1180 | linkage, 1 - DLLImport linkage, 2 - External weak linkage.</td> |
| 1181 | </tr> |
| 1182 | <tr> |
| 1183 | <td><a href="#bit">bit(13-31)</a></td> |
Chris Lattner | afedcb3 | 2005-11-06 07:20:25 +0000 | [diff] [blame] | 1184 | <td class="td_left">Currently unassigned.</td> |
| 1185 | </tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1186 | </tbody> |
| 1187 | </table> |
| 1188 | |
Chris Lattner | 767d6ba | 2005-11-12 01:46:21 +0000 | [diff] [blame] | 1189 | <p>If the SectionID bit is set above, the following field is included:</p> |
| 1190 | |
| 1191 | <table> |
| 1192 | <tbody> |
| 1193 | <tr> |
| 1194 | <th><b>Type</b></th> |
| 1195 | <th class="td_left"><b>Description</b></th> |
| 1196 | </tr> |
| 1197 | <tr> |
| 1198 | <td><a href="#uint32_vbr">uint32_vbr</a> |
| 1199 | </td> |
| 1200 | <td class="td_left">An optional section ID number, specifying the string |
| 1201 | to use for the section of the function. This an index (+1) of an entry |
| 1202 | into the SectionID llist in the <a href="#globalinfo">Module Global |
| 1203 | Info</a> block. If this value is 0 or not present, the function has an |
| 1204 | empty section string.</td> |
| 1205 | </tr> |
| 1206 | </tbody> |
| 1207 | </table> |
| 1208 | |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1209 | </div> |
| 1210 | |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1211 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 1212 | <div class="doc_subsection"><a name="constantpool">Constant Pool</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1213 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1214 | <p>A constant pool defines as set of constant values. There are |
| 1215 | actually two types of constant pool blocks: one for modules and one for |
| 1216 | functions. For modules, the block begins with the constant strings |
| 1217 | encountered anywhere in the module. For functions, the block begins |
| 1218 | with types only encountered in the function. In both cases the header |
| 1219 | is identical. The tables that follow, show the header, module constant |
| 1220 | pool preamble, function constant pool preamble, and the part common to |
| 1221 | both function and module constant pools.</p> |
| 1222 | <p><b>Common Block Header</b></p> |
| 1223 | <table> |
| 1224 | <tbody> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1225 | <tr> |
| 1226 | <th><b>Type</b></th> |
| 1227 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1228 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1229 | <tr> |
| 1230 | <td><a href="#block">block</a></td> |
| 1231 | <td class="td_left">Constant pool identifier (0x03) + size<br> |
| 1232 | </td> |
| 1233 | </tr> |
| 1234 | </tbody> |
| 1235 | </table> |
| 1236 | <p><b>Module Constant Pool Preamble (constant strings)</b></p> |
| 1237 | <table> |
| 1238 | <tbody> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1239 | <tr> |
| 1240 | <th><b>Type</b></th> |
| 1241 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1242 | </tr> |
| 1243 | <tr> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1244 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1245 | <td class="td_left">The number of constant strings that follow.</td> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1246 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1247 | <tr> |
| 1248 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1249 | <td class="td_left">Zero. This identifies the following "plane" |
| 1250 | as containing the constant strings. This is needed to identify it |
| 1251 | uniquely from other constant planes that follow. </td> |
| 1252 | </tr> |
| 1253 | <tr> |
| 1254 | <td><a href="#uint24_vbr">uint24_vbr</a>+</td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1255 | <td class="td_left">Type slot number of the constant string's type. |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1256 | Note that the constant string's type implicitly defines the length of |
| 1257 | the string. </td> |
| 1258 | </tr> |
| 1259 | </tbody> |
| 1260 | </table> |
| 1261 | <p><b>Function Constant Pool Preamble (function types)</b></p> |
| 1262 | <p>The structure of the types for functions is identical to the <a |
| 1263 | href="#globaltypes">Global Type Pool</a>. Please refer to that section |
| 1264 | for the details. </p> |
| 1265 | <p><b>Common Part (other constants)</b></p> |
| 1266 | <table> |
| 1267 | <tbody> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1268 | <tr> |
| 1269 | <th><b>Type</b></th> |
| 1270 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1271 | </tr> |
| 1272 | <tr> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1273 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1274 | <td class="td_left">Number of entries in this type plane.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1275 | </tr> |
| 1276 | <tr> |
| 1277 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1278 | <td class="td_left">Type slot number of this plane.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1279 | </tr> |
| 1280 | <tr> |
Reid Spencer | 82c4671 | 2004-07-07 13:34:26 +0000 | [diff] [blame] | 1281 | <td><a href="#constant">constant</a>+</td> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1282 | <td class="td_left">The definition of a constant (see below).</td> |
| 1283 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1284 | </tbody> |
| 1285 | </table> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1286 | </div> |
Chris Lattner | 591d049 | 2006-01-25 23:31:53 +0000 | [diff] [blame] | 1287 | |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1288 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 591d049 | 2006-01-25 23:31:53 +0000 | [diff] [blame] | 1289 | <div class="doc_subsubsection"><a name="constant">Simple Constant Pool |
| 1290 | Entries</a></div> |
| 1291 | |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1292 | <div class="doc_text"> |
Chris Lattner | 591d049 | 2006-01-25 23:31:53 +0000 | [diff] [blame] | 1293 | |
| 1294 | <p>Constant pool entries come in many shapes and flavors. The sections that |
| 1295 | follow define the format for each of them. All constants start with a <a |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1296 | href="#uint32_vbr">uint32_vbr</a> encoded integer that provides the |
| 1297 | number of operands for the constant. For primitive, structure, and |
Chris Lattner | 591d049 | 2006-01-25 23:31:53 +0000 | [diff] [blame] | 1298 | array constants, this will always be zero to indicate that the form of the |
| 1299 | constant is solely determined by its type. In this case, we have the following |
| 1300 | field definitions, based on type:</p> |
| 1301 | |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1302 | <ul> |
| 1303 | <li><b>Bool</b>. This is written as an <a href="#uint32_vbr">uint32_vbr</a> |
| 1304 | of value 1U or 0U.</li> |
| 1305 | <li><b>Signed Integers (sbyte,short,int,long)</b>. These are written |
| 1306 | as an <a href="#int64_vbr">int64_vbr</a> with the corresponding value.</li> |
| 1307 | <li><b>Unsigned Integers (ubyte,ushort,uint,ulong)</b>. These are |
| 1308 | written as an <a href="#uint64_vbr">uint64_vbr</a> with the |
| 1309 | corresponding value. </li> |
| 1310 | <li><b>Floating Point</b>. Both the float and double types are |
| 1311 | written literally in binary format.</li> |
| 1312 | <li><b>Arrays</b>. Arrays are written simply as a list of <a |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1313 | href="#uint32_vbr">uint32_vbr</a> encoded value slot numbers to the constant |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1314 | element values.</li> |
| 1315 | <li><b>Structures</b>. Structures are written simply as a list of <a |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1316 | href="#uint32_vbr">uint32_vbr</a> encoded value slot numbers to the constant |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1317 | field values of the structure.</li> |
| 1318 | </ul> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1319 | |
Chris Lattner | 591d049 | 2006-01-25 23:31:53 +0000 | [diff] [blame] | 1320 | </div> |
| 1321 | |
| 1322 | <!-- _______________________________________________________________________ --> |
| 1323 | <div class="doc_subsubsection">Undef Entries</a></div> |
| 1324 | |
| 1325 | <div class="doc_text"> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1326 | <p>When the number of operands to the constant is one, we have an 'undef' value |
| 1327 | of the specified type.</p> |
Chris Lattner | 591d049 | 2006-01-25 23:31:53 +0000 | [diff] [blame] | 1328 | </div> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1329 | |
Chris Lattner | 591d049 | 2006-01-25 23:31:53 +0000 | [diff] [blame] | 1330 | <!-- _______________________________________________________________________ --> |
| 1331 | <div class="doc_subsubsection">Inline Assembler Entries</a></div> |
| 1332 | |
| 1333 | <div class="doc_text"> |
| 1334 | <p>Inline Assembler entries are stored in the constant pool, though they are not |
| 1335 | officially LLVM constants. These entries are marked with a value of |
| 1336 | "4294967295" (all ones) for the number of operands. They are encoded as |
| 1337 | follows:</p> |
| 1338 | |
| 1339 | <table> |
| 1340 | <tbody> |
| 1341 | <tr> |
| 1342 | <th><b>Type</b></th> |
| 1343 | <th class="td_left"><b>Field Description</b></th> |
| 1344 | </tr> |
| 1345 | <tr> |
| 1346 | <td><a href="#string">string</a></td> |
| 1347 | <td class="td_left">The asm string.</td> |
| 1348 | </tr> |
| 1349 | <tr> |
| 1350 | <td><a href="#string">string</a></td> |
| 1351 | <td class="td_left">The constraints string.</td> |
| 1352 | </tr> |
| 1353 | <tr> |
| 1354 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1355 | <td class="td_left">Flags</sup></td> |
| 1356 | </tr> |
| 1357 | </tbody> |
| 1358 | </table> |
| 1359 | |
| 1360 | <p>Currently, the only defined flag, the low bit, indicates whether or not the |
| 1361 | inline assembler has side effects.</p> |
| 1362 | |
| 1363 | </div> |
| 1364 | |
| 1365 | <!-- _______________________________________________________________________ --> |
| 1366 | <div class="doc_subsubsection">Constant Expression Entries</a></div> |
| 1367 | |
| 1368 | <div class="doc_text"> |
| 1369 | |
| 1370 | <p>Otherwise, we have a constant expression. The format of the constant |
| 1371 | expression is specified in the table below, and the number is equal to the |
| 1372 | number of operands+1.</p> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1373 | <table> |
| 1374 | <tbody> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1375 | <tr> |
| 1376 | <th><b>Type</b></th> |
| 1377 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1378 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1379 | <tr> |
| 1380 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1381 | <td class="td_left">Op code of the instruction for the constant |
| 1382 | expression.</td> |
| 1383 | </tr> |
| 1384 | <tr> |
| 1385 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1386 | <td class="td_left">The value slot number of the constant value for an |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1387 | operand.<sup>1</sup></td> |
| 1388 | </tr> |
| 1389 | <tr> |
| 1390 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1391 | <td class="td_left">The type slot number for the type of the constant |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1392 | value for an operand.<sup>1</sup></td> |
| 1393 | </tr> |
| 1394 | </tbody> |
| 1395 | </table> |
| 1396 | Notes: |
| 1397 | <ol> |
| 1398 | <li>Both these fields are repeatable but only in pairs.</li> |
| 1399 | </ol> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1400 | </div> |
| 1401 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1402 | <div class="doc_subsection"><a name="functiondefs">Function Definition</a></div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 1403 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1404 | <p>Function definitions contain the linkage, constant pool or |
| 1405 | compaction table, instruction list, and symbol table for a function. |
| 1406 | The following table shows the structure of a function definition.</p> |
| 1407 | <table> |
| 1408 | <tbody> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1409 | <tr> |
| 1410 | <th><b>Type</b></th> |
| 1411 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1412 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1413 | <tr> |
| 1414 | <td><a href="#block">block</a><br> |
| 1415 | </td> |
| 1416 | <td class="td_left">Function definition block identifier (0x02) + |
| 1417 | size<br> |
| 1418 | </td> |
| 1419 | </tr> |
| 1420 | <tr> |
| 1421 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame^] | 1422 | <td class="td_left">The linkage type of the function: 0=External, 1=Weak, |
| 1423 | 2=Appending, 3=Internal, 4=LinkOnce, 5=DllImport, 6=DllExport<sup>1</sup></td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1424 | </tr> |
| 1425 | <tr> |
| 1426 | <td><a href="#block">block</a></td> |
| 1427 | <td class="td_left">The <a href="#constantpool">constant pool</a> |
| 1428 | block for this function.<sup>2</sup></td> |
| 1429 | </tr> |
| 1430 | <tr> |
| 1431 | <td><a href="#block">block</a></td> |
| 1432 | <td class="td_left">The <a href="#compactiontable">compaction |
| 1433 | table</a> block for the function.<sup>2</sup></td> |
| 1434 | </tr> |
| 1435 | <tr> |
| 1436 | <td><a href="#block">block</a></td> |
| 1437 | <td class="td_left">The <a href="#instructionlist">instruction |
| 1438 | list</a> for the function.</td> |
| 1439 | </tr> |
| 1440 | <tr> |
| 1441 | <td><a href="#block">block</a></td> |
Reid Spencer | 8996e55 | 2004-08-17 00:49:03 +0000 | [diff] [blame] | 1442 | <td class="td_left">The function's <a href="#symtab">symbol |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1443 | table</a> containing only those symbols pertinent to the function |
| 1444 | (mostly block labels).</td> |
| 1445 | </tr> |
| 1446 | </tbody> |
| 1447 | </table> |
| 1448 | Notes: |
| 1449 | <ol> |
| 1450 | <li>Note that if the linkage type is "External" then none of the |
| 1451 | other fields will be present as the function is defined elsewhere.</li> |
| 1452 | <li>Note that only one of the constant pool or compaction table will |
| 1453 | be written. Compaction tables are only written if they will actually |
| 1454 | save bytecode space. If not, then a regular constant pool is written.</li> |
| 1455 | </ol> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 1456 | </div> |
| 1457 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1458 | <div class="doc_subsection"><a name="compactiontable">Compaction Table</a> |
| 1459 | </div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 1460 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1461 | <p>Compaction tables are part of a function definition. They are merely |
| 1462 | a device for reducing the size of bytecode files. The size of a |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1463 | bytecode file is dependent on the <em>values</em> of the slot numbers |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1464 | used because larger values use more bytes in the variable bit rate |
| 1465 | encoding scheme. Furthermore, the compressed instruction format |
| 1466 | reserves only six bits for the type of the instruction. In large |
| 1467 | modules, declaring hundreds or thousands of types, the values of the |
| 1468 | slot numbers can be quite large. However, functions may use only a |
| 1469 | small fraction of the global types. In such cases a compaction table is |
| 1470 | created that maps the global type and value slot numbers to smaller |
| 1471 | values used by a function. Functions will contain either a |
| 1472 | function-specific constant pool <em>or</em> a compaction table but not |
| 1473 | both. Compaction tables have the format shown in the table below.</p> |
| 1474 | <table> |
| 1475 | <tbody> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1476 | <tr> |
| 1477 | <th><b>Type</b></th> |
| 1478 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1479 | </tr> |
| 1480 | <tr> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1481 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1482 | <td class="td_left">The number of types that follow</td> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1483 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1484 | <tr> |
| 1485 | <td><a href="#uint24_vbr">uint24_vbr</a>+</td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1486 | <td class="td_left">The type slot number in the global types of |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1487 | the type that will be referenced in the function with the index of this |
| 1488 | entry in the compaction table.</td> |
| 1489 | </tr> |
| 1490 | <tr> |
| 1491 | <td><a href="#type_len">type_len</a></td> |
| 1492 | <td class="td_left">An encoding of the type and number of values |
| 1493 | that follow. This field's encoding varies depending on the size of the |
| 1494 | type plane. See <a href="#type_len">Type and Length</a> for further |
| 1495 | details.</td> |
| 1496 | </tr> |
| 1497 | <tr> |
| 1498 | <td><a href="#uint32_vbr">uint32_vbr</a>+</td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1499 | <td class="td_left">The value slot number in the global values |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1500 | that will be referenced in the function with the index of this entry in |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1501 | the compaction table.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1502 | </tr> |
| 1503 | </tbody> |
| 1504 | </table> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 1505 | </div> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1506 | <!-- _______________________________________________________________________ --> |
| 1507 | <div class="doc_subsubsection"><a name="type_len">Type and Length</a></div> |
| 1508 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1509 | <p>The type and length of a compaction table type plane is encoded |
| 1510 | differently depending on the length of the plane. For planes of length |
| 1511 | 1 or 2, the length is encoded into bits 0 and 1 of a <a |
| 1512 | href="#uint32_vbr">uint32_vbr</a> and the type is encoded into bits |
| 1513 | 2-31. Because type numbers are often small, this often saves an extra |
| 1514 | byte per plane. If the length of the plane is greater than 2 then the |
| 1515 | encoding uses a <a href="#uint32_vbr">uint32_vbr</a> for each of the |
| 1516 | length and type, in that order.</p> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1517 | </div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 1518 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1519 | <div class="doc_subsection"><a name="instructionlist">Instruction List</a></div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1520 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1521 | <p>The instructions in a function are written as a simple list. Basic |
| 1522 | blocks are inferred by the terminating instruction types. The format of |
| 1523 | the block is given in the following table.</p> |
| 1524 | <table> |
| 1525 | <tbody> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1526 | <tr> |
| 1527 | <th><b>Type</b></th> |
| 1528 | <th class="td_left"><b>Field Description</b></th> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1529 | </tr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1530 | <tr> |
| 1531 | <td><a href="#block">block</a><br> |
| 1532 | </td> |
| 1533 | <td class="td_left">Instruction list identifier (0x07) + size<br> |
| 1534 | </td> |
| 1535 | </tr> |
| 1536 | <tr> |
| 1537 | <td><a href="#instruction">instruction</a>+</td> |
| 1538 | <td class="td_left">An instruction. Instructions have a variety |
| 1539 | of formats. See <a href="#instruction">Instructions</a> for details.</td> |
| 1540 | </tr> |
| 1541 | </tbody> |
| 1542 | </table> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1543 | </div> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1544 | |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1545 | <!-- _______________________________________________________________________ --> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1546 | <div class="doc_subsection"><a name="instructions">Instructions</a></div> |
| 1547 | |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1548 | <div class="doc_text"> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1549 | <p>Instructions are written out one at a time as distinct units. Each |
| 1550 | instruction |
| 1551 | record contains at least an <a href="#opcodes">opcode</a> and a type field, |
Chris Lattner | 49b1602 | 2005-11-05 22:32:06 +0000 | [diff] [blame] | 1552 | and may contain a <a href="#instoperands">list of operands</a> (whose |
| 1553 | interpretation depends on the opcode). Based on the number of operands, the |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1554 | <a href="#instencode">instruction is encoded</a> in a |
| 1555 | dense format that tries to encoded each instruction into 32-bits if |
| 1556 | possible. </p> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1557 | </div> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1558 | |
| 1559 | <!-- _______________________________________________________________________ --> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1560 | <div class="doc_subsubsection"><a name="opcodes">Instruction Opcodes</a></div> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1561 | <div class="doc_text"> |
| 1562 | <p>Instructions encode an opcode that identifies the kind of instruction. |
| 1563 | Opcodes are an enumerated integer value. The specific values used depend on |
| 1564 | the version of LLVM you're using. The opcode values are defined in the |
Reid Spencer | 05fe4b0 | 2006-03-14 05:39:39 +0000 | [diff] [blame] | 1565 | <a href="http://llvm.org/cvsweb/cvsweb.cgi/llvm/include/llvm/Instruction.def"> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1566 | <tt>include/llvm/Instruction.def</tt></a> file. You should check there for the |
| 1567 | most recent definitions. The table below provides the opcodes defined as of |
Nate Begeman | 52ca9e4 | 2004-08-27 07:59:37 +0000 | [diff] [blame] | 1568 | the writing of this document. The table associates each opcode mnemonic with |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1569 | its enumeration value and the bytecode and LLVM version numbers in which the |
| 1570 | opcode was introduced.</p> |
| 1571 | <table> |
| 1572 | <tbody> |
| 1573 | <tr> |
| 1574 | <th>Opcode</th> |
| 1575 | <th>Number</th> |
| 1576 | <th>Bytecode Version</th> |
| 1577 | <th>LLVM Version</th> |
| 1578 | </tr> |
| 1579 | <tr><td colspan="4"><b>Terminator Instructions</b></td></tr> |
| 1580 | <tr><td>Ret</td><td>1</td><td>1</td><td>1.0</td></tr> |
| 1581 | <tr><td>Br</td><td>2</td><td>1</td><td>1.0</td></tr> |
| 1582 | <tr><td>Switch</td><td>3</td><td>1</td><td>1.0</td></tr> |
| 1583 | <tr><td>Invoke</td><td>4</td><td>1</td><td>1.0</td></tr> |
| 1584 | <tr><td>Unwind</td><td>5</td><td>1</td><td>1.0</td></tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1585 | <tr><td>Unreachable</td><td>6</td><td>1</td><td>1.4</td></tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1586 | <tr><td colspan="4"><b>Binary Operators</b></td></tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1587 | <tr><td>Add</td><td>7</td><td>1</td><td>1.0</td></tr> |
| 1588 | <tr><td>Sub</td><td>8</td><td>1</td><td>1.0</td></tr> |
| 1589 | <tr><td>Mul</td><td>9</td><td>1</td><td>1.0</td></tr> |
| 1590 | <tr><td>Div</td><td>10</td><td>1</td><td>1.0</td></tr> |
| 1591 | <tr><td>Rem</td><td>11</td><td>1</td><td>1.0</td></tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1592 | <tr><td colspan="4"><b>Logical Operators</b></td></tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1593 | <tr><td>And</td><td>12</td><td>1</td><td>1.0</td></tr> |
| 1594 | <tr><td>Or</td><td>13</td><td>1</td><td>1.0</td></tr> |
| 1595 | <tr><td>Xor</td><td>14</td><td>1</td><td>1.0</td></tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1596 | <tr><td colspan="4"><b>Binary Comparison Operators</b></td></tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1597 | <tr><td>SetEQ</td><td>15</td><td>1</td><td>1.0</td></tr> |
| 1598 | <tr><td>SetNE</td><td>16</td><td>1</td><td>1.0</td></tr> |
| 1599 | <tr><td>SetLE</td><td>17</td><td>1</td><td>1.0</td></tr> |
| 1600 | <tr><td>SetGE</td><td>18</td><td>1</td><td>1.0</td></tr> |
| 1601 | <tr><td>SetLT</td><td>19</td><td>1</td><td>1.0</td></tr> |
| 1602 | <tr><td>SetGT</td><td>20</td><td>1</td><td>1.0</td></tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1603 | <tr><td colspan="4"><b>Memory Operators</b></td></tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1604 | <tr><td>Malloc</td><td>21</td><td>1</td><td>1.0</td></tr> |
| 1605 | <tr><td>Free</td><td>22</td><td>1</td><td>1.0</td></tr> |
| 1606 | <tr><td>Alloca</td><td>23</td><td>1</td><td>1.0</td></tr> |
| 1607 | <tr><td>Load</td><td>24</td><td>1</td><td>1.0</td></tr> |
| 1608 | <tr><td>Store</td><td>25</td><td>1</td><td>1.0</td></tr> |
| 1609 | <tr><td>GetElementPtr</td><td>26</td><td>1</td><td>1.0</td></tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1610 | <tr><td colspan="4"><b>Other Operators</b></td></tr> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 1611 | <tr><td>PHI</td><td>27</td><td>1</td><td>1.0</td></tr> |
| 1612 | <tr><td>Cast</td><td>28</td><td>1</td><td>1.0</td></tr> |
| 1613 | <tr><td>Call</td><td>29</td><td>1</td><td>1.0</td></tr> |
| 1614 | <tr><td>Shl</td><td>30</td><td>1</td><td>1.0</td></tr> |
| 1615 | <tr><td>Shr</td><td>31</td><td>1</td><td>1.0</td></tr> |
| 1616 | <tr><td>VANext</td><td>32</td><td>1</td><td>1.0</td></tr> |
| 1617 | <tr><td>VAArg</td><td>33</td><td>1</td><td>1.0</td></tr> |
| 1618 | <tr><td>Select</td><td>34</td><td>2</td><td>1.2</td></tr> |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1619 | <tr><td colspan="4"> |
| 1620 | <b>Pseudo Instructions<a href="#pi_note">*</a></b> |
| 1621 | </td></tr> |
| 1622 | <tr><td>Invoke+CC </td><td>56</td><td>5</td><td>1.5</td></tr> |
| 1623 | <tr><td>Invoke+FastCC</td><td>57</td><td>5</td><td>1.5</td></tr> |
| 1624 | <tr><td>Call+CC</td><td>58</td><td>5</td><td>1.5</td></tr> |
| 1625 | <tr><td>Call+FastCC+TailCall</td><td>59</td><td>5</td><td>1.5</td></tr> |
| 1626 | <tr><td>Call+FastCC</td><td>60</td><td>5</td><td>1.5</td></tr> |
| 1627 | <tr><td>Call+CCC+TailCall</td><td>61</td><td>5</td><td>1.5</td></tr> |
| 1628 | <tr><td>Load+Volatile</td><td>62</td><td>3</td><td>1.3</td></tr> |
| 1629 | <tr><td>Store+Volatile</td><td>63</td><td>3</td><td>1.3</td></tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1630 | </tbody> |
| 1631 | </table> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1632 | |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1633 | <p><b><a name="pi_note">* Note: </a></b> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1634 | These aren't really opcodes from an LLVM language perspective. They encode |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1635 | information into other opcodes without reserving space for that information. |
| 1636 | For example, opcode=63 is a Volatile Store. The opcode for this |
| 1637 | instruction is 25 (Store) but we encode it as 63 to indicate that is a Volatile |
| 1638 | Store. The same is done for the calling conventions and tail calls. |
| 1639 | In each of these entries in range 56-63, the opcode is documented as the base |
| 1640 | opcode (Invoke, Call, Store) plus some set of modifiers, as follows:</p> |
| 1641 | <dl> |
| 1642 | <dt>CC</dt> |
Chris Lattner | 120bc6d | 2005-05-14 01:30:15 +0000 | [diff] [blame] | 1643 | <dd>This means an arbitrary calling convention is specified |
| 1644 | in a VBR that follows the opcode. This is used when the instruction cannot |
| 1645 | be encoded with one of the more compact forms. |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1646 | </dd> |
| 1647 | <dt>FastCC</dt> |
| 1648 | <dd>This indicates that the Call or Invoke is using the FastCC calling |
Chris Lattner | 120bc6d | 2005-05-14 01:30:15 +0000 | [diff] [blame] | 1649 | convention.</dd> |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1650 | <dt>CCC</dt> |
Chris Lattner | 120bc6d | 2005-05-14 01:30:15 +0000 | [diff] [blame] | 1651 | <dd>This indicates that the Call or Invoke is using the native "C" calling |
| 1652 | convention.</dd> |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1653 | <dt>TailCall</dt> |
Chris Lattner | 120bc6d | 2005-05-14 01:30:15 +0000 | [diff] [blame] | 1654 | <dd>This indicates that the Call has the 'tail' modifier.</dd> |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1655 | </dl> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1656 | </div> |
| 1657 | |
Chris Lattner | 49b1602 | 2005-11-05 22:32:06 +0000 | [diff] [blame] | 1658 | <!-- _______________________________________________________________________ --> |
| 1659 | <div class="doc_subsubsection"><a name="instoperands">Instruction |
| 1660 | Operands</a></div> |
| 1661 | |
| 1662 | <div class="doc_text"> |
| 1663 | <p> |
| 1664 | Based on the instruction opcode and type, the bytecode format implicitly (to |
| 1665 | save space) specifies the interpretation of the operand list. For most |
| 1666 | instructions, the type of each operand is implicit from the type of the |
| 1667 | instruction itself (e.g. the type of operands of a binary operator must match |
| 1668 | the type of the instruction). As such, the bytecode format generally only |
| 1669 | encodes the value number of the operand, not the type.</p> |
| 1670 | |
| 1671 | <p>In some cases, however, this is not sufficient. This section enumerates |
| 1672 | those cases:</p> |
| 1673 | |
| 1674 | <ul> |
| 1675 | <li>getelementptr: the slot numbers for sequential type indexes are shifted up |
| 1676 | two bits. This allows the low order bits will encode the type of index used, |
| 1677 | as follows: 0=uint, 1=int, 2=ulong, 3=long.</li> |
| 1678 | <li>cast: the result type number is encoded as the second operand.</li> |
| 1679 | <li>alloca/malloc: If the allocation has an explicit alignment, the log2 of the |
| 1680 | alignment is encoded as the second operand.</li> |
| 1681 | <li>call: If the tail marker and calling convention cannot be <a |
| 1682 | href="#pi_note">encoded into the opcode</a> of the call, it is passed as an |
| 1683 | additional operand. The low bit of the operand is a flag indicating whether |
| 1684 | the call is a tail call. The rest of the bits contain the calling |
| 1685 | convention number (shifted left by one bit).</li> |
| 1686 | </ul> |
| 1687 | </div> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1688 | |
| 1689 | <!-- _______________________________________________________________________ --> |
| 1690 | <div class="doc_subsubsection"><a name="instencode">Instruction |
| 1691 | Encoding</a></div> |
| 1692 | |
| 1693 | <div class="doc_text"> |
| 1694 | <p>For brevity, instructions are written in one of four formats, |
| 1695 | depending on the number of operands to the instruction. Each |
| 1696 | instruction begins with a <a href="#uint32_vbr">uint32_vbr</a> that |
| 1697 | encodes the type of the instruction as well as other things. The tables |
| 1698 | that follow describe the format of this first part of each instruction.</p> |
| 1699 | <p><b>Instruction Format 0</b></p> |
| 1700 | <p>This format is used for a few instructions that can't easily be |
| 1701 | shortened because they have large numbers of operands (e.g. PHI Node or |
| 1702 | getelementptr). Each of the opcode, type, and operand fields is found in |
| 1703 | successive fields.</p> |
| 1704 | <table> |
| 1705 | <tbody> |
| 1706 | <tr> |
| 1707 | <th><b>Type</b></th> |
| 1708 | <th class="td_left"><b>Field Description</b></th> |
| 1709 | </tr> |
| 1710 | <tr> |
| 1711 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1712 | <td class="td_left">Specifies the opcode of the instruction. Note |
| 1713 | that for compatibility with the other instruction formats, the opcode |
| 1714 | is shifted left by 2 bits. Bits 0 and 1 must have value zero for this |
| 1715 | format.</td> |
| 1716 | </tr> |
| 1717 | <tr> |
| 1718 | <td><a href="#uint24_vbr">uint24_vbr</a></td> |
| 1719 | <td class="td_left">Provides the type slot number of the result type of |
| 1720 | the instruction.</td> |
| 1721 | </tr> |
| 1722 | <tr> |
| 1723 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1724 | <td class="td_left">The number of operands that follow.</td> |
| 1725 | </tr> |
| 1726 | <tr> |
| 1727 | <td><a href="#uint32_vbr">uint32_vbr</a>+</td> |
| 1728 | <td class="td_left">The slot number of the value(s) for the operand(s). |
Chris Lattner | 49b1602 | 2005-11-05 22:32:06 +0000 | [diff] [blame] | 1729 | </td> |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1730 | </tr> |
| 1731 | </tbody> |
| 1732 | </table> |
Chris Lattner | 49b1602 | 2005-11-05 22:32:06 +0000 | [diff] [blame] | 1733 | |
Chris Lattner | f97fa59 | 2005-11-05 22:20:06 +0000 | [diff] [blame] | 1734 | <p><b>Instruction Format 1</b></p> |
| 1735 | <p>This format encodes the opcode, type and a single operand into a |
| 1736 | single <a href="#uint32_vbr">uint32_vbr</a> as follows:</p> |
| 1737 | <table> |
| 1738 | <tbody> |
| 1739 | <tr> |
| 1740 | <th><b>Bits</b></th> |
| 1741 | <th><b>Type</b></th> |
| 1742 | <th class="td_left"><b>Field Description</b></th> |
| 1743 | </tr> |
| 1744 | <tr> |
| 1745 | <td>0-1</td> |
| 1746 | <td>constant "1"</td> |
| 1747 | <td class="td_left">These two bits must be the value 1 which identifies |
| 1748 | this as an instruction of format 1.</td> |
| 1749 | </tr> |
| 1750 | <tr> |
| 1751 | <td>2-7</td> |
| 1752 | <td><a href="#instructions">opcode</a></td> |
| 1753 | <td class="td_left">Specifies the opcode of the instruction. Note that |
| 1754 | the maximum opcode value is 63.</td> |
| 1755 | </tr> |
| 1756 | <tr> |
| 1757 | <td>8-19</td> |
| 1758 | <td><a href="#unsigned">unsigned</a></td> |
| 1759 | <td class="td_left">Specifies the slot number of the type for this |
| 1760 | instruction. Maximum slot number is 2<sup>12</sup>-1=4095.</td> |
| 1761 | </tr> |
| 1762 | <tr> |
| 1763 | <td>20-31</td> |
| 1764 | <td><a href="#unsigned">unsigned</a></td> |
| 1765 | <td class="td_left">Specifies the slot number of the value for the |
| 1766 | first operand. Maximum slot number is 2<sup>12</sup>-1=4095. Note that |
| 1767 | the value 2<sup>12</sup>-1 denotes zero operands.</td> |
| 1768 | </tr> |
| 1769 | </tbody> |
| 1770 | </table> |
| 1771 | <p><b>Instruction Format 2</b></p> |
| 1772 | <p>This format encodes the opcode, type and two operands into a single <a |
| 1773 | href="#uint32_vbr">uint32_vbr</a> as follows:</p> |
| 1774 | <table> |
| 1775 | <tbody> |
| 1776 | <tr> |
| 1777 | <th><b>Bits</b></th> |
| 1778 | <th><b>Type</b></th> |
| 1779 | <th class="td_left"><b>Field Description</b></th> |
| 1780 | </tr> |
| 1781 | <tr> |
| 1782 | <td>0-1</td> |
| 1783 | <td>constant "2"</td> |
| 1784 | <td class="td_left">These two bits must be the value 2 which identifies |
| 1785 | this as an instruction of format 2.</td> |
| 1786 | </tr> |
| 1787 | <tr> |
| 1788 | <td>2-7</td> |
| 1789 | <td><a href="#instructions">opcode</a></td> |
| 1790 | <td class="td_left">Specifies the opcode of the instruction. Note that |
| 1791 | the maximum opcode value is 63.</td> |
| 1792 | </tr> |
| 1793 | <tr> |
| 1794 | <td>8-15</td> |
| 1795 | <td><a href="#unsigned">unsigned</a></td> |
| 1796 | <td class="td_left">Specifies the slot number of the type for this |
| 1797 | instruction. Maximum slot number is 2<sup>8</sup>-1=255.</td> |
| 1798 | </tr> |
| 1799 | <tr> |
| 1800 | <td>16-23</td> |
| 1801 | <td><a href="#unsigned">unsigned</a></td> |
| 1802 | <td class="td_left">Specifies the slot number of the value for the first |
| 1803 | operand. Maximum slot number is 2<sup>8</sup>-1=255.</td> |
| 1804 | </tr> |
| 1805 | <tr> |
| 1806 | <td>24-31</td> |
| 1807 | <td><a href="#unsigned">unsigned</a></td> |
| 1808 | <td class="td_left">Specifies the slot number of the value for the second |
| 1809 | operand. Maximum slot number is 2<sup>8</sup>-1=255.</td> |
| 1810 | </tr> |
| 1811 | </tbody> |
| 1812 | </table> |
| 1813 | <p><b>Instruction Format 3</b></p> |
| 1814 | <p>This format encodes the opcode, type and three operands into a |
| 1815 | single <a href="#uint32_vbr">uint32_vbr</a> as follows:</p> |
| 1816 | <table> |
| 1817 | <tbody> |
| 1818 | <tr> |
| 1819 | <th><b>Bits</b></th> |
| 1820 | <th><b>Type</b></th> |
| 1821 | <th class="td_left"><b>Field Description</b></th> |
| 1822 | </tr> |
| 1823 | <tr> |
| 1824 | <td>0-1</td> |
| 1825 | <td>constant "3"</td> |
| 1826 | <td class="td_left">These two bits must be the value 3 which identifies |
| 1827 | this as an instruction of format 3.</td> |
| 1828 | </tr> |
| 1829 | <tr> |
| 1830 | <td>2-7</td> |
| 1831 | <td><a href="#instructions">opcode</a></td> |
| 1832 | <td class="td_left">Specifies the opcode of the instruction. Note that |
| 1833 | the maximum opcode value is 63.</td> |
| 1834 | </tr> |
| 1835 | <tr> |
| 1836 | <td>8-13</td> |
| 1837 | <td><a href="#unsigned">unsigned</a></td> |
| 1838 | <td class="td_left">Specifies the slot number of the type for this |
| 1839 | instruction. Maximum slot number is 2<sup>6</sup>-1=63.</td> |
| 1840 | </tr> |
| 1841 | <tr> |
| 1842 | <td>14-19</td> |
| 1843 | <td><a href="#unsigned">unsigned</a></td> |
| 1844 | <td class="td_left">Specifies the slot number of the value for the first |
| 1845 | operand. Maximum slot number is 2<sup>6</sup>-1=63.</td> |
| 1846 | </tr> |
| 1847 | <tr> |
| 1848 | <td>20-25</td> |
| 1849 | <td><a href="#unsigned">unsigned</a></td> |
| 1850 | <td class="td_left">Specifies the slot number of the value for the second |
| 1851 | operand. Maximum slot number is 2<sup>6</sup>-1=63.</td> |
| 1852 | </tr> |
| 1853 | <tr> |
| 1854 | <td>26-31</td> |
| 1855 | <td><a href="#unsigned">unsigned</a></td> |
| 1856 | <td class="td_left">Specifies the slot number of the value for the third |
| 1857 | operand. Maximum slot number is 2<sup>6</sup>-1=63.</td> |
| 1858 | </tr> |
| 1859 | </tbody> |
| 1860 | </table> |
| 1861 | </div> |
Reid Spencer | a568177 | 2005-05-14 00:06:06 +0000 | [diff] [blame] | 1862 | |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1863 | <!-- _______________________________________________________________________ --> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 1864 | <div class="doc_subsection"><a name="symtab">Symbol Table</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1865 | <div class="doc_text"> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1866 | <p>A symbol table can be put out in conjunction with a module or a function. A |
| 1867 | symbol table has a list of name/type associations followed by a list of |
| 1868 | name/value associations. The name/value associations are organized into "type |
| 1869 | planes" so that all values of a common type are listed together. Each type |
| 1870 | plane starts with the number of entries in the plane and the type slot number |
| 1871 | for all the values in that plane (so the type can be looked up in the global |
| 1872 | type pool). For each entry in a type plane, the slot number of the value and |
| 1873 | the name associated with that value are written. The format is given in the |
| 1874 | table below. </p> |
Reid Spencer | 2cc3615 | 2004-07-05 19:04:27 +0000 | [diff] [blame] | 1875 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1876 | <tbody> |
| 1877 | <tr> |
| 1878 | <th><b>Type</b></th> |
| 1879 | <th class="td_left"><b>Field Description</b></th> |
| 1880 | </tr> |
| 1881 | <tr> |
| 1882 | <td><a href="#block">block</a><br> |
| 1883 | </td> |
| 1884 | <td class="td_left">Symbol Table Identifier (0x04)</td> |
| 1885 | </tr> |
| 1886 | <tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1887 | <td><a href="#llist">llist</a>(<a href="#symtab_entry">type_entry</a>)</td> |
Reid Spencer | 8996e55 | 2004-08-17 00:49:03 +0000 | [diff] [blame] | 1888 | <td class="td_left">A length list of symbol table entries for |
| 1889 | <tt>Type</tt>s |
| 1890 | </td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1891 | </tr> |
| 1892 | <tr> |
Reid Spencer | 8996e55 | 2004-08-17 00:49:03 +0000 | [diff] [blame] | 1893 | <td><a href="#zlist">llist</a>(<a href="#symtab_plane">symtab_plane</a>)</td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1894 | <td class="td_left">A length list of "type planes" of symbol table |
Reid Spencer | 8996e55 | 2004-08-17 00:49:03 +0000 | [diff] [blame] | 1895 | entries for <tt>Value</tt>s</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1896 | </tr> |
| 1897 | </tbody> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 1898 | </table> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1899 | </div> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1900 | |
| 1901 | <!-- _______________________________________________________________________ --> |
| 1902 | <div class="doc_subsubsection"> <a name="type_entry">Symbol Table Type |
| 1903 | Entry</a> |
| 1904 | </div> |
| 1905 | <div class="doc_text"> |
| 1906 | <p>A symbol table type entry associates a name with a type. The name is provided |
| 1907 | simply as an array of chars. The type is provided as a type slot number (index) |
| 1908 | into the global type pool. The format is given in the following table:</p> |
| 1909 | <table> |
| 1910 | <tbody> |
| 1911 | <tr> |
| 1912 | <th><b>Type</b></th> |
| 1913 | <th class="td_left"><b>Field Description</b></th> |
| 1914 | </tr> |
| 1915 | <tr> |
| 1916 | <td><a href="#uint32_vbr">uint24_vbr</a></td> |
| 1917 | <td class="td_left">Type slot number of the type being given a |
| 1918 | name relative to the global type pool. |
| 1919 | </td> |
| 1920 | </tr> |
| 1921 | <tr> |
| 1922 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1923 | <td class="td_left">Length of the character array that follows.</td> |
| 1924 | </tr> |
| 1925 | <tr> |
| 1926 | <td><a href="#char">char</a>+</td> |
| 1927 | <td class="td_left">The characters of the name.</td> |
| 1928 | </tr> |
| 1929 | </tbody> |
| 1930 | </table> |
| 1931 | </div> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1932 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1933 | <div class="doc_subsubsection"> <a name="symtab_plane">Symbol Table |
| 1934 | Plane</a> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1935 | </div> |
| 1936 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1937 | <p>A symbol table plane provides the symbol table entries for all |
| 1938 | values of a common type. The encoding is given in the following table:</p> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1939 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1940 | <tbody> |
| 1941 | <tr> |
| 1942 | <th><b>Type</b></th> |
| 1943 | <th class="td_left"><b>Field Description</b></th> |
| 1944 | </tr> |
| 1945 | <tr> |
| 1946 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1947 | <td class="td_left">Number of entries in this plane.</td> |
| 1948 | </tr> |
| 1949 | <tr> |
| 1950 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1951 | <td class="td_left">Type slot number of type for all values in this plane..</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1952 | </tr> |
| 1953 | <tr> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1954 | <td><a href="#value_entry">value_entry</a>+</td> |
| 1955 | <td class="td_left">The symbol table entries for to associate values with |
| 1956 | names.</td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1957 | </tr> |
| 1958 | </tbody> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1959 | </table> |
| 1960 | </div> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1961 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1962 | <div class="doc_subsubsection"><a name="value_entry">Symbol Table Value |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1963 | Entry</a> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1964 | </div> |
| 1965 | <div class="doc_text"> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1966 | <p>A symbol table value entry provides the assocation between a value and the |
| 1967 | name given to the value. The value is referenced by its slot number. The |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1968 | format is given in the following table:</p> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1969 | <table> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1970 | <tbody> |
| 1971 | <tr> |
| 1972 | <th><b>Type</b></th> |
| 1973 | <th class="td_left"><b>Field Description</b></th> |
| 1974 | </tr> |
| 1975 | <tr> |
| 1976 | <td><a href="#uint32_vbr">uint24_vbr</a></td> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1977 | <td class="td_left">Value slot number of the value being given a name. |
Reid Spencer | 8996e55 | 2004-08-17 00:49:03 +0000 | [diff] [blame] | 1978 | </td> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1979 | </tr> |
| 1980 | <tr> |
| 1981 | <td><a href="#uint32_vbr">uint32_vbr</a></td> |
| 1982 | <td class="td_left">Length of the character array that follows.</td> |
| 1983 | </tr> |
| 1984 | <tr> |
| 1985 | <td><a href="#char">char</a>+</td> |
| 1986 | <td class="td_left">The characters of the name.</td> |
| 1987 | </tr> |
| 1988 | </tbody> |
Reid Spencer | 51f31e0 | 2004-07-05 22:28:02 +0000 | [diff] [blame] | 1989 | </table> |
| 1990 | </div> |
Reid Spencer | 09daa63 | 2004-08-18 20:06:19 +0000 | [diff] [blame] | 1991 | |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 1992 | <!-- *********************************************************************** --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1993 | <div class="doc_section"> <a name="versiondiffs">Version Differences</a> |
| 1994 | </div> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 1995 | <!-- *********************************************************************** --> |
| 1996 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 1997 | <p>This section describes the differences in the Bytecode Format across |
| 1998 | LLVM |
| 1999 | versions. The versions are listed in reverse order because it assumes |
| 2000 | the current version is as documented in the previous sections. Each |
| 2001 | section here |
Chris Lattner | 1cc070c | 2004-07-05 18:05:48 +0000 | [diff] [blame] | 2002 | describes the differences between that version and the one that <i>follows</i>. |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2003 | </p> |
| 2004 | </div> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 2005 | |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2006 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 43dfdb7 | 2004-08-18 20:17:05 +0000 | [diff] [blame] | 2007 | <div class="doc_subsection"><a name="vers13">Version 1.3 Differences From |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 2008 | 1.4</a></div> |
Reid Spencer | cf549e1 | 2004-08-17 07:43:43 +0000 | [diff] [blame] | 2009 | <!-- _______________________________________________________________________ --> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 2010 | |
| 2011 | <div class="doc_subsubsection">Unreachable Instruction</div> |
| 2012 | <div class="doc_text"> |
| 2013 | <p>The LLVM <a href="LangRef.html#i_unreachable">Unreachable</a> instruction |
| 2014 | was added in version 1.4 of LLVM. This caused all instruction numbers after |
| 2015 | it to shift down by one.</p> |
| 2016 | </div> |
| 2017 | |
| 2018 | <div class="doc_subsubsection">Function Flags</div> |
| 2019 | <div class="doc_text"> |
| 2020 | <p>LLVM bytecode versions prior to 1.4 did not include the 5 bit offset |
| 2021 | in <a href="#funcfield">the function list</a> in the <a |
| 2022 | href="#globalinfo">Module Global Info</a> block.</p> |
| 2023 | </div> |
| 2024 | |
| 2025 | <div class="doc_subsubsection">Function Flags</div> |
| 2026 | <div class="doc_text"> |
| 2027 | <p>LLVM bytecode versions prior to 1.4 did not include the 'undef' constant |
| 2028 | value, which affects the encoding of <a href="#constant">Constant |
| 2029 | Fields</a>.</p> |
| 2030 | </div> |
| 2031 | |
Chris Lattner | 1dfc8e5 | 2004-10-16 00:29:30 +0000 | [diff] [blame] | 2032 | <!-- |
Reid Spencer | cf549e1 | 2004-08-17 07:43:43 +0000 | [diff] [blame] | 2033 | <div class="doc_subsubsection">Aligned Data</div> |
| 2034 | <div class="doc_text"> |
| 2035 | <p>In version 1.3, certain data items were aligned to 32-bit boundaries. In |
| 2036 | version 1.4, alignment of data was done away with completely. The need for |
| 2037 | alignment has gone away and the only thing it adds is bytecode file size |
| 2038 | overhead. In most cases this overhead was small. However, in functions with |
| 2039 | large numbers of format 0 instructions (GEPs and PHIs with lots of parameters) |
| 2040 | or regular instructions with large valued operands (e.g. because there's just |
| 2041 | a lot of instructions in the function) the overhead can be extreme. In one |
| 2042 | test case, the overhead was 44,000 bytes (34% of the total file size). |
| 2043 | Consequently in release 1.4, the decision was made to eliminate alignment |
| 2044 | altogether.</p> |
| 2045 | <p>In version 1.3 format, the following bytecode constructs were aligned (i.e. |
| 2046 | they were followed by one to three bytes of padding):</p> |
| 2047 | <ul> |
| 2048 | <li>All blocks.</li> |
| 2049 | <li>Instructions using the long format (format 0).</li> |
| 2050 | <li>All call instructions that called a var args function.</li> |
| 2051 | <li>The target triple (a string field at the end of the module block).</li> |
| 2052 | <li>The version field (immediately following the signature).</li> |
| 2053 | </ul> |
| 2054 | <p>None of these constructs are aligned in version 1.4</p> |
| 2055 | </div> |
Chris Lattner | 1dfc8e5 | 2004-10-16 00:29:30 +0000 | [diff] [blame] | 2056 | --> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 2057 | |
Reid Spencer | cf549e1 | 2004-08-17 07:43:43 +0000 | [diff] [blame] | 2058 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2059 | <div class="doc_subsection"><a name="vers12">Version 1.2 Differences |
| 2060 | From 1.3</a></div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2061 | <!-- _______________________________________________________________________ --> |
Chris Lattner | a1dad81 | 2004-10-16 18:03:55 +0000 | [diff] [blame] | 2062 | |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2063 | <div class="doc_subsubsection">Type Derives From Value</div> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2064 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2065 | <p>In version 1.2, the Type class in the LLVM IR derives from the Value |
| 2066 | class. This is not the case in version 1.3. Consequently, in version |
| 2067 | 1.2 the notion of a "Type Type" was used to write out values that were |
| 2068 | Types. The types always occuped plane 12 (corresponding to the |
| 2069 | TypeTyID) of any type planed set of values. In 1.3 this representation |
| 2070 | is not convenient because the TypeTyID (12) is not present and its |
| 2071 | value is now used for LabelTyID. Consequently, the data structures |
| 2072 | written that involve types do so by writing all the types first and |
| 2073 | then each of the value planes according to those types. In version 1.2, |
| 2074 | the types would have been written intermingled with the values.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2075 | </div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2076 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2077 | <div class="doc_subsubsection">Restricted getelementptr Types</div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2078 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2079 | <p>In version 1.2, the getelementptr instruction required a ubyte type |
| 2080 | index for accessing a structure field and a long type index for |
| 2081 | accessing an array element. Consequently, it was only possible to |
| 2082 | access structures of 255 or fewer elements. Starting in version 1.3, |
| 2083 | this restriction was lifted. Structures must now be indexed with uint |
| 2084 | constants. Arrays may now be indexed with int, uint, long, or ulong |
| 2085 | typed values. The consequence of this was that the bytecode format had |
| 2086 | to change in order to accommodate the larger range of structure indices.</p> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2087 | </div> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2088 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2089 | <div class="doc_subsubsection">Short Block Headers</div> |
| 2090 | <div class="doc_text"> |
| 2091 | <p>In version 1.2, block headers were always 8 bytes being comprised of |
| 2092 | both an unsigned integer type and an unsigned integer size. For very |
| 2093 | small modules, these block headers turn out to be a large fraction of |
| 2094 | the total bytecode file size. In an attempt to make these small files |
| 2095 | smaller, the type and size information was encoded into a single |
| 2096 | unsigned integer (4 bytes) comprised of 5 bits for the block type |
| 2097 | (maximum 31 block types) and 27 bits for the block size (max |
| 2098 | ~134MBytes). These limits seemed sufficient for any blocks or sizes |
| 2099 | forseen in the future. Note that the module block, which encloses all |
| 2100 | the other blocks is still written as 8 bytes since bytecode files |
| 2101 | larger than 134MBytes might be possible.</p> |
| 2102 | </div> |
| 2103 | <!-- _______________________________________________________________________ --> |
| 2104 | <div class="doc_subsubsection">Dependent Libraries and Target Triples</div> |
| 2105 | <div class="doc_text"> |
| 2106 | <p>In version 1.2, the bytecode format does not store module's target |
| 2107 | triple or dependent. These fields have been added to the end of the <a |
| 2108 | href="#globalinfo">module global info block</a>. The purpose of these |
| 2109 | fields is to allow a front end compiler to specifiy that the generated |
| 2110 | module is specific to a particular target triple (operating |
| 2111 | system/manufacturer/processor) which makes it non-portable; and to |
| 2112 | allow front end compilers to specify the list of libraries that the |
| 2113 | module depends on for successful linking.</p> |
| 2114 | </div> |
| 2115 | <!-- _______________________________________________________________________ --> |
| 2116 | <div class="doc_subsubsection">Types Restricted to 24-bits</div> |
| 2117 | <div class="doc_text"> |
| 2118 | <p>In version 1.2, type slot identifiers were written as 32-bit VBR |
| 2119 | quantities. In 1.3 this has been reduced to 24-bits in order to ensure |
| 2120 | that it is not possible to overflow the type field of a global variable |
| 2121 | definition. 24-bits for type slot numbers is deemed sufficient for any |
| 2122 | practical use of LLVM.</p> |
| 2123 | </div> |
| 2124 | <!-- _______________________________________________________________________ --> |
| 2125 | <!-- _______________________________________________________________________ --> |
| 2126 | <div class="doc_subsection"><a name="vers11">Version 1.1 Differences |
| 2127 | From 1.2 </a></div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2128 | <!-- _______________________________________________________________________ --> |
| 2129 | <div class="doc_subsubsection">Explicit Primitive Zeros</div> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2130 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2131 | <p>In version 1.1, the zero value for primitives was explicitly encoded |
| 2132 | into the bytecode format. Since these zero values are constant values |
| 2133 | in the LLVM IR and never change, there is no reason to explicitly |
| 2134 | encode them. This explicit encoding was removed in version 1.2.</p> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2135 | </div> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2136 | <!-- _______________________________________________________________________ --> |
| 2137 | <div class="doc_subsubsection">Inconsistent Module Global Info</div> |
| 2138 | <div class="doc_text"> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2139 | <p>In version 1.1, the Module Global Info block was not aligned causing |
| 2140 | the next block to be read in on an unaligned boundary. This problem was |
| 2141 | corrected in version 1.2.<br> |
| 2142 | <br> |
| 2143 | </p> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2144 | </div> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2145 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2146 | <div class="doc_subsection"><a name="vers10">Version 1.0 Differences |
| 2147 | From 1.1</a></div> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2148 | <div class="doc_text"> |
Reid Spencer | 1ab929c | 2004-07-05 08:18:07 +0000 | [diff] [blame] | 2149 | <p>None. Version 1.0 and 1.1 bytecode formats are identical.</p> |
Reid Spencer | 7c76d33 | 2004-06-08 07:41:41 +0000 | [diff] [blame] | 2150 | </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 2151 | <!-- *********************************************************************** --> |
| 2152 | <hr> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2153 | <address> <a href="http://jigsaw.w3.org/css-validator/check/referer"><img |
| 2154 | src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a> |
| 2155 | <a href="http://validator.w3.org/check/referer"><img |
| 2156 | src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a> |
| 2157 | <a href="mailto:rspencer@x10sys.com">Reid Spencer</a> and <a |
| 2158 | href="mailto:sabre@nondot.org">Chris Lattner</a><br> |
Reid Spencer | 05fe4b0 | 2006-03-14 05:39:39 +0000 | [diff] [blame] | 2159 | <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2160 | Last modified: $Date$ |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 2161 | </address> |
Reid Spencer | 9bd2be2 | 2004-07-29 00:13:04 +0000 | [diff] [blame] | 2162 | </body> |
| 2163 | </html> |