Home
last modified time | relevance | path

Searched refs:NameCount (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp440 W.printNumber("Name count", NameCount); in dump()
462 NameCount = AS.getU32(C); in extract()
566 Ret.HashesBase + (Hdr.BucketCount > 0 ? Hdr.NameCount * 4 : 0); in findDebugNamesOffsets()
567 Ret.EntryOffsetsBase = Ret.StringOffsetsBase + Hdr.NameCount * DwarfSize; in findDebugNamesOffsets()
569 Ret.EntryOffsetsBase + Hdr.NameCount * DwarfSize + Hdr.AbbrevTableSize; in findDebugNamesOffsets()
583 Offsets.EntryOffsetsBase + (Hdr.NameCount * SectionOffsetSize); in extract()
796 assert(0 < Index && Index <= Hdr.NameCount); in getNameTableEntry()
819 assert(0 < Index && Index <= Hdr.NameCount); in getHashArrayEntry()
905 if (Index > Hdr.NameCount) { in dumpBucket()
910 for (; Index <= Hdr.NameCount; ++Index) { in dumpBucket()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTable.cpp22 uint32_t PDBStringTable::getNameCount() const { return NameCount; } in getNameCount()
76 if (auto EC = Reader.readInteger(NameCount)) in readEpilogue()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBStringTable.h51 uint32_t NameCount = 0; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp183 uint32_t NameCount = 0; member
190 uint32_t NameCount) in Header()
193 NameCount(NameCount) {} in Header()
391 Asm->emitInt32(NameCount); in emit()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h398 uint32_t NameCount; member
662 uint32_t getNameCount() const { return Hdr.NameCount; } in getNameCount()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp697 uint32_t NameCount, uint32_t AbbrevSize, in emitDebugNamesHeader() argument
702 2 * sizeof(uint16_t) + sizeof(NameCount) + in emitDebugNamesHeader()
713 writeInteger(NameCount, OS, IsLittleEndian); in emitDebugNamesHeader()
/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp2858 nd.nameEntries.resize(nd.hdr.NameCount); in parseDebugNames()
2859 for (auto i : seq(nd.hdr.NameCount)) { in parseDebugNames()
3153 std::tie(entryPoolSize, hdr.NameCount) = computeEntryPool(inputChunks); in init()
3154 hdr.BucketCount = dwarf::getDebugNamesBucketCount(hdr.NameCount); in init()
3197 entryOffsets.resize_for_overwrite(hdr.NameCount); in DebugNamesSection()
3246 endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.NameCount); in writeTo()