Home
last modified time | relevance | path

Searched refs:MOFI (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFEmitterImpl.cpp59 MOFI.reset(TheTarget->createMCObjectFileInfo(*MC, /*PIC=*/false, false)); in init()
60 MC->setObjectFileInfo(MOFI.get()); in init()
127 MS->switchSection(MOFI->getDwarfAbbrevSection()); in emitAbbrevs()
133 MS->switchSection(MOFI->getDwarfInfoSection()); in emitCompileUnitHeader()
157 MS->switchSection(MOFI->getDwarfInfoSection()); in emitDIE()
168 Asm->OutStreamer->switchSection(MOFI->getDwarfDebugNamesSection()); in emitDebugNames()
186 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelNamespaceSection()); in emitAppleNamespaces()
194 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelNamesSection()); in emitAppleNames()
202 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelObjCSection()); in emitAppleObjc()
210 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelTypesSection()); in emitAppleTypes()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp80 MOFI.reset(TheTarget->createMCObjectFileInfo(*MC, /*PIC=*/false, false)); in init()
81 MC->setObjectFileInfo(MOFI.get()); in init()
156 MS->switchSection(MOFI->getDwarfInfoSection()); in switchToDebugInfoSection()
214 MS->switchSection(MOFI->getDwarfAbbrevSection()); in emitAbbrevs()
221 MS->switchSection(MOFI->getDwarfInfoSection()); in emitDIE()
295 Asm->OutStreamer->switchSection(MOFI->getDwarfStrSection()); in emitStrings()
313 Asm->OutStreamer->switchSection(MOFI->getDwarfStrOffSection()); in emitStringOffsets()
340 Asm->OutStreamer->switchSection(MOFI->getDwarfLineStrSection()); in emitLineStrings()
364 Asm->OutStreamer->switchSection(MOFI->getDwarfDebugNamesSection()); in emitDebugNames()
383 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelNamespaceSection()); in emitAppleNamespaces()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp1499 const MCObjectFileInfo *MOFI = Context.getObjectFileInfo(); in EmitCompactUnwind() local
1525 bool DwarfEHFrameOnly = (Encoding == MOFI->getCompactUnwindDwarfEHFrameOnly()); in EmitCompactUnwind()
1532 unsigned FDEEncoding = MOFI->getFDEEncoding(); in EmitCompactUnwind()
1578 const MCObjectFileInfo *MOFI = context.getObjectFileInfo(); in EmitCIE() local
1682 emitEncodingByte(Streamer, MOFI->getFDEEncoding()); in EmitCIE()
1710 const MCObjectFileInfo *MOFI = context.getObjectFileInfo(); in EmitFDE() local
1744 IsEH ? MOFI->getFDEEncoding() : (unsigned)dwarf::DW_EH_PE_absptr; in EmitFDE()
1834 const MCObjectFileInfo *MOFI = Context.getObjectFileInfo(); in Emit() local
1840 bool NeedsEHFrameSection = !MOFI->getSupportsCompactUnwindWithoutEHFrame(); in Emit()
1841 if (IsEH && MOFI->getCompactUnwindSection()) { in Emit()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DModuleSymbolTable.cpp110 std::unique_ptr<MCObjectFileInfo> MOFI( in initializeRecordStreamer() local
112 MOFI->setSDKVersion(M.getSDKVersion()); in initializeRecordStreamer()
113 MCCtx.setObjectFileInfo(MOFI.get()); in initializeRecordStreamer()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/
H A DDWARFEmitterImpl.cpp
H A DDWARFEmitterImpl.h
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVMCTargetDesc.cpp84 MCObjectFileInfo *MOFI = new RISCVMCObjectFileInfo(); in createRISCVMCObjectFileInfo() local
85 MOFI->initMCObjectFileInfo(Ctx, PIC, LargeCodeModel); in createRISCVMCObjectFileInfo()
86 return MOFI; in createRISCVMCObjectFileInfo()
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp490 std::unique_ptr<MCObjectFileInfo> MOFI( in ExecuteAssemblerImpl() local
493 MOFI->setDarwinTargetVariantTriple(*Opts.DarwinTargetVariantTriple); in ExecuteAssemblerImpl()
495 MOFI->setDarwinTargetVariantSDKVersion(Opts.DarwinTargetVariantSDKVersion); in ExecuteAssemblerImpl()
496 Ctx.setObjectFileInfo(MOFI.get()); in ExecuteAssemblerImpl()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp236 std::unique_ptr<MCObjectFileInfo> MOFI( in llvm_dwp_main() local
238 MC.setObjectFileInfo(MOFI.get()); in llvm_dwp_main()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h126 const MCObjectFileInfo *MOFI = nullptr; variable
410 void setObjectFileInfo(const MCObjectFileInfo *Mofi) { MOFI = Mofi; } in setObjectFileInfo()
416 const MCObjectFileInfo *getObjectFileInfo() const { return MOFI; } in getObjectFileInfo()
H A DTargetRegistry.h401 MCObjectFileInfo *MOFI = new MCObjectFileInfo();
402 MOFI->initMCObjectFileInfo(Ctx, PIC, LargeCodeModel);
403 return MOFI;
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp426 std::unique_ptr<MCObjectFileInfo> MOFI( in main() local
428 Ctx.setObjectFileInfo(MOFI.get()); in main()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFStreamer.h280 std::unique_ptr<MCObjectFileInfo> MOFI; variable
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp592 std::unique_ptr<llvm::MCObjectFileInfo> MOFI( in ParseMicrosoftAsmStatement() local
594 Ctx.setObjectFileInfo(MOFI.get()); in ParseMicrosoftAsmStatement()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp321 const MCObjectFileInfo *MOFI = Parser.getContext().getObjectFileInfo(); in RISCVAsmParser() local
322 ParserOptions.IsPicEnabled = MOFI->isPositionIndependent(); in RISCVAsmParser()