Lines Matching refs:bitstream
14 This document describes the LLVM bitstream file format and the encoding of the
21 anachronistically known as bytecode) is actually two things: a `bitstream
24 The bitstream format is an abstract encoding of structured data, very similar to
25 XML in some ways. Like XML, bitstream files contain tags, and nested
27 Unlike XML, the bitstream format is a binary encoding, and unlike XML it
35 This document first describes the LLVM bitstream format, describes the wrapper
43 The bitstream format is literally a stream of bits, with a very simple
65 The first four bytes of a bitstream are used as an application-specific magic
68 determine whether a bitstream is valid based on its magic number alone. New
69 application-specific bitstream formats are being developed all the time; tools
77 A bitstream literally consists of a stream of bits, which are read in order
136 Occasionally, it is useful to emit zero bits until the bitstream is a multiple
143 A bitstream is a sequential series of `Blocks`_ and `Data Records`_. Both of
170 Blocks in a bitstream denote nested regions of the stream, and are identified by
290 abbreviations are stored in the bitstream itself, different streams of the same
362 ``[TRIPLE, 'a', 'b', 'c', 'd']``. Consider if the bitstream emitted the
401 In addition to the basic block structure and record encodings, the bitstream
486 LLVM IR is encoded into a bitstream by defining blocks and records. It uses