Home
last modified time | relevance | path

Searched refs:BlockInfoRecords (Results 1 – 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/llvm/include/llvm/Bitcode/
DBitstreamReader.h49 std::vector<BlockInfo> BlockInfoRecords; variable
80 while (!BlockInfoRecords.empty()) { in ~BitstreamReader()
81 BlockInfo &Info = BlockInfoRecords.back(); in ~BitstreamReader()
86 BlockInfoRecords.pop_back(); in ~BitstreamReader()
102 bool hasBlockInfoRecords() const { return !BlockInfoRecords.empty(); } in hasBlockInfoRecords()
108 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID) in getBlockInfo()
109 return &BlockInfoRecords.back(); in getBlockInfo()
111 for (unsigned i = 0, e = static_cast<unsigned>(BlockInfoRecords.size()); in getBlockInfo()
113 if (BlockInfoRecords[i].BlockID == BlockID) in getBlockInfo()
114 return &BlockInfoRecords[i]; in getBlockInfo()
[all …]
DBitstreamWriter.h61 std::vector<BlockInfo> BlockInfoRecords; variable
104 while (!BlockInfoRecords.empty()) { in ~BitstreamWriter()
105 BlockInfo &Info = BlockInfoRecords.back(); in ~BitstreamWriter()
110 BlockInfoRecords.pop_back(); in ~BitstreamWriter()
200 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID) in getBlockInfo()
201 return &BlockInfoRecords.back(); in getBlockInfo()
203 for (unsigned i = 0, e = static_cast<unsigned>(BlockInfoRecords.size()); in getBlockInfo()
205 if (BlockInfoRecords[i].BlockID == BlockID) in getBlockInfo()
206 return &BlockInfoRecords[i]; in getBlockInfo()
525 BlockInfoRecords.push_back(BlockInfo()); in getOrCreateBlockInfo()
[all …]