Searched refs:TheU (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfFile.cpp | 30 for (const auto &TheU : CUs) in emitUnits() local 31 emitUnit(TheU.get(), UseOffsets); in emitUnits() 34 void DwarfFile::emitUnit(DwarfUnit *TheU, bool UseOffsets) { in emitUnit() argument 35 if (TheU->getCUNode()->isDebugDirectivesOnly()) in emitUnit() 38 MCSection *S = TheU->getSection(); in emitUnit() 45 if (TheU->getUnitDie().values().empty()) in emitUnit() 49 TheU->emitHeader(UseOffsets); in emitUnit() 50 Asm->emitDwarfDIE(TheU->getUnitDie()); in emitUnit() 52 if (MCSymbol *EndLabel = TheU->getEndLabel()) in emitUnit() 63 for (const auto &TheU in computeSizeAndOffsets() local 80 computeSizeAndOffsetsForUnit(DwarfUnit * TheU) computeSizeAndOffsetsForUnit() argument [all...] |
H A D | DwarfFile.h | 122 unsigned computeSizeAndOffsetsForUnit(DwarfUnit *TheU); 132 void emitUnit(DwarfUnit *TheU, bool UseOffsets);
|
H A D | DwarfDebug.cpp | 2506 DwarfCompileUnit *TheU = NU.second; in emitDebugPubSections() local 2507 if (!TheU->hasDwarfPubSections()) in emitDebugPubSections() 2510 bool GnuStyle = TheU->getCUNode()->getNameTableKind() == in emitDebugPubSections() 2516 emitDebugPubSection(GnuStyle, "Names", TheU, TheU->getGlobalNames()); in emitDebugPubSections() 2521 emitDebugPubSection(GnuStyle, "Types", TheU, TheU->getGlobalTypes()); in emitDebugPubSections() 2534 DwarfCompileUnit *TheU, in emitDebugPubSection() argument 2536 if (auto *Skeleton = TheU->getSkeleton()) in emitDebugPubSection() 2537 TheU = Skeleton; in emitDebugPubSection() 2547 emitSectionReference(*TheU); in emitDebugPubSection() 2550 Asm->emitDwarfLengthOrOffset(TheU->getLength()); in emitDebugPubSection() [all …]
|
H A D | DwarfDebug.h | 596 DwarfCompileUnit *TheU,
|