Home
last modified time | relevance | path

Searched refs:LocalTypeUnitCount (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp437 W.printNumber("Local TU count", LocalTypeUnitCount); in dump()
459 LocalTypeUnitCount = AS.getU32(C); in extract()
564 Offset += Hdr.LocalTypeUnitCount * SectionOffsetSize; in extract()
677 assert(TU < Hdr.LocalTypeUnitCount); in getLocalTUOffset()
688 SectionOffsetSize * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU; in getForeignTUSignature()
789 if (Hdr.LocalTypeUnitCount == 0) in dumpLocalTUs()
793 for (uint32_t TU = 0; TU < Hdr.LocalTypeUnitCount; ++TU) in dumpLocalTUs()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp192 uint32_t LocalTypeUnitCount = 0; member
200 Header(uint32_t CompUnitCount, uint32_t LocalTypeUnitCount, in Header()
203 : CompUnitCount(CompUnitCount), LocalTypeUnitCount(LocalTypeUnitCount), in Header()
388 Asm->emitInt32(LocalTypeUnitCount); in emit()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h387 uint32_t LocalTypeUnitCount; member
582 uint32_t getLocalTUCount() const { return Hdr.LocalTypeUnitCount; } in getLocalTUCount()