/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | DWARFEmitterImpl.cpp | 59 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 D | DWARFStreamer.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
H A D | DWARFStreamer.cpp | 80 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 D | MCDwarf.cpp | 1499 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 D | ModuleSymbolTable.cpp | 110 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 D | DWARFEmitterImpl.cpp |
|
H A D | DWARFEmitterImpl.h |
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVMCTargetDesc.cpp | 84 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 D | cc1as_main.cpp | 490 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 D | llvm-dwp.cpp | 236 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 D | MCContext.h | 126 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 D | TargetRegistry.h | 401 MCObjectFileInfo *MOFI = new MCObjectFileInfo(); 402 MOFI->initMCObjectFileInfo(Ctx, PIC, LargeCodeModel); 403 return MOFI;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/ |
H A D | llvm-mc.cpp | 426 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 D | DWARFStreamer.h |
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/ |
H A D | DWARFStreamer.h | 280 std::unique_ptr<MCObjectFileInfo> MOFI; variable
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseStmtAsm.cpp | 592 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 D | RISCVAsmParser.cpp | 321 const MCObjectFileInfo *MOFI = Parser.getContext().getObjectFileInfo(); in RISCVAsmParser() local 322 ParserOptions.IsPicEnabled = MOFI->isPositionIndependent(); in RISCVAsmParser()
|