Home
last modified time | relevance | path

Searched refs:getCOFFSection (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp599 Ctx->getCOFFSection(".eh_frame", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in initCOFFMCObjectFileInfo()
608 BSSSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
611 TextSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
616 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
620 Ctx->getCOFFSection(".rdata", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in initCOFFMCObjectFileInfo()
628 LSDASection = Ctx->getCOFFSection(".gcc_except_table", in initCOFFMCObjectFileInfo()
635 Ctx->getCOFFSection(".impcall", COFF::IMAGE_SCN_LNK_INFO); in initCOFFMCObjectFileInfo()
640 Ctx->getCOFFSection(".retplne", COFF::IMAGE_SCN_LNK_INFO); in initCOFFMCObjectFileInfo()
645 Ctx->getCOFFSection(".debug$S", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo()
649 Ctx->getCOFFSection(".debug$T", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo()
[all …]
H A DMCContext.cpp779 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext
814 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext
816 return getCOFFSection(Section, Characteristics, "", 0, in getCOFFSection()
832 return getCOFFSection(Sec->getName(), Characteristics, KeySym->getName(), in getAssociativeCOFFSection()
836 return getCOFFSection(Sec->getName(), Characteristics, "", 0, UniqueID); in getAssociativeCOFFSection()
H A DMCWinCOFFStreamer.cpp438 switchSection(Asm.getContext().getCOFFSection(".llvm_addrsig", in finishImpl()
446 switchSection(Asm.getContext().getCOFFSection(".llvm.call-graph-profile", in finishImpl()
H A DWinCOFFObjectWriter.cpp1070 auto *Sec = getContext().getCOFFSection(".llvm_addrsig", in writeObject()
1093 auto *Sec = getContext().getCOFFSection(".llvm.call-graph-profile", in writeObject()
H A DMCStreamer.cpp858 return Context.getCOFFSection(SectionName, in getWinCFISection()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp226 ResolvedSection = Ctx.COFF.getCOFFSection(**SI); in resolveRelocation()
237 return COFF.getCOFFSection(Section); in getSectionContaining()
425 const coff_section *PData = Ctx.COFF.getCOFFSection(Section); in printData()
440 printRuntimeFunction(Ctx, Ctx.COFF.getCOFFSection(Section), in printData()
H A DCOFFDumper.cpp206 Sec = Obj->getCOFFSection(SR); in COFFObjectDumpDelegate()
333 const coff_section *Section = Obj->getCOFFSection(Sec); in printBinaryBlockWithRelocs()
647 const coff_section *Section = Obj->getCOFFSection(S); in cacheRelocations()
1270 if (std::error_code EC = resolveSymbolName(Obj->getCOFFSection(Section), in printCodeViewSymbolSection()
1297 resolveSymbolName(Obj->getCOFFSection(Section), SectionContents, in printCodeViewSymbolSection()
1559 const coff_section *Section = Obj->getCOFFSection(Sec); in printSectionHeaders()
2012 Obj->getCOFFSection(S)->PointerToRawData); in printCOFFResources()
H A DARMWinEHPrinter.cpp1085 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord()
1512 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData()
1528 COFF.getSectionName(COFF.getCOFFSection(Section)); in dumpProcedureData()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp228 MCSection *Section = getContext().getCOFFSection(SectionName, Characteristics, in parseSectionSwitch()
361 MCSection *Section = getContext().getCOFFSection(SectionName, Flags, "", in parseDirectiveSegment()
392 getStreamer().switchSection(getContext().getCOFFSection( in parseDirectiveIncludelib()
H A DCOFFAsmParser.cpp335 getStreamer().switchSection(getContext().getCOFFSection( in parseSectionSwitch()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h42 .getCOFFSection(*Section) in isThumbFunc()
71 const coff_section *CoffSec = COFFObjPtr->getCOFFSection(Sec); in getJITSymbolFlags()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1760 return getContext().getCOFFSection(Name, Characteristics, COMDATSymName, in getExplicitSectionGlobal()
1819 return getContext().getCOFFSection(Name, Characteristics, COMDATSymName, in SelectSectionForGlobal()
1824 return getContext().getCOFFSection(Name, Characteristics, TmpData, in SelectSectionForGlobal()
1881 return getContext().getCOFFSection(SecName, Characteristics, COMDATSymName, in getSectionForJumpTable()
1910 auto *S = C.getCOFFSection(Section, COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in emitModuleMetadata()
1990 Ctx.getCOFFSection(".CRT$XCU", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize()
1993 Ctx.getCOFFSection(".CRT$XTX", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize()
1996 StaticCtorSection = Ctx.getCOFFSection( in Initialize()
1999 StaticDtorSection = Ctx.getCOFFSection( in Initialize()
2038 MCSectionCOFF *Sec = Ctx.getCOFFSection( in getCOFFStaticStructorSection()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.h197 auto COFFRelSect = Obj.getCOFFSection(RelSec); in forEachRelocation()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h629 getCOFFSection(StringRef Section, unsigned Characteristics,
633 LLVM_ABI MCSectionCOFF *getCOFFSection(StringRef Section,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp226 const auto COFFSection = m_object->getCOFFSection(SecRef); in CreateSections()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp476 const coff_section *CoffSection = COFFObj->getCOFFSection(Section); in isRequiredForExecution()
500 return ((COFFObj->getCOFFSection(Section)->Characteristics & in isReadOnlyData()
517 return COFFObj->getCOFFSection(Section)->Characteristics & in isZeroInit()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp354 ResolvedSection = Obj->getCOFFSection(**Iter); in resolveSectionAndAddress()
620 const coff_section *Pdata = Obj->getCOFFSection(Section); in getPDataSection()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp237 const object::coff_section *COFFSection = COFFObj.getCOFFSection(Section); in mapVirtualAddress()
255 const object::coff_section *COFFSection = COFFObj.getCOFFSection(Section); in mapVirtualAddress()
H A DLVCodeViewReader.cpp163 const coff_section *CoffSection = getObj().getCOFFSection(Section); in cacheRelocations()
717 if (Error Err = resolveSymbolName(getObj().getCOFFSection(Section), in traverseSymbolSection()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp268 auto &COFFSec = *COFFObj->getCOFFSection(**Sec); in onObjLoad()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp475 const coff_section *Section = getCOFFSection(S); in getRvaPtr()
510 const coff_section *Section = getCOFFSection(S); in getRvaAndSizeAsBytes()
1350 COFFObjectFile::getCOFFSection(const SectionRef &Section) const { in getCOFFSection() function in COFFObjectFile
2306 const coff_section *COFFSect = Obj->getCOFFSection(Section); in load()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h96 CoffSection = Obj->getCOFFSection(Section); in LVSymbolVisitorDelegate()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2618 OutStreamer->switchSection(OutContext.getCOFFSection( in doFinalization()
3096 JumpTableSizesSection = OutContext.getCOFFSection( in emitJumpTableSizesSection()
3102 JumpTableSizesSection = OutContext.getCOFFSection( in emitJumpTableSizesSection()
3190 OutContext.getCOFFSection(".hybmp$x", COFF::IMAGE_SCN_LNK_INFO)); in emitSpecialLLVMGlobal()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h1088 const coff_section *getCOFFSection(const SectionRef &Section) const;
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp940 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()

12