/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MCObjectFileInfo.cpp | 869 TextSection = Ctx->getWasmSection(".text", SectionKind::getText()); in initWasmMCObjectFileInfo() 870 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo() 873 Ctx->getWasmSection(".debug_line", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() 875 Ctx->getWasmSection(".debug_line_str", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() 877 Ctx->getWasmSection(".debug_str", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() 879 Ctx->getWasmSection(".debug_loc", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() 881 Ctx->getWasmSection(".debug_abbrev", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() 882 DwarfARangesSection = Ctx->getWasmSection(".debug_aranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() 884 Ctx->getWasmSection(".debug_ranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() 886 Ctx->getWasmSection(".debug_macinfo", SectionKind::getMetadata()); in initWasmMCObjectFileInfo() [all …]
|
D | MCContext.cpp | 491 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function in MCContext 500 return getWasmSection(Section, K, GroupSym, UniqueID, BeginSymName); in getWasmSection() 503 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind Kind, in getWasmSection() function in MCContext
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
D | MCContext.h | 458 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K) { in getWasmSection() function 459 return getWasmSection(Section, K, nullptr); in getWasmSection() 462 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function 464 return getWasmSection(Section, K, "", ~0, BeginSymName); in getWasmSection() 467 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function 469 return getWasmSection(Section, K, Group, UniqueID, nullptr); in getWasmSection() 472 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, 476 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | Wasm.h | 121 const WasmSection &getWasmSection(const SectionRef &Section) const; 214 const WasmSection &getWasmSection(DataRefImpl Ref) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 1193 return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE; in isSectionText() 1197 return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA; in isSectionData() 1214 const WasmSection &Sec = getWasmSection(Ref); in section_rel_end() 1290 const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const { in getWasmSection() function in WasmObjectFile 1296 WasmObjectFile::getWasmSection(const SectionRef &Section) const { in getWasmSection() function in WasmObjectFile 1297 return getWasmSection(Section.getRawDataRefImpl()); in getWasmSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 1492 return getContext().getWasmSection(Name, Kind, Group, in getExplicitSectionGlobal() 1522 return Ctx.getWasmSection(Name, Kind, Group, UniqueID); in selectWasmSectionForGlobal() 1573 getContext().getWasmSection(".init_array", SectionKind::getData()); in InitializeWasm() 1580 getContext().getWasmSection(".init_array." + utostr(Priority), in getStaticCtorSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | WasmDumper.cpp | 160 const WasmSection &WasmSec = Obj->getWasmSection(Section); in printSections()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyAsmPrinter.cpp | 122 OutContext.getWasmSection(SectionName, SectionKind::getMetadata()); in EmitEndOfAsmFile()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | wasm2yaml.cpp | 137 const WasmSection &WasmSec = Obj.getWasmSection(Sec); in dump()
|