Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp191 uint32_t CompUnitCount; member
200 Header(uint32_t CompUnitCount, uint32_t LocalTypeUnitCount, in Header()
203 : CompUnitCount(CompUnitCount), LocalTypeUnitCount(LocalTypeUnitCount), in Header()
376 assert(CompUnitCount > 0 && "Index must have at least one CU."); in emit()
386 Asm->emitInt32(CompUnitCount); in emit()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp436 W.printNumber("CU count", CompUnitCount); in dump()
458 CompUnitCount = AS.getU32(C); in extract()
563 Offset += Hdr.CompUnitCount * SectionOffsetSize; in extract()
670 assert(CU < Hdr.CompUnitCount); in getCUOffset()
679 uint64_t Offset = CUsBase + SectionOffsetSize * (Hdr.CompUnitCount + TU); in getLocalTUOffset()
688 SectionOffsetSize * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU; in getForeignTUSignature()
784 for (uint32_t CU = 0; CU < Hdr.CompUnitCount; ++CU) in dumpCUs()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h386 uint32_t CompUnitCount; member
578 uint32_t getCUCount() const { return Hdr.CompUnitCount; } in getCUCount()