[llvm-commits] CVS: llvm/docs/BytecodeFormat.html
Reid Spencer
reid at x10sys.com
Tue Feb 27 18:33:23 PST 2007
Changes in directory llvm/docs:
BytecodeFormat.html updated: 1.66 -> 1.67
---
Log message:
Describe how arbitrary precision integers are written to the bytecode.
---
Diffs of the changes: (+13 -5)
BytecodeFormat.html | 18 +++++++++++++-----
1 files changed, 13 insertions(+), 5 deletions(-)
Index: llvm/docs/BytecodeFormat.html
diff -u llvm/docs/BytecodeFormat.html:1.66 llvm/docs/BytecodeFormat.html:1.67
--- llvm/docs/BytecodeFormat.html:1.66 Wed Feb 14 21:08:48 2007
+++ llvm/docs/BytecodeFormat.html Tue Feb 27 20:33:06 2007
@@ -1275,10 +1275,18 @@
<ul>
<li><b>Bool</b>. This is written as an <a href="#uint32_vbr">uint32_vbr</a> of
value 1U or 0U.</li>
- <li><b>Signed Integers (sbyte,short,int,long)</b>. These are written as an
- <a href="#int64_vbr">int64_vbr</a> with the corresponding value.</li>
- <li><b>Unsigned Integers (ubyte,ushort,uint,ulong)</b>. These are written as
- an <a href="#uint64_vbr">uint64_vbr</a> with the corresponding value. </li>
+ <li><b>Signed Integers (sbyte,short,int,long) ≤ 64 bits</b>. These are
+ written as an <a href="#int64_vbr">int64_vbr</a> with the corresponding
+ value.</li>
+ <li><b>Unsigned Integers (ubyte,ushort,uint,ulong) ≤ 64 bits</b>. These
+ are written as an <a href="#uint64_vbr">uint64_vbr</a> with the corresponding
+ value. </li>
+ <li><b>Integers > 64 bits</b>. These are written as a length followed by a
+ series of 64-bit words. The length specifies the number of words that follow.
+ Any zero-valued high order words are elided. Words with the least significant
+ bits are written to the lowest file offsets (little endian). The length is
+ written as an <a href="#uint32_vbr">uint32_vbr</a>. Each word of the value
+ is written as an <a href="#uint64_vbr">uint64_vbr</a>.</li>
<li><b>Floating Point</b>. Both the float and double types are written
literally in binary format.</li>
<li><b>Arrays</b>. Arrays are written simply as a list of
@@ -2085,7 +2093,7 @@
<a href="mailto:rspencer at x10sys.com">Reid Spencer</a> and <a
href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
-Last modified: $Date: 2007/02/15 03:08:48 $
+Last modified: $Date: 2007/02/28 02:33:06 $
</address>
</body>
</html>
More information about the llvm-commits
mailing list