Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp565 Ctx->getCOFFSection(".eh_frame", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in initCOFFMCObjectFileInfo()
574 BSSSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
577 TextSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
582 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
586 Ctx->getCOFFSection(".rdata", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in initCOFFMCObjectFileInfo()
594 LSDASection = Ctx->getCOFFSection(".gcc_except_table", in initCOFFMCObjectFileInfo()
601 Ctx->getCOFFSection(".debug$S", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo()
605 Ctx->getCOFFSection(".debug$T", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo()
609 Ctx->getCOFFSection(".debug$H", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo()
613 DwarfAbbrevSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
[all …]
H A DMCContext.cpp693 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext
728 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext
730 return getCOFFSection(Section, Characteristics, "", 0, GenericSectionID); in getCOFFSection()
745 return getCOFFSection(Sec->getName(), Characteristics, KeySym->getName(), in getAssociativeCOFFSection()
749 return getCOFFSection(Sec->getName(), Characteristics, "", 0, UniqueID); in getAssociativeCOFFSection()
H A DMCWinCOFFStreamer.cpp376 switchSection(Asm.getContext().getCOFFSection(".llvm_addrsig", in finishImpl()
384 switchSection(Asm.getContext().getCOFFSection(".llvm.call-graph-profile", in finishImpl()
H A DWinCOFFObjectWriter.cpp1066 auto *Sec = Asm.getContext().getCOFFSection( in writeObject()
1088 auto *Sec = Asm.getContext().getCOFFSection( in writeObject()
H A DMCStreamer.cpp841 return Context.getCOFFSection(SectionName, in getWinCFISection()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp223 ResolvedSection = Ctx.COFF.getCOFFSection(**SI); in resolveRelocation()
234 return COFF.getCOFFSection(Section); in getSectionContaining()
403 const coff_section *PData = Ctx.COFF.getCOFFSection(Section); in printData()
418 printRuntimeFunction(Ctx, Ctx.COFF.getCOFFSection(Section), in printData()
H A DCOFFDumper.cpp205 Sec = Obj->getCOFFSection(SR); in COFFObjectDumpDelegate()
332 const coff_section *Section = Obj->getCOFFSection(Sec); in printBinaryBlockWithRelocs()
646 const coff_section *Section = Obj->getCOFFSection(S); in cacheRelocations()
1225 if (std::error_code EC = resolveSymbolName(Obj->getCOFFSection(Section), in printCodeViewSymbolSection()
1251 resolveSymbolName(Obj->getCOFFSection(Section), SectionContents, in printCodeViewSymbolSection()
1513 const coff_section *Section = Obj->getCOFFSection(Sec); in printSectionHeaders()
1966 Obj->getCOFFSection(S)->PointerToRawData); in printCOFFResources()
H A DARMWinEHPrinter.cpp1032 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord()
1459 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData()
1475 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.cpp319 getStreamer().switchSection(getContext().getCOFFSection( in ParseSectionSwitch()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1700 return getContext().getCOFFSection(Name, Characteristics, COMDATSymName, in getExplicitSectionGlobal()
1759 return getContext().getCOFFSection(Name, Characteristics, COMDATSymName, in SelectSectionForGlobal()
1764 return getContext().getCOFFSection(Name, Characteristics, TmpData, in SelectSectionForGlobal()
1821 return getContext().getCOFFSection(SecName, Characteristics, COMDATSymName, in getSectionForJumpTable()
1850 auto *S = C.getCOFFSection(Section, COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in emitModuleMetadata()
1930 Ctx.getCOFFSection(".CRT$XCU", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize()
1933 Ctx.getCOFFSection(".CRT$XTX", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize()
1936 StaticCtorSection = Ctx.getCOFFSection( in Initialize()
1939 StaticDtorSection = Ctx.getCOFFSection( in Initialize()
1978 MCSectionCOFF *Sec = Ctx.getCOFFSection( in getCOFFStaticStructorSection()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.h189 auto COFFRelSect = Obj.getCOFFSection(RelSec); in forEachRelocation()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h612 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics,
616 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics);
/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 processRelocationRef()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp230 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.cpp336 ResolvedSection = Obj->getCOFFSection(**Iter); in resolveSectionAndAddress()
602 const coff_section *Pdata = Obj->getCOFFSection(Section); in getPDataSection()
/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()
1277 COFFObjectFile::getCOFFSection(const SectionRef &Section) const { in getCOFFSection() function in COFFObjectFile
1895 const coff_section *COFFSect = Obj->getCOFFSection(Section); in load()
/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.cpp168 const coff_section *CoffSection = getObj().getCOFFSection(Section); in cacheRelocations()
722 if (Error Err = resolveSymbolName(getObj().getCOFFSection(Section), in traverseSymbolSection()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp259 auto &COFFSec = *COFFObj->getCOFFSection(**Sec); in onObjLoad()
/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/include/llvm/Object/
H A DCOFF.h1034 const coff_section *getCOFFSection(const SectionRef &Section) const;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2376 OutStreamer->switchSection(OutContext.getCOFFSection( in doFinalization()
2859 OutContext.getCOFFSection(".hybmp$x", COFF::IMAGE_SCN_LNK_INFO)); in emitSpecialLLVMGlobal()
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp938 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()