/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
D | BitstreamRemarkSerializer.cpp | 55 auto Abbrev = std::make_shared<BitCodeAbbrev>(); in setupMetaBlockInfo() local 56 Abbrev->Add(BitCodeAbbrevOp(RECORD_META_CONTAINER_INFO)); in setupMetaBlockInfo() 57 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Version. in setupMetaBlockInfo() 58 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Type. in setupMetaBlockInfo() 60 Bitstream.EmitBlockInfoAbbrev(META_BLOCK_ID, Abbrev); in setupMetaBlockInfo() 67 auto Abbrev = std::make_shared<BitCodeAbbrev>(); in setupMetaRemarkVersion() local 68 Abbrev->Add(BitCodeAbbrevOp(RECORD_META_REMARK_VERSION)); in setupMetaRemarkVersion() 69 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Version. in setupMetaRemarkVersion() 71 Bitstream.EmitBlockInfoAbbrev(META_BLOCK_ID, Abbrev); in setupMetaRemarkVersion() 86 auto Abbrev = std::make_shared<BitCodeAbbrev>(); in setupMetaStrTab() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/ |
D | NaClBitCodes.cpp | 68 const NaClBitCodeAbbrev *Abbrev, unsigned &Index) { in PrintExpression() argument 71 if (Index >= Abbrev->getNumOperandInfos()) in PrintExpression() 74 const NaClBitCodeAbbrevOp &Op = Abbrev->getOperandInfo(Index); in PrintExpression() 82 PrintExpression(Stream, Abbrev, Index); in PrintExpression() 101 NaClBitCodeAbbrev *Abbrev = new NaClBitCodeAbbrev(); in Simplify() local 109 while (Op.isArrayOp() && !Abbrev->OperandList.empty() && in Simplify() 110 Abbrev->OperandList.back() == OperandList[i + 1]) { in Simplify() 111 Abbrev->OperandList.pop_back(); in Simplify() 113 Abbrev->OperandList.push_back(Op); in Simplify() 115 return Abbrev; in Simplify()
|
D | NaClBitcodeParser.cpp | 70 void NaClBitcodeParserListener::ProcessAbbreviation(NaClBitCodeAbbrev *Abbrev, in ProcessAbbreviation() argument 78 Abbrev, IsLocal); in ProcessAbbreviation()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/ |
D | BitstreamWriter.h | 296 void EmitRecordWithAbbrevImpl(unsigned Abbrev, ArrayRef<uintty> Vals, in EmitRecordWithAbbrevImpl() argument 300 unsigned AbbrevNo = Abbrev-bitc::FIRST_APPLICATION_ABBREV; in EmitRecordWithAbbrevImpl() 304 EmitCode(Abbrev); in EmitRecordWithAbbrevImpl() 410 void EmitRecord(unsigned Code, const Container &Vals, unsigned Abbrev = 0) { 411 if (!Abbrev) { 423 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), StringRef(), Code); 430 void EmitRecordWithAbbrev(unsigned Abbrev, const Container &Vals) { in EmitRecordWithAbbrev() argument 431 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), StringRef(), None); in EmitRecordWithAbbrev() 440 void EmitRecordWithBlob(unsigned Abbrev, const Container &Vals, in EmitRecordWithBlob() argument 442 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), Blob, None); in EmitRecordWithBlob() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.h | 267 struct Abbrev { struct 272 Abbrev(uint32_t Code, dwarf::Tag Tag, in Abbrev() function 282 const Abbrev *Abbr; 284 Entry(const NameIndex &NameIdx, const Abbrev &Abbr); 309 const Abbrev &getAbbrev() const { return *Abbr; } in getAbbrev() 334 static Abbrev getEmptyKey(); 335 static Abbrev getTombstoneKey(); 339 static unsigned getHashValue(const Abbrev &Abbr) { in getHashValue() 342 static bool isEqual(uint32_t LHS, const Abbrev &RHS) { in isEqual() 345 static bool isEqual(const Abbrev &LHS, const Abbrev &RHS) { in isEqual() [all …]
|
D | DWARFVerifier.h | 118 unsigned verifyAbbrevSection(const DWARFDebugAbbrev *Abbrev); 262 const DWARFDebugNames::Abbrev &Abbr,
|
D | DWARFContext.h | 63 std::unique_ptr<DWARFDebugAbbrev> Abbrev; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 44 void MappingTraits<DWARFYAML::Abbrev>::mapping(IO &IO, in mapping() 45 DWARFYAML::Abbrev &Abbrev) { in mapping() argument 46 IO.mapRequired("Code", Abbrev.Code); in mapping() 47 IO.mapRequired("Tag", Abbrev.Tag); in mapping() 48 IO.mapRequired("Children", Abbrev.Children); in mapping() 49 IO.mapRequired("Attributes", Abbrev.Attributes); in mapping()
|
D | DWARFVisitor.cpp | 55 auto &Abbrev = DebugInfo.AbbrevDecls[Entry.AbbrCode - FirstAbbrevCode]; in traverseDebugInfo() local 57 auto AbbrForm = Abbrev.Attributes.begin(); in traverseDebugInfo() 59 FormVal != Entry.Values.end() && AbbrForm != Abbrev.Attributes.end(); in traverseDebugInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 291 unsigned Abbrev); 294 unsigned &Abbrev); 297 SmallVectorImpl<uint64_t> &Record, unsigned &Abbrev); 299 unsigned Abbrev); 301 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev); 303 unsigned Abbrev); 305 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev); 307 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev); 310 unsigned Abbrev); 312 unsigned Abbrev); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DIE.cpp | 142 for (DIEAbbrev *Abbrev : Abbreviations) in ~DIEAbbrevSet() 143 Abbrev->~DIEAbbrev(); in ~DIEAbbrevSet() 149 DIEAbbrev Abbrev = Die.generateAbbrev(); in uniqueAbbreviation() local 150 Abbrev.Profile(ID); in uniqueAbbreviation() 160 DIEAbbrev *New = new (Alloc) DIEAbbrev(std::move(Abbrev)); in uniqueAbbreviation() 187 DIEAbbrev Abbrev(Tag, hasChildren()); in generateAbbrev() local 190 Abbrev.AddImplicitConstAttribute(V.getAttribute(), in generateAbbrev() 193 Abbrev.AddAttribute(V.getAttribute(), V.getForm()); in generateAbbrev() 194 return Abbrev; in generateAbbrev() 282 const DIEAbbrev &Abbrev = AbbrevSet.uniqueAbbreviation(*this); in computeOffsetsAndAbbrevs() local [all …]
|
D | AsmPrinterDwarf.cpp | 287 void AsmPrinter::emitDwarfAbbrev(const DIEAbbrev &Abbrev) const { in emitDwarfAbbrev() 289 EmitULEB128(Abbrev.getNumber(), "Abbreviation Code"); in emitDwarfAbbrev() 292 Abbrev.Emit(this); in emitDwarfAbbrev()
|
D | AccelTable.cpp | 457 for (const auto &Abbrev : Abbreviations) { in emitAbbrevs() local 459 assert(Abbrev.first != 0); in emitAbbrevs() 460 Asm->EmitULEB128(Abbrev.first); in emitAbbrevs() 461 Asm->OutStreamer->AddComment(dwarf::TagString(Abbrev.first)); in emitAbbrevs() 462 Asm->EmitULEB128(Abbrev.first); in emitAbbrevs() 463 for (const auto &AttrEnc : Abbrev.second) { in emitAbbrevs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 53 struct Abbrev { struct 145 std::vector<Abbrev> AbbrevDecls; 165 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::Abbrev) in LLVM_YAML_IS_SEQUENCE_VECTOR() argument 183 template <> struct MappingTraits<DWARFYAML::Abbrev> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 184 static void mapping(IO &IO, DWARFYAML::Abbrev &Abbrev); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/third_party/node/deps/npm/node_modules/abbrev/ |
D | README.md | 3 Just like [ruby's Abbrev](http://apidock.com/ruby/Abbrev).
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFVerifier.cpp | 247 unsigned DWARFVerifier::verifyAbbrevSection(const DWARFDebugAbbrev *Abbrev) { in verifyAbbrevSection() argument 249 if (Abbrev) { in verifyAbbrevSection() 251 Abbrev->getAbbreviationDeclarationSet(0); in verifyAbbrevSection() 1077 const DWARFDebugNames::NameIndex &NI, const DWARFDebugNames::Abbrev &Abbr, in verifyNameIndexAttribute() 1144 for (const auto &Abbrev : NI.getAbbrevs()) { in verifyNameIndexAbbrevs() local 1145 StringRef TagName = dwarf::TagString(Abbrev.Tag); in verifyNameIndexAbbrevs() 1149 NI.getUnitOffset(), Abbrev.Code, Abbrev.Tag); in verifyNameIndexAbbrevs() 1152 for (const auto &AttrEnc : Abbrev.Attributes) { in verifyNameIndexAbbrevs() 1156 NI.getUnitOffset(), Abbrev.Code, AttrEnc.Index); in verifyNameIndexAbbrevs() 1160 NumErrors += verifyNameIndexAttribute(NI, Abbrev, AttrEnc); in verifyNameIndexAbbrevs() [all …]
|
D | DWARFAcceleratorTable.cpp | 407 void DWARFDebugNames::Abbrev::dump(ScopedPrinter &W) const { in dump() 423 static DWARFDebugNames::Abbrev sentinelAbbrev() { in sentinelAbbrev() 424 return DWARFDebugNames::Abbrev(0, dwarf::Tag(0), {}); in sentinelAbbrev() 427 static bool isSentinel(const DWARFDebugNames::Abbrev &Abbr) { in isSentinel() 431 DWARFDebugNames::Abbrev DWARFDebugNames::AbbrevMapInfo::getEmptyKey() { in getEmptyKey() 435 DWARFDebugNames::Abbrev DWARFDebugNames::AbbrevMapInfo::getTombstoneKey() { in getTombstoneKey() 436 return DWARFDebugNames::Abbrev(~0, dwarf::Tag(0), {}); in getTombstoneKey() 465 Expected<DWARFDebugNames::Abbrev> 480 return Abbrev(Code, dwarf::Tag(Tag), std::move(*AttrEncOr)); in extractAbbrev() 522 DWARFDebugNames::Entry::Entry(const NameIndex &NameIdx, const Abbrev &Abbr) in Entry()
|
D | DWARFContext.cpp | 730 if (Abbrev) in getDebugAbbrev() 731 return Abbrev.get(); in getDebugAbbrev() 735 Abbrev.reset(new DWARFDebugAbbrev()); in getDebugAbbrev() 736 Abbrev->extract(abbrData); in getDebugAbbrev() 737 return Abbrev.get(); in getDebugAbbrev()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
D | NaClBitCodes.h | 300 int Compare(const NaClBitCodeAbbrev &Abbrev) const { 303 size_t AbbrevOperandListSize = Abbrev.OperandList.size(); 311 if (int Diff = OperandList[I].Compare(Abbrev.OperandList[I]))
|
D | NaClBitstreamReader.h | 450 void setCodeAbbrev(NaClBitcodeSelectorAbbrev &Abbrev) { in setCodeAbbrev() argument 451 CodeAbbrev = Abbrev; in setCodeAbbrev()
|
D | NaClBitcodeParser.h | 358 virtual void ProcessAbbreviation(NaClBitCodeAbbrev *Abbrev, bool IsLocal);
|
/third_party/cJSON/tests/inputs/ |
D | test1 | 12 "Abbrev": "ISO 8879:1986",
|
D | test1.expected | 12 "Abbrev": "ISO 8879:1986",
|
/third_party/cJSON/fuzzing/inputs/ |
D | test1 | 12 "Abbrev": "ISO 8879:1986",
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 594 for (const auto &Abbrev : Abbrevs) in emitDwarfAbbrevs() local 595 emitDwarfAbbrev(*Abbrev); in emitDwarfAbbrevs() 601 void emitDwarfAbbrev(const DIEAbbrev &Abbrev) const;
|