/external/llvm/lib/MC/ |
D | MCObjectFileInfo.cpp | 593 EHFrameSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 606 BSSSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 610 TextSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 616 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 620 ReadOnlySection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 626 Ctx->getCOFFSection(".CRT$XCU", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in initCOFFMCObjectFileInfo() 630 Ctx->getCOFFSection(".CRT$XTX", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in initCOFFMCObjectFileInfo() 634 StaticCtorSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 638 StaticDtorSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 652 LSDASection = Ctx->getCOFFSection(".gcc_except_table", in initCOFFMCObjectFileInfo() [all …]
|
D | MCContext.cpp | 387 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext 419 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext 423 return getCOFFSection(Section, Characteristics, Kind, "", 0, GenericSectionID, in getCOFFSection() 427 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) { in getCOFFSection() function in MCContext 447 return getCOFFSection(Sec->getSectionName(), Characteristics, in getAssociativeCOFFSection() 452 return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(), in getAssociativeCOFFSection()
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCObjectFileInfo.cpp | 377 Ctx->getCOFFSection(".text", in InitCOFFMCObjectFileInfo() 383 Ctx->getCOFFSection(".data", in InitCOFFMCObjectFileInfo() 389 Ctx->getCOFFSection(".rdata", in InitCOFFMCObjectFileInfo() 394 Ctx->getCOFFSection(".ctors", in InitCOFFMCObjectFileInfo() 400 Ctx->getCOFFSection(".dtors", in InitCOFFMCObjectFileInfo() 411 Ctx->getCOFFSection(".gcc_except_table", in InitCOFFMCObjectFileInfo() 418 Ctx->getCOFFSection(".debug_abbrev", in InitCOFFMCObjectFileInfo() 423 Ctx->getCOFFSection(".debug_info", in InitCOFFMCObjectFileInfo() 428 Ctx->getCOFFSection(".debug_line", in InitCOFFMCObjectFileInfo() 433 Ctx->getCOFFSection(".debug_frame", in InitCOFFMCObjectFileInfo() [all …]
|
D | MCWin64EH.cpp | 229 return context.getCOFFSection((".xdata"+suffix).str(), in getWin64EHTableSection() 240 return context.getCOFFSection((".pdata"+suffix).str(), in getWin64EHFuncTableSection()
|
D | WinCOFFStreamer.cpp | 93 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind)); in SetSection() 151 const MCSection *Section = MCStreamer::getContext().getCOFFSection( in AddCommonSymbol()
|
D | MCContext.cpp | 223 const MCSection *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext
|
D | MCAsmStreamer.cpp | 1014 return context.getCOFFSection((".xdata"+suffix).str(), in getWin64EHTableSection()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCContext.h | 192 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics, 195 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics, in getCOFFSection() function 197 return getCOFFSection (Section, Characteristics, 0, Kind); in getCOFFSection()
|
/external/llvm/tools/llvm-readobj/ |
D | Win64EHDumper.cpp | 159 ResolvedSection = Ctx.COFF.getCOFFSection(**SI); in resolveRelocation() 313 const coff_section *PData = Ctx.COFF.getCOFFSection(Section); in printData() 326 printRuntimeFunction(Ctx, Ctx.COFF.getCOFFSection(Section), in printData()
|
D | ARMWinEHPrinter.cpp | 516 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord() 758 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData() 775 COFF.getSectionName(COFF.getCOFFSection(Section), SectionName)) in dumpProcedureData()
|
D | COFFDumper.cpp | 152 Sec = Obj->getCOFFSection(SR); in COFFObjectDumpDelegate() 278 const coff_section *Section = Obj->getCOFFSection(Sec); in printBinaryBlockWithRelocs() 535 const coff_section *Section = Obj->getCOFFSection(S); in cacheRelocations() 819 error(resolveSymbolName(Obj->getCOFFSection(Section), SectionOffset, in printCodeViewSymbolSection() 837 error(resolveSymbolName(Obj->getCOFFSection(Section), SectionContents, in printCodeViewSymbolSection() 1106 const coff_section *Section = Obj->getCOFFSection(Sec); in printSections()
|
/external/llvm/include/llvm/MC/ |
D | MCContext.h | 400 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 406 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 410 MCSectionCOFF *getCOFFSection(StringRef Section);
|
/external/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 912 return getContext().getCOFFSection(Name, Characteristics, Kind, COMDATSymName, in getExplicitSectionGlobal() 960 return getContext().getCOFFSection(Name, Characteristics, Kind, in SelectSectionForGlobal() 965 return getContext().getCOFFSection(Name, Characteristics, Kind, TmpData, in SelectSectionForGlobal() 1022 return getContext().getCOFFSection(Name, Characteristics, Kind, COMDATSymName, in getSectionForJumpTable()
|
/external/llvm/lib/Target/X86/ |
D | X86TargetObjectFile.cpp | 164 return getContext().getCOFFSection(".rdata", Characteristics, Kind, in getSectionForConstant()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 587 return getContext().getCOFFSection(GV->getSection(), in getExplicitSectionGlobal() 620 return getContext().getCOFFSection(Name.str(), Characteristics, in SelectSectionForGlobal()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 358 const coff_section *CoffSection = COFFObj->getCOFFSection(Section); in isRequiredForExecution() 382 return ((COFFObj->getCOFFSection(Section)->Characteristics & in isReadOnlyData() 399 return COFFObj->getCOFFSection(Section)->Characteristics & in isZeroInit()
|
/external/llvm/tools/llvm-objdump/ |
D | COFFDump.cpp | 171 ResolvedSection = Obj->getCOFFSection(**Iter); in resolveSectionAndAddress() 456 const coff_section *Pdata = Obj->getCOFFSection(Section); in getPDataSection()
|
/external/llvm/tools/obj2yaml/ |
D | coff2yaml.cpp | 105 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection); in dumpSections()
|
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 168 getStreamer().SwitchSection(getContext().getCOFFSection( in ParseSectionSwitch()
|
/external/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 444 const coff_section *Section = getCOFFSection(S); in getRvaPtr() 460 const coff_section *Section = getCOFFSection(S); in getRvaAndSizeAsBytes() 1084 COFFObjectFile::getCOFFSection(const SectionRef &Section) const { in getCOFFSection() function in COFFObjectFile
|
/external/llvm/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 308 getStreamer().SwitchSection(getContext().getCOFFSection( in ParseSectionSwitch()
|
/external/llvm/include/llvm/Object/ |
D | COFF.h | 760 const coff_section *getCOFFSection(const SectionRef &Section) const;
|
/external/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 817 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()
|