Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCObjectFileInfo.cpp509 Ctx->getCOFFSection(".eh_frame", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in initCOFFMCObjectFileInfo()
521 BSSSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
525 TextSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
531 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
535 ReadOnlySection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
543 LSDASection = Ctx->getCOFFSection(".gcc_except_table", in initCOFFMCObjectFileInfo()
551 Ctx->getCOFFSection(".debug$S", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo()
556 Ctx->getCOFFSection(".debug$T", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo()
560 COFFGlobalTypeHashesSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
566 DwarfAbbrevSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
[all …]
H A DMCContext.cpp613 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext
645 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext
649 return getCOFFSection(Section, Characteristics, Kind, "", 0, GenericSectionID, in getCOFFSection()
665 return getCOFFSection(Sec->getName(), Characteristics, Sec->getKind(), in getAssociativeCOFFSection()
670 return getCOFFSection(Sec->getName(), Characteristics, Sec->getKind(), "", 0, in getAssociativeCOFFSection()
H A DWinCOFFObjectWriter.cpp675 AddrsigSection = Asm.getContext().getCOFFSection( in executePostLayoutBinding()
682 CGProfileSection = Asm.getContext().getCOFFSection( in executePostLayoutBinding()
H A DMCStreamer.cpp810 return Context.getCOFFSection( in getWinCFISection()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp185 ResolvedSection = Ctx.COFF.getCOFFSection(**SI); in resolveRelocation()
196 return COFF.getCOFFSection(Section); in getSectionContaining()
364 const coff_section *PData = Ctx.COFF.getCOFFSection(Section); in printData()
379 printRuntimeFunction(Ctx, Ctx.COFF.getCOFFSection(Section), in printData()
H A DCOFFDumper.cpp204 Sec = Obj->getCOFFSection(SR); in COFFObjectDumpDelegate()
331 const coff_section *Section = Obj->getCOFFSection(Sec); in printBinaryBlockWithRelocs()
596 const coff_section *Section = Obj->getCOFFSection(S); in cacheRelocations()
1077 if (std::error_code EC = resolveSymbolName(Obj->getCOFFSection(Section), in printCodeViewSymbolSection()
1103 resolveSymbolName(Obj->getCOFFSection(Section), SectionContents, in printCodeViewSymbolSection()
1364 const coff_section *Section = Obj->getCOFFSection(Sec); in printSectionHeaders()
1805 Obj->getCOFFSection(S)->PointerToRawData); in printCOFFResources()
H A DARMWinEHPrinter.cpp908 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord()
1276 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData()
1292 COFF.getSectionName(COFF.getCOFFSection(Section)); in dumpProcedureData()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp248 getStreamer().SwitchSection(getContext().getCOFFSection( in ParseSectionSwitch()
276 getStreamer().SwitchSection(getContext().getCOFFSection( in ParseDirectiveSegment()
304 getStreamer().SwitchSection(getContext().getCOFFSection( in ParseDirectiveIncludelib()
H A DCOFFAsmParser.cpp325 getStreamer().SwitchSection(getContext().getCOFFSection( in ParseSectionSwitch()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1593 return getContext().getCOFFSection(Name, Characteristics, Kind, COMDATSymName, in getExplicitSectionGlobal()
1652 return getContext().getCOFFSection(Name, Characteristics, Kind, in SelectSectionForGlobal()
1657 return getContext().getCOFFSection(Name, Characteristics, Kind, TmpData, in SelectSectionForGlobal()
1714 return getContext().getCOFFSection( in getSectionForJumpTable()
1730 auto *S = C.getCOFFSection(Section, in emitModuleMetadata()
1812 Ctx.getCOFFSection(".CRT$XCU", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize()
1816 Ctx.getCOFFSection(".CRT$XTX", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize()
1820 StaticCtorSection = Ctx.getCOFFSection( in Initialize()
1824 StaticDtorSection = Ctx.getCOFFSection( in Initialize()
1851 MCSectionCOFF *Sec = Ctx.getCOFFSection( in getCOFFStaticStructorSection()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp120 const object::coff_section *COFFSection = Obj.getCOFFSection(S); in initializeFileAndStringTable()
154 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection); in dumpSections()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp172 ResolvedSection = Obj->getCOFFSection(**Iter); in resolveSectionAndAddress()
456 const coff_section *Pdata = Obj->getCOFFSection(Section); in getPDataSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCContext.h596 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics,
602 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h42 .getCOFFSection(*Section) in isThumbFunc()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp473 const coff_section *CoffSection = COFFObj->getCOFFSection(Section); in isRequiredForExecution()
497 return ((COFFObj->getCOFFSection(Section)->Characteristics & in isReadOnlyData()
514 return COFFObj->getCOFFSection(Section)->Characteristics & in isZeroInit()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp467 const coff_section *Section = getCOFFSection(S); in getRvaPtr()
483 const coff_section *Section = getCOFFSection(S); in getRvaAndSizeAsBytes()
1176 COFFObjectFile::getCOFFSection(const SectionRef &Section) const { in getCOFFSection() function in COFFObjectFile
1789 const coff_section *COFFSect = Obj->getCOFFSection(Section); in load()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp223 auto &COFFSec = *COFFObj->getCOFFSection(**Sec); in onObjLoad()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DCOFF.h979 const coff_section *getCOFFSection(const SectionRef &Section) const;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp993 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1783 OutStreamer->SwitchSection(OutContext.getCOFFSection( in doFinalization()