Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> |
| 3 | <html> |
| 4 | <head> |
| 5 | <title>LLVM Bytecode File Format</title> |
| 6 | <link rel="stylesheet" href="llvm.css" type="text/css"> |
Reid Spencer | 6f1d699 | 2004-05-23 17:12:45 +0000 | [diff] [blame] | 7 | <style type="css"> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 8 | table, tr, td { border: 2px solid gray } |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 9 | th { border: 2px solid gray; font-weight: bold; } |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 10 | table { border-collapse: collapse; margin-top: 1em margin-bottom: 1em } |
| 11 | </style> |
| 12 | </head> |
| 13 | <body> |
| 14 | <div class="doc_title"> LLVM Bytecode File Format </div> |
| 15 | <ol> |
| 16 | <li><a href="#abstract">Abstract</a></li> |
Reid Spencer | 6f1d699 | 2004-05-23 17:12:45 +0000 | [diff] [blame] | 17 | <li><a href="#general">General Concepts</a> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 18 | <ol> |
| 19 | <li><a href="#blocks">Blocks</a></li> |
| 20 | <li><a href="#lists">Lists</a></li> |
| 21 | <li><a href="#fields">Fields</a></li> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 22 | <li><a href="#encoding">Encoding Rules</a></li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 23 | <li><a href="#align">Alignment</a></li> |
| 24 | </ol> |
Reid Spencer | 6f1d699 | 2004-05-23 17:12:45 +0000 | [diff] [blame] | 25 | </li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 26 | <li><a href="#details">Detailed Layout</a> |
| 27 | <ol> |
| 28 | <li><a href="#notation">Notation</a></li> |
| 29 | <li><a href="#blocktypes">Blocks Types</a></li> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 30 | <li><a href="#signature">Signature Block</a></li> |
| 31 | <li><a href="#module">Module Block</a></li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 32 | <li><a href="#typeool">Global Type Pool</a></li> |
| 33 | <li><a href="#modinfo">Module Info Block</a></li> |
| 34 | <li><a href="#constants">Global Constant Pool</a></li> |
Chris Lattner | 2ca1fd1 | 2004-05-24 04:55:32 +0000 | [diff] [blame^] | 35 | <li><a href="#functions">Function Blocks</a></li> |
| 36 | <li><a href="#symtab">Module Symbol Table</a></li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 37 | </ol> |
| 38 | </li> |
| 39 | </ol> |
| 40 | <div class="doc_text"> |
| 41 | <p><b>Written by <a href="mailto:rspencer@x10sys.com">Reid Spencer</a> |
| 42 | and <a href="mailto:sabre@nondot.org">Chris Lattner</a></b></p> |
| 43 | <p> </p> |
| 44 | </div> |
| 45 | <!-- *********************************************************************** --> |
| 46 | <div class="doc_section"> <a name="abstract">Abstract </a></div> |
| 47 | <!-- *********************************************************************** --> |
| 48 | <div class="doc_text"> |
| 49 | <p>This document is an (after the fact) specification of the LLVM bytecode |
| 50 | file format. It documents the binary encoding rules of the bytecode file format |
| 51 | so that equivalent systems can encode bytecode files correctly. The LLVM |
| 52 | bytecode representation is used to store the intermediate representation on |
| 53 | disk in compacted form. |
| 54 | </p> |
| 55 | </div> |
| 56 | <!-- *********************************************************************** --> |
| 57 | <div class="doc_section"> <a name="general">General Concepts</a> </div> |
| 58 | <!-- *********************************************************************** --> |
| 59 | <div class="doc_text"> |
| 60 | <p>This section describes the general concepts of the bytecode file format |
| 61 | without getting into bit and byte level specifics.</p> |
| 62 | </div> |
| 63 | <!-- _______________________________________________________________________ --> |
| 64 | <div class="doc_subsection"><a name="blocks">Blocks</a> </div> |
| 65 | <div class="doc_text"> |
| 66 | <p>LLVM bytecode files consist simply of a sequence of blocks of bytes. |
| 67 | Each block begins with an identification value that determines the type of |
| 68 | the next block. The possible types of blocks are described below in the section |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 69 | <a href="#blocktypes">Block Types</a>. The block identifier is used because |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 70 | it is possible for entire blocks to be omitted from the file if they are |
| 71 | empty. The block identifier helps the reader determine which kind of block is |
| 72 | next in the file.</p> |
Reid Spencer | 939290f | 2004-05-22 05:56:41 +0000 | [diff] [blame] | 73 | <p>The following block identifiers are currently in use |
| 74 | (from llvm/Bytecode/Format.h):</p> |
| 75 | <ol> |
| 76 | <li><b>Module (0x01)</b>.</li> |
| 77 | <li><b>Function (0x11)</b>.</li> |
| 78 | <li><b>ConstantPool (0x12)</b>.</li> |
| 79 | <li><b>SymbolTable (0x13)</b>.</li> |
| 80 | <li><b>ModuleGlobalInfo (0x14)</b>.</li> |
| 81 | <li><b>GlobalTypePlane (0x15)</b>.</li> |
| 82 | <li><b>BasicBlock (0x31)</b>.</li> |
| 83 | <li><b>InstructionList (0x32)</b>.</li> |
| 84 | <li><b>CompactionTable (0x33)</b>.</li> |
| 85 | </ol> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 86 | <p> All blocks are variable length. They consume just enough bytes to express |
| 87 | their contents. Each block begins with an integer identifier and the length |
| 88 | of the block.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 89 | </div> |
| 90 | <!-- _______________________________________________________________________ --> |
| 91 | <div class="doc_subsection"><a name="lists">Lists</a> </div> |
| 92 | <div class="doc_text"> |
| 93 | <p>Most blocks are constructed of lists of information. Lists can be constructed |
| 94 | of other lists, etc. This decomposition of information follows the containment |
| 95 | hierarchy of the LLVM Intermediate Representation. For example, a function is |
| 96 | composed of a list of basic blocks. Each basic block is composed of a set of |
| 97 | instructions. This list of list nesting and hierarchy is maintained in the |
| 98 | bytecode file.</p> |
| 99 | <p>A list is encoded into the file simply by encoding the number of entries as |
| 100 | an integer followed by each of the entries. The reader knows when the list is |
| 101 | done because it will have filled the list with the required numbe of entries. |
| 102 | </p> |
| 103 | </div> |
| 104 | <!-- _______________________________________________________________________ --> |
| 105 | <div class="doc_subsection"><a name="fields">Fields</a> </div> |
| 106 | <div class="doc_text"> |
| 107 | <p>Fields are units of information that LLVM knows how to write atomically. |
| 108 | Most fields have a uniform length or some kind of length indication built into |
| 109 | their encoding. For example, a constant string (array of SByte or UByte) is |
| 110 | written simply as the length followed by the characters. Although this is |
| 111 | similar to a list, constant strings are treated atomically and are thus |
| 112 | fields.</p> |
| 113 | <p>Fields use a condensed bit format specific to the type of information |
| 114 | they must contain. As few bits as possible are written for each field. The |
| 115 | sections that follow will provide the details on how these fields are |
| 116 | written and how the bits are to be interpreted.</p> |
| 117 | </div> |
| 118 | <!-- _______________________________________________________________________ --> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 119 | <div class="doc_subsection"><a name="encoding">Encoding Primitives</a> </div> |
| 120 | <div class="doc_text"> |
| 121 | <p>Each field that can be put out is encoded into the file using a small set |
| 122 | of primitives. The rules for these primitives are described below.</p> |
| 123 | <h3>Variable Bit Rate Encoding</h3> |
| 124 | <p>To minimize the number of bytes written for small quantities, an encoding |
| 125 | scheme similar to UTF-8 is used to write integer data. The scheme is known as |
| 126 | variable bit rate (vbr) encoding. In this encoding, the high bit of each |
| 127 | byte is used to indicate if more bytes follow. If (byte & 0x80) is non-zero |
| 128 | in any given byte, it means there is another byte immediately following that |
| 129 | also contributes to the value. For the final byte (byte & 0x80) is false |
| 130 | (the high bit is not set). In each byte only the low seven bits contribute to |
| 131 | the value. Consequently 32-bit quantities can take from one to <em>five</em> |
| 132 | bytes to encode. In general, smaller quantities will encode in fewer bytes, |
| 133 | as follows:</p> |
| 134 | <table class="doc_table_nw"> |
| 135 | <tr> |
| 136 | <th>Byte #</th> |
| 137 | <th>Significant Bits</th> |
| 138 | <th>Maximum Value</th> |
| 139 | </tr> |
| 140 | <tr><td>1</td><td>0-6</td><td>127</td></tr> |
| 141 | <tr><td>2</td><td>7-13</td><td>16,383</td></tr> |
| 142 | <tr><td>3</td><td>14-20</td><td>2,097,151</td></tr> |
| 143 | <tr><td>4</td><td>21-27</td><td>268,435,455</td></tr> |
| 144 | <tr><td>5</td><td>28-34</td><td>34,359,738,367</td></tr> |
| 145 | <tr><td>6</td><td>35-41</td><td>4,398,046,511,103</td></tr> |
| 146 | <tr><td>7</td><td>42-48</td><td>562,949,953,421,311</td></tr> |
| 147 | <tr><td>8</td><td>49-55</td><td>72,057,594,037,927,935</td></tr> |
| 148 | <tr><td>9</td><td>56-62</td><td>9,223,372,036,854,775,807</td></tr> |
| 149 | <tr><td>10</td><td>63-69</td><td>1,180,591,620,717,411,303,423</td></tr> |
| 150 | </table> |
| 151 | <p>Note that in practice, the tenth byte could only encode bits 63 and 64 |
| 152 | since the maximum quantity to use this encoding is a 64-bit integer.</p> |
| 153 | <p>The table below defines the encoding rules for type names used in the |
| 154 | descriptions of blocks and fields in the next section. Any type name with |
| 155 | the suffix <em>_vbr</em> indicate a quantity that is encoded using |
| 156 | variable bit rate encoding as described above.</p> |
| 157 | <table class="doc_table" > |
| 158 | <tr> |
| 159 | <th><b>Type</b></th> |
| 160 | <th align="left"><b>Rule</b></th> |
| 161 | </tr> |
| 162 | <tr> |
| 163 | <td>unsigned</td> |
| 164 | <td align="left">A 32-bit unsigned integer that always occupies four |
| 165 | consecutive bytes. The unsigned integer is encoded using LSB first |
| 166 | ordering. That is bits 2<sup>0</sup> through 2<sup>7</sup> are in the |
| 167 | byte with the lowest file offset (little endian).</td> |
| 168 | </tr><tr> |
| 169 | <td>uint_vbr</td> |
| 170 | <td align="left">A 32-bit unsigned integer that occupies from one to five |
| 171 | bytes using variable bit rate encoding.</td> |
| 172 | </tr><tr> |
| 173 | <td>uint64_vbr</td> |
| 174 | <td align="left">A 64-bit unsigned integer that occupies from one to ten |
| 175 | bytes using variable bit rate encoding.</td> |
| 176 | </tr><tr> |
| 177 | <td>int64_vbr</td> |
| 178 | <td align="left">A 64-bit signed integer that occupies from one to ten |
| 179 | bytes using variable bit rate encoding.</td> |
| 180 | </tr><tr> |
| 181 | <td>char</td> |
| 182 | <td align="left">A single unsigned character encoded into one byte</td> |
| 183 | </tr><tr> |
| 184 | <td>bit</td> |
| 185 | <td align="left">A single bit within a byte.</td> |
| 186 | </tr><tr> |
| 187 | <td>string</td> |
| 188 | <td align="left">A uint_vbr indicating the length of the character string |
| 189 | immediately followed by the characters of the string. There is no |
| 190 | terminating null byte in the string. Characters are interpreted as unsigned |
| 191 | char and are generally US-ASCII encoded.</td> |
| 192 | </tr><tr> |
| 193 | <td>data</td> |
| 194 | <td align="left">An arbitrarily long segment of data to which no |
| 195 | interpretation is implied. This is used for float, double, and constant |
| 196 | initializers.</td> |
| 197 | </tr> |
| 198 | </table> |
| 199 | </div> |
| 200 | <!-- _______________________________________________________________________ --> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 201 | <div class="doc_subsection"><a name="align">Alignment</a> </div> |
| 202 | <div class="doc_text"> |
| 203 | <p>To support cross-platform differences, the bytecode file is aligned on |
| 204 | certain boundaries. This means that a small amount of padding (at most 3 bytes) |
| 205 | will be added to ensure that the next entry is aligned to a 32-bit boundary. |
| 206 | </p> |
| 207 | </div> |
| 208 | <!-- *********************************************************************** --> |
| 209 | <div class="doc_section"> <a name="details">Detailed Layout</a> </div> |
| 210 | <!-- *********************************************************************** --> |
| 211 | <div class="doc_text"> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 212 | <p>This section provides the detailed layout of the LLVM bytecode file format. |
| 213 | bit and byte level specifics.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 214 | </div> |
| 215 | <!-- _______________________________________________________________________ --> |
| 216 | <div class="doc_subsection"><a name="notation">Notation</a></div> |
| 217 | <div class="doc_text"> |
| 218 | <p>The descriptions of the bytecode format that follow describe the bit |
| 219 | fields in detail. These descriptions are provided in tabular form. Each table |
| 220 | has four columns that specify:</p> |
| 221 | <ol> |
| 222 | <li><b>Byte(s)</b>. The offset in bytes of the field from the start of |
Reid Spencer | 6f1d699 | 2004-05-23 17:12:45 +0000 | [diff] [blame] | 223 | its container (block, list, other field).</li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 224 | <li><b>Bit(s)</b>. The offset in bits of the field from the start of |
| 225 | the byte field. Bits are always little endian. That is, bit addresses with |
Reid Spencer | 6f1d699 | 2004-05-23 17:12:45 +0000 | [diff] [blame] | 226 | smaller values have smaller address (i.e. 2<sup>0</sup> is at bit 0, |
| 227 | 2<sup>1</sup> at 1, etc.) |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 228 | </li> |
| 229 | <li><b>Align?</b> Indicates if this field is aligned to 32 bits or not. |
| 230 | This indicates where the <em>next</em> field starts, always on a 32 bit |
| 231 | boundary.</li> |
Reid Spencer | 939290f | 2004-05-22 05:56:41 +0000 | [diff] [blame] | 232 | <li><b>Type</b>. The basic type of information contained in the field.</li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 233 | <li><b>Description</b>. Descripts the contents of the field.</li> |
| 234 | </ol> |
| 235 | </div> |
| 236 | <!-- _______________________________________________________________________ --> |
| 237 | <div class="doc_subsection"><a name="blocktypes">Block Types</a></div> |
| 238 | <div class="doc_text"> |
| 239 | <p>The bytecode format encodes the intermediate representation into groups |
| 240 | of bytes known as blocks. The blocks are written sequentially to the file in |
| 241 | the following order:</p> |
| 242 | <ol> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 243 | <li><a href="#signature">Signature</a>. This block contains the file signature |
| 244 | (magic number) that identifies the file as LLVM bytecode.</li> |
| 245 | <li><a href="#module">Module Block</a>. This is the top level block in a |
| 246 | bytecode file. It contains all the other blocks.</li> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 247 | <li><a href="#gtypepool">Global Type Pool</a>. This block contains all the |
| 248 | global (module) level types.</li> |
| 249 | <li><a href="#modinfo">Module Info</a>. This block contains the types of the |
| 250 | global variables and functions in the module as well as the constant |
| 251 | initializers for the global variables</li> |
| 252 | <li><a href="#constants">Constants</a>. This block contains all the global |
| 253 | constants except function arguments, global values and constant strings.</li> |
| 254 | <li><a href="#functions">Functions</a>. One function block is written for |
| 255 | each function in the module. </li> |
| 256 | <li><a href="$symtab">Symbol Table</a>. The module level symbol table that |
| 257 | provides names for the various other entries in the file is the final block |
| 258 | written.</li> |
| 259 | </ol> |
| 260 | </div> |
| 261 | <!-- _______________________________________________________________________ --> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 262 | <div class="doc_subsection"><a name="signature">Signature Block</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 263 | <div class="doc_text"> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 264 | <p>The signature block occurs in every LLVM bytecode file and is always first. |
| 265 | It simply provides a few bytes of data to identify the file as being an LLVM |
| 266 | bytecode file. This block is always four bytes in length and differs from the |
| 267 | other blocks because there is no identifier and no block length at the start |
| 268 | of the block. Essentially, this block is just the "magic number" for the file. |
| 269 | <table class="doc_table_nw" > |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 270 | <tr> |
| 271 | <th><b>Byte(s)</b></th> |
| 272 | <th><b>Bit(s)</b></th> |
| 273 | <th><b>Align?</b></th> |
Reid Spencer | 939290f | 2004-05-22 05:56:41 +0000 | [diff] [blame] | 274 | <th><b>Type</b></th> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 275 | <th align="left"><b>Field Description</b></th> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 276 | </tr><tr> |
| 277 | <td>00</td><td>-</td><td>No</td><td>char</td> |
Reid Spencer | 939290f | 2004-05-22 05:56:41 +0000 | [diff] [blame] | 278 | <td align="left">Constant "l" (0x6C)</td> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 279 | </tr><tr> |
| 280 | <td>01</td><td>-</td><td>No</td><td>char</td> |
Reid Spencer | 939290f | 2004-05-22 05:56:41 +0000 | [diff] [blame] | 281 | <td align="left">Constant "l" (0x6C)</td> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 282 | </tr><tr> |
| 283 | <td>02</td><td>-</td><td>No</td><td>char</td> |
Reid Spencer | 939290f | 2004-05-22 05:56:41 +0000 | [diff] [blame] | 284 | <td align="left">Constant "v" (0x76)</td> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 285 | </tr><tr> |
| 286 | <td>03</td><td>-</td><td>No</td><td>char</td> |
Reid Spencer | 939290f | 2004-05-22 05:56:41 +0000 | [diff] [blame] | 287 | <td align="left">Constant "m" (0x6D)</td> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 288 | </tr> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 289 | </table> |
| 290 | </div> |
| 291 | <!-- _______________________________________________________________________ --> |
| 292 | <div class="doc_subsection"><a name="module">Module Block</a> </div> |
| 293 | <div class="doc_text"> |
| 294 | <p>The module block contains a small pre-amble and all the other blocks in |
| 295 | the file. Of particular note, the bytecode format number is simply a 28-bit |
| 296 | monotonically increase integer that identifiers the version of the bytecode |
| 297 | format. While the bytecode format version is not related to the LLVM release |
| 298 | (it doesn't automatically get increased with each new LLVM release), there is |
| 299 | a definite correspondence between the bytecode format version and the LLVM |
| 300 | release.</p> |
| 301 | <p>The table below shows the format of the module block header. The blocks it |
| 302 | contains are detailed in other sections.</p> |
| 303 | <table class="doc_table_nw" > |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 304 | <tr> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 305 | <th><b>Byte(s)</b></th> |
| 306 | <th><b>Bit(s)</b></th> |
| 307 | <th><b>Align?</b></th> |
| 308 | <th><b>Type</b></th> |
| 309 | <th align="left"><b>Field Description</b></th> |
| 310 | </tr><tr> |
| 311 | <td>04-07</td><td>-</td><td>No</td><td>unsigned</td> |
| 312 | <td align="left">Module Identifier (0x01)</td> |
| 313 | </tr><tr> |
| 314 | <td>08-11</td><td>-</td><td>No</td><td>unsigned</td> |
| 315 | <td align="left">Size of the module block in bytes</td> |
| 316 | </tr><tr> |
| 317 | <td>12-15</td><td>00</td><td>Yes</td><td>uint32_vbr</td> |
| 318 | <td align="left">Format Information</td> |
| 319 | </tr><tr> |
| 320 | <td>''</td><td>0</td><td>-</td><td>bit</td> |
| 321 | <td align="left">Big Endian?</td> |
| 322 | </tr><tr> |
| 323 | <td>''</td><td>1</td><td>-</td><td>bit</td> |
| 324 | <td align="left">Pointers Are 64-bit?</td> |
| 325 | </tr><tr> |
| 326 | <td>''</td><td>2</td><td>-</td><td>bit</td> |
| 327 | <td align="left">Has No Endianess?</td> |
| 328 | </tr><tr> |
| 329 | <td>''</td><td>3</td><td>-</td><td>bit</td> |
| 330 | <td align="left">Has No Pointer Size?</td> |
| 331 | </tr><tr> |
| 332 | <td>''</td><td>4-31</td><td>-</td><td>bit</td> |
| 333 | <td align="left">Bytecode Format Version</td> |
| 334 | </tr><tr> |
| 335 | <td>16-end</td><td>-</td><td>-</td><td>blocks</td> |
| 336 | <td align="left">The remaining bytes in the block consist |
| 337 | solely of other block types in sequence.</td> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 338 | </tr> |
| 339 | </table> |
| 340 | </div> |
| 341 | <!-- _______________________________________________________________________ --> |
| 342 | <div class="doc_subsection"><a name="gtypepool">Global Type Pool</a> </div> |
| 343 | <div class="doc_text"> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 344 | <p>The global type pool consists of type definitions. Their order of appearnce |
| 345 | in the file determines their slot number (0 based). Slot numbers are used to |
| 346 | replace pointers in the intermediate representation. Each slot number uniquely |
| 347 | identifies one entry in a type plane (a collection of values of the same type). |
| 348 | Since all values have types and are associated with the order in which the type |
| 349 | pool is written, the global type pool <em>must</em> be written as the first |
| 350 | block of a module. If it is not, attempts to read the file will fail because |
| 351 | both forward and backward type resolution will not be possible.</p> |
| 352 | <p>The type pool is simply a list of types definitions, as shown in the table |
| 353 | below.</p> |
| 354 | <table class="doc_table_nw" > |
| 355 | <tr> |
| 356 | <th><b>Byte(s)</b></th> |
| 357 | <th><b>Bit(s)</b></th> |
| 358 | <th><b>Align?</b></th> |
| 359 | <th><b>Type</b></th> |
| 360 | <th align="left"><b>Field Description</b></th> |
| 361 | </tr><tr> |
| 362 | <td>00-03</td><td>-</td><td>No</td><td>unsigned</td> |
| 363 | <td align="left">Type Pool Identifier (0x13)</td> |
| 364 | </tr><tr> |
| 365 | <td>04-07</td><td>-</td><td>No</td><td>unsigned</td> |
| 366 | <td align="left">Size in bytes of the symbol table block.</td> |
| 367 | </tr><tr> |
| 368 | <td>08-11<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td> |
| 369 | <td align="left">Number of entries in type plane</td> |
| 370 | </tr><tr> |
| 371 | <td>12-15<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td> |
| 372 | <td align="left">Type plane index for following entries</td> |
| 373 | </tr><tr> |
| 374 | <td>16-end<sup>1,2</sup></td><td>-</td><td>No</td><td>type</td> |
| 375 | <td align="left">Each of the type definitions.</td> |
| 376 | </tr><tr> |
| 377 | <td align="left" colspan="5"><sup>1</sup>Maximum length shown, |
| 378 | may be smaller<br><sup>2</sup>Repeated field. |
| 379 | </tr> |
| 380 | </table> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 381 | </div> |
| 382 | <!-- _______________________________________________________________________ --> |
| 383 | <div class="doc_subsection"><a name="modinfo">Module Info</a> </div> |
| 384 | <div class="doc_text"> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 385 | <p>To be determined.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 386 | </div> |
| 387 | <!-- _______________________________________________________________________ --> |
| 388 | <div class="doc_subsection"><a name="constants">Constants</a> </div> |
| 389 | <div class="doc_text"> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 390 | <p>To be determined.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 391 | </div> |
| 392 | <!-- _______________________________________________________________________ --> |
| 393 | <div class="doc_subsection"><a name="functions">Functions</a> </div> |
| 394 | <div class="doc_text"> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 395 | <p>To be determined.</p> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 396 | </div> |
| 397 | <!-- _______________________________________________________________________ --> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 398 | <div class="doc_subsection"><a name="symtab">Symbol Table</a> </div> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 399 | <div class="doc_text"> |
Reid Spencer | b39021b | 2004-05-23 17:05:09 +0000 | [diff] [blame] | 400 | <p>A symbol table can be put out in conjunction with a module or a function. |
| 401 | A symbol table is a list of type planes. Each type plane starts with the number |
| 402 | of entries in the plane and the type plane's slot number (so the type can be |
| 403 | looked up in the global type pool). For each entry in a type plane, the slot |
| 404 | number of the value and the name associated with that value are written. The |
| 405 | format is given in the table below. </p> |
| 406 | <table class="doc_table_nw" > |
| 407 | <tr> |
| 408 | <th><b>Byte(s)</b></th> |
| 409 | <th><b>Bit(s)</b></th> |
| 410 | <th><b>Align?</b></th> |
| 411 | <th><b>Type</b></th> |
| 412 | <th align="left"><b>Field Description</b></th> |
| 413 | </tr><tr> |
| 414 | <td>00-03</td><td>-</td><td>No</td><td>unsigned</td> |
| 415 | <td align="left">Symbol Table Identifier (0x13)</td> |
| 416 | </tr><tr> |
| 417 | <td>04-07</td><td>-</td><td>No</td><td>unsigned</td> |
| 418 | <td align="left">Size in bytes of the symbol table block.</td> |
| 419 | </tr><tr> |
| 420 | <td>08-11<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td> |
| 421 | <td align="left">Number of entries in type plane</td> |
| 422 | </tr><tr> |
| 423 | <td>12-15<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td> |
| 424 | <td align="left">Type plane index for following entries</td> |
| 425 | </tr><tr> |
| 426 | <td>16-19<sup>1,2</sup></td><td>-</td><td>No</td><td>uint32_vbr</td> |
| 427 | <td align="left">Slot number of a value.</td> |
| 428 | </tr><tr> |
| 429 | <td>variable<sup>1,2</sup></td><td>-</td><td>No</td><td>string</td> |
| 430 | <td align="left">Name of the value in the symbol table.</td> |
| 431 | </tr> |
| 432 | <tr> |
| 433 | <td align="left" colspan="5"><sup>1</sup>Maximum length shown, |
| 434 | may be smaller<br><sup>2</sup>Repeated field. |
| 435 | </tr> |
| 436 | </table> |
Reid Spencer | 5002661 | 2004-05-22 02:28:36 +0000 | [diff] [blame] | 437 | </div> |
| 438 | |
| 439 | <!-- *********************************************************************** --> |
| 440 | <hr> |
| 441 | <address> |
| 442 | <a href="http://jigsaw.w3.org/css-validator/check/referer"><img |
| 443 | src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a> |
| 444 | <a href="http://validator.w3.org/check/referer"><img |
| 445 | src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a> |
| 446 | |
| 447 | <a href="mailto:rspencer@x10sys.com">Reid Spencer</a> and |
| 448 | <a href="mailto:sabre@nondot.org">Chris Lattner</a><br> |
| 449 | <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br> |
| 450 | Last modified: $Date$ |
| 451 | </address> |
| 452 | </body> |
| 453 | </html> |
| 454 | <!-- vim: sw=2 |
| 455 | --> |