blob: 0ed48e1db6e3a9e83bcbbe3070623c05b84192f7 [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 Spencer1ab929c2004-07-05 08:18:07 +00007 <style type="text/css">
8 TR, TD { border: 2px solid gray; padding: 4pt 4pt 4pt 4pt; }
9 TH { border: 2px solid gray; font-weight: bold; font-size: 105%; }
10 TABLE { text-align: center; padding: 4pt 4pt 4pt 4pt; border: 2px solid black;
11 border-collapse: collapse; margin-top: 1em; margin-left: 1em; margin-right: 1em; margin-bottom: 1em; }
12 .td_left { border: 2px solid gray; padding: 4pt 4pt 4pt 4pt; text-align: left; }
Reid Spencer50026612004-05-22 02:28:36 +000013 </style>
14</head>
15<body>
16 <div class="doc_title"> LLVM Bytecode File Format </div>
17<ol>
18 <li><a href="#abstract">Abstract</a></li>
Reid Spencer1ab929c2004-07-05 08:18:07 +000019 <li><a href="#concepts">Concepts</a>
Reid Spencer50026612004-05-22 02:28:36 +000020 <ol>
21 <li><a href="#blocks">Blocks</a></li>
22 <li><a href="#lists">Lists</a></li>
23 <li><a href="#fields">Fields</a></li>
24 <li><a href="#align">Alignment</a></li>
Reid Spencer1ab929c2004-07-05 08:18:07 +000025 <li><a href="#encoding">Encoding Primitives</a></li>
26 <li><a href="#slots">Slots</a></li>
27 </ol>
28 </li>
29 <li><a href="#general">General Layout</a>
30 <ol>
31 <li><a href="#structure">Structure</a></li>
Reid Spencer50026612004-05-22 02:28:36 +000032 </ol>
Reid Spencer6f1d6992004-05-23 17:12:45 +000033 </li>
Reid Spencer50026612004-05-22 02:28:36 +000034 <li><a href="#details">Detailed Layout</a>
35 <ol>
36 <li><a href="#notation">Notation</a></li>
37 <li><a href="#blocktypes">Blocks Types</a></li>
Reid Spencerb39021b2004-05-23 17:05:09 +000038 <li><a href="#signature">Signature Block</a></li>
39 <li><a href="#module">Module Block</a></li>
Reid Spencer1ab929c2004-07-05 08:18:07 +000040 <li><a href="#globaltypes">Global Type Pool</a></li>
41 <li><a href="#globalinfo">Module Info Block</a></li>
42 <li><a href="#constantpool">Global Constant Pool</a></li>
43 <li><a href="#functiondefs">Function Definition</a></li>
44 <li><a href="#compactiontable">Compaction Table</a></li>
45 <li><a href="#instructionlist">Instruction List</a></li>
46 <li><a href="#symtab">Symbol Table</a></li>
Reid Spencer50026612004-05-22 02:28:36 +000047 </ol>
48 </li>
Reid Spencer7c76d332004-06-08 07:41:41 +000049 <li><a href="#versiondiffs">Version Differences</a>
50 <ol>
51 <li><a href="#vers12">Version 1.2 Differences From 1.3</a></li>
52 <li><a href="#vers11">Version 1.1 Differences From 1.2</a></li>
53 <li><a href="#vers10">Version 1.0 Differences From 1.1</a></li>
54 </ol>
55 </li>
Reid Spencer50026612004-05-22 02:28:36 +000056</ol>
Chris Lattner8dabb502004-05-25 17:44:58 +000057<div class="doc_author">
58<p>Written by <a href="mailto:rspencer@x10sys.com">Reid Spencer</a>
59</p>
Reid Spencer50026612004-05-22 02:28:36 +000060</div>
Reid Spencerc0a2af12004-06-05 14:18:02 +000061<div class="doc_warning">
62 <p>Warning: This is a work in progress.</p>
63</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +000064
Reid Spencer50026612004-05-22 02:28:36 +000065<!-- *********************************************************************** -->
66<div class="doc_section"> <a name="abstract">Abstract </a></div>
67<!-- *********************************************************************** -->
68<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +000069<p>This document describes the LLVM bytecode file format as of version 1.3.
70It specifies the binary encoding rules of the bytecode file format
Reid Spencer50026612004-05-22 02:28:36 +000071so that equivalent systems can encode bytecode files correctly. The LLVM
72bytecode representation is used to store the intermediate representation on
73disk in compacted form.
74</p>
75</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +000076
Reid Spencer50026612004-05-22 02:28:36 +000077<!-- *********************************************************************** -->
Reid Spencer1ab929c2004-07-05 08:18:07 +000078<div class="doc_section"> <a name="concepts">Concepts</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +000079<!-- *********************************************************************** -->
80<div class="doc_text">
81<p>This section describes the general concepts of the bytecode file format
Chris Lattner2b905652004-05-24 05:35:17 +000082without getting into bit and byte level specifics. Note that the LLVM bytecode
83format may change in the future, but will always be backwards compatible with
84older formats. This document only describes the most current version of the
85bytecode format.</p>
Reid Spencer50026612004-05-22 02:28:36 +000086</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +000087
Reid Spencer50026612004-05-22 02:28:36 +000088<!-- _______________________________________________________________________ -->
89<div class="doc_subsection"><a name="blocks">Blocks</a> </div>
90<div class="doc_text">
91<p>LLVM bytecode files consist simply of a sequence of blocks of bytes.
Reid Spencer1ab929c2004-07-05 08:18:07 +000092Each block begins with an header of two unsigned integers. The first value
93identifies the type of block and the second value provides the size of the
94block in bytes. The block identifier is used because it is possible for entire
95blocks to be omitted from the file if they are empty. The block identifier helps
96the reader determine which kind of block is next in the file. Note that blocks
97can be nested within other blocks.</p>
Chris Lattner2b905652004-05-24 05:35:17 +000098<p> All blocks are variable length, and the block header specifies the size of
Reid Spencer1ab929c2004-07-05 08:18:07 +000099the block. All blocks begin on a byte index that is aligned to an even 32-bit
100boundary. That is, the first block is 32-bit aligned because it starts at offset
1010. Each block is padded with zero fill bytes to ensure that the next block also
102starts on a 32-bit boundary.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000103</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000104
Reid Spencer50026612004-05-22 02:28:36 +0000105<!-- _______________________________________________________________________ -->
106<div class="doc_subsection"><a name="lists">Lists</a> </div>
107<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +0000108 <p>LLVM Bytecode blocks often contain lists of things of a similar type. For
109 example, a function contains a list of instructions and a function type
110 contains a list of argument types. There are two basic types of lists:
111 length lists, and null terminated lists, as described here:</p>
112 <ul>
113 <li><b>Length Lists</b>. Length lists are simply preceded by the number
114 of items in the list. The bytecode reader will read the count first and
115 then iterate that many times to read in the list contents.</li>
116 <li><b>Null Terminated Lists</b>. For some lists, the number of elements
117 in the list is not readily available at the time of writing the bytecode.
118 In these cases, the list is terminated by some null value. What constitutes
119 a null value differs, but it almost always boils down to a zero value.</li>
120 </ul>
Reid Spencer50026612004-05-22 02:28:36 +0000121</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000122
Reid Spencer50026612004-05-22 02:28:36 +0000123<!-- _______________________________________________________________________ -->
124<div class="doc_subsection"><a name="fields">Fields</a> </div>
125<div class="doc_text">
126<p>Fields are units of information that LLVM knows how to write atomically.
127Most fields have a uniform length or some kind of length indication built into
Chris Lattner2b905652004-05-24 05:35:17 +0000128their encoding. For example, a constant string (array of bytes) is
Reid Spencer50026612004-05-22 02:28:36 +0000129written simply as the length followed by the characters. Although this is
130similar to a list, constant strings are treated atomically and are thus
131fields.</p>
132<p>Fields use a condensed bit format specific to the type of information
133they must contain. As few bits as possible are written for each field. The
134sections that follow will provide the details on how these fields are
135written and how the bits are to be interpreted.</p>
136</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000137
Reid Spencer50026612004-05-22 02:28:36 +0000138<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000139<div class="doc_subsection"><a name="align">Alignment</a> </div>
Reid Spencer7aa940d2004-05-25 15:47:57 +0000140<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +0000141 <p>To support cross-platform differences, the bytecode file is aligned on
142 certain boundaries. This means that a small amount of padding (at most 3
143 bytes) will be added to ensure that the next entry is aligned to a 32-bit
144 boundary.</p>
Chris Lattner8dabb502004-05-25 17:44:58 +0000145</div>
146
Reid Spencer7aa940d2004-05-25 15:47:57 +0000147<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +0000148<div class="doc_subsection"><a name="encoding">Encoding Primitives</a> </div>
149<div class="doc_text">
150<p>Each field that can be put out is encoded into the file using a small set
151of primitives. The rules for these primitives are described below.</p>
152<h3>Variable Bit Rate Encoding</h3>
Chris Lattner2b905652004-05-24 05:35:17 +0000153<p>Most of the values written to LLVM bytecode files are small integers. To
154minimize the number of bytes written for these quantities, an encoding
Reid Spencerb39021b2004-05-23 17:05:09 +0000155scheme similar to UTF-8 is used to write integer data. The scheme is known as
156variable bit rate (vbr) encoding. In this encoding, the high bit of each
157byte is used to indicate if more bytes follow. If (byte &amp; 0x80) is non-zero
158in any given byte, it means there is another byte immediately following that
159also contributes to the value. For the final byte (byte &amp; 0x80) is false
160(the high bit is not set). In each byte only the low seven bits contribute to
161the value. Consequently 32-bit quantities can take from one to <em>five</em>
162bytes to encode. In general, smaller quantities will encode in fewer bytes,
163as follows:</p>
164<table class="doc_table_nw">
165 <tr>
166 <th>Byte #</th>
167 <th>Significant Bits</th>
168 <th>Maximum Value</th>
169 </tr>
170 <tr><td>1</td><td>0-6</td><td>127</td></tr>
171 <tr><td>2</td><td>7-13</td><td>16,383</td></tr>
172 <tr><td>3</td><td>14-20</td><td>2,097,151</td></tr>
173 <tr><td>4</td><td>21-27</td><td>268,435,455</td></tr>
174 <tr><td>5</td><td>28-34</td><td>34,359,738,367</td></tr>
175 <tr><td>6</td><td>35-41</td><td>4,398,046,511,103</td></tr>
176 <tr><td>7</td><td>42-48</td><td>562,949,953,421,311</td></tr>
177 <tr><td>8</td><td>49-55</td><td>72,057,594,037,927,935</td></tr>
178 <tr><td>9</td><td>56-62</td><td>9,223,372,036,854,775,807</td></tr>
179 <tr><td>10</td><td>63-69</td><td>1,180,591,620,717,411,303,423</td></tr>
180</table>
Chris Lattner2b905652004-05-24 05:35:17 +0000181<p>Note that in practice, the tenth byte could only encode bit 63
Reid Spencerb39021b2004-05-23 17:05:09 +0000182since the maximum quantity to use this encoding is a 64-bit integer.</p>
Chris Lattner2b905652004-05-24 05:35:17 +0000183
184<p><em>Signed</em> VBR values are encoded with the standard vbr encoding, but
185with the sign bit as the low order bit instead of the high order bit. This
186allows small negative quantities to be encoded efficiently. For example, -3
187is encoded as "((3 &lt;&lt; 1) | 1)" and 3 is encoded as "(3 &lt;&lt; 1) |
1880)", emitted with the standard vbr encoding above.</p>
189
Reid Spencerb39021b2004-05-23 17:05:09 +0000190<p>The table below defines the encoding rules for type names used in the
191descriptions of blocks and fields in the next section. Any type name with
192the suffix <em>_vbr</em> indicate a quantity that is encoded using
193variable bit rate encoding as described above.</p>
194<table class="doc_table" >
195 <tr>
196 <th><b>Type</b></th>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000197 <th class="td_left"><b>Rule</b></th>
Reid Spencerb39021b2004-05-23 17:05:09 +0000198 </tr>
199 <tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000200 <td><a name="unsigned">unsigned</a></td>
201 <td class="td_left">A 32-bit unsigned integer that always occupies four
Reid Spencerb39021b2004-05-23 17:05:09 +0000202 consecutive bytes. The unsigned integer is encoded using LSB first
203 ordering. That is bits 2<sup>0</sup> through 2<sup>7</sup> are in the
204 byte with the lowest file offset (little endian).</td>
205 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000206 <td><a name="uint_vbr">uint_vbr</a></td>
207 <td class="td_left">A 32-bit unsigned integer that occupies from one to five
Reid Spencerb39021b2004-05-23 17:05:09 +0000208 bytes using variable bit rate encoding.</td>
209 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000210 <td><a name="uint64_vbr">uint64_vbr</a></td>
211 <td class="td_left">A 64-bit unsigned integer that occupies from one to ten
Reid Spencerb39021b2004-05-23 17:05:09 +0000212 bytes using variable bit rate encoding.</td>
213 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000214 <td><a name="int64_vbr">int64_vbr</a></td>
215 <td class="td_left">A 64-bit signed integer that occupies from one to ten
Chris Lattner2b905652004-05-24 05:35:17 +0000216 bytes using the signed variable bit rate encoding.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000217 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000218 <td><a name="char">char</a></td>
219 <td class="td_left">A single unsigned character encoded into one byte</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000220 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000221 <td><a name="bit">bit</a></td>
222 <td class="td_left">A single bit within some larger integer field.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000223 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000224 <td><a name="string">string</a></td>
225 <td class="td_left">A uint_vbr indicating the length of the character string
Reid Spencerb39021b2004-05-23 17:05:09 +0000226 immediately followed by the characters of the string. There is no
Chris Lattner2b905652004-05-24 05:35:17 +0000227 terminating null byte in the string.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000228 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000229 <td><a name="data">data</a></td>
230 <td class="td_left">An arbitrarily long segment of data to which no
Reid Spencerb39021b2004-05-23 17:05:09 +0000231 interpretation is implied. This is used for float, double, and constant
232 initializers.</td>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000233 </tr><tr>
234 <td><a name="block">block</a></td>
235 <td class="td_left">A block of data that is logically related. A block
236 begins with an <a href="#unsigned">unsigned</a> that provides the block
237 identifier (constant value) and an <a href="#unsigned">unsigned</a> that
238 provides the length of the block. Blocks may compose other blocks.
239 </td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000240 </tr>
241</table>
242</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000243
Reid Spencerb39021b2004-05-23 17:05:09 +0000244<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000245<div class="doc_subsection"><a name="slots">Slots</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000246<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +0000247<p>The bytecode format uses the notion of a "slot" to reference Types and
248Values. Since the bytecode file is a <em>direct</em> representation of LLVM's
249intermediate representation, there is a need to represent pointers in the file.
250Slots are used for this purpose. For example, if one has the following assembly:
251</p>
252<div class="doc_code">
253 %MyType = type { int, sbyte }<br>
254 %MyVar = external global %MyType
255</div>
256<p>there are two definitions. The definition of <tt>%MyVar</tt> uses
257<tt>%MyType</tt>. In the C++ IR this linkage between <tt>%MyVar</tt> and
258<tt>%MyType</tt> is
259explicit through the use of C++ pointers. In bytecode, however, there's no
260ability to store memory addresses. Instead, we compute and write out slot
261numbers for every Type and Value written to the file.</p>
262<p>A slot number is simply an unsigned 32-bit integer encoded in the variable
263bit rate scheme (see <a href="#encoding">encoding</a>). This ensures that
264low slot numbers are encoded in one byte. Through various bits of magic LLVM
265attempts to always keep the slot numbers low. The first attempt is to associate
266slot numbers with their "type plane". That is, Values of the same type are
267written to the bytecode file in a list (sequentially). Their order in that list
268determines their slot number. This means that slot #1 doesn't mean anything
269unless you also specify for which type you want slot #1. Types are handled
270specially and are always written to the file first (in the
271<a href="#globaltypes">Global Type Pool</a>) and
272in such a way that both forward and backward references of the types can often be
273resolved with a single pass through the type pool. </p>
274<p>Slot numbers are also kept small by rearranging their order. Because of the
275structure of LLVM, certain values are much more likely to be used frequently
276in the body of a function. For this reason, a compaction table is provided in
277the body of a function if its use would make the function body smaller.
278Suppose you have a function body that uses just the types "int*" and "{double}"
279but uses them thousands of time. Its worthwhile to ensure that the slot number
280for these types are low so they can be encoded in a single byte (via vbr).
281This is exactly what the compaction table does.</p>
282</div>
283
284<!-- *********************************************************************** -->
285<div class="doc_section"> <a name="general">General Layout</a> </div>
286<!-- *********************************************************************** -->
287<div class="doc_text">
288 <p>This section provides the general layout of the LLVM bytecode file format.
289 The detailed layout can be found in the <a href="#details">next section</a>.
Reid Spencer50026612004-05-22 02:28:36 +0000290</p>
291</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000292
293<!-- _______________________________________________________________________ -->
294<div class="doc_subsection"><a name="structure">Structure</a> </div>
295<div class="doc_text">
296<p>The bytecode file format requires blocks to be in a certain order and
297nested in a particular way so that an LLVM module can be constructed
298efficiently from the contents of the file. This ordering defines a general
299structure for bytecode files as shown below. The table below shows the order
300in which all block types may appear. Please note that some of the blocks are
301optional and some may be repeated. The structure is fairly loose because
302optional blocks, if empty, are completely omitted from the file.
303</p>
304<table>
305 <tr>
306 <th>ID</th>
307 <th>Parent</th>
308 <th>Optional?</th>
309 <th>Repeated?</th>
310 <th>Level</th>
311 <th>Block Type</th>
312 </tr>
313 <tr><td>N/A</td><td>File</td><td>No</td><td>No</td><td>0</td>
314 <td class="td_left"><a href="#signature">Signature</a></td>
315 </tr>
316 <tr><td>0x01</td><td>File</td><td>No</td><td>No</td><td>0</td>
317 <td class="td_left"><a href="#module">Module</a></td>
318 </tr>
319 <tr><td>0x15</td><td>Module</td><td>No</td><td>No</td><td>1</td>
320 <td class="td_left">&nbsp;&nbsp;&nbsp;
321 <a href="#globaltypes">Global Type Pool</a></td>
322 </tr>
323 <tr><td>0x14</td><td>Module</td><td>No</td><td>No</td><td>1</td>
324 <td class="td_left">&nbsp;&nbsp;&nbsp;
325 <a href="#globalinfo">Module Globals Info</a></td>
326 </tr>
327 <tr><td>0x12</td><td>Module</td><td>Yes</td><td>No</td><td>1</td>
328 <td class="td_left">&nbsp;&nbsp;&nbsp;
329 <a href="#constantpool">Module Constant Pool</a></td>
330 </tr>
331 <tr><td>0x11</td><td>Module</td><td>Yes</td><td>Yes</td><td>1</td>
332 <td class="td_left">&nbsp;&nbsp;&nbsp;
333 <a href="#functiondefs">Function Definitions</a></td>
334 </tr>
335 <tr><td>0x12</td><td>Function</td><td>Yes</td><td>No</td><td>2</td>
336 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
337 <a href="#constantpool">Function Constant Pool</a></td>
338 </tr>
339 <tr><td>0x33</td><td>Function</td><td>Yes</td><td>No</td><td>2</td>
340 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
341 <a href="#compactiontable">Compaction Table</a></td>
342 </tr>
343 <tr><td>0x32</td><td>Function</td><td>No</td><td>No</td><td>2</td>
344 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
345 <a href="#instructionlist">Instruction List</a></td>
346 </tr>
347 <tr><td>0x13</td><td>Function</td><td>Yes</td><td>No</td><td>2</td>
348 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
349 <a href="#symboltable">Function Symbol Table</a></td>
350 </tr>
351 <tr><td>0x13</td><td>Module</td><td>Yes</td><td>No</td><td>1</td>
352 <td class="td_left">&nbsp;&nbsp;&nbsp;
353 <a href="#symboltable">Module Symbol Table</a></td>
354 </tr>
355</table>
356<p>Use the links in the table or see <a href="#blocktypes">Block Types</a> for
357details about the contents of each of the block types.</p>
358</div>
359
Reid Spencer50026612004-05-22 02:28:36 +0000360<!-- *********************************************************************** -->
361<div class="doc_section"> <a name="details">Detailed Layout</a> </div>
362<!-- *********************************************************************** -->
363<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000364<p>This section provides the detailed layout of the LLVM bytecode file format.
Reid Spencer1ab929c2004-07-05 08:18:07 +0000365</p>
Reid Spencer50026612004-05-22 02:28:36 +0000366</div>
367<!-- _______________________________________________________________________ -->
368<div class="doc_subsection"><a name="notation">Notation</a></div>
369<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +0000370<p>The descriptions of the bytecode format that follow describe the order, type
371and bit fields in detail. These descriptions are provided in tabular form.
372Each table has four columns that specify:</p>
373<ol>
374 <li><b>Byte(s)</b>: The offset in bytes of the field from the start of
375 its container (block, list, other field).</li>
376 <li><b>Bit(s)</b>: The offset in bits of the field from the start of
377 the byte field. Bits are always little endian. That is, bit addresses with
378 smaller values have smaller address (i.e. 2<sup>0</sup> is at bit 0,
379 2<sup>1</sup> at 1, etc.)
380 </li>
381 <li><b>Align?</b>: Indicates if this field is aligned to 32 bits or not.
382 This indicates where the <em>next</em> field starts, always on a 32 bit
383 boundary.</li>
384 <li><b>Type</b>: The basic type of information contained in the field.</li>
385 <li><b>Description</b>: Describes the contents of the field.</li>
386</ol>
Reid Spencer50026612004-05-22 02:28:36 +0000387</div>
388<!-- _______________________________________________________________________ -->
389<div class="doc_subsection"><a name="blocktypes">Block Types</a></div>
390<div class="doc_text">
391 <p>The bytecode format encodes the intermediate representation into groups
392 of bytes known as blocks. The blocks are written sequentially to the file in
393 the following order:</p>
394<ol>
Chris Lattner2b905652004-05-24 05:35:17 +0000395 <li><a href="#signature">Signature</a>: This contains the file signature
396 (magic number) that identifies the file as LLVM bytecode and the bytecode
397 version number.</li>
398 <li><a href="#module">Module Block</a>: This is the top level block in a
Reid Spencerb39021b2004-05-23 17:05:09 +0000399 bytecode file. It contains all the other blocks.</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000400 <li><a href="#gtypepool">Global Type Pool</a>: This block contains all the
Reid Spencer50026612004-05-22 02:28:36 +0000401 global (module) level types.</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000402 <li><a href="#modinfo">Module Info</a>: This block contains the types of the
Reid Spencer50026612004-05-22 02:28:36 +0000403 global variables and functions in the module as well as the constant
404 initializers for the global variables</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000405 <li><a href="#constants">Constants</a>: This block contains all the global
Reid Spencer50026612004-05-22 02:28:36 +0000406 constants except function arguments, global values and constant strings.</li>
Chris Lattner2b905652004-05-24 05:35:17 +0000407 <li><a href="#functions">Functions</a>: One function block is written for
Reid Spencer50026612004-05-22 02:28:36 +0000408 each function in the module. </li>
Tanya Lattner61f1d2b2004-06-21 23:29:40 +0000409 <li><a href="#symtab">Symbol Table</a>: The module level symbol table that
Reid Spencer50026612004-05-22 02:28:36 +0000410 provides names for the various other entries in the file is the final block
411 written.</li>
412</ol>
413</div>
414<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +0000415<div class="doc_subsection"><a name="signature">Signature Block</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000416<div class="doc_text">
Chris Lattner2b905652004-05-24 05:35:17 +0000417<p>The signature occurs in every LLVM bytecode file and is always first.
Reid Spencerb39021b2004-05-23 17:05:09 +0000418It simply provides a few bytes of data to identify the file as being an LLVM
419bytecode file. This block is always four bytes in length and differs from the
420other blocks because there is no identifier and no block length at the start
421of the block. Essentially, this block is just the "magic number" for the file.
422<table class="doc_table_nw" >
Reid Spencer50026612004-05-22 02:28:36 +0000423 <tr>
Reid Spencer939290f2004-05-22 05:56:41 +0000424 <th><b>Type</b></th>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000425 <th class="td_left"><b>Field Description</b></th>
Reid Spencerb39021b2004-05-23 17:05:09 +0000426 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000427 <td><a href="#char">char</a></td>
428 <td class="td_left">Constant "l" (0x6C)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000429 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000430 <td><a href="#char">char</a></td>
431 <td class="td_left">Constant "l" (0x6C)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000432 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000433 <td><a href="#char">char</a></td>
434 <td class="td_left">Constant "v" (0x76)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000435 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000436 <td><a href="#char">char</a></td>
437 <td class="td_left">Constant "m" (0x6D)</td>
Reid Spencer50026612004-05-22 02:28:36 +0000438 </tr>
Reid Spencerb39021b2004-05-23 17:05:09 +0000439</table>
440</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000441
Reid Spencerb39021b2004-05-23 17:05:09 +0000442<!-- _______________________________________________________________________ -->
443<div class="doc_subsection"><a name="module">Module Block</a> </div>
444<div class="doc_text">
445<p>The module block contains a small pre-amble and all the other blocks in
Reid Spencer1ab929c2004-07-05 08:18:07 +0000446the file. The table below shows the structure of the module block. Note that it
447only provides the module identifier, size of the module block, and the format
448information. Everything else is contained in other blocks, described in other
449sections.</p>
450<table class="doc_table_nw" >
451 <tr>
452 <th><b>Type</b></th>
453 <th class="td_left"><b>Field Description</b></th>
454 </tr><tr>
455 <td><a href="#unsigned">unsigned</a></td>
456 <td class="td_left">Module Identifier (0x01)</td>
457 </tr><tr>
458 <td><a href="#unsigned">unsigned</a></td>
459 <td class="td_left">Size of the module block in bytes</td>
460 </tr><tr>
461 <td><a href="#uint32_vbr">uint32_vbr</a></td>
462 <td class="td_left"><a href="#format">Format Information</a></td>
463 </tr><tr>
464 <td><a href="#block">block</a></td>
465 <td class="td_left"><a href="#globaltypes">Global Type Pool</a></td>
466 </tr><tr>
467 <td><a href="#block">block</a></td>
468 <td class="td_left"><a href="#globalinfo">Module Globals Info</a></td>
469 </tr><tr>
470 <td><a href="#block">block</a></td>
471 <td class="td_left"><a href="#constantpool">Module Constant Pool</a></td>
472 </tr><tr>
473 <td><a href="#block">block</a></td>
474 <td class="td_left"><a href="#functiondefs">Function Definitions</a></td>
475 </tr><tr>
476 <td><a href="#block">block</a></td>
477 <td class="td_left"><a href="#symboltable">Module Symbol Table</a></td>
478 </tr>
479</table>
480</div>
481
482<!-- _______________________________________________________________________ -->
483<div class="doc_subsubsection"><a name="format">Format Information</a></div>
484<div class="doc_text">
485<p>The format information field is encoded into a 32-bit vbr-encoded unsigned
486integer as shown in the following table.</p>
487<table>
488 <tr>
489 <th><b>Bit(s)</b></th>
490 <th><b>Type</b></th>
491 <th class="td_left"><b>Description</b></th>
492 </tr><tr>
493 <td>0</td><td>bit</td>
494 <td class="td_left">Big Endian?</td>
495 </tr><tr>
496 <td>1</td><td>bit</td>
497 <td class="td_left">Pointers Are 64-bit?</td>
498 </tr><tr>
499 <td>2</td><td>bit</td>
500 <td class="td_left">Has No Endianess?</td>
501 </tr><tr>
502 <td>3</td><td>bit</td>
503 <td class="td_left">Has No Pointer Size?</td>
504 </tr><tr>
505 <td>4-31</td><td>bit</td>
506 <td class="td_left">Bytecode Format Version</td>
507 </tr>
508</table>
509<p>
510Of particular note, the bytecode format number is simply a 28-bit
511monotonically increase integer that identifies the version of the bytecode
Chris Lattner2b905652004-05-24 05:35:17 +0000512format (which is not directly related to the LLVM release number). The
513bytecode versions defined so far are (note that this document only describes
Reid Spencer1ab929c2004-07-05 08:18:07 +0000514the latest version, 1.3):</p>
Chris Lattner2b905652004-05-24 05:35:17 +0000515<ul>
516<li>#0: LLVM 1.0 &amp; 1.1</li>
517<li>#1: LLVM 1.2</li>
518<li>#2: LLVM 1.3</li>
519</ul>
Chris Lattner2b905652004-05-24 05:35:17 +0000520<p>Note that we plan to eventually expand the target description capabilities
Reid Spencer1ab929c2004-07-05 08:18:07 +0000521of bytecode files to <a href="http://llvm.cs.uiuc.edu/PR263">target triples</a>.
522</p>
Reid Spencer50026612004-05-22 02:28:36 +0000523</div>
Chris Lattner2b905652004-05-24 05:35:17 +0000524
Reid Spencer50026612004-05-22 02:28:36 +0000525<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000526<div class="doc_subsection"><a name="globaltypes">Global Type Pool</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000527<div class="doc_text">
Chris Lattner2b905652004-05-24 05:35:17 +0000528<p>The global type pool consists of type definitions. Their order of appearance
Reid Spencerb39021b2004-05-23 17:05:09 +0000529in the file determines their slot number (0 based). Slot numbers are used to
530replace pointers in the intermediate representation. Each slot number uniquely
531identifies one entry in a type plane (a collection of values of the same type).
532Since all values have types and are associated with the order in which the type
533pool is written, the global type pool <em>must</em> be written as the first
534block of a module. If it is not, attempts to read the file will fail because
535both forward and backward type resolution will not be possible.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000536<p>The type pool is simply a list of type definitions, as shown in the table
Reid Spencerb39021b2004-05-23 17:05:09 +0000537below.</p>
538<table class="doc_table_nw" >
539 <tr>
Reid Spencerb39021b2004-05-23 17:05:09 +0000540 <th><b>Type</b></th>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000541 <th class="td_left"><b>Field Description</b></th>
Reid Spencerb39021b2004-05-23 17:05:09 +0000542 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000543 <td><a href="#unsigned">unsigned</a></td>
544 <td class="td_left">Type Pool Identifier (0x13)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000545 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000546 <td><a href="#unsigned">unsigned</a></td>
547 <td class="td_left">Size in bytes of the symbol table block.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000548 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000549 <td><a href="#uint32_vbr">uint32_vbr</a></td>
550 <td class="td_left">Number of entries in type plane</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000551 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000552 <td><a href="#type">type</a></td>
553 <td class="td_left">Each of the type definitions (see below)<sup>1</sup></td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000554 </tr><tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000555 <td class="td_left" colspan="2">
556 <sup>1</sup>Repeated field.<br/>
557 </td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000558 </tr>
559</table>
Reid Spencer50026612004-05-22 02:28:36 +0000560</div>
561<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000562<div class="doc_subsubsection"><a name="type">Type Definitions</a></div>
563<div class="doc_text">
564<p>Types in the type pool are defined using a different format for each
565basic type of type as given in the following sections.</p>
566<h3>Primitive Types</h3>
567<p>The primitive types encompass the basic integer and floating point types</p>
568<table>
569 <tr>
570 <th><b>Type</b></th>
571 <th class="td_left"><b>Description</b></th>
572 </tr><tr>
573 <td><a href="#uint32_vbr">uint32_vbr</td>
574 <td class="td_left">Type ID For The Primitive (1-11)<sup>1</sup></td>
575 </tr><tr>
576 <td class="td_left" colspan="2">
577 <sup>1</sup>See the definition of Type::TypeID in Type.h for the numeric
578 equivalents of the primitive type ids.<br/>
579 </td>
580 </tr>
581</table>
582<h3>Function Types</h3>
583<table>
584 <tr>
585 <th><b>Type</b></th>
586 <th class="td_left"><b>Description</b></th>
587 </tr><tr>
588 <td><a href="#uint32_vbr">uint32_vbr</td>
589 <td class="td_left">Type ID for function types (13)</td>
590 </tr><tr>
591 <td><a href="#uint32_vbr">uint32_vbr</td>
592 <td class="td_left">Slot number of function's return type.</td>
593 </tr><tr>
594 <td><a href="#uint32_vbr">uint32_vbr</td>
595 <td class="td_left">The number of arguments in the function.</td>
596 </tr><tr>
597 <td><a href="#uint32_vbr">uint32_vbr</td>
598 <td class="td_left">Slot number of each argument's type.<sup>1</sup></td>
599 </tr><tr>
600 <td><a href="#uint32_vbr">uint32_vbr</td>
601 <td class="td_left">Value 0 if this is a varargs function.<sup>2</sup></td>
602 </tr><tr>
603 <td class="td_left" colspan="2">
604 <sup>1</sup>Repeated field.<br/>
605 <sup>2</sup>Optional field.
606 </td>
607 </tr>
608</table>
609<h3>Structure Types</h3>
610<table>
611 <tr>
612 <th><b>Type</b></th>
613 <th class="td_left"><b>Description</b></th>
614 </tr><tr>
615 <td><a href="#uint32_vbr">uint32_vbr</td>
616 <td class="td_left">Type ID for structure types (14)</td>
617 </tr><tr>
618 <td><a href="#uint32_vbr">uint32_vbr</td>
619 <td class="td_left">Slot number of each of the element's fields.<sup>1</sup></td>
620 </tr><tr>
621 <td><a href="#uint32_vbr">uint32_vbr</td>
622 <td class="td_left">Null Terminator (VoidTy type id)</td>
623 </tr><tr>
624 <td class="td_left" colspan="2">
625 <sup>1</sup>Repeated field.<br/>
626 </td>
627 </tr>
628</table>
629<h3>Array Types</h3>
630<table>
631 <tr>
632 <th><b>Type</b></th>
633 <th class="td_left"><b>Description</b></th>
634 </tr><tr>
635 <td><a href="#uint32_vbr">uint32_vbr</td>
636 <td class="td_left">Type ID for Array Types (15)</td>
637 </tr><tr>
638 <td><a href="#uint32_vbr">uint32_vbr</td>
639 <td class="td_left">Slot number of array's element type.</td>
640 </tr><tr>
641 <td><a href="#uint32_vbr">uint32_vbr</td>
642 <td class="td_left">The number of elements in the array.</td>
643 </tr>
644</table>
645<h3>Pointer Types</h3>
646<table>
647 <tr>
648 <th><b>Type</b></th>
649 <th class="td_left"><b>Description</b></th>
650 </tr><tr>
651 <td><a href="#uint32_vbr">uint32_vbr</td>
652 <td class="td_left">Type ID For Pointer Types (16)</td>
653 </tr><tr>
654 <td><a href="#uint32_vbr">uint32_vbr</td>
655 <td class="td_left">Slot number of pointer's element type.</td>
656 </tr>
657</table>
658<h3>Opaque Types</h3>
659<table>
660 <tr>
661 <th><b>Type</b></th>
662 <th class="td_left"><b>Description</b></th>
663 </tr><tr>
664 <td><a href="#uint32_vbr">uint32_vbr</td>
665 <td class="td_left">Type ID For Opaque Types (17)</td>
666 </tr>
667</table>
668</div>
669<!-- _______________________________________________________________________ -->
670<div class="doc_subsection"><a name="globalinfo">Module Global Info</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000671<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000672 <p>To be determined.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000673</div>
674<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000675<div class="doc_subsection"><a name="constantpool">Constant Pool</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000676<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000677 <p>To be determined.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000678</div>
679<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000680<div class="doc_subsection"><a name="functiondefs">Function Definition</a> </div>
681<div class="doc_text">
682 <p>To be determined.</p>
683</div>
684<!-- _______________________________________________________________________ -->
685<div class="doc_subsection"><a name="compactiontable">Compaction Table</a> </div>
686<div class="doc_text">
687 <p>To be determined.</p>
688</div>
689<!-- _______________________________________________________________________ -->
690<div class="doc_subsection"><a name="instructionlist">Instruction List</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000691<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000692 <p>To be determined.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000693</div>
694<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +0000695<div class="doc_subsection"><a name="symtab">Symbol Table</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000696<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +0000697<p>A symbol table can be put out in conjunction with a module or a function.
698A symbol table is a list of type planes. Each type plane starts with the number
699of entries in the plane and the type plane's slot number (so the type can be
700looked up in the global type pool). For each entry in a type plane, the slot
701number of the value and the name associated with that value are written. The
702format is given in the table below. </p>
703<table class="doc_table_nw" >
704 <tr>
705 <th><b>Byte(s)</b></th>
706 <th><b>Bit(s)</b></th>
707 <th><b>Align?</b></th>
708 <th><b>Type</b></th>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000709 <th class="td_left"><b>Field Description</b></th>
Reid Spencerb39021b2004-05-23 17:05:09 +0000710 </tr><tr>
711 <td>00-03</td><td>-</td><td>No</td><td>unsigned</td>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000712 <td class="td_left">Symbol Table Identifier (0x13)</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000713 </tr><tr>
714 <td>04-07</td><td>-</td><td>No</td><td>unsigned</td>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000715 <td class="td_left">Size in bytes of the symbol table block.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000716 </tr><tr>
717 <td>08-11<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000718 <td class="td_left">Number of entries in type plane</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000719 </tr><tr>
720 <td>12-15<sup>1</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000721 <td class="td_left">Type plane index for following entries</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000722 </tr><tr>
723 <td>16-19<sup>1,2</sup></td><td>-</td><td>No</td><td>uint32_vbr</td>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000724 <td class="td_left">Slot number of a value.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000725 </tr><tr>
726 <td>variable<sup>1,2</sup></td><td>-</td><td>No</td><td>string</td>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000727 <td class="td_left">Name of the value in the symbol table.</td>
Reid Spencerb39021b2004-05-23 17:05:09 +0000728 </tr>
729 <tr>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000730 <td class="td_left" colspan="5"><sup>1</sup>Maximum length shown,
Reid Spencerb39021b2004-05-23 17:05:09 +0000731 may be smaller<br><sup>2</sup>Repeated field.
732 </tr>
733</table>
Reid Spencer50026612004-05-22 02:28:36 +0000734</div>
Reid Spencer7c76d332004-06-08 07:41:41 +0000735<!-- *********************************************************************** -->
736<div class="doc_section"> <a name="versiondiffs">Version Differences</a> </div>
737<!-- *********************************************************************** -->
738<div class="doc_text">
739<p>This section describes the differences in the Bytecode Format across LLVM
740versions. The versions are listed in reverse order because it assumes the
741current version is as documented in the previous sections. Each section here
Chris Lattner1cc070c2004-07-05 18:05:48 +0000742describes the differences between that version and the one that <i>follows</i>.
Reid Spencer7c76d332004-06-08 07:41:41 +0000743</p>
744</div>
745<!-- _______________________________________________________________________ -->
746<div class="doc_subsection">
747<a name="vers12">Version 1.2 Differences From 1.3</a></div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000748<!-- _______________________________________________________________________ -->
749<div class="doc_subsubsection">Type Derives From Value</div>
Reid Spencer7c76d332004-06-08 07:41:41 +0000750<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +0000751 <p>In version 1.2, the Type class in the LLVM IR derives from the Value class.
752 This is not the case in version 1.3. Consequently, in version 1.2 the notion
753 of a "Type Type" was used to write out values that were Types. The types
754 always occuped plane 12 (corresponding to the TypeTyID) of any type planed
755 set of values. In 1.3 this representation is not convenient because the
756 TypeTyID (12) is not present and its value is now used for LabelTyID.
757 Consequently, the data structures written that involve types do so by writing
758 all the types first and then each of the value planes according to those
759 types. In version 1.2, the types would have been written intermingled with
760 the values.</p>
761</div>
762
763<!-- _______________________________________________________________________ -->
764<div class="doc_subsubsection">Restricted getelementptr Types</a></div>
765<div class="doc_text">
766 <p>In version 1.2, the getelementptr instruction required a ubyte type index
767 for accessing a structure field and a long type index for accessing an array
768 element. Consequently, it was only possible to access structures of 255 or
769 fewer elements. Starting in version 1.3, this restriction was lifted.
Chris Lattner7c66ab32004-07-05 17:55:28 +0000770 Structures must now be indexed with uint constants. Arrays may now be
771 indexed with int, uint, long, or ulong typed values.
772 The consequence of this was that the bytecode format had to
Reid Spencer1ab929c2004-07-05 08:18:07 +0000773 change in order to accommodate the larger range of structure indices.</p>
Reid Spencer7c76d332004-06-08 07:41:41 +0000774</div>
775
776<!-- _______________________________________________________________________ -->
777<div class="doc_subsection">
778<a name="vers11">Version 1.1 Differences From 1.2 </a></div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000779<!-- _______________________________________________________________________ -->
780<div class="doc_subsubsection">Explicit Primitive Zeros</div>
Reid Spencer7c76d332004-06-08 07:41:41 +0000781<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +0000782 <p>In version 1.1, the zero value for primitives was explicitly encoded into
783 the bytecode format. Since these zero values are constant values in the
784 LLVM IR and never change, there is no reason to explicitly encode them. This
785 explicit encoding was removed in version 1.2.</p>
786</div>
787
788<!-- _______________________________________________________________________ -->
789<div class="doc_subsubsection">Inconsistent Module Global Info</div>
790<div class="doc_text">
791 <p>In version 1.1, the Module Global Info block was not aligned causing the
792 next block to be read in on an unaligned boundary. This problem was corrected
793 in version 1.2.</p>
Reid Spencer7c76d332004-06-08 07:41:41 +0000794</div>
795
796<!-- _______________________________________________________________________ -->
797<div class="doc_subsection">
798<a name="vers11">Version 1.0 Differences From 1.1</a></div>
799<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +0000800<p>None. Version 1.0 and 1.1 bytecode formats are identical.</p>
Reid Spencer7c76d332004-06-08 07:41:41 +0000801</div>
Reid Spencer50026612004-05-22 02:28:36 +0000802
803<!-- *********************************************************************** -->
804<hr>
805<address>
806 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
807 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
808 <a href="http://validator.w3.org/check/referer"><img
809 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
810
811 <a href="mailto:rspencer@x10sys.com">Reid Spencer</a> and
812 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
813 <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
814 Last modified: $Date$
815</address>
816</body>
817</html>
818<!-- vim: sw=2
819-->