Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp194 uint32_t CompUnitCount; member
203 Header(uint32_t CompUnitCount, uint32_t BucketCount, uint32_t NameCount) in Header()
204 : CompUnitCount(CompUnitCount), BucketCount(BucketCount), in Header()
363 assert(CompUnitCount > 0 && "Index must have at least one CU."); in emit()
373 Asm->emitInt32(CompUnitCount); in emit()
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp369 W.printNumber("CU count", CompUnitCount); in dump()
391 CompUnitCount = AS.getU32(C); in extract()
496 Offset += Hdr.CompUnitCount * SectionOffsetSize; in extract()
587 assert(CU < Hdr.CompUnitCount); in getCUOffset()
596 uint64_t Offset = CUsBase + SectionOffsetSize * (Hdr.CompUnitCount + TU); in getLocalTUOffset()
605 SectionOffsetSize * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU; in getForeignTUSignature()
701 for (uint32_t CU = 0; CU < Hdr.CompUnitCount; ++CU) in dumpCUs()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h242 uint32_t CompUnitCount; member
425 uint32_t getCUCount() const { return Hdr.CompUnitCount; } in getCUCount()