blob: 77715fd620cc547b4276ea91ea24713f8a796a94 [file] [log] [blame]
Reid Spencer50026612004-05-22 02:28:36 +00001<!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 Spencer6f1d6992004-05-23 17:12:45 +00007 <style type="css">
Reid Spencer50026612004-05-22 02:28:36 +00008 table, tr, td { border: 2px solid gray }
Reid Spencerb39021b2004-05-23 17:05:09 +00009 th { border: 2px solid gray; font-weight: bold; }
Reid Spencer50026612004-05-22 02:28:36 +000010 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 Spencer6f1d6992004-05-23 17:12:45 +000017 <li><a href="#general">General Concepts</a>
Reid Spencer50026612004-05-22 02:28:36 +000018 <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 Spencer7aa940d2004-05-25 15:47:57 +000022 <li><a href="#slots">Slots</a></li>
Reid Spencerb39021b2004-05-23 17:05:09 +000023 <li><a href="#encoding">Encoding Rules</a></li>
Reid Spencer50026612004-05-22 02:28:36 +000024 <li><a href="#align">Alignment</a></li>
25 </ol>
Reid Spencer6f1d6992004-05-23 17:12:45 +000026 </li>
Reid Spencer50026612004-05-22 02:28:36 +000027 <li><a href="#details">Detailed Layout</a>
28 <ol>
29 <li><a href="#notation">Notation</a></li>
30 <li><a href="#blocktypes">Blocks Types</a></li>
Reid Spencerb39021b2004-05-23 17:05:09 +000031 <li><a href="#signature">Signature Block</a></li>
32 <li><a href="#module">Module Block</a></li>
Reid Spencer50026612004-05-22 02:28:36 +000033 <li><a href="#typeool">Global Type Pool</a></li>
34 <li><a href="#modinfo">Module Info Block</a></li>
35 <li><a href="#constants">Global Constant Pool</a></li>
Chris Lattner2ca1fd12004-05-24 04:55:32 +000036 <li><a href="#functions">Function Blocks</a></li>
37 <li><a href="#symtab">Module Symbol Table</a></li>
Reid Spencer50026612004-05-22 02:28:36 +000038 </ol>
39 </li>
40</ol>
Chris Lattner8dabb502004-05-25 17:44:58 +000041<div class="doc_author">
42<p>Written by <a href="mailto:rspencer@x10sys.com">Reid Spencer</a>
43</p>
Reid Spencer50026612004-05-22 02:28:36 +000044</div>
Reid Spencerc0a2af12004-06-05 14:18:02 +000045<div class="doc_warning">
46 <p>Warning: This is a work in progress.</p>
47</div>
Reid Spencer50026612004-05-22 02:28:36 +000048<!-- *********************************************************************** -->
49<div class="doc_section"> <a name="abstract">Abstract </a></div>
50<!-- *********************************************************************** -->
51<div class="doc_text">
Chris Lattner2b905652004-05-24 05:35:17 +000052<p>This document describes the LLVM bytecode
53file format. It specifies the binary encoding rules of the bytecode file format
Reid Spencer50026612004-05-22 02:28:36 +000054so that equivalent systems can encode bytecode files correctly. The LLVM
55bytecode representation is used to store the intermediate representation on
56disk in compacted form.
57</p>
58</div>
59<!-- *********************************************************************** -->
60<div class="doc_section"> <a name="general">General Concepts</a> </div>
61<!-- *********************************************************************** -->
62<div class="doc_text">
63<p>This section describes the general concepts of the bytecode file format
Chris Lattner2b905652004-05-24 05:35:17 +000064without getting into bit and byte level specifics. Note that the LLVM bytecode
65format may change in the future, but will always be backwards compatible with
66older formats. This document only describes the most current version of the
67bytecode format.</p>
Reid Spencer50026612004-05-22 02:28:36 +000068</div>
69<!-- _______________________________________________________________________ -->
70<div class="doc_subsection"><a name="blocks">Blocks</a> </div>
71<div class="doc_text">
72<p>LLVM bytecode files consist simply of a sequence of blocks of bytes.
73Each block begins with an identification value that determines the type of
74the next block. The possible types of blocks are described below in the section
Reid Spencerb39021b2004-05-23 17:05:09 +000075<a href="#blocktypes">Block Types</a>. The block identifier is used because
Reid Spencer50026612004-05-22 02:28:36 +000076it is possible for entire blocks to be omitted from the file if they are
77empty. The block identifier helps the reader determine which kind of block is
78next in the file.</p>
Reid Spencer939290f2004-05-22 05:56:41 +000079<p>The following block identifiers are currently in use
80(from llvm/Bytecode/Format.h):</p>
81<ol>
82 <li><b>Module (0x01)</b>.</li>
83 <li><b>Function (0x11)</b>.</li>
84 <li><b>ConstantPool (0x12)</b>.</li>
85 <li><b>SymbolTable (0x13)</b>.</li>
86 <li><b>ModuleGlobalInfo (0x14)</b>.</li>
87 <li><b>GlobalTypePlane (0x15)</b>.</li>
88 <li><b>BasicBlock (0x31)</b>.</li>
89 <li><b>InstructionList (0x32)</b>.</li>
90 <li><b>CompactionTable (0x33)</b>.</li>
91</ol>
Chris Lattner2b905652004-05-24 05:35:17 +000092<p> All blocks are variable length, and the block header specifies the size of
93the block. All blocks are rounded aligned to even 32-bit boundaries, so they
94always start and end of this boundary. Each block begins with an integer
95identifier and the length of the block, which does not include the padding
96bytes needed for alignment.</p>
Reid Spencer50026612004-05-22 02:28:36 +000097</div>
98<!-- _______________________________________________________________________ -->
99<div class="doc_subsection"><a name="lists">Lists</a> </div>
100<div class="doc_text">
101<p>Most blocks are constructed of lists of information. Lists can be constructed
102of other lists, etc. This decomposition of information follows the containment
Chris Lattner2b905652004-05-24 05:35:17 +0000103hierarchy of the LLVM Intermediate Representation. For example, a function
104contains a list of instructions (the terminator instructions implicitly define
105the end of the basic blocks).</p>
Reid Spencer50026612004-05-22 02:28:36 +0000106<p>A list is encoded into the file simply by encoding the number of entries as
107an integer followed by each of the entries. The reader knows when the list is
108done because it will have filled the list with the required numbe of entries.
109</p>
110</div>
111<!-- _______________________________________________________________________ -->
112<div class="doc_subsection"><a name="fields">Fields</a> </div>
113<div class="doc_text">
114<p>Fields are units of information that LLVM knows how to write atomically.
115Most fields have a uniform length or some kind of length indication built into
Chris Lattner2b905652004-05-24 05:35:17 +0000116their encoding. For example, a constant string (array of bytes) is
Reid Spencer50026612004-05-22 02:28:36 +0000117written simply as the length followed by the characters. Although this is
118similar to a list, constant strings are treated atomically and are thus
119fields.</p>
120<p>Fields use a condensed bit format specific to the type of information
121they must contain. As few bits as possible are written for each field. The
122sections that follow will provide the details on how these fields are
123written and how the bits are to be interpreted.</p>
124</div>
125<!-- _______________________________________________________________________ -->
Reid Spencer7aa940d2004-05-25 15:47:57 +0000126<div class="doc_subsection"><a name="slots">Slots</a> </div>
127<div class="doc_text">
128<p>The bytecode format uses the notion of a "slot" to reference Types and
129Values. Since the bytecode file is a <em>direct</em> representation of LLVM's
130intermediate representation, there is a need to represent pointers in the file.
131Slots are used for this purpose. For example, if one has the following assembly:
132</p>
Chris Lattner8dabb502004-05-25 17:44:58 +0000133
134<div class="doc_code">
135 %MyType = type { int, sbyte }<br>
136 %MyVar = external global %MyType
137</div>
138
139<p>there are two definitions. The definition of <tt>%MyVar</tt> uses
140<tt>%MyType</tt>. In the C++ IR this linkage between <tt>%MyVar</tt> and
141<tt>%MyType</tt> is
142explicit through the use of C++ pointers. In bytecode, however, there's no
Reid Spencer7aa940d2004-05-25 15:47:57 +0000143ability to store memory addresses. Instead, we compute and write out slot
144numbers for every type and Value written to the file.</p>
145<p>A slot number is simply an unsigned 32-bit integer encoded in the variable
146bit rate scheme (see <a href="#encoding">encoding</a> below). This ensures that
147low slot numbers are encoded in one byte. Through various bits of magic LLVM
148attempts to always keep the slot numbers low. The first attempt is to associate
149slot numbers with their "type plane". That is, Values of the same type are
150written to the bytecode file in a list (sequentially). Their order in that list
151determines their slot number. This means that slot #1 doesn't mean anything
152unless you also specify for which type you want slot #1. Types are handled
153specially and are always written to the file first (in the Global Type Pool) and
Chris Lattner8dabb502004-05-25 17:44:58 +0000154in such a way that both forward and backward references of the types can often be
Reid Spencer7aa940d2004-05-25 15:47:57 +0000155resolved with a single pass through the type pool. </p>
156<p>Slot numbers are also kept small by rearranging their order. Because of the
157structure of LLVM, certain values are much more likely to be used frequently
158in the body of a function. For this reason, a compaction table is provided in
159the body of a function if its use would make the function body smaller.
160Suppose you have a function body that uses just the types "int*" and "{double}"
161but uses them thousands of time. Its worthwhile to ensure that the slot number
162for these types are low so they can be encoded in a single byte (via vbr).
163This is exactly what the compaction table does.</p>
164</div>
165<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +0000166<div class="doc_subsection"><a name="encoding">Encoding Primitives</a> </div>
167<div class="doc_text">
168<p>Each field that can be put out is encoded into the file using a small set
169of primitives. The rules for these primitives are described below.</p>
170<h3>Variable Bit Rate Encoding</h3>
Chris Lattner2b905652004-05-24 05:35:17 +0000171<p>Most of the values written to LLVM bytecode files are small integers. To
172minimize the number of bytes written for these quantities, an encoding
Reid Spencerb39021b2004-05-23 17:05:09 +0000173scheme similar to UTF-8 is used to write integer data. The scheme is known as
174variable bit rate (vbr) encoding. In this encoding, the high bit of each
175byte is used to indicate if more bytes follow. If (byte &amp; 0x80) is non-zero
176in any given byte, it means there is another byte immediately following that
177also contributes to the value. For the final byte (byte &amp; 0x80) is false
178(the high bit is not set). In each byte only the low seven bits contribute to
179the value. Consequently 32-bit quantities can take from one to <em>five</em>
180bytes to encode. In general, smaller quantities will encode in fewer bytes,
181as follows:</p>
182<table class="doc_table_nw">
183 <tr>
184 <th>Byte #</th>
185 <th>Significant Bits</th>
186 <th>Maximum Value</th>
187 </tr>
188 <tr><td>1</td><td>0-6</td><td>127</td></tr>
189 <tr><td>2</td><td>7-13</td><td>16,383</td></tr>
190 <tr><td>3</td><td>14-20</td><td>2,097,151</td></tr>
191 <tr><td>4</td><td>21-27</td><td>268,435,455</td></tr>
192 <tr><td>5</td><td>28-34</td><td>34,359,738,367</td></tr>
193 <tr><td>6</td><td>35-41</td><td>4,398,046,511,103</td></tr>
194 <tr><td>7</td><td>42-48</td><td>562,949,953,421,311</td></tr>
195 <tr><td>8</td><td>49-55</td><td>72,057,594,037,927,935</td></tr>
196 <tr><td>9</td><td>56-62</td><td>9,223,372,036,854,775,807</td></tr>
197 <tr><td>10</td><td>63-69</td><td>1,180,591,620,717,411,303,423</td></tr>
198</table>
Chris Lattner2b905652004-05-24 05:35:17 +0000199<p>Note that in practice, the tenth byte could only encode bit 63
Reid Spencerb39021b2004-05-23 17:05:09 +0000200since the maximum quantity to use this encoding is a 64-bit integer.</p>
Chris Lattner2b905652004-05-24 05:35:17 +0000201
202<p><em>Signed</em> VBR values are encoded with the standard vbr encoding, but
203with the sign bit as the low order bit instead of the high order bit. This
204allows small negative quantities to be encoded efficiently. For example, -3
205is encoded as "((3 &lt;&lt; 1) | 1)" and 3 is encoded as "(3 &lt;&lt; 1) |
2060)", emitted with the standard vbr encoding above.</p>
207
Reid Spencerb39021b2004-05-23 17:05:09 +0000208<p>The table below defines the encoding rules for type names used in the
209descriptions of blocks and fields in the next section. Any type name with
210the suffix <em>_vbr</em> indicate a quantity that is encoded using
211variable bit rate encoding as described above.</p>
212<table class="doc_table" >
213 <tr>
214 <th><b>Type</b></th>
215 <th align="left"><b>Rule</b></th>
216 </tr>
217 <tr>
218 <td>unsigned</td>
219 <td align="left">A 32-bit unsigned integer that always occupies four
220 consecutive bytes. The unsigned integer is encoded using LSB first
221 ordering. That is bits 2<sup>0</sup> through 2<sup>7</sup> are in the
222 byte with the lowest file offset (little endian).</td>
223 </tr><tr>
224 <td>uint_vbr</td>
225 <td align="left">A 32-bit unsigned integer that occupies from one to five
226 bytes using variable bit rate encoding.</td>
227 </tr><tr>
228 <td>uint64_vbr</td>
229 <td align="left">A 64-bit unsigned integer that occupies from one to ten
230 bytes using variable bit rate encoding.</td>
231 </tr><tr>
232 <td>int64_vbr</td>
233 <td align="left">A 64-bit signed integer that occupies from one to ten
Chris Lattner2b905652004-05-24 05:35:17 +0000234 bytes using the signed variable bit rate encoding.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000235 </tr><tr>
236 <td>char</td>
237 <td align="left">A single unsigned character encoded into one byte</td>
238 </tr><tr>
239 <td>bit</td>
240 <td align="left">A single bit within a byte.</td>
241 </tr><tr>
242 <td>string</td>
243 <td align="left">A uint_vbr indicating the length of the character string
244 immediately followed by the characters of the string. There is no
Chris Lattner2b905652004-05-24 05:35:17 +0000245 terminating null byte in the string.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000246 </tr><tr>
247 <td>data</td>
248 <td align="left">An arbitrarily long segment of data to which no
249 interpretation is implied. This is used for float, double, and constant
250 initializers.</td>
251 </tr>
252</table>
253</div>
254<!-- _______________________________________________________________________ -->
Reid Spencer50026612004-05-22 02:28:36 +0000255<div class="doc_subsection"><a name="align">Alignment</a> </div>
256<div class="doc_text">
257<p>To support cross-platform differences, the bytecode file is aligned on
258certain boundaries. This means that a small amount of padding (at most 3 bytes)
259will be added to ensure that the next entry is aligned to a 32-bit boundary.
260</p>
261</div>
262<!-- *********************************************************************** -->
263<div class="doc_section"> <a name="details">Detailed Layout</a> </div>
264<!-- *********************************************************************** -->
265<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000266<p>This section provides the detailed layout of the LLVM bytecode file format.
267bit and byte level specifics.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000268</div>
269<!-- _______________________________________________________________________ -->
270<div class="doc_subsection"><a name="notation">Notation</a></div>
271<div class="doc_text">
272 <p>The descriptions of the bytecode format that follow describe the bit
273 fields in detail. These descriptions are provided in tabular form. Each table
274 has four columns that specify:</p>
275 <ol>
Chris Lattner2b905652004-05-24 05:35:17 +0000276 <li><b>Byte(s)</b>: The offset in bytes of the field from the start of
Reid Spencer6f1d6992004-05-23 17:12:45 +0000277 its container (block, list, other field).</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000278 <li><b>Bit(s)</b>: The offset in bits of the field from the start of
Reid Spencer50026612004-05-22 02:28:36 +0000279 the byte field. Bits are always little endian. That is, bit addresses with
Reid Spencer6f1d6992004-05-23 17:12:45 +0000280 smaller values have smaller address (i.e. 2<sup>0</sup> is at bit 0,
281 2<sup>1</sup> at 1, etc.)
Reid Spencer50026612004-05-22 02:28:36 +0000282 </li>
Chris Lattner2b905652004-05-24 05:35:17 +0000283 <li><b>Align?</b>: Indicates if this field is aligned to 32 bits or not.
Reid Spencer50026612004-05-22 02:28:36 +0000284 This indicates where the <em>next</em> field starts, always on a 32 bit
285 boundary.</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000286 <li><b>Type</b>: The basic type of information contained in the field.</li>
287 <li><b>Description</b>: Describes the contents of the field.</li>
Reid Spencer50026612004-05-22 02:28:36 +0000288 </ol>
289</div>
290<!-- _______________________________________________________________________ -->
291<div class="doc_subsection"><a name="blocktypes">Block Types</a></div>
292<div class="doc_text">
293 <p>The bytecode format encodes the intermediate representation into groups
294 of bytes known as blocks. The blocks are written sequentially to the file in
295 the following order:</p>
296<ol>
Chris Lattner2b905652004-05-24 05:35:17 +0000297 <li><a href="#signature">Signature</a>: This contains the file signature
298 (magic number) that identifies the file as LLVM bytecode and the bytecode
299 version number.</li>
300 <li><a href="#module">Module Block</a>: This is the top level block in a
Reid Spencerb39021b2004-05-23 17:05:09 +0000301 bytecode file. It contains all the other blocks.</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000302 <li><a href="#gtypepool">Global Type Pool</a>: This block contains all the
Reid Spencer50026612004-05-22 02:28:36 +0000303 global (module) level types.</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000304 <li><a href="#modinfo">Module Info</a>: This block contains the types of the
Reid Spencer50026612004-05-22 02:28:36 +0000305 global variables and functions in the module as well as the constant
306 initializers for the global variables</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000307 <li><a href="#constants">Constants</a>: This block contains all the global
Reid Spencer50026612004-05-22 02:28:36 +0000308 constants except function arguments, global values and constant strings.</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000309 <li><a href="#functions">Functions</a>: One function block is written for
Reid Spencer50026612004-05-22 02:28:36 +0000310 each function in the module. </li>
Chris Lattner2b905652004-05-24 05:35:17 +0000311 <li><a href="$symtab">Symbol Table</a>: The module level symbol table that
Reid Spencer50026612004-05-22 02:28:36 +0000312 provides names for the various other entries in the file is the final block
313 written.</li>
314</ol>
315</div>
316<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +0000317<div class="doc_subsection"><a name="signature">Signature Block</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000318<div class="doc_text">
Chris Lattner2b905652004-05-24 05:35:17 +0000319<p>The signature occurs in every LLVM bytecode file and is always first.
Reid Spencerb39021b2004-05-23 17:05:09 +0000320It simply provides a few bytes of data to identify the file as being an LLVM
321bytecode file. This block is always four bytes in length and differs from the
322other blocks because there is no identifier and no block length at the start
323of the block. Essentially, this block is just the "magic number" for the file.
324<table class="doc_table_nw" >
Reid Spencer50026612004-05-22 02:28:36 +0000325 <tr>
326 <th><b>Byte(s)</b></th>
327 <th><b>Bit(s)</b></th>
328 <th><b>Align?</b></th>
Reid Spencer939290f2004-05-22 05:56:41 +0000329 <th><b>Type</b></th>
Reid Spencer50026612004-05-22 02:28:36 +0000330 <th align="left"><b>Field Description</b></th>
Reid Spencerb39021b2004-05-23 17:05:09 +0000331 </tr><tr>
332 <td>00</td><td>-</td><td>No</td><td>char</td>
Reid Spencer939290f2004-05-22 05:56:41 +0000333 <td align="left">Constant "l" (0x6C)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000334 </tr><tr>
335 <td>01</td><td>-</td><td>No</td><td>char</td>
Reid Spencer939290f2004-05-22 05:56:41 +0000336 <td align="left">Constant "l" (0x6C)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000337 </tr><tr>
338 <td>02</td><td>-</td><td>No</td><td>char</td>
Reid Spencer939290f2004-05-22 05:56:41 +0000339 <td align="left">Constant "v" (0x76)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000340 </tr><tr>
341 <td>03</td><td>-</td><td>No</td><td>char</td>
Reid Spencer939290f2004-05-22 05:56:41 +0000342 <td align="left">Constant "m" (0x6D)</td>
Reid Spencer50026612004-05-22 02:28:36 +0000343 </tr>
Reid Spencerb39021b2004-05-23 17:05:09 +0000344</table>
345</div>
346<!-- _______________________________________________________________________ -->
347<div class="doc_subsection"><a name="module">Module Block</a> </div>
348<div class="doc_text">
349<p>The module block contains a small pre-amble and all the other blocks in
350the file. Of particular note, the bytecode format number is simply a 28-bit
351monotonically increase integer that identifiers the version of the bytecode
Chris Lattner2b905652004-05-24 05:35:17 +0000352format (which is not directly related to the LLVM release number). The
353bytecode versions defined so far are (note that this document only describes
354the latest version): </p>
355
356<ul>
357<li>#0: LLVM 1.0 &amp; 1.1</li>
358<li>#1: LLVM 1.2</li>
359<li>#2: LLVM 1.3</li>
360</ul>
361
362<p>The table below shows the format of the module block header. It is defined
363by blocks described in other sections.</p>
Reid Spencerb39021b2004-05-23 17:05:09 +0000364<table class="doc_table_nw" >
Reid Spencer50026612004-05-22 02:28:36 +0000365 <tr>
Reid Spencerb39021b2004-05-23 17:05:09 +0000366 <th><b>Byte(s)</b></th>
367 <th><b>Bit(s)</b></th>
368 <th><b>Align?</b></th>
369 <th><b>Type</b></th>
370 <th align="left"><b>Field Description</b></th>
371 </tr><tr>
372 <td>04-07</td><td>-</td><td>No</td><td>unsigned</td>
373 <td align="left">Module Identifier (0x01)</td>
374 </tr><tr>
375 <td>08-11</td><td>-</td><td>No</td><td>unsigned</td>
376 <td align="left">Size of the module block in bytes</td>
377 </tr><tr>
378 <td>12-15</td><td>00</td><td>Yes</td><td>uint32_vbr</td>
379 <td align="left">Format Information</td>
380 </tr><tr>
381 <td>''</td><td>0</td><td>-</td><td>bit</td>
382 <td align="left">Big Endian?</td>
383 </tr><tr>
384 <td>''</td><td>1</td><td>-</td><td>bit</td>
385 <td align="left">Pointers Are 64-bit?</td>
386 </tr><tr>
387 <td>''</td><td>2</td><td>-</td><td>bit</td>
388 <td align="left">Has No Endianess?</td>
389 </tr><tr>
390 <td>''</td><td>3</td><td>-</td><td>bit</td>
391 <td align="left">Has No Pointer Size?</td>
392 </tr><tr>
393 <td>''</td><td>4-31</td><td>-</td><td>bit</td>
394 <td align="left">Bytecode Format Version</td>
395 </tr><tr>
396 <td>16-end</td><td>-</td><td>-</td><td>blocks</td>
397 <td align="left">The remaining bytes in the block consist
398 solely of other block types in sequence.</td>
Reid Spencer50026612004-05-22 02:28:36 +0000399 </tr>
400</table>
Chris Lattner2b905652004-05-24 05:35:17 +0000401
402<p>Note that we plan to eventually expand the target description capabilities
403of bytecode files to <a href="http://llvm.cs.uiuc.edu/PR263">target
404triples</a>.</p>
405
Reid Spencer50026612004-05-22 02:28:36 +0000406</div>
Chris Lattner2b905652004-05-24 05:35:17 +0000407
Reid Spencer50026612004-05-22 02:28:36 +0000408<!-- _______________________________________________________________________ -->
409<div class="doc_subsection"><a name="gtypepool">Global Type Pool</a> </div>
410<div class="doc_text">
Chris Lattner2b905652004-05-24 05:35:17 +0000411<p>The global type pool consists of type definitions. Their order of appearance
Reid Spencerb39021b2004-05-23 17:05:09 +0000412in the file determines their slot number (0 based). Slot numbers are used to
413replace pointers in the intermediate representation. Each slot number uniquely
414identifies one entry in a type plane (a collection of values of the same type).
415Since all values have types and are associated with the order in which the type
416pool is written, the global type pool <em>must</em> be written as the first
417block of a module. If it is not, attempts to read the file will fail because
418both forward and backward type resolution will not be possible.</p>
419<p>The type pool is simply a list of types definitions, as shown in the table
420below.</p>
421<table class="doc_table_nw" >
422 <tr>
423 <th><b>Byte(s)</b></th>
424 <th><b>Bit(s)</b></th>
425 <th><b>Align?</b></th>
426 <th><b>Type</b></th>
427 <th align="left"><b>Field Description</b></th>
428 </tr><tr>
429 <td>00-03</td><td>-</td><td>No</td><td>unsigned</td>
430 <td align="left">Type Pool Identifier (0x13)</td>
431 </tr><tr>
432 <td>04-07</td><td>-</td><td>No</td><td>unsigned</td>
433 <td align="left">Size in bytes of the symbol table block.</td>
434 </tr><tr>
435 <td>08-11<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
436 <td align="left">Number of entries in type plane</td>
437 </tr><tr>
438 <td>12-15<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
439 <td align="left">Type plane index for following entries</td>
440 </tr><tr>
441 <td>16-end<sup>1,2</sup></td><td>-</td><td>No</td><td>type</td>
442 <td align="left">Each of the type definitions.</td>
443 </tr><tr>
444 <td align="left" colspan="5"><sup>1</sup>Maximum length shown,
445 may be smaller<br><sup>2</sup>Repeated field.
446 </tr>
447</table>
Reid Spencer50026612004-05-22 02:28:36 +0000448</div>
449<!-- _______________________________________________________________________ -->
450<div class="doc_subsection"><a name="modinfo">Module Info</a> </div>
451<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000452 <p>To be determined.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000453</div>
454<!-- _______________________________________________________________________ -->
455<div class="doc_subsection"><a name="constants">Constants</a> </div>
456<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000457 <p>To be determined.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000458</div>
459<!-- _______________________________________________________________________ -->
460<div class="doc_subsection"><a name="functions">Functions</a> </div>
461<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000462 <p>To be determined.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000463</div>
464<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +0000465<div class="doc_subsection"><a name="symtab">Symbol Table</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000466<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000467<p>A symbol table can be put out in conjunction with a module or a function.
468A symbol table is a list of type planes. Each type plane starts with the number
469of entries in the plane and the type plane's slot number (so the type can be
470looked up in the global type pool). For each entry in a type plane, the slot
471number of the value and the name associated with that value are written. The
472format is given in the table below. </p>
473<table class="doc_table_nw" >
474 <tr>
475 <th><b>Byte(s)</b></th>
476 <th><b>Bit(s)</b></th>
477 <th><b>Align?</b></th>
478 <th><b>Type</b></th>
479 <th align="left"><b>Field Description</b></th>
480 </tr><tr>
481 <td>00-03</td><td>-</td><td>No</td><td>unsigned</td>
482 <td align="left">Symbol Table Identifier (0x13)</td>
483 </tr><tr>
484 <td>04-07</td><td>-</td><td>No</td><td>unsigned</td>
485 <td align="left">Size in bytes of the symbol table block.</td>
486 </tr><tr>
487 <td>08-11<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
488 <td align="left">Number of entries in type plane</td>
489 </tr><tr>
490 <td>12-15<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
491 <td align="left">Type plane index for following entries</td>
492 </tr><tr>
493 <td>16-19<sup>1,2</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
494 <td align="left">Slot number of a value.</td>
495 </tr><tr>
496 <td>variable<sup>1,2</sup></td><td>-</td><td>No</td><td>string</td>
497 <td align="left">Name of the value in the symbol table.</td>
498 </tr>
499 <tr>
500 <td align="left" colspan="5"><sup>1</sup>Maximum length shown,
501 may be smaller<br><sup>2</sup>Repeated field.
502 </tr>
503</table>
Reid Spencer50026612004-05-22 02:28:36 +0000504</div>
505
506<!-- *********************************************************************** -->
507<hr>
508<address>
509 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
510 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
511 <a href="http://validator.w3.org/check/referer"><img
512 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
513
514 <a href="mailto:rspencer@x10sys.com">Reid Spencer</a> and
515 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
516 <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
517 Last modified: $Date$
518</address>
519</body>
520</html>
521<!-- vim: sw=2
522-->