Lines Matching refs:TU
751 uint64_t DWARFDebugNames::NameIndex::getLocalTUOffset(uint32_t TU) const { in getLocalTUOffset()
752 assert(TU < Hdr.LocalTypeUnitCount); in getLocalTUOffset()
755 Offsets.CUsBase + SectionOffsetSize * (Hdr.CompUnitCount + TU); in getLocalTUOffset()
759 uint64_t DWARFDebugNames::NameIndex::getForeignTUSignature(uint32_t TU) const { in getForeignTUSignature()
760 assert(TU < Hdr.ForeignTypeUnitCount); in getForeignTUSignature()
764 SectionOffsetSize * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU; in getForeignTUSignature()
869 for (uint32_t TU = 0; TU < Hdr.LocalTypeUnitCount; ++TU) in dumpLocalTUs() local
870 W.startLine() << format("LocalTU[%u]: 0x%08" PRIx64 "\n", TU, in dumpLocalTUs()
871 getLocalTUOffset(TU)); in dumpLocalTUs()
879 for (uint32_t TU = 0; TU < Hdr.ForeignTypeUnitCount; ++TU) { in dumpForeignTUs() local
880 W.startLine() << format("ForeignTU[%u]: 0x%016" PRIx64 "\n", TU, in dumpForeignTUs()
881 getForeignTUSignature(TU)); in dumpForeignTUs()