Home
last modified time | relevance | path

Searched refs:NameIndex (Results 1 – 24 of 24) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFAcceleratorTable.cpp440 DWARFDebugNames::NameIndex::extractAttributeEncoding(uint32_t *Offset) { in extractAttributeEncoding()
452 DWARFDebugNames::NameIndex::extractAttributeEncodings(uint32_t *Offset) { in extractAttributeEncodings()
466 DWARFDebugNames::NameIndex::extractAbbrev(uint32_t *Offset) { in extractAbbrev()
483 Error DWARFDebugNames::NameIndex::extract() { in extract()
523 DWARFDebugNames::Entry::Entry(const NameIndex &NameIdx, const Abbrev &Abbr) in Entry()
581 uint32_t DWARFDebugNames::NameIndex::getCUOffset(uint32_t CU) const { in getCUOffset()
587 uint32_t DWARFDebugNames::NameIndex::getLocalTUOffset(uint32_t TU) const { in getLocalTUOffset()
593 uint64_t DWARFDebugNames::NameIndex::getForeignTUSignature(uint32_t TU) const { in getForeignTUSignature()
600 DWARFDebugNames::NameIndex::getEntry(uint32_t *Offset) const { in getEntry()
627 DWARFDebugNames::NameIndex::getNameTableEntry(uint32_t Index) const { in getNameTableEntry()
[all …]
DDWARFVerifier.cpp798 for (const DWARFDebugNames::NameIndex &NI : AccelTable) { in verifyDebugNamesCULists()
836 DWARFVerifier::verifyNameIndexBuckets(const DWARFDebugNames::NameIndex &NI, in verifyNameIndexBuckets()
948 const DWARFDebugNames::NameIndex &NI, const DWARFDebugNames::Abbrev &Abbr, in verifyNameIndexAttribute()
1006 DWARFVerifier::verifyNameIndexAbbrevs(const DWARFDebugNames::NameIndex &NI) { in verifyNameIndexAbbrevs()
1067 const DWARFDebugNames::NameIndex &NI, in verifyNameIndexEntries()
1186 const DWARFDie &Die, const DWARFDebugNames::NameIndex &NI) { in verifyNameIndexCompleteness()
1319 if (const DWARFDebugNames::NameIndex *NI = in verifyDebugNames()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFAcceleratorTable.h241 class NameIndex;
282 const NameIndex *NameIdx;
285 Entry(const NameIndex &NameIdx, const Abbrev &Abbr);
318 friend class NameIndex; variable
386 class NameIndex {
418 NameIndex(const DWARFDebugNames &Section, uint32_t Base) in NameIndex() function
476 const NameIndex *CurrentIndex = nullptr;
504 ValueIterator(const NameIndex &NI, StringRef Key);
531 const NameIndex *CurrentIndex;
550 NameIterator(const NameIndex *CurrentIndex, uint32_t CurrentName) in NameIterator()
[all …]
DDWARFVerifier.h238 unsigned verifyNameIndexBuckets(const DWARFDebugNames::NameIndex &NI,
240 unsigned verifyNameIndexAbbrevs(const DWARFDebugNames::NameIndex &NI);
241 unsigned verifyNameIndexAttribute(const DWARFDebugNames::NameIndex &NI,
244 unsigned verifyNameIndexEntries(const DWARFDebugNames::NameIndex &NI,
247 const DWARFDebugNames::NameIndex &NI);
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dwarfdump/X86/
Ddebug-names-verify-abbrev-forms.s4 # CHECK: error: NameIndex @ 0x0: Abbreviation 0x2: DW_IDX_compile_unit uses an unexpected form DW_F…
5 # CHECK: error: NameIndex @ 0x0: Abbreviation 0x2: DW_IDX_type_unit uses an unexpected form DW_FORM…
6 # CHECK: error: NameIndex @ 0x0: Abbreviation 0x2: DW_IDX_type_hash uses an unexpected form DW_FORM…
7 # CHECK: warning: NameIndex @ 0x0: Abbreviation 0x2 contains an unknown index attribute: DW_IDX_unk…
8 # CHECK: error: NameIndex @ 0x0: Abbreviation 0x4 contains multiple DW_IDX_die_offset attributes.
9 # CHECK: NameIndex @ 0x0: Abbreviation 0x1: DW_IDX_die_offset uses an unknown form: DW_FORM_unknown…
10 # CHECK: warning: NameIndex @ 0x0: Abbreviation 0x3 references an unknown tag: DW_TAG_unknown_8080.
11 # CHECK: error: NameIndex @ 0x0: Abbreviation 0x5 has no DW_IDX_die_offset attribute.
12 # CHECK: error: NameIndex @ 0x55: Indexing multiple compile units and abbreviation 0x1 has no DW_ID…
/external/deqp/scripts/khr_util/
Dregistry.py202 class NameIndex(Index): class
340 params=NameIndex(map(parseParam, eCmd.findall('param'))))
352 enums=NameIndex(enums[name] for name in eGroup.xpath('enum/@name')
356 return NameIndex(sorted(items, key=lambda item: item.location))
358 groups = NameIndex(createMissing=createGroup, kind="group")
359 types = NameIndex(map(createType, spec.types),
361 enums = NameIndex(map(createEnum, spec.enums),
363 commands = NameIndex(map(createCommand, spec.commands),
/external/tensorflow/tensorflow/core/graph/
Dsubgraph.cc47 typedef std::unordered_map<StringPiece, Node*, StringPieceHasher> NameIndex; typedef
60 NameIndex* name_index, DataTypeVector* out_feed_types) { in FeedInputs()
125 NameIndex* name_index, std::vector<Node*>* out_fetch_nodes, in FetchOutputs()
178 const NameIndex& name_index, in AddNodeToTargets()
191 Status PruneForTargets(Graph* g, const NameIndex& name_index, in PruneForTargets()
368 NameIndex name_index; in RewriteGraphForExecution()
/external/llvm/include/llvm/DebugInfo/CodeView/
DModuleSubstreamVisitor.h24 support::ulittle32_t NameIndex; member
53 Item.NameIndex = BlockHeader->NameIndex; in operator()
DModuleSubstream.h38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename. member
/external/llvm/lib/DebugInfo/PDB/Raw/
DNameMap.cpp123 uint32_t NameIndex; in load() local
124 if (auto EC = Stream.readInteger(NameIndex)) in load()
142 Mapping.insert({Str, NameIndex}); in load()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DDebugLinesSubsection.cpp44 Item.NameIndex = BlockHeader->NameIndex; in operator ()()
123 BlockHeader.NameIndex = B.ChecksumBufferOffset; in commit()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugLinesSubsection.h41 support::ulittle32_t NameIndex; // Offset of FileChecksum entry in File member
66 support::ulittle32_t NameIndex; member
/external/swiftshader/third_party/subzero/src/
DIceConverter.cpp813 uint32_t NameIndex = 0; in nameUnnamedGlobalVariables() local
816 V->setName(createUnnamedName(GlobalPrefix, NameIndex)); in nameUnnamedGlobalVariables()
817 ++NameIndex; in nameUnnamedGlobalVariables()
828 uint32_t NameIndex = 0; in nameUnnamedFunctions() local
831 F.setName(createUnnamedName(FunctionPrefix, NameIndex)); in nameUnnamedFunctions()
832 ++NameIndex; in nameUnnamedFunctions()
DPNaClTranslator.cpp475 NaClBcIndexSize_t &NameIndex) { in installDeclarationName() argument
488 Decl->setName(Ctx, Translator.createUnnamedName(Prefix, NameIndex)); in installDeclarationName()
492 ++NameIndex; in installDeclarationName()
501 NaClBcIndexSize_t NameIndex = 0; in installGlobalVarNames() local
503 installDeclarationName(Var, GlobalPrefix, "global", NameIndex); in installGlobalVarNames()
513 NaClBcIndexSize_t NameIndex = 0; in installFunctionNames() local
515 installDeclarationName(Func, FunctionPrefix, "function", NameIndex); in installFunctionNames()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DPDBFileBuilder.h70 uint32_t NameIndex; member
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DPDBFileBuilder.cpp116 Desc.NameIndex = NI; in addInjectedSource()
185 Entry.FileNI = IS.NameIndex; in finalizeMsfLayout()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
DObject.cpp91 Shdr.sh_name = Sec.NameIndex; in writeShdr()
306 Sym->NameIndex = SymbolNames->findIndex(Sym->Name); in finalize()
350 Sym->st_name = Symbol->NameIndex; in visit()
1289 Section.NameIndex = Obj.SectionNames->findIndex(Section.Name); in finalize()
DObject.h249 uint64_t NameIndex = 0; variable
390 uint32_t NameIndex; member
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DDumpOutputStyle.cpp853 if (LastModi != Modi || LastNameIndex != Block.NameIndex) { in dumpLines()
855 LastNameIndex = Block.NameIndex; in dumpLines()
856 Strings.formatFromChecksumsOffset(P, Block.NameIndex); in dumpLines()
/external/llvm/tools/llvm-pdbdump/
DLLVMOutputStyle.cpp554 if (auto Result = getFileNameForOffset2(L.NameIndex)) in dumpDbiStream()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp592 auto EF = getFileName(Strings, Checksums, L.NameIndex); in fromCodeViewSubsection()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp663 unsigned NameIndex, Triple &TT);
1829 unsigned NameIndex, Triple &TT) { in recordValue() argument
1831 if (convertToString(Record, NameIndex, ValueName)) in recordValue()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp436 unsigned NameIndex, Triple &TT);
1867 unsigned NameIndex, Triple &TT) { in recordValue() argument
1869 if (convertToString(Record, NameIndex, ValueName)) in recordValue()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DCOFFDumper.cpp1095 printFileNameForOffset("Filename", Entry.NameIndex); in printCodeViewSymbolSection()