Lines Matching refs:TU
594 uint64_t DWARFDebugNames::NameIndex::getLocalTUOffset(uint32_t TU) const { in getLocalTUOffset()
595 assert(TU < Hdr.LocalTypeUnitCount); in getLocalTUOffset()
597 uint64_t Offset = CUsBase + SectionOffsetSize * (Hdr.CompUnitCount + TU); in getLocalTUOffset()
601 uint64_t DWARFDebugNames::NameIndex::getForeignTUSignature(uint32_t TU) const { in getForeignTUSignature()
602 assert(TU < Hdr.ForeignTypeUnitCount); in getForeignTUSignature()
606 SectionOffsetSize * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU; in getForeignTUSignature()
711 for (uint32_t TU = 0; TU < Hdr.LocalTypeUnitCount; ++TU) in dumpLocalTUs() local
712 W.startLine() << format("LocalTU[%u]: 0x%08" PRIx64 "\n", TU, in dumpLocalTUs()
713 getLocalTUOffset(TU)); in dumpLocalTUs()
721 for (uint32_t TU = 0; TU < Hdr.ForeignTypeUnitCount; ++TU) { in dumpForeignTUs() local
722 W.startLine() << format("ForeignTU[%u]: 0x%016" PRIx64 "\n", TU, in dumpForeignTUs()
723 getForeignTUSignature(TU)); in dumpForeignTUs()