Searched refs:Abbrevs (Results 1 – 11 of 11) sorted by relevance
/external/clang/lib/Frontend/ |
D | SerializedDiagnosticPrinter.cpp | 35 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in __anon285e79a00111::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() 273 AbbreviationMap Abbrevs; member 403 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record, in getEmitFile() 414 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE), in EmitCharSourceRange() 449 AbbreviationMap &Abbrevs = State->Abbrevs; in EmitBlockInfoBlock() local 460 Abbrevs.set(RECORD_VERSION, Stream.EmitBlockInfoAbbrev(BLOCK_META, Abbrev)); in EmitBlockInfoBlock() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DIEHash.cpp | 35 const DIEAbbrev &Abbrevs = Die.getAbbrev(); in getDIEStringAttr() local 40 if (Abbrevs.getData()[i].getAttribute() == Attr) { in getDIEStringAttr() 127 const DIEAbbrev &Abbrevs = Die.getAbbrev(); in collectAttributes() local 132 Attrs.NAME.Desc = &Abbrevs.getData()[i]; \ in collectAttributes() 137 << dwarf::AttributeString(Abbrevs.getData()[i].getAttribute()) in collectAttributes() 139 switch (Abbrevs.getData()[i].getAttribute()) { in collectAttributes()
|
D | AsmPrinterDwarf.cpp | 288 AsmPrinter::emitDwarfAbbrevs(const std::vector<DIEAbbrev *>& Abbrevs) const { in emitDwarfAbbrevs() 290 for (const DIEAbbrev *Abbrev : Abbrevs) { in emitDwarfAbbrevs()
|
D | DIE.cpp | 133 const DIEAbbrev &Abbrevs = getAbbrev(); in findAttribute() local 138 if (Abbrevs.getData()[i].getAttribute() == Attribute) in findAttribute()
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 59 std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>> Abbrevs; member 224 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(), in EnterSubblock() 225 Info->Abbrevs.end()); in EnterSubblock() 521 Info.Abbrevs.push_back(Abbv); in EmitBlockInfoAbbrev() 523 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() 306 CurBlockInfo->Abbrevs.push_back(std::move(CurAbbrevs.back())); in ReadBlockInfoBlock()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 81 Abbrevs = Abbrev->getAbbreviationDeclarationSet(AbbrOffset); in extractImpl() 82 if (Abbrevs == nullptr) in extractImpl() 117 Abbrevs = nullptr; in clear()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 121 const DWARFAbbreviationDeclarationSet *Abbrevs; variable 189 return Abbrevs; in getAbbreviations()
|
/external/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 439 void emitDwarfAbbrevs(const std::vector<DIEAbbrev *>& Abbrevs) const;
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 424 void emitAbbrevs(const std::vector<DIEAbbrev *> &Abbrevs); 574 void DwarfStreamer::emitAbbrevs(const std::vector<DIEAbbrev *> &Abbrevs) { in emitAbbrevs() argument 576 Asm->emitDwarfAbbrevs(Abbrevs); in emitAbbrevs()
|