blob: 5bb5d537fb6773c7698e8dcad558ce9167e8cea2 [file] [log] [blame]
Reid Spencer9bd2be22004-07-29 00:13:04 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Reid Spencer50026612004-05-22 02:28:36 +00002<html>
3<head>
4 <title>LLVM Bytecode File Format</title>
5 <link rel="stylesheet" href="llvm.css" type="text/css">
Reid Spencer1ab929c2004-07-05 08:18:07 +00006 <style type="text/css">
Reid Spencer2de29992004-08-03 20:21:05 +00007 TR, TD { border: 2px solid gray; padding-left: 4pt; padding-right: 4pt;
8 padding-top: 2pt; padding-bottom: 2pt; }
Reid Spencer1ab929c2004-07-05 08:18:07 +00009 TH { border: 2px solid gray; font-weight: bold; font-size: 105%; }
Reid Spencer2cc36152004-07-05 19:04:27 +000010 TABLE { text-align: center; border: 2px solid black;
Reid Spencer2de29992004-08-03 20:21:05 +000011 border-collapse: collapse; margin-top: 1em; margin-left: 1em;
12 margin-right: 1em; margin-bottom: 1em; }
Reid Spencer2cc36152004-07-05 19:04:27 +000013 .td_left { border: 2px solid gray; text-align: left; }
Reid Spencer50026612004-05-22 02:28:36 +000014 </style>
15</head>
16<body>
Reid Spencer9bd2be22004-07-29 00:13:04 +000017<div class="doc_title"> LLVM Bytecode File Format </div>
Reid Spencer50026612004-05-22 02:28:36 +000018<ol>
19 <li><a href="#abstract">Abstract</a></li>
Reid Spencer1ab929c2004-07-05 08:18:07 +000020 <li><a href="#concepts">Concepts</a>
Reid Spencer50026612004-05-22 02:28:36 +000021 <ol>
22 <li><a href="#blocks">Blocks</a></li>
23 <li><a href="#lists">Lists</a></li>
24 <li><a href="#fields">Fields</a></li>
25 <li><a href="#align">Alignment</a></li>
Reid Spencer82c46712004-07-07 13:34:26 +000026 <li><a href="#vbr">Variable Bit-Rate Encoding</a></li>
Reid Spencer1ab929c2004-07-05 08:18:07 +000027 <li><a href="#encoding">Encoding Primitives</a></li>
28 <li><a href="#slots">Slots</a></li>
29 </ol>
30 </li>
Reid Spencer51f31e02004-07-05 22:28:02 +000031 <li><a href="#general">General Structure</a> </li>
32 <li><a href="#blockdefs">Block Definitions</a>
Reid Spencer1ab929c2004-07-05 08:18:07 +000033 <ol>
Reid Spencerb39021b2004-05-23 17:05:09 +000034 <li><a href="#signature">Signature Block</a></li>
35 <li><a href="#module">Module Block</a></li>
Reid Spencer1ab929c2004-07-05 08:18:07 +000036 <li><a href="#globaltypes">Global Type Pool</a></li>
37 <li><a href="#globalinfo">Module Info Block</a></li>
38 <li><a href="#constantpool">Global Constant Pool</a></li>
39 <li><a href="#functiondefs">Function Definition</a></li>
40 <li><a href="#compactiontable">Compaction Table</a></li>
41 <li><a href="#instructionlist">Instruction List</a></li>
42 <li><a href="#symtab">Symbol Table</a></li>
Reid Spencer50026612004-05-22 02:28:36 +000043 </ol>
44 </li>
Reid Spencer7c76d332004-06-08 07:41:41 +000045 <li><a href="#versiondiffs">Version Differences</a>
46 <ol>
47 <li><a href="#vers12">Version 1.2 Differences From 1.3</a></li>
48 <li><a href="#vers11">Version 1.1 Differences From 1.2</a></li>
49 <li><a href="#vers10">Version 1.0 Differences From 1.1</a></li>
50 </ol>
51 </li>
Reid Spencer50026612004-05-22 02:28:36 +000052</ol>
Chris Lattner8dabb502004-05-25 17:44:58 +000053<div class="doc_author">
54<p>Written by <a href="mailto:rspencer@x10sys.com">Reid Spencer</a>
55</p>
Reid Spencer50026612004-05-22 02:28:36 +000056</div>
57<!-- *********************************************************************** -->
58<div class="doc_section"> <a name="abstract">Abstract </a></div>
59<!-- *********************************************************************** -->
60<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +000061<p>This document describes the LLVM bytecode file format. It specifies
62the binary encoding rules of the bytecode file format so that
63equivalent systems can encode bytecode files correctly. The LLVM
64bytecode representation is used to store the intermediate
65representation on disk in compacted form.</p>
66<p>The LLVM bytecode format may change in the future, but LLVM will
67always be backwards compatible with older formats. This document will
68only describe the most current version of the bytecode format. See <a
69 href="#versiondiffs">Version Differences</a> for the details on how
70the current version is different from previous versions.</p>
Reid Spencer50026612004-05-22 02:28:36 +000071</div>
72<!-- *********************************************************************** -->
Reid Spencer1ab929c2004-07-05 08:18:07 +000073<div class="doc_section"> <a name="concepts">Concepts</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +000074<!-- *********************************************************************** -->
75<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +000076<p>This section describes the general concepts of the bytecode file
77format without getting into specific layout details. It is recommended
78that you read this section thoroughly before interpreting the detailed
79descriptions.</p>
Reid Spencer50026612004-05-22 02:28:36 +000080</div>
81<!-- _______________________________________________________________________ -->
82<div class="doc_subsection"><a name="blocks">Blocks</a> </div>
83<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +000084<p>LLVM bytecode files consist simply of a sequence of blocks of bytes
85using a binary encoding Each block begins with an header of two
86unsigned integers. The first value identifies the type of block and the
87second value provides the size of the block in bytes. The block
88identifier is used because it is possible for entire blocks to be
89omitted from the file if they are empty. The block identifier helps the
90reader determine which kind of block is next in the file. Note that
91blocks can be nested within other blocks.</p>
92<p> All blocks are variable length, and the block header specifies the
93size of the block. All blocks begin on a byte index that is aligned to
94an even 32-bit boundary. That is, the first block is 32-bit aligned
95because it starts at offset 0. Each block is padded with zero fill
96bytes to ensure that the next block also starts on a 32-bit boundary.</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">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000101<p>LLVM Bytecode blocks often contain lists of things of a similar
102type. For example, a function contains a list of instructions and a
103function type contains a list of argument types. There are two basic
104types of lists: length lists (<a href="#llist">llist</a>), and null
105terminated lists (<a href="#zlist">zlist</a>), as described below in
106the <a href="#encoding">Encoding Primitives</a>.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000107</div>
108<!-- _______________________________________________________________________ -->
109<div class="doc_subsection"><a name="fields">Fields</a> </div>
110<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000111<p>Fields are units of information that LLVM knows how to write atomically. Most
112fields have a uniform length or some kind of length indication built into their
113encoding. For example, a constant string (array of bytes) is written simply as
114the length followed by the characters. Although this is similar to a list,
115constant strings are treated atomically and are thus fields.</p>
Reid Spencer50026612004-05-22 02:28:36 +0000116<p>Fields use a condensed bit format specific to the type of information
117they must contain. As few bits as possible are written for each field. The
Reid Spencer9bd2be22004-07-29 00:13:04 +0000118sections that follow will provide the details on how these fields are
Reid Spencer50026612004-05-22 02:28:36 +0000119written and how the bits are to be interpreted.</p>
120</div>
121<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000122<div class="doc_subsection"><a name="align">Alignment</a> </div>
Reid Spencer7aa940d2004-05-25 15:47:57 +0000123<div class="doc_text">
Reid Spencer267660f2004-08-03 20:33:56 +0000124 <p>To support cross-platform differences, the bytecode file is aligned on
125 certain boundaries. This means that a small amount of padding (at most 3
126 bytes) will be added to ensure that the next entry is aligned to a 32-bit
127 boundary.</p>
Chris Lattner8dabb502004-05-25 17:44:58 +0000128</div>
Reid Spencer7aa940d2004-05-25 15:47:57 +0000129<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +0000130<div class="doc_subsection"><a name="vbr">Variable Bit-Rate Encoding</a>
Reid Spencer82c46712004-07-07 13:34:26 +0000131</div>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000132<div class="doc_text">
133<p>Most of the values written to LLVM bytecode files are small integers. To
134minimize the number of bytes written for these quantities, an encoding scheme
135similar to UTF-8 is used to write integer data. The scheme is known as
136variable bit rate (vbr) encoding. In this encoding, the high bit of
137each byte is used to indicate if more bytes follow. If (byte &amp;
1380x80) is non-zero in any given byte, it means there is another byte
139immediately following that also contributes to the value. For the final
140byte (byte &amp; 0x80) is false (the high bit is not set). In each byte
141only the low seven bits contribute to the value. Consequently 32-bit
142quantities can take from one to <em>five</em> bytes to encode. In
143general, smaller quantities will encode in fewer bytes, as follows:</p>
144<table>
145 <tbody>
146 <tr>
147 <th>Byte #</th>
148 <th>Significant Bits</th>
149 <th>Maximum Value</th>
150 </tr>
151 <tr>
152 <td>1</td>
153 <td>0-6</td>
154 <td>127</td>
155 </tr>
156 <tr>
157 <td>2</td>
158 <td>7-13</td>
159 <td>16,383</td>
160 </tr>
161 <tr>
162 <td>3</td>
163 <td>14-20</td>
164 <td>2,097,151</td>
165 </tr>
166 <tr>
167 <td>4</td>
168 <td>21-27</td>
169 <td>268,435,455</td>
170 </tr>
171 <tr>
172 <td>5</td>
173 <td>28-34</td>
174 <td>34,359,738,367</td>
175 </tr>
176 <tr>
177 <td>6</td>
178 <td>35-41</td>
179 <td>4,398,046,511,103</td>
180 </tr>
181 <tr>
182 <td>7</td>
183 <td>42-48</td>
184 <td>562,949,953,421,311</td>
185 </tr>
186 <tr>
187 <td>8</td>
188 <td>49-55</td>
189 <td>72,057,594,037,927,935</td>
190 </tr>
191 <tr>
192 <td>9</td>
193 <td>56-62</td>
194 <td>9,223,372,036,854,775,807</td>
195 </tr>
196 <tr>
197 <td>10</td>
198 <td>63-69</td>
199 <td>1,180,591,620,717,411,303,423</td>
200 </tr>
201 </tbody>
202</table>
203<p>Note that in practice, the tenth byte could only encode bit 63 since
204the maximum quantity to use this encoding is a 64-bit integer.</p>
205<p><em>Signed</em> VBR values are encoded with the standard vbr
206encoding, but with the sign bit as the low order bit instead of the
207high order bit. This allows small negative quantities to be encoded
208efficiently. For example, -3
209is encoded as "((3 &lt;&lt; 1) | 1)" and 3 is encoded as "(3 &lt;&lt;
2101) | 0)", emitted with the standard vbr encoding above.</p>
211</div>
Reid Spencer82c46712004-07-07 13:34:26 +0000212<!-- _______________________________________________________________________ -->
213<div class="doc_subsection"><a name="encoding">Encoding Primitives</a> </div>
214<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000215<p>Each field in the bytecode format is encoded into the file using a
216small set of primitive formats. The table below defines the encoding
217rules for the various primitives used and gives them each a type name.
218The type names used in the descriptions of blocks and fields in the <a
219 href="#details">Detailed Layout</a>next section. Any type name with
220the suffix <em>_vbr</em> indicates a quantity that is encoded using
221variable bit rate encoding as described above.</p>
222<table class="doc_table">
223 <tbody>
224 <tr>
225 <th><b>Type</b></th>
226 <th class="td_left"><b>Rule</b></th>
227 </tr>
228 <tr>
229 <td><a name="unsigned"><b>unsigned</b></a></td>
230 <td class="td_left">A 32-bit unsigned integer that always occupies four
Reid Spencerb39021b2004-05-23 17:05:09 +0000231 consecutive bytes. The unsigned integer is encoded using LSB first
232 ordering. That is bits 2<sup>0</sup> through 2<sup>7</sup> are in the
233 byte with the lowest file offset (little endian).</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000234 </tr>
235 <tr>
Reid Spencer301fe482004-08-03 20:57:56 +0000236 <td style="vertical-align: top;"><a name="uint24_vbr">
237 <b>uint24_vbr</b></a></td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000238 <td style="vertical-align: top; text-align: left;">A 24-bit unsigned
239 integer that occupies from one to four bytes using variable bit rate
240 encoding.</td>
241 </tr>
242 <tr>
243 <td><a name="uint32_vbr"><b>uint32_vbr</b></a></td>
Reid Spencerf08561f2004-08-03 19:20:18 +0000244 <td class="td_left">A 32-bit unsigned integer that occupies from one to
245 five bytes using variable bit rate encoding.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000246 </tr>
247 <tr>
248 <td><a name="uint64_vbr"><b>uint64_vbr</b></a></td>
Reid Spencerf08561f2004-08-03 19:20:18 +0000249 <td class="td_left">A 64-bit unsigned integer that occupies from one to ten
250 bytes using variable bit rate encoding.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000251 </tr>
252 <tr>
253 <td><a name="int64_vbr"><b>int64_vbr</b></a></td>
Reid Spencerf08561f2004-08-03 19:20:18 +0000254 <td class="td_left">A 64-bit signed integer that occupies from one to ten
255 bytes using the signed variable bit rate encoding.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000256 </tr>
257 <tr>
258 <td><a name="char"><b>char</b></a></td>
Reid Spencerf08561f2004-08-03 19:20:18 +0000259 <td class="td_left">A single unsigned character encoded into one byte</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000260 </tr>
261 <tr>
262 <td><a name="bit"><b>bit(n-m)</b></a></td>
Reid Spencerf08561f2004-08-03 19:20:18 +0000263 <td class="td_left">A set of bit within some larger integer field. The values
264 of <code>n</code> and <code>m</code> specify the inclusive range of bits
265 that define the subfield. The value for <code>m</code> may be omitted if
266 its the same as <code>n</code>.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000267 </tr>
268 <tr>
269 <td style="vertical-align: top;"><b><a name="float"><b>float</b></a></b></td>
Reid Spencerf08561f2004-08-03 19:20:18 +0000270 <td style="vertical-align: top; text-align: left;">A floating point value encoded
271 as a 32-bit IEEE value written in little-endian form.<br>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000272 </td>
273 </tr>
274 <tr>
275 <td style="vertical-align: top;"><b><b><a name="double"><b>double</b></a></b></b></td>
Reid Spencerf08561f2004-08-03 19:20:18 +0000276 <td style="vertical-align: top; text-align: left;">A floating point value encoded
277 as a64-bit IEEE value written in little-endian form</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000278 </tr>
279 <tr>
280 <td><a name="string"><b>string</b></a></td>
281 <td class="td_left">A uint32_vbr indicating the type of the
282constant string which also includes its length, immediately followed by
283the characters of the string. There is no terminating null byte in the
284string.</td>
285 </tr>
286 <tr>
287 <td><a name="data"><b>data</b></a></td>
288 <td class="td_left">An arbitrarily long segment of data to which
289no interpretation is implied. This is used for constant initializers.<br>
290 </td>
291 </tr>
292 <tr>
293 <td><a name="llist"><b>llist(x)</b></a></td>
294 <td class="td_left">A length list of x. This means the list is
295encoded as an <a href="#uint32_vbr">uint32_vbr</a> providing the
296length of the list, followed by a sequence of that many "x" items. This
297implies that the reader should iterate the number of times provided by
298the length.</td>
299 </tr>
300 <tr>
301 <td><a name="zlist"><b>zlist(x)</b></a></td>
302 <td class="td_left">A zero-terminated list of x. This means the
303list is encoded as a sequence of an indeterminate number of "x" items,
304followed by an <a href="#uint32_vbr">uint32_vbr</a> terminating value.
305This implies that none of the "x" items can have a zero value (or else
306the list terminates).</td>
307 </tr>
308 <tr>
309 <td><a name="block"><b>block</b></a></td>
310 <td class="td_left">A block of data that is logically related. A
311block is an unsigned 32-bit integer that encodes the type of the block
312in the low 5 bits and the size of the block in the high 27 bits. The
313length does not include the block header or any alignment bytes at the
314end of the block. Blocks may compose other blocks. </td>
315 </tr>
316 </tbody>
Reid Spencerb39021b2004-05-23 17:05:09 +0000317</table>
318</div>
319<!-- _______________________________________________________________________ -->
Reid Spencer82c46712004-07-07 13:34:26 +0000320<div class="doc_subsection"><a name="notation">Field Notation</a> </div>
321<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000322<p>In the detailed block and field descriptions that follow, a regex
323like notation is used to describe optional and repeated fields. A very
324limited subset of regex is used to describe these, as given in the
325following table: </p>
326<table class="doc_table">
327 <tbody>
Reid Spencer82c46712004-07-07 13:34:26 +0000328 <tr>
329 <th><b>Character</b></th>
330 <th class="td_left"><b>Meaning</b></th>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000331 </tr>
332 <tr>
Reid Spencer82c46712004-07-07 13:34:26 +0000333 <td><b><code>?</code></b></td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000334 <td class="td_left">The question mark indicates 0 or 1
335occurrences of the thing preceding it.</td>
336 </tr>
337 <tr>
Reid Spencer82c46712004-07-07 13:34:26 +0000338 <td><b><code>*</code></b></td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000339 <td class="td_left">The asterisk indicates 0 or more occurrences
340of the thing preceding it.</td>
341 </tr>
342 <tr>
Reid Spencer82c46712004-07-07 13:34:26 +0000343 <td><b><code>+</code></b></td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000344 <td class="td_left">The plus sign indicates 1 or more occurrences
345of the thing preceding it.</td>
346 </tr>
347 <tr>
Reid Spencer82c46712004-07-07 13:34:26 +0000348 <td><b><code>()</code></b></td>
349 <td class="td_left">Parentheses are used for grouping.</td>
Reid Spencer82c46712004-07-07 13:34:26 +0000350 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000351 <tr>
352 <td><b><code>,</code></b></td>
353 <td class="td_left">The comma separates sequential fields.</td>
354 </tr>
355 </tbody>
356</table>
357<p>So, for example, consider the following specifications:</p>
358<div class="doc_code">
359<ol>
360 <li><code>string?</code></li>
361 <li><code>(uint32_vbr,uin32_vbr)+</code></li>
362 <li><code>(unsigned?,uint32_vbr)*</code></li>
363 <li><code>(llist(unsigned))?</code></li>
364</ol>
Reid Spencer82c46712004-07-07 13:34:26 +0000365</div>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000366<p>with the following interpretations:</p>
367<ol>
368 <li>An optional string. Matches either nothing or a single string</li>
369 <li>One or more pairs of uint32_vbr.</li>
370 <li>Zero or more occurrences of either an unsigned followed by a
371uint32_vbr or just a uint32_vbr.</li>
372 <li>An optional length list of unsigned values.</li>
373</ol>
374</div>
Reid Spencer82c46712004-07-07 13:34:26 +0000375<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000376<div class="doc_subsection"><a name="slots">Slots</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000377<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000378<p>The bytecode format uses the notion of a "slot" to reference Types
379and Values. Since the bytecode file is a <em>direct</em> representation of
380LLVM's intermediate representation, there is a need to represent pointers in
381the file. Slots are used for this purpose. For example, if one has the following
382assembly:
Reid Spencer1ab929c2004-07-05 08:18:07 +0000383</p>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000384<div class="doc_code"><code> %MyType = type { int, sbyte }<br>
385%MyVar = external global %MyType
Reid Spencer82c46712004-07-07 13:34:26 +0000386</code></div>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000387<p>there are two definitions. The definition of <tt>%MyVar</tt> uses <tt>%MyType</tt>.
388In the C++ IR this linkage between <tt>%MyVar</tt> and <tt>%MyType</tt>
389is explicit through the use of C++ pointers. In bytecode, however, there's no
390ability to store memory addresses. Instead, we compute and write out
391slot numbers for every Type and Value written to the file.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000392<p>A slot number is simply an unsigned 32-bit integer encoded in the variable
393bit rate scheme (see <a href="#encoding">encoding</a>). This ensures that
394low slot numbers are encoded in one byte. Through various bits of magic LLVM
395attempts to always keep the slot numbers low. The first attempt is to associate
Reid Spencer9bd2be22004-07-29 00:13:04 +0000396slot numbers with their "type plane". That is, Values of the same type
397are written to the bytecode file in a list (sequentially). Their order in
398that list determines their slot number. This means that slot #1 doesn't mean
399anything unless you also specify for which type you want slot #1. Types are
400handled specially and are always written to the file first (in the <a
401 href="#globaltypes">Global Type Pool</a>) and in such a way that both forward
402and backward references of the types can often be resolved with a single pass
403through the type pool. </p>
404<p>Slot numbers are also kept small by rearranging their order. Because
405of the structure of LLVM, certain values are much more likely to be used
406frequently in the body of a function. For this reason, a compaction table is
407provided in the body of a function if its use would make the function body
408smaller. Suppose you have a function body that uses just the types "int*" and
409"{double}" but uses them thousands of time. Its worthwhile to ensure that the
410slot number for these types are low so they can be encoded in a single byte
411(via vbr). This is exactly what the compaction table does.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000412</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000413<!-- *********************************************************************** -->
Reid Spencer51f31e02004-07-05 22:28:02 +0000414<div class="doc_section"> <a name="general">General Structure</a> </div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000415<!-- *********************************************************************** -->
416<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000417<p>This section provides the general structure of the LLVM bytecode
418file format. The bytecode file format requires blocks to be in a
419certain order and nested in a particular way so that an LLVM module can
420be constructed efficiently from the contents of the file. This ordering
421defines a general structure for bytecode files as shown below. The
422table below shows the order in which all block types may appear. Please
423note that some of the blocks are optional and some may be repeated. The
424structure is fairly loose because optional blocks, if empty, are
425completely omitted from the file.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000426<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000427 <tbody>
428 <tr>
429 <th>ID</th>
430 <th>Parent</th>
431 <th>Optional?</th>
432 <th>Repeated?</th>
433 <th>Level</th>
434 <th>Block Type</th>
435 <th>Description</th>
436 </tr>
437 <tr>
438 <td>N/A</td>
439 <td>File</td>
440 <td>No</td>
441 <td>No</td>
442 <td>0</td>
443 <td class="td_left"><a href="#signature">Signature</a></td>
444 <td class="td_left">This contains the file signature (magic
445number) that identifies the file as LLVM bytecode.</td>
446 </tr>
447 <tr>
448 <td>0x01</td>
449 <td>File</td>
450 <td>No</td>
451 <td>No</td>
452 <td>0</td>
453 <td class="td_left"><a href="#module">Module</a></td>
454 <td class="td_left">This is the top level block in a bytecode
455file. It contains all the other blocks. </td>
456 </tr>
457 <tr>
458 <td>0x06</td>
459 <td>Module</td>
460 <td>No</td>
461 <td>No</td>
462 <td>1</td>
463 <td class="td_left">&nbsp;&nbsp;&nbsp;<a href="#globaltypes">Global&nbsp;Type&nbsp;Pool</a></td>
464 <td class="td_left">This block contains all the global (module)
465level types.</td>
466 </tr>
467 <tr>
468 <td>0x05</td>
469 <td>Module</td>
470 <td>No</td>
471 <td>No</td>
472 <td>1</td>
473 <td class="td_left">&nbsp;&nbsp;&nbsp;<a href="#globalinfo">Module&nbsp;Globals&nbsp;Info</a></td>
474 <td class="td_left">This block contains the type, constness, and
475linkage for each of the global variables in the module. It also
476contains the type of the functions and the constant initializers.</td>
477 </tr>
478 <tr>
479 <td>0x03</td>
480 <td>Module</td>
481 <td>Yes</td>
482 <td>No</td>
483 <td>1</td>
484 <td class="td_left">&nbsp;&nbsp;&nbsp;<a href="#constantpool">Module&nbsp;Constant&nbsp;Pool</a></td>
485 <td class="td_left">This block contains all the global constants
486except function arguments, global values and constant strings.</td>
487 </tr>
488 <tr>
489 <td>0x02</td>
490 <td>Module</td>
491 <td>Yes</td>
492 <td>Yes</td>
493 <td>1</td>
494 <td class="td_left">&nbsp;&nbsp;&nbsp;<a href="#functiondefs">Function&nbsp;Definitions</a>*</td>
495 <td class="td_left">One function block is written for each
496function in the module. The function block contains the instructions,
497compaction table, type constant pool, and symbol table for the function.</td>
498 </tr>
499 <tr>
500 <td>0x03</td>
501 <td>Function</td>
502 <td>Yes</td>
503 <td>No</td>
504 <td>2</td>
505 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
506 href="#constantpool">Function&nbsp;Constant&nbsp;Pool</a></td>
507 <td class="td_left">Any constants (including types) used solely
508within the function are emitted here in the function constant pool. </td>
509 </tr>
510 <tr>
511 <td>0x08</td>
512 <td>Function</td>
513 <td>Yes</td>
514 <td>No</td>
515 <td>2</td>
516 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
517 href="#compactiontable">Compaction&nbsp;Table</a></td>
518 <td class="td_left">This table reduces bytecode size by providing
519a funtion-local mapping of type and value slot numbers to their global
520slot numbers</td>
521 </tr>
522 <tr>
523 <td>0x07</td>
524 <td>Function</td>
525 <td>No</td>
526 <td>No</td>
527 <td>2</td>
528 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
529 href="#instructionlist">Instruction&nbsp;List</a></td>
530 <td class="td_left">This block contains all the instructions of
531the function. The basic blocks are inferred by terminating
532instructions. </td>
533 </tr>
534 <tr>
535 <td>0x04</td>
536 <td>Function</td>
537 <td>Yes</td>
538 <td>No</td>
539 <td>2</td>
540 <td class="td_left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
541 href="#symtab">Function&nbsp;Symbol&nbsp;Table</a></td>
542 <td class="td_left">This symbol table provides the names for the
543function specific values used (basic block labels mostly).</td>
544 </tr>
545 <tr>
546 <td>0x04</td>
547 <td>Module</td>
548 <td>Yes</td>
549 <td>No</td>
550 <td>1</td>
551 <td class="td_left">&nbsp;&nbsp;&nbsp;<a href="#symtab">Module&nbsp;Symbol&nbsp;Table</a></td>
552 <td class="td_left">This symbol table provides the names for the
553various entries in the file that are not function specific (global
554vars, and functions mostly).</td>
555 </tr>
556 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000557</table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000558<p>Use the links in the table for details about the contents of each of
559the block types.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000560</div>
Reid Spencer50026612004-05-22 02:28:36 +0000561<!-- *********************************************************************** -->
Reid Spencer51f31e02004-07-05 22:28:02 +0000562<div class="doc_section"> <a name="blockdefs">Block Definitions</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000563<!-- *********************************************************************** -->
564<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000565<p>This section provides the detailed layout of the individual block
566types in the LLVM bytecode file format. </p>
Reid Spencer50026612004-05-22 02:28:36 +0000567</div>
Reid Spencer50026612004-05-22 02:28:36 +0000568<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +0000569<div class="doc_subsection"><a name="signature">Signature Block</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000570<div class="doc_text">
Chris Lattner2b905652004-05-24 05:35:17 +0000571<p>The signature occurs in every LLVM bytecode file and is always first.
Reid Spencerb39021b2004-05-23 17:05:09 +0000572It simply provides a few bytes of data to identify the file as being an LLVM
573bytecode file. This block is always four bytes in length and differs from the
574other blocks because there is no identifier and no block length at the start
575of the block. Essentially, this block is just the "magic number" for the file.
Reid Spencer9bd2be22004-07-29 00:13:04 +0000576</p>
Reid Spencer2cc36152004-07-05 19:04:27 +0000577<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000578 <tbody>
579 <tr>
580 <th><b>Type</b></th>
581 <th class="td_left"><b>Field Description</b></th>
582 </tr>
583 <tr>
584 <td><a href="#char">char</a></td>
585 <td class="td_left">Constant "l" (0x6C)</td>
586 </tr>
587 <tr>
588 <td><a href="#char">char</a></td>
589 <td class="td_left">Constant "l" (0x6C)</td>
590 </tr>
591 <tr>
592 <td><a href="#char">char</a></td>
593 <td class="td_left">Constant "v" (0x76)</td>
594 </tr>
595 <tr>
596 <td><a href="#char">char</a></td>
597 <td class="td_left">Constant "m" (0x6D)</td>
598 </tr>
599 </tbody>
Reid Spencerb39021b2004-05-23 17:05:09 +0000600</table>
601</div>
602<!-- _______________________________________________________________________ -->
603<div class="doc_subsection"><a name="module">Module Block</a> </div>
604<div class="doc_text">
605<p>The module block contains a small pre-amble and all the other blocks in
Reid Spencer1ab929c2004-07-05 08:18:07 +0000606the file. The table below shows the structure of the module block. Note that it
607only provides the module identifier, size of the module block, and the format
608information. Everything else is contained in other blocks, described in other
609sections.</p>
Reid Spencer2cc36152004-07-05 19:04:27 +0000610<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000611 <tbody>
612 <tr>
613 <th><b>Type</b></th>
614 <th class="td_left"><b>Field Description</b></th>
615 </tr>
616 <tr>
617 <td><a href="#block">block</a><br>
618 </td>
619 <td class="td_left">Module Block Identifier (0x01) and Size<br>
620 </td>
621 </tr>
622 <tr>
623 <td><a href="#uint32_vbr">uint32_vbr</a></td>
624 <td class="td_left"><a href="#format">Format Information</a></td>
625 </tr>
626 <tr>
627 <td><a href="#block">block</a></td>
628 <td class="td_left"><a href="#globaltypes">Global Type Pool</a></td>
629 </tr>
630 <tr>
631 <td><a href="#block">block</a></td>
632 <td class="td_left"><a href="#globalinfo">Module Globals Info</a></td>
633 </tr>
634 <tr>
635 <td><a href="#block">block</a></td>
636 <td class="td_left"><a href="#constantpool">Module Constant Pool</a></td>
637 </tr>
638 <tr>
639 <td><a href="#block">block</a>*</td>
640 <td class="td_left"><a href="#functiondefs">Function Definitions</a></td>
641 </tr>
642 <tr>
643 <td><a href="#block">block</a></td>
644 <td class="td_left"><a href="#symboltable">Module Symbol Table</a></td>
645 </tr>
646 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000647</table>
648</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000649<!-- _______________________________________________________________________ -->
650<div class="doc_subsubsection"><a name="format">Format Information</a></div>
651<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000652<p>The format information field is encoded into a <a href="#uint32_vbr">uint32_vbr</a>
653as shown in the following table.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000654<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000655 <tbody>
656 <tr>
657 <th><b>Type</b></th>
658 <th class="td_left"><b>Description</b></th>
659 </tr>
660 <tr>
661 <td><a href="#bit">bit(0)</a></td>
662 <td class="td_left">Target is big endian?</td>
663 </tr>
664 <tr>
665 <td><a href="#bit">bit(1)</a></td>
666 <td class="td_left">On target pointers are 64-bit?</td>
667 </tr>
668 <tr>
669 <td><a href="#bit">bit(2)</a></td>
670 <td class="td_left">Target has no endianess?</td>
671 </tr>
672 <tr>
673 <td><a href="#bit">bit(3)</a></td>
674 <td class="td_left">Target has no pointer size?</td>
675 </tr>
676 <tr>
677 <td><a href="#bit">bit(4-31)</a></td>
678 <td class="td_left">Bytecode format version</td>
679 </tr>
680 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000681</table>
682<p>
683Of particular note, the bytecode format number is simply a 28-bit
684monotonically increase integer that identifies the version of the bytecode
Reid Spencer9bd2be22004-07-29 00:13:04 +0000685format (which is not directly related to the LLVM release number). The
686bytecode versions defined so far are (note that this document only
687describes the latest version, 1.3):</p>
Chris Lattner2b905652004-05-24 05:35:17 +0000688<ul>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000689 <li>#0: LLVM 1.0 &amp; 1.1</li>
690 <li>#1: LLVM 1.2</li>
691 <li>#2: LLVM 1.2.5 (not released)</li>
692 <li>#3: LLVM 1.3<br>
693 </li>
Chris Lattner2b905652004-05-24 05:35:17 +0000694</ul>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000695<p>Note that we plan to eventually expand the target description
696capabilities
697of bytecode files to <a href="http://llvm.cs.uiuc.edu/PR263">target
698triples</a>.
Reid Spencer1ab929c2004-07-05 08:18:07 +0000699</p>
Reid Spencer50026612004-05-22 02:28:36 +0000700</div>
701<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000702<div class="doc_subsection"><a name="globaltypes">Global Type Pool</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000703<div class="doc_text">
Chris Lattner2b905652004-05-24 05:35:17 +0000704<p>The global type pool consists of type definitions. Their order of appearance
Reid Spencer9bd2be22004-07-29 00:13:04 +0000705in the file determines their slot number (0 based). Slot numbers are
706used to replace pointers in the intermediate representation. Each slot number
707uniquely identifies one entry in a type plane (a collection of values of the
708same type). Since all values have types and are associated with the order in
709which the type pool is written, the global type pool <em>must</em> be written
710as the first block of a module. If it is not, attempts to read the file will
711fail because both forward and backward type resolution will not be possible.</p>
712<p>The type pool is simply a list of type definitions, as shown in the
713table below.</p>
Reid Spencer2cc36152004-07-05 19:04:27 +0000714<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000715 <tbody>
716 <tr>
717 <th><b>Type</b></th>
718 <th class="td_left"><b>Field Description</b></th>
719 </tr>
720 <tr>
721 <td><a href="#unsigned">block</a></td>
722 <td class="td_left">Type Pool Identifier (0x06) + Size<br>
723 </td>
724 </tr>
725 <tr>
726 <td><a href="#llist">llist</a>(<a href="#type">type</a>)</td>
727 <td class="td_left">A length list of type definitions.</td>
728 </tr>
729 </tbody>
Reid Spencerb39021b2004-05-23 17:05:09 +0000730</table>
Reid Spencer50026612004-05-22 02:28:36 +0000731</div>
732<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000733<div class="doc_subsubsection"><a name="type">Type Definitions</a></div>
734<div class="doc_text">
Reid Spencer82c46712004-07-07 13:34:26 +0000735<p>Types in the type pool are defined using a different format for each kind
736of type, as given in the following sections.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000737<h3>Primitive Types</h3>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000738<p>The primitive types encompass the basic integer and floating point
739types</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000740<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000741 <tbody>
742 <tr>
743 <th><b>Type</b></th>
744 <th class="td_left"><b>Description</b></th>
745 </tr>
746 <tr>
747 <td><a href="#uint24_vbr">uint24_vbr</a></td>
748 <td class="td_left">Type ID for the primitive types (values 1 to
74911) <sup>1</sup></td>
750 </tr>
751 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000752</table>
Reid Spencer2cc36152004-07-05 19:04:27 +0000753Notes:
754<ol>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000755 <li>The values for the Type IDs for the primitive types are provided
756by the definition of the <code>llvm::Type::TypeID</code> enumeration
757in <code>include/llvm/Type.h</code>. The enumeration gives the
758following mapping:
759 <ol>
760 <li>bool</li>
761 <li>ubyte</li>
762 <li>sbyte</li>
763 <li>ushort</li>
764 <li>short</li>
765 <li>uint</li>
766 <li>int</li>
767 <li>ulong</li>
768 <li>long</li>
769 <li>float</li>
770 <li>double</li>
771 </ol>
772 </li>
Reid Spencer2cc36152004-07-05 19:04:27 +0000773</ol>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000774<h3>Function Types</h3>
775<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000776 <tbody>
777 <tr>
778 <th><b>Type</b></th>
779 <th class="td_left"><b>Description</b></th>
780 </tr>
781 <tr>
782 <td><a href="#uint24_vbr">uint24_vbr</a></td>
783 <td class="td_left">Type ID for function types (13)</td>
784 </tr>
785 <tr>
786 <td><a href="#uint24_vbr">uint24_vbr</a></td>
787 <td class="td_left">Slot number of function's return type.</td>
788 </tr>
789 <tr>
790 <td><a href="#llist">llist</a>(<a href="#uint24_vbr">uint24_vbr</a>)</td>
Reid Spencer82c46712004-07-07 13:34:26 +0000791 <td class="td_left">Slot number of each argument's type.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000792 </tr>
793 <tr>
794 <td><a href="#uint32_vbr">uint32_vbr</a>?</td>
795 <td class="td_left">Value 0 if this is a varargs function,
796missing otherwise.</td>
797 </tr>
798 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000799</table>
800<h3>Structure Types</h3>
801<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000802 <tbody>
803 <tr>
804 <th><b>Type</b></th>
805 <th class="td_left"><b>Description</b></th>
806 </tr>
807 <tr>
808 <td><a href="#uint24_vbr">uint24_vbr</a></td>
809 <td class="td_left">Type ID for structure types (14)</td>
810 </tr>
811 <tr>
812 <td><a href="#zlist">zlist</a>(<a href="#uint24_vbr">uint24_vbr</a>)</td>
813 <td class="td_left">Slot number of each of the element's fields.</td>
814 </tr>
815 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000816</table>
817<h3>Array Types</h3>
818<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000819 <tbody>
820 <tr>
821 <th><b>Type</b></th>
822 <th class="td_left"><b>Description</b></th>
823 </tr>
824 <tr>
825 <td><a href="#uint24_vbr">uint24_vbr</a></td>
826 <td class="td_left">Type ID for Array Types (15)</td>
827 </tr>
828 <tr>
829 <td><a href="#uint24_vbr">uint24_vbr</a></td>
830 <td class="td_left">Slot number of array's element type.</td>
831 </tr>
832 <tr>
833 <td><a href="#uint32_vbr">uint32_vbr</a></td>
834 <td class="td_left">The number of elements in the array.</td>
835 </tr>
836 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000837</table>
838<h3>Pointer Types</h3>
839<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000840 <tbody>
841 <tr>
842 <th><b>Type</b></th>
843 <th class="td_left"><b>Description</b></th>
844 </tr>
845 <tr>
846 <td><a href="#uint24_vbr">uint24_vbr</a></td>
847 <td class="td_left">Type ID For Pointer Types (16)</td>
848 </tr>
849 <tr>
850 <td><a href="#uint24_vbr">uint24_vbr</a></td>
851 <td class="td_left">Slot number of pointer's element type.</td>
852 </tr>
853 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000854</table>
855<h3>Opaque Types</h3>
856<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000857 <tbody>
858 <tr>
859 <th><b>Type</b></th>
860 <th class="td_left"><b>Description</b></th>
861 </tr>
862 <tr>
863 <td><a href="#uint24_vbr">uint24_vbr</a></td>
864 <td class="td_left">Type ID For Opaque Types (17)</td>
865 </tr>
866 </tbody>
Reid Spencer1ab929c2004-07-05 08:18:07 +0000867</table>
868</div>
869<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +0000870<div class="doc_subsection"><a name="globalinfo">Module Global Info</a>
871</div>
Reid Spencer50026612004-05-22 02:28:36 +0000872<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000873<p>The module global info block contains the definitions of all global
874variables including their initializers and the <em>declaration</em> of
875all functions. The format is shown in the table below:</p>
876<table>
877 <tbody>
Reid Spencer2cc36152004-07-05 19:04:27 +0000878 <tr>
879 <th><b>Type</b></th>
880 <th class="td_left"><b>Field Description</b></th>
Reid Spencer2cc36152004-07-05 19:04:27 +0000881 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000882 <tr>
883 <td><a href="#block">block</a></td>
884 <td class="td_left">Module global info identifier (0x05) + size<br>
885 </td>
886 </tr>
887 <tr>
888 <td><a href="#zlist">zlist</a>(<a href="#globalvar">globalvar</a>)</td>
889 <td class="td_left">A zero terminated list of global var
890definitions occuring in the module.</td>
891 </tr>
892 <tr>
893 <td><a href="#zlist">zlist</a>(<a href="#uint24_vbr">uint24_vbr</a>)</td>
894 <td class="td_left">A zero terminated list of function types
895occuring in the module.</td>
896 </tr>
897 <tr>
898 <td style="vertical-align: top;"><a href="#llist">llist</a>(<a
899 href="#string">string</a>)<br>
900 </td>
901 <td style="vertical-align: top; text-align: left;">A length list
902of strings that specify the names of the libraries that this module
903depends upon.<br>
904 </td>
905 </tr>
906 <tr>
907 <td style="vertical-align: top;"><a href="#string">string</a><br>
908 </td>
909 <td style="vertical-align: top; text-align: left;">The target
910triple for the module (blank means no target triple specified, i.e. a
911platform independent module).<br>
912 </td>
913 </tr>
914 </tbody>
915</table>
Reid Spencer50026612004-05-22 02:28:36 +0000916</div>
Reid Spencer2cc36152004-07-05 19:04:27 +0000917<!-- _______________________________________________________________________ -->
918<div class="doc_subsubsection"><a name="globalvar">Global Variable Field</a>
919</div>
920<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000921<p>Global variables are written using an <a href="#uint32_vbr">uint32_vbr</a>
922that encodes information about the global variable and a list of the
923constant initializers for the global var, if any.</p>
924<p>The table below provides the bit layout of the first <a
925 href="#uint32_vbr">uint32_vbr</a> that describes the global variable.</p>
926<table>
927 <tbody>
Reid Spencer82c46712004-07-07 13:34:26 +0000928 <tr>
929 <th><b>Type</b></th>
930 <th class="td_left"><b>Description</b></th>
Reid Spencer82c46712004-07-07 13:34:26 +0000931 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000932 <tr>
933 <td><a href="#bit">bit(0)</a></td>
934 <td class="td_left">Is constant?</td>
935 </tr>
936 <tr>
937 <td><a href="#bit">bit(1)</a></td>
938 <td class="td_left">Has initializer? Note that this bit
939determines whether the constant initializer field (described below)
940follows. </td>
941 </tr>
942 <tr>
943 <td><a href="#bit">bit(2-4)</a></td>
944 <td class="td_left">Linkage type: 0=External, 1=Weak,
9452=Appending, 3=Internal, 4=LinkOnce</td>
946 </tr>
947 <tr>
948 <td><a href="#bit">bit(5-31)</a></td>
949 <td class="td_left">Slot number of type for the global variable.</td>
950 </tr>
951 </tbody>
952</table>
953<p>The table below provides the format of the constant initializers for
954the global variable field, if it has one.</p>
955<table>
956 <tbody>
957 <tr>
958 <th><b>Type</b></th>
959 <th class="td_left"><b>Description</b></th>
960 </tr>
961 <tr>
962 <td>(<a href="#zlist">zlist</a>(<a href="#uint32_vbr">uint32_vbr</a>))?
963 </td>
964 <td class="td_left">An optional zero-terminated list of slot
965numbers of the global variable's constant initializer.</td>
966 </tr>
967 </tbody>
968</table>
Reid Spencer2cc36152004-07-05 19:04:27 +0000969</div>
Reid Spencer50026612004-05-22 02:28:36 +0000970<!-- _______________________________________________________________________ -->
Reid Spencer1ab929c2004-07-05 08:18:07 +0000971<div class="doc_subsection"><a name="constantpool">Constant Pool</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +0000972<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +0000973<p>A constant pool defines as set of constant values. There are
974actually two types of constant pool blocks: one for modules and one for
975functions. For modules, the block begins with the constant strings
976encountered anywhere in the module. For functions, the block begins
977with types only encountered in the function. In both cases the header
978is identical. The tables that follow, show the header, module constant
979pool preamble, function constant pool preamble, and the part common to
980both function and module constant pools.</p>
981<p><b>Common Block Header</b></p>
982<table>
983 <tbody>
Reid Spencer2cc36152004-07-05 19:04:27 +0000984 <tr>
985 <th><b>Type</b></th>
986 <th class="td_left"><b>Field Description</b></th>
Reid Spencer2cc36152004-07-05 19:04:27 +0000987 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +0000988 <tr>
989 <td><a href="#block">block</a></td>
990 <td class="td_left">Constant pool identifier (0x03) + size<br>
991 </td>
992 </tr>
993 </tbody>
994</table>
995<p><b>Module Constant Pool Preamble (constant strings)</b></p>
996<table>
997 <tbody>
Reid Spencer2cc36152004-07-05 19:04:27 +0000998 <tr>
999 <th><b>Type</b></th>
1000 <th class="td_left"><b>Field Description</b></th>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001001 </tr>
1002 <tr>
Reid Spencer2cc36152004-07-05 19:04:27 +00001003 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1004 <td class="td_left">The number of constant strings that follow.</td>
Reid Spencer2cc36152004-07-05 19:04:27 +00001005 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001006 <tr>
1007 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1008 <td class="td_left">Zero. This identifies the following "plane"
1009as containing the constant strings. This is needed to identify it
1010uniquely from other constant planes that follow. </td>
1011 </tr>
1012 <tr>
1013 <td><a href="#uint24_vbr">uint24_vbr</a>+</td>
1014 <td class="td_left">Slot number of the constant string's type.
1015Note that the constant string's type implicitly defines the length of
1016the string. </td>
1017 </tr>
1018 </tbody>
1019</table>
1020<p><b>Function Constant Pool Preamble (function types)</b></p>
1021<p>The structure of the types for functions is identical to the <a
1022 href="#globaltypes">Global Type Pool</a>. Please refer to that section
1023for the details. </p>
1024<p><b>Common Part (other constants)</b></p>
1025<table>
1026 <tbody>
Reid Spencer2cc36152004-07-05 19:04:27 +00001027 <tr>
1028 <th><b>Type</b></th>
1029 <th class="td_left"><b>Field Description</b></th>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001030 </tr>
1031 <tr>
Reid Spencer2cc36152004-07-05 19:04:27 +00001032 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1033 <td class="td_left">Number of entries in this type plane.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001034 </tr>
1035 <tr>
1036 <td><a href="#uint24_vbr">uint24_vbr</a></td>
Reid Spencer2cc36152004-07-05 19:04:27 +00001037 <td class="td_left">Type slot number of this plane.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001038 </tr>
1039 <tr>
Reid Spencer82c46712004-07-07 13:34:26 +00001040 <td><a href="#constant">constant</a>+</td>
Reid Spencer2cc36152004-07-05 19:04:27 +00001041 <td class="td_left">The definition of a constant (see below).</td>
1042 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001043 </tbody>
1044</table>
Reid Spencer2cc36152004-07-05 19:04:27 +00001045</div>
1046<!-- _______________________________________________________________________ -->
1047<div class="doc_subsubsection"><a name="constant">Constant Field</a></div>
1048<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001049<p>Constants come in many shapes and flavors. The sections that followe
1050define the format for each of them. All constants start with a <a
1051 href="#uint32_vbr">uint32_vbr</a> encoded integer that provides the
1052number of operands for the constant. For primitive, structure, and
1053array constants, this will always be zero since those types of
1054constants have no operands. In this case, we have the following field
1055definitions:</p>
1056<ul>
1057 <li><b>Bool</b>. This is written as an <a href="#uint32_vbr">uint32_vbr</a>
1058of value 1U or 0U.</li>
1059 <li><b>Signed Integers (sbyte,short,int,long)</b>. These are written
1060as an <a href="#int64_vbr">int64_vbr</a> with the corresponding value.</li>
1061 <li><b>Unsigned Integers (ubyte,ushort,uint,ulong)</b>. These are
1062written as an <a href="#uint64_vbr">uint64_vbr</a> with the
1063corresponding value. </li>
1064 <li><b>Floating Point</b>. Both the float and double types are
1065written literally in binary format.</li>
1066 <li><b>Arrays</b>. Arrays are written simply as a list of <a
1067 href="#uint32_vbr">uint32_vbr</a> encoded slot numbers to the constant
1068element values.</li>
1069 <li><b>Structures</b>. Structures are written simply as a list of <a
1070 href="#uint32_vbr">uint32_vbr</a> encoded slot numbers to the constant
1071field values of the structure.</li>
1072</ul>
1073<p>When the number of operands to the constant is non-zero, we have a
1074constant expression and its field format is provided in the table below.</p>
1075<table>
1076 <tbody>
Reid Spencer2cc36152004-07-05 19:04:27 +00001077 <tr>
1078 <th><b>Type</b></th>
1079 <th class="td_left"><b>Field Description</b></th>
Reid Spencer2cc36152004-07-05 19:04:27 +00001080 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001081 <tr>
1082 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1083 <td class="td_left">Op code of the instruction for the constant
1084expression.</td>
1085 </tr>
1086 <tr>
1087 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1088 <td class="td_left">The slot number of the constant value for an
1089operand.<sup>1</sup></td>
1090 </tr>
1091 <tr>
1092 <td><a href="#uint24_vbr">uint24_vbr</a></td>
1093 <td class="td_left">The slot number for the type of the constant
1094value for an operand.<sup>1</sup></td>
1095 </tr>
1096 </tbody>
1097</table>
1098Notes:
1099<ol>
1100 <li>Both these fields are repeatable but only in pairs.</li>
1101</ol>
Reid Spencer50026612004-05-22 02:28:36 +00001102</div>
1103<!-- _______________________________________________________________________ -->
Reid Spencer51f31e02004-07-05 22:28:02 +00001104<div class="doc_subsection"><a name="functiondefs">Function Definition</a></div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001105<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001106<p>Function definitions contain the linkage, constant pool or
1107compaction table, instruction list, and symbol table for a function.
1108The following table shows the structure of a function definition.</p>
1109<table>
1110 <tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001111 <tr>
1112 <th><b>Type</b></th>
1113 <th class="td_left"><b>Field Description</b></th>
Reid Spencer51f31e02004-07-05 22:28:02 +00001114 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001115 <tr>
1116 <td><a href="#block">block</a><br>
1117 </td>
1118 <td class="td_left">Function definition block identifier (0x02) +
1119size<br>
1120 </td>
1121 </tr>
1122 <tr>
1123 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1124 <td class="td_left">The linkage type of the function: 0=External,
11251=Weak, 2=Appending, 3=Internal, 4=LinkOnce<sup>1</sup></td>
1126 </tr>
1127 <tr>
1128 <td><a href="#block">block</a></td>
1129 <td class="td_left">The <a href="#constantpool">constant pool</a>
1130block for this function.<sup>2</sup></td>
1131 </tr>
1132 <tr>
1133 <td><a href="#block">block</a></td>
1134 <td class="td_left">The <a href="#compactiontable">compaction
1135table</a> block for the function.<sup>2</sup></td>
1136 </tr>
1137 <tr>
1138 <td><a href="#block">block</a></td>
1139 <td class="td_left">The <a href="#instructionlist">instruction
1140list</a> for the function.</td>
1141 </tr>
1142 <tr>
1143 <td><a href="#block">block</a></td>
1144 <td class="td_left">The function's <a href="#symboltable">symbol
1145table</a> containing only those symbols pertinent to the function
1146(mostly block labels).</td>
1147 </tr>
1148 </tbody>
1149</table>
1150Notes:
1151<ol>
1152 <li>Note that if the linkage type is "External" then none of the
1153other fields will be present as the function is defined elsewhere.</li>
1154 <li>Note that only one of the constant pool or compaction table will
1155be written. Compaction tables are only written if they will actually
1156save bytecode space. If not, then a regular constant pool is written.</li>
1157</ol>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001158</div>
1159<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001160<div class="doc_subsection"><a name="compactiontable">Compaction Table</a>
1161</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001162<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001163<p>Compaction tables are part of a function definition. They are merely
1164a device for reducing the size of bytecode files. The size of a
1165bytecode file is dependent on the <em>value</em> of the slot numbers
1166used because larger values use more bytes in the variable bit rate
1167encoding scheme. Furthermore, the compressed instruction format
1168reserves only six bits for the type of the instruction. In large
1169modules, declaring hundreds or thousands of types, the values of the
1170slot numbers can be quite large. However, functions may use only a
1171small fraction of the global types. In such cases a compaction table is
1172created that maps the global type and value slot numbers to smaller
1173values used by a function. Functions will contain either a
1174function-specific constant pool <em>or</em> a compaction table but not
1175both. Compaction tables have the format shown in the table below.</p>
1176<table>
1177 <tbody>
Reid Spencer2cc36152004-07-05 19:04:27 +00001178 <tr>
1179 <th><b>Type</b></th>
1180 <th class="td_left"><b>Field Description</b></th>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001181 </tr>
1182 <tr>
Reid Spencer2cc36152004-07-05 19:04:27 +00001183 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1184 <td class="td_left">The number of types that follow</td>
Reid Spencer2cc36152004-07-05 19:04:27 +00001185 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001186 <tr>
1187 <td><a href="#uint24_vbr">uint24_vbr</a>+</td>
1188 <td class="td_left">The slot number in the global type plane of
1189the type that will be referenced in the function with the index of this
1190entry in the compaction table.</td>
1191 </tr>
1192 <tr>
1193 <td><a href="#type_len">type_len</a></td>
1194 <td class="td_left">An encoding of the type and number of values
1195that follow. This field's encoding varies depending on the size of the
1196type plane. See <a href="#type_len">Type and Length</a> for further
1197details.</td>
1198 </tr>
1199 <tr>
1200 <td><a href="#uint32_vbr">uint32_vbr</a>+</td>
1201 <td class="td_left">The slot number in the globals of the value
1202that will be referenced in the function with the index of this entry in
1203the compaction table</td>
1204 </tr>
1205 </tbody>
1206</table>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001207</div>
Reid Spencer2cc36152004-07-05 19:04:27 +00001208<!-- _______________________________________________________________________ -->
1209<div class="doc_subsubsection"><a name="type_len">Type and Length</a></div>
1210<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001211<p>The type and length of a compaction table type plane is encoded
1212differently depending on the length of the plane. For planes of length
12131 or 2, the length is encoded into bits 0 and 1 of a <a
1214 href="#uint32_vbr">uint32_vbr</a> and the type is encoded into bits
12152-31. Because type numbers are often small, this often saves an extra
1216byte per plane. If the length of the plane is greater than 2 then the
1217encoding uses a <a href="#uint32_vbr">uint32_vbr</a> for each of the
1218length and type, in that order.</p>
Reid Spencer2cc36152004-07-05 19:04:27 +00001219</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001220<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001221<div class="doc_subsection"><a name="instructionlist">Instruction List</a>
1222</div>
Reid Spencer50026612004-05-22 02:28:36 +00001223<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001224<p>The instructions in a function are written as a simple list. Basic
1225blocks are inferred by the terminating instruction types. The format of
1226the block is given in the following table.</p>
1227<table>
1228 <tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001229 <tr>
1230 <th><b>Type</b></th>
1231 <th class="td_left"><b>Field Description</b></th>
Reid Spencer51f31e02004-07-05 22:28:02 +00001232 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001233 <tr>
1234 <td><a href="#block">block</a><br>
1235 </td>
1236 <td class="td_left">Instruction list identifier (0x07) + size<br>
1237 </td>
1238 </tr>
1239 <tr>
1240 <td><a href="#instruction">instruction</a>+</td>
1241 <td class="td_left">An instruction. Instructions have a variety
1242of formats. See <a href="#instruction">Instructions</a> for details.</td>
1243 </tr>
1244 </tbody>
1245</table>
Reid Spencer50026612004-05-22 02:28:36 +00001246</div>
Reid Spencer51f31e02004-07-05 22:28:02 +00001247<!-- _______________________________________________________________________ -->
1248<div class="doc_subsubsection"><a name="instruction">Instructions</a></div>
1249<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001250<p>For brevity, instructions are written in one of four formats,
1251depending on the number of operands to the instruction. Each
1252instruction begins with a <a href="#uint32_vbr">uint32_vbr</a> that
1253encodes the type of the instruction as well as other things. The tables
1254that follow describe the format of this first word of each instruction.</p>
1255<p><b>Instruction Format 0</b></p>
1256<p>This format is used for a few instructions that can't easily be
1257optimized because they have large numbers of operands (e.g. PHI Node or
1258getelementptr). Each of the opcode, type, and operand fields is as
1259successive fields.</p>
1260<table>
1261 <tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001262 <tr>
1263 <th><b>Type</b></th>
1264 <th class="td_left"><b>Field Description</b></th>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001265 </tr>
1266 <tr>
Reid Spencer51f31e02004-07-05 22:28:02 +00001267 <td><a href="#uint32_vbr">uint32_vbr</a></td>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001268 <td class="td_left">Specifies the opcode of the instruction. Note
1269that for compatibility with the other instruction formats, the opcode
1270is shifted left by 2 bits. Bits 0 and 1 must have value zero for this
1271format.</td>
1272 </tr>
1273 <tr>
1274 <td><a href="#uint24_vbr">uint24_vbr</a></td>
1275 <td class="td_left">Provides the slot number of the result type
1276of the instruction</td>
1277 </tr>
1278 <tr>
Reid Spencer51f31e02004-07-05 22:28:02 +00001279 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1280 <td class="td_left">The number of operands that follow.</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001281 </tr>
1282 <tr>
Reid Spencer82c46712004-07-07 13:34:26 +00001283 <td><a href="#uint32_vbr">uint32_vbr</a>+</td>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001284 <td class="td_left">The slot number of the value(s) for the
1285operand(s). <sup>1</sup></td>
Reid Spencer51f31e02004-07-05 22:28:02 +00001286 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001287 </tbody>
1288</table>
1289Notes:
1290<ol>
1291 <li>Note that if the instruction is a getelementptr and the type of
1292the operand is a sequential type (array or pointer) then the slot
1293number is shifted up two bits and the low order bits will encode the
1294type of index used, as follows: 0=uint, 1=int, 2=ulong, 3=long.</li>
1295</ol>
1296<p><b>Instruction Format 1</b></p>
1297<p>This format encodes the opcode, type and a single operand into a
1298single <a href="#uint32_vbr">uint32_vbr</a> as follows:</p>
1299<table>
1300 <tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001301 <tr>
1302 <th><b>Bits</b></th>
1303 <th><b>Type</b></th>
1304 <th class="td_left"><b>Field Description</b></th>
Reid Spencer51f31e02004-07-05 22:28:02 +00001305 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001306 <tr>
1307 <td>0-1</td>
1308 <td>constant "1"</td>
1309 <td class="td_left">These two bits must be the value 1 which
1310identifies this as an instruction of format 1.</td>
1311 </tr>
1312 <tr>
1313 <td>2-7</td>
1314 <td><a href="#opcodes">opcode</a></td>
1315 <td class="td_left">Specifies the opcode of the instruction. Note
1316that the maximum opcode value is 63.</td>
1317 </tr>
1318 <tr>
1319 <td>8-19</td>
1320 <td><a href="#unsigned">unsigned</a></td>
1321 <td class="td_left">Specifies the slot number of the type for
1322this instruction. Maximum slot number is 2<sup>12</sup>-1=4095.</td>
1323 </tr>
1324 <tr>
1325 <td>20-31</td>
1326 <td><a href="#unsigned">unsigned</a></td>
1327 <td class="td_left">Specifies the slot number of the value for
1328the first operand. Maximum slot number is 2<sup>12</sup>-1=4095. Note
1329that the value 2<sup>12</sup>-1 denotes zero operands.</td>
1330 </tr>
1331 </tbody>
1332</table>
1333<p><b>Instruction Format 2</b></p>
1334<p>This format encodes the opcode, type and two operands into a single <a
1335 href="#uint32_vbr">uint32_vbr</a> as follows:</p>
1336<table>
1337 <tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001338 <tr>
1339 <th><b>Bits</b></th>
1340 <th><b>Type</b></th>
1341 <th class="td_left"><b>Field Description</b></th>
Reid Spencer51f31e02004-07-05 22:28:02 +00001342 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001343 <tr>
1344 <td>0-1</td>
1345 <td>constant "2"</td>
1346 <td class="td_left">These two bits must be the value 2 which
1347identifies this as an instruction of format 2.</td>
1348 </tr>
1349 <tr>
1350 <td>2-7</td>
1351 <td><a href="#opcodes">opcode</a></td>
1352 <td class="td_left">Specifies the opcode of the instruction. Note
1353that the maximum opcode value is 63.</td>
1354 </tr>
1355 <tr>
1356 <td>8-15</td>
1357 <td><a href="#unsigned">unsigned</a></td>
1358 <td class="td_left">Specifies the slot number of the type for
1359this instruction. Maximum slot number is 2<sup>8</sup>-1=255.</td>
1360 </tr>
1361 <tr>
1362 <td>16-23</td>
1363 <td><a href="#unsigned">unsigned</a></td>
1364 <td class="td_left">Specifies the slot number of the value for
1365the first operand. Maximum slot number is 2<sup>8</sup>-1=255.</td>
1366 </tr>
1367 <tr>
1368 <td>24-31</td>
1369 <td><a href="#unsigned">unsigned</a></td>
1370 <td class="td_left">Specifies the slot number of the value for
1371the second operand. Maximum slot number is 2<sup>8</sup>-1=255.</td>
1372 </tr>
1373 </tbody>
1374</table>
1375<p><b>Instruction Format 3</b></p>
1376<p>This format encodes the opcode, type and three operands into a
1377single <a href="#uint32_vbr">uint32_vbr</a> as follows:</p>
1378<table>
1379 <tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001380 <tr>
1381 <th><b>Bits</b></th>
1382 <th><b>Type</b></th>
1383 <th class="td_left"><b>Field Description</b></th>
Reid Spencer51f31e02004-07-05 22:28:02 +00001384 </tr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001385 <tr>
1386 <td>0-1</td>
1387 <td>constant "3"</td>
1388 <td class="td_left">These two bits must be the value 3 which
1389identifies this as an instruction of format 3.</td>
1390 </tr>
1391 <tr>
1392 <td>2-7</td>
1393 <td><a href="#opcodes">opcode</a></td>
1394 <td class="td_left">Specifies the opcode of the instruction. Note
1395that the maximum opcode value is 63.</td>
1396 </tr>
1397 <tr>
1398 <td>8-13</td>
1399 <td><a href="#unsigned">unsigned</a></td>
1400 <td class="td_left">Specifies the slot number of the type for
1401this instruction. Maximum slot number is 2<sup>6</sup>-1=63.</td>
1402 </tr>
1403 <tr>
1404 <td>14-19</td>
1405 <td><a href="#unsigned">unsigned</a></td>
1406 <td class="td_left">Specifies the slot number of the value for
1407the first operand. Maximum slot number is 2<sup>6</sup>-1=63.</td>
1408 </tr>
1409 <tr>
1410 <td>20-25</td>
1411 <td><a href="#unsigned">unsigned</a></td>
1412 <td class="td_left">Specifies the slot number of the value for
1413the second operand. Maximum slot number is 2<sup>6</sup>-1=63.</td>
1414 </tr>
1415 <tr>
1416 <td>26-31</td>
1417 <td><a href="#unsigned">unsigned</a></td>
1418 <td class="td_left">Specifies the slot number of the value for
1419the third operand. Maximum slot number is 2<sup>6</sup>-1=63.</td>
1420 </tr>
1421 </tbody>
1422</table>
Reid Spencer51f31e02004-07-05 22:28:02 +00001423</div>
Reid Spencer50026612004-05-22 02:28:36 +00001424<!-- _______________________________________________________________________ -->
Reid Spencerb39021b2004-05-23 17:05:09 +00001425<div class="doc_subsection"><a name="symtab">Symbol Table</a> </div>
Reid Spencer50026612004-05-22 02:28:36 +00001426<div class="doc_text">
Reid Spencerb39021b2004-05-23 17:05:09 +00001427<p>A symbol table can be put out in conjunction with a module or a function.
1428A symbol table is a list of type planes. Each type plane starts with the number
Reid Spencer9bd2be22004-07-29 00:13:04 +00001429of entries in the plane and the type plane's slot number (so the type
1430can be looked up in the global type pool). For each entry in a type
1431plane, the slot number of the value and the name associated with that
1432value are written. The format is given in the table below. </p>
Reid Spencer2cc36152004-07-05 19:04:27 +00001433<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001434 <tbody>
1435 <tr>
1436 <th><b>Type</b></th>
1437 <th class="td_left"><b>Field Description</b></th>
1438 </tr>
1439 <tr>
1440 <td><a href="#block">block</a><br>
1441 </td>
1442 <td class="td_left">Symbol Table Identifier (0x04)</td>
1443 </tr>
1444 <tr>
1445 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1446 <td class="td_left">Number of entries in type plane</td>
1447 </tr>
1448 <tr>
1449 <td><a href="#symtab_entry">symtab_entry</a>*</td>
1450 <td class="td_left">Provides the slot number of the type and its
1451name.</td>
1452 </tr>
1453 <tr>
1454 <td><a href="#symtab_plane">symtab_plane</a>*</td>
1455 <td class="td_left">A type plane containing value slot number and
1456name for all values of the same type.</td>
1457 </tr>
1458 </tbody>
Reid Spencerb39021b2004-05-23 17:05:09 +00001459</table>
Reid Spencer50026612004-05-22 02:28:36 +00001460</div>
Reid Spencer51f31e02004-07-05 22:28:02 +00001461<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001462<div class="doc_subsubsection"> <a name="symtab_plane">Symbol Table
1463Plane</a>
Reid Spencer51f31e02004-07-05 22:28:02 +00001464</div>
1465<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001466<p>A symbol table plane provides the symbol table entries for all
1467values of a common type. The encoding is given in the following table:</p>
Reid Spencer51f31e02004-07-05 22:28:02 +00001468<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001469 <tbody>
1470 <tr>
1471 <th><b>Type</b></th>
1472 <th class="td_left"><b>Field Description</b></th>
1473 </tr>
1474 <tr>
1475 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1476 <td class="td_left">Number of entries in this plane.</td>
1477 </tr>
1478 <tr>
1479 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1480 <td class="td_left">Slot number of type for this plane.</td>
1481 </tr>
1482 <tr>
1483 <td><a href="#symtab_entry">symtab_entry</a>+</td>
1484 <td class="td_left">The symbol table entries for this plane.</td>
1485 </tr>
1486 </tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001487</table>
1488</div>
Reid Spencer51f31e02004-07-05 22:28:02 +00001489<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001490<div class="doc_subsubsection"> <a name="symtab_entry">Symbol Table
1491Entry</a>
Reid Spencer51f31e02004-07-05 22:28:02 +00001492</div>
1493<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001494<p>A symbol table entry provides the assocation between a type or
1495value's slot number and the name given to that type or value. The
1496format is given in the following table:</p>
Reid Spencer51f31e02004-07-05 22:28:02 +00001497<table>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001498 <tbody>
1499 <tr>
1500 <th><b>Type</b></th>
1501 <th class="td_left"><b>Field Description</b></th>
1502 </tr>
1503 <tr>
1504 <td><a href="#uint32_vbr">uint24_vbr</a></td>
1505 <td class="td_left">Slot number of the type or value being given
1506a name. </td>
1507 </tr>
1508 <tr>
1509 <td><a href="#uint32_vbr">uint32_vbr</a></td>
1510 <td class="td_left">Length of the character array that follows.</td>
1511 </tr>
1512 <tr>
1513 <td><a href="#char">char</a>+</td>
1514 <td class="td_left">The characters of the name.</td>
1515 </tr>
1516 </tbody>
Reid Spencer51f31e02004-07-05 22:28:02 +00001517</table>
1518</div>
Reid Spencer7c76d332004-06-08 07:41:41 +00001519<!-- *********************************************************************** -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001520<div class="doc_section"> <a name="versiondiffs">Version Differences</a>
1521</div>
Reid Spencer7c76d332004-06-08 07:41:41 +00001522<!-- *********************************************************************** -->
1523<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001524<p>This section describes the differences in the Bytecode Format across
1525LLVM
1526versions. The versions are listed in reverse order because it assumes
1527the current version is as documented in the previous sections. Each
1528section here
Chris Lattner1cc070c2004-07-05 18:05:48 +00001529describes the differences between that version and the one that <i>follows</i>.
Reid Spencer7c76d332004-06-08 07:41:41 +00001530</p>
1531</div>
1532<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001533<div class="doc_subsection"><a name="vers12">Version 1.2 Differences
1534From 1.3</a></div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001535<!-- _______________________________________________________________________ -->
1536<div class="doc_subsubsection">Type Derives From Value</div>
Reid Spencer7c76d332004-06-08 07:41:41 +00001537<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001538<p>In version 1.2, the Type class in the LLVM IR derives from the Value
1539class. This is not the case in version 1.3. Consequently, in version
15401.2 the notion of a "Type Type" was used to write out values that were
1541Types. The types always occuped plane 12 (corresponding to the
1542TypeTyID) of any type planed set of values. In 1.3 this representation
1543is not convenient because the TypeTyID (12) is not present and its
1544value is now used for LabelTyID. Consequently, the data structures
1545written that involve types do so by writing all the types first and
1546then each of the value planes according to those types. In version 1.2,
1547the types would have been written intermingled with the values.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001548</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001549<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001550<div class="doc_subsubsection">Restricted getelementptr Types</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001551<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001552<p>In version 1.2, the getelementptr instruction required a ubyte type
1553index for accessing a structure field and a long type index for
1554accessing an array element. Consequently, it was only possible to
1555access structures of 255 or fewer elements. Starting in version 1.3,
1556this restriction was lifted. Structures must now be indexed with uint
1557constants. Arrays may now be indexed with int, uint, long, or ulong
1558typed values. The consequence of this was that the bytecode format had
1559to change in order to accommodate the larger range of structure indices.</p>
Reid Spencer7c76d332004-06-08 07:41:41 +00001560</div>
Reid Spencer7c76d332004-06-08 07:41:41 +00001561<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001562<div class="doc_subsubsection">Short Block Headers</div>
1563<div class="doc_text">
1564<p>In version 1.2, block headers were always 8 bytes being comprised of
1565both an unsigned integer type and an unsigned integer size. For very
1566small modules, these block headers turn out to be a large fraction of
1567the total bytecode file size. In an attempt to make these small files
1568smaller, the type and size information was encoded into a single
1569unsigned integer (4 bytes) comprised of 5 bits for the block type
1570(maximum 31 block types) and 27 bits for the block size (max
1571~134MBytes). These limits seemed sufficient for any blocks or sizes
1572forseen in the future. Note that the module block, which encloses all
1573the other blocks is still written as 8 bytes since bytecode files
1574larger than 134MBytes might be possible.</p>
1575</div>
1576<!-- _______________________________________________________________________ -->
1577<div class="doc_subsubsection">Dependent Libraries and Target Triples</div>
1578<div class="doc_text">
1579<p>In version 1.2, the bytecode format does not store module's target
1580triple or dependent. These fields have been added to the end of the <a
1581 href="#globalinfo">module global info block</a>. The purpose of these
1582fields is to allow a front end compiler to specifiy that the generated
1583module is specific to a particular target triple (operating
1584system/manufacturer/processor) which makes it non-portable; and to
1585allow front end compilers to specify the list of libraries that the
1586module depends on for successful linking.</p>
1587</div>
1588<!-- _______________________________________________________________________ -->
1589<div class="doc_subsubsection">Types Restricted to 24-bits</div>
1590<div class="doc_text">
1591<p>In version 1.2, type slot identifiers were written as 32-bit VBR
1592quantities. In 1.3 this has been reduced to 24-bits in order to ensure
1593that it is not possible to overflow the type field of a global variable
1594definition. 24-bits for type slot numbers is deemed sufficient for any
1595practical use of LLVM.</p>
1596</div>
1597<!-- _______________________________________________________________________ -->
1598<!-- _______________________________________________________________________ -->
1599<div class="doc_subsection"><a name="vers11">Version 1.1 Differences
1600From 1.2 </a></div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001601<!-- _______________________________________________________________________ -->
1602<div class="doc_subsubsection">Explicit Primitive Zeros</div>
Reid Spencer7c76d332004-06-08 07:41:41 +00001603<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001604<p>In version 1.1, the zero value for primitives was explicitly encoded
1605into the bytecode format. Since these zero values are constant values
1606in the LLVM IR and never change, there is no reason to explicitly
1607encode them. This explicit encoding was removed in version 1.2.</p>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001608</div>
Reid Spencer1ab929c2004-07-05 08:18:07 +00001609<!-- _______________________________________________________________________ -->
1610<div class="doc_subsubsection">Inconsistent Module Global Info</div>
1611<div class="doc_text">
Reid Spencer9bd2be22004-07-29 00:13:04 +00001612<p>In version 1.1, the Module Global Info block was not aligned causing
1613the next block to be read in on an unaligned boundary. This problem was
1614corrected in version 1.2.<br>
1615<br>
1616</p>
Reid Spencer7c76d332004-06-08 07:41:41 +00001617</div>
Reid Spencer7c76d332004-06-08 07:41:41 +00001618<!-- _______________________________________________________________________ -->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001619<div class="doc_subsection"><a name="vers10">Version 1.0 Differences
1620From 1.1</a></div>
Reid Spencer7c76d332004-06-08 07:41:41 +00001621<div class="doc_text">
Reid Spencer1ab929c2004-07-05 08:18:07 +00001622<p>None. Version 1.0 and 1.1 bytecode formats are identical.</p>
Reid Spencer7c76d332004-06-08 07:41:41 +00001623</div>
Reid Spencer50026612004-05-22 02:28:36 +00001624<!-- *********************************************************************** -->
1625<hr>
Reid Spencer9bd2be22004-07-29 00:13:04 +00001626<address> <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
1627 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
1628<a href="http://validator.w3.org/check/referer"><img
1629 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
1630<a href="mailto:rspencer@x10sys.com">Reid Spencer</a> and <a
1631 href="mailto:sabre@nondot.org">Chris Lattner</a><br>
1632<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
1633Last modified: $Date$
Reid Spencer50026612004-05-22 02:28:36 +00001634</address>
Reid Spencer50026612004-05-22 02:28:36 +00001635<!-- vim: sw=2
1636-->
Reid Spencer9bd2be22004-07-29 00:13:04 +00001637</body>
1638</html>