LLVM API Documentation
#include <BitstreamReader.h>
Public Types | |
enum | { Error, EndBlock, SubBlock, Record } |
Static Public Member Functions | |
static BitstreamEntry | getError () |
static BitstreamEntry | getEndBlock () |
static BitstreamEntry | getSubBlock (unsigned ID) |
static BitstreamEntry | getRecord (unsigned AbbrevID) |
Public Attributes | |
enum llvm::BitstreamEntry:: { ... } | Kind |
unsigned | ID |
BitstreamEntry - When advancing through a bitstream cursor, each advance can discover a few different kinds of entries: Error - Malformed bitcode was found. EndBlock - We've reached the end of the current block, (or the end of the file, which is treated like a series of EndBlock records. SubBlock - This is the start of a new subblock of a specific ID. Record - This is a record with a specific AbbrevID.
Definition at line 138 of file BitstreamReader.h.
anonymous enum |
Enumerator | |
---|---|
Error | |
EndBlock | |
SubBlock | |
Record |
Definition at line 139 of file BitstreamReader.h.
|
inlinestatic |
Definition at line 151 of file BitstreamReader.h.
References EndBlock, and Kind.
Referenced by llvm::BitstreamCursor::advance().
|
inlinestatic |
Definition at line 148 of file BitstreamReader.h.
Referenced by llvm::BitstreamCursor::advance(), and llvm::BitstreamCursor::advanceSkippingSubblocks().
|
inlinestatic |
Definition at line 157 of file BitstreamReader.h.
References ID, Kind, and Record.
Referenced by llvm::BitstreamCursor::advance().
|
inlinestatic |
Definition at line 154 of file BitstreamReader.h.
References ID, Kind, and SubBlock.
Referenced by llvm::BitstreamCursor::advance().
unsigned llvm::BitstreamEntry::ID |
Definition at line 146 of file BitstreamReader.h.
Referenced by getRecord(), getSubBlock(), llvm::BitcodeReader::ParseBitcodeInto(), llvm::BitcodeReader::ParseTriple(), and llvm::BitstreamCursor::ReadBlockInfoBlock().
enum { ... } llvm::BitstreamEntry::Kind |