/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-7.0/llvm/lib/MC/ |
D | MCObjectFileInfo.cpp | 624 EHFrameSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 637 BSSSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 641 TextSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 647 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 651 ReadOnlySection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 663 LSDASection = Ctx->getCOFFSection(".gcc_except_table", in initCOFFMCObjectFileInfo() 671 Ctx->getCOFFSection(".debug$S", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo() 676 Ctx->getCOFFSection(".debug$T", (COFF::IMAGE_SCN_MEM_DISCARDABLE | in initCOFFMCObjectFileInfo() 680 COFFGlobalTypeHashesSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 686 DwarfAbbrevSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() [all …]
|
D | MCContext.cpp | 422 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext 454 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() function in MCContext 458 return getCOFFSection(Section, Characteristics, Kind, "", 0, GenericSectionID, in getCOFFSection() 462 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) { in getCOFFSection() function in MCContext 482 return getCOFFSection(Sec->getSectionName(), Characteristics, in getAssociativeCOFFSection() 487 return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(), in getAssociativeCOFFSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 1110 return getContext().getCOFFSection(Name, Characteristics, Kind, COMDATSymName, in getExplicitSectionGlobal() 1165 return getContext().getCOFFSection(Name, Characteristics, Kind, in SelectSectionForGlobal() 1170 return getContext().getCOFFSection(Name, Characteristics, Kind, TmpData, in SelectSectionForGlobal() 1227 return getContext().getCOFFSection( in getSectionForJumpTable() 1259 auto *S = C.getCOFFSection( in emitModuleMetadata() 1275 Ctx.getCOFFSection(".CRT$XCU", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize() 1279 Ctx.getCOFFSection(".CRT$XTX", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in Initialize() 1283 StaticCtorSection = Ctx.getCOFFSection( in Initialize() 1287 StaticDtorSection = Ctx.getCOFFSection( in Initialize() 1307 Ctx.getCOFFSection(Name, COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in getCOFFStaticStructorSection() [all …]
|
/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/swiftshader/third_party/llvm-7.0/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 | 190 Sec = Obj->getCOFFSection(SR); in COFFObjectDumpDelegate() 323 const coff_section *Section = Obj->getCOFFSection(Sec); in printBinaryBlockWithRelocs() 604 const coff_section *Section = Obj->getCOFFSection(S); in cacheRelocations() 1027 error(resolveSymbolName(Obj->getCOFFSection(Section), SectionOffset, in printCodeViewSymbolSection() 1048 error(resolveSymbolName(Obj->getCOFFSection(Section), SectionContents, in printCodeViewSymbolSection() 1261 const coff_section *Section = Obj->getCOFFSection(Sec); in printSections() 1701 Obj->getCOFFSection(S)->PointerToRawData); in printCOFFResources()
|
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
D | MCContext.h | 438 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 444 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 448 MCSectionCOFF *getCOFFSection(StringRef Section);
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | coff2yaml.cpp | 123 const object::coff_section *COFFSection = Obj.getCOFFSection(S); in initializeFileAndStringTable() 146 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection); in dumpSections()
|
/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/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/ |
D | COFFDump.cpp | 168 ResolvedSection = Obj->getCOFFSection(**Iter); in resolveSectionAndAddress() 451 const coff_section *Pdata = Obj->getCOFFSection(Section); in getPDataSection()
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 409 const coff_section *CoffSection = COFFObj->getCOFFSection(Section); in isRequiredForExecution() 433 return ((COFFObj->getCOFFSection(Section)->Characteristics & in isReadOnlyData() 450 return COFFObj->getCOFFSection(Section)->Characteristics & in isZeroInit()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldCOFFThumb.h | 41 return cast<COFFObjectFile>(Obj).getCOFFSection(*Section)->Characteristics & in isThumbFunc()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 461 const coff_section *Section = getCOFFSection(S); in getRvaPtr() 477 const coff_section *Section = getCOFFSection(S); in getRvaAndSizeAsBytes() 990 Result = getCOFFSection(Section); in getSection() 1150 COFFObjectFile::getCOFFSection(const SectionRef &Section) const { in getCOFFSection() function in COFFObjectFile
|
/external/llvm/tools/obj2yaml/ |
D | coff2yaml.cpp | 105 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection); in dumpSections()
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 333 getStreamer().SwitchSection(getContext().getCOFFSection( in ParseSectionSwitch()
|