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