Searched refs:BlockID (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Bitcode/
H A DBitstreamWriter.h58 unsigned BlockID; member in struct:llvm::BitstreamWriter::BlockInfo
198 BlockInfo *getBlockInfo(unsigned BlockID) { argument
199 // Common case, the most recent entry matches BlockID.
200 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
205 if (BlockInfoRecords[i].BlockID == BlockID)
210 void EnterSubblock(unsigned BlockID, unsigned CodeLen) { argument
214 EmitVBR(BlockID, bitc::BlockIDWidth);
231 // If there is a blockinfo for this BlockID, ad
511 SwitchToBlockID(unsigned BlockID) argument
519 getOrCreateBlockInfo(unsigned BlockID) argument
533 EmitBlockInfoAbbrev(unsigned BlockID, BitCodeAbbrev *Abbv) argument
[all...]
H A DBitstreamReader.h35 unsigned BlockID; member in struct:llvm::BitstreamReader::BlockInfo
101 const BlockInfo *getBlockInfo(unsigned BlockID) const {
102 // Common case, the most recent entry matches BlockID.
103 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
108 if (BlockInfoRecords[i].BlockID == BlockID)
113 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) { argument
114 if (const BlockInfo *BI = getBlockInfo(BlockID))
119 BlockInfoRecords.back().BlockID
413 EnterSubBlock(unsigned BlockID, unsigned *NumWordsP = 0) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp82 static const char *GetBlockName(unsigned BlockID, argument
85 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
86 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
93 StreamFile.getBlockInfo(BlockID)) {
101 switch (BlockID) {
117 static const char *GetCodeName(unsigned CodeID, unsigned BlockID, argument
120 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
121 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
134 StreamFile.getBlockInfo(BlockID)) {
143 switch (BlockID) {
325 unsigned BlockID = Stream.ReadSubBlockID(); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1739 unsigned BlockID = Stream.ReadSubBlockID(); local
1742 switch (BlockID) {
1841 unsigned BlockID = Stream.ReadSubBlockID(); local
1844 switch (BlockID) {

Completed in 95 milliseconds