Searched refs:Abbrevs (Results 1 – 8 of 8) sorted by relevance
/external/clang/lib/Frontend/ |
D | SerializedDiagnosticPrinter.cpp | 35 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in __anon0b5a0ee10111::AbbreviationMap 40 assert(Abbrevs.find(recordID) == Abbrevs.end() in set() 42 Abbrevs[recordID] = abbrevID; in set() 46 assert(Abbrevs.find(recordID) != Abbrevs.end() && in get() 48 return Abbrevs[recordID]; in get() 274 AbbreviationMap Abbrevs; member 400 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record, in getEmitFile() 411 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE), in EmitCharSourceRange() 446 AbbreviationMap &Abbrevs = State->Abbrevs; in EmitBlockInfoBlock() local 457 Abbrevs.set(RECORD_VERSION, Stream.EmitBlockInfoAbbrev(BLOCK_META, Abbrev)); in EmitBlockInfoBlock() [all …]
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 62 std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>> Abbrevs; member 228 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(), in EnterSubblock() 229 Info->Abbrevs.end()); in EnterSubblock() 539 Info.Abbrevs.push_back(Abbv); in EmitBlockInfoAbbrev() 541 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV; in EmitBlockInfoAbbrev()
|
D | BitstreamReader.h | 37 std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>> Abbrevs; member
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitstreamReader.cpp | 36 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(), in EnterSubBlock() 37 Info->Abbrevs.end()); in EnterSubBlock() 326 CurBlockInfo->Abbrevs.push_back(std::move(CurAbbrevs.back())); in ReadBlockInfoBlock()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 100 Abbrevs = Abbrev->getAbbreviationDeclarationSet(AbbrOffset); in extractImpl() 101 return Abbrevs != nullptr; in extractImpl() 133 Abbrevs = nullptr; in clear()
|
/external/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 451 template <typename T> void emitDwarfAbbrevs(const T &Abbrevs) const { in emitDwarfAbbrevs() argument 453 for (const auto &Abbrev : Abbrevs) in emitDwarfAbbrevs()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 125 const DWARFAbbreviationDeclarationSet *Abbrevs; variable 197 return Abbrevs; in getAbbreviations()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 523 void emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs); 690 const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs) { in emitAbbrevs() argument 692 Asm->emitDwarfAbbrevs(Abbrevs); in emitAbbrevs()
|