Home
last modified time | relevance | path

Searched refs:TheU (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDDwarfFile.cpp33 for (const auto &TheU : CUs) in emitUnits() local
34 emitUnit(TheU.get(), UseOffsets); in emitUnits()
37 void DwarfFile::emitUnit(DwarfUnit *TheU, bool UseOffsets) { in emitUnit() argument
38 if (TheU->getCUNode()->isDebugDirectivesOnly()) in emitUnit()
41 MCSection *S = TheU->getSection(); in emitUnit()
48 if (llvm::empty(TheU->getUnitDie().values())) in emitUnit()
52 TheU->emitHeader(UseOffsets); in emitUnit()
53 Asm->emitDwarfDIE(TheU->getUnitDie()); in emitUnit()
55 if (MCSymbol *EndLabel = TheU->getEndLabel()) in emitUnit()
66 for (const auto &TheU : CUs) { in computeSizeAndOffsets() local
[all …]
HDDwarfFile.h120 unsigned computeSizeAndOffsetsForUnit(DwarfUnit *TheU);
130 void emitUnit(DwarfUnit *TheU, bool UseOffsets);
HDDwarfDebug.cpp2089 DwarfCompileUnit *TheU = NU.second; in emitDebugPubSections() local
2090 if (!TheU->hasDwarfPubSections()) in emitDebugPubSections()
2093 bool GnuStyle = TheU->getCUNode()->getNameTableKind() == in emitDebugPubSections()
2099 emitDebugPubSection(GnuStyle, "Names", TheU, TheU->getGlobalNames()); in emitDebugPubSections()
2104 emitDebugPubSection(GnuStyle, "Types", TheU, TheU->getGlobalTypes()); in emitDebugPubSections()
2117 DwarfCompileUnit *TheU, in emitDebugPubSection() argument
2119 if (auto *Skeleton = TheU->getSkeleton()) in emitDebugPubSection()
2120 TheU = Skeleton; in emitDebugPubSection()
2134 emitSectionReference(*TheU); in emitDebugPubSection()
2137 Asm->emitInt32(TheU->getLength()); in emitDebugPubSection()
[all …]
HDDwarfDebug.h494 DwarfCompileUnit *TheU,