Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp198 uint32_t CompUnitCount; member
207 Header(uint32_t CompUnitCount, uint32_t BucketCount, uint32_t NameCount) in Header()
208 : CompUnitCount(CompUnitCount), BucketCount(BucketCount), in Header()
369 assert(CompUnitCount > 0 && "Index must have at least one CU."); in emit()
381 Asm->emitInt32(CompUnitCount); in emit()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp371 W.printNumber("CU count", CompUnitCount); in dump()
390 CompUnitCount = AS.getU32(Offset); in extract()
491 Offset += Hdr.CompUnitCount * 4; in extract()
581 assert(CU < Hdr.CompUnitCount); in getCUOffset()
588 uint32_t Offset = CUsBase + Hdr.CompUnitCount * 4; in getLocalTUOffset()
594 uint32_t Offset = CUsBase + (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) * 4; in getForeignTUSignature()
686 for (uint32_t CU = 0; CU < Hdr.CompUnitCount; ++CU) in dumpCUs()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h231 uint32_t CompUnitCount; member
423 uint32_t getCUCount() const { return Hdr.CompUnitCount; } in getCUCount()