Home
last modified time | relevance | path

Searched refs:getWasmSection (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/llvm/lib/MC/
H A DMCObjectFileInfo.cpp834 TextSection = Ctx->getWasmSection(".text", SectionKind::getText()); in initWasmMCObjectFileInfo()
835 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
838 Ctx->getWasmSection(".debug_line", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
842 DwarfStrSection = Ctx->getWasmSection( in initWasmMCObjectFileInfo()
845 Ctx->getWasmSection(".debug_loc", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
854 Ctx->getWasmSection(".debug_macro", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
858 Ctx->getWasmSection(".debug_info", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
868 Ctx->getWasmSection(".debug_names", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
872 Ctx->getWasmSection(".debug_addr", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
913 LSDASection = Ctx->getWasmSection(".rodata.gcc_except_table", in initWasmMCObjectFileInfo()
[all …]
H A DMCContext.cpp695 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function in MCContext
705 return getWasmSection(Section, K, Flags, GroupSym, UniqueID, BeginSymName); in getWasmSection()
708 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind Kind, in getWasmSection() function in MCContext
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCContext.h645 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
647 return getWasmSection(Section, K, Flags, nullptr);
650 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function
652 return getWasmSection(Section, K, Flags, "", ~0, BeginSymName); in getWasmSection()
655 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function
658 return getWasmSection(Section, K, Flags, Group, UniqueID, nullptr); in getWasmSection()
661 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
665 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
/llvm-project-15.0.7/llvm/test/MC/WebAssembly/
H A Dsection-symbol.s4 # getWasmSection currently forces the section symbol to have a suffix.
/llvm-project-15.0.7/llvm/lib/ObjCopy/wasm/
H A DWasmReader.cpp24 const WasmSection &WS = WasmObj.getWasmSection(Sec); in create()
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp432 OutContext.getWasmSection(SectionName, SectionKind::getMetadata()); in emitEndOfAsmFile()
471 MCSectionWasm *Producers = OutContext.getWasmSection( in EmitProducerInfo()
544 MCSectionWasm *FeaturesSection = OutContext.getWasmSection( in EmitTargetFeatures()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DWasm.h128 const WasmSection &getWasmSection(const SectionRef &Section) const;
236 const WasmSection &getWasmSection(DataRefImpl Ref) const;
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp118 const WasmSection &WasmSec = Obj.getWasmSection(Sec); in dumpCustomSection()
203 const WasmSection &WasmSec = Obj.getWasmSection(Sec); in dump()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp190 MCSectionWasm *WS = getContext().getWasmSection( in parseSectionDirective()
/llvm-project-15.0.7/llvm/lib/Object/
H A DWasmObjectFile.cpp1755 return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE; in isSectionText()
1759 return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA; in isSectionData()
1774 const WasmSection &Sec = getWasmSection(Ref); in section_rel_end()
1852 const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const { in getWasmSection() function in WasmObjectFile
1858 WasmObjectFile::getWasmSection(const SectionRef &Section) const { in getWasmSection() function in WasmObjectFile
1859 return getWasmSection(Section.getRawDataRefImpl()); in getWasmSection()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp157 const WasmSection &WasmSec = Obj->getWasmSection(Section); in printSectionHeaders()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp2093 MCSectionWasm *Section = getContext().getWasmSection( in getExplicitSectionGlobal()
2127 return Ctx.getWasmSection(Name, Kind, Flags, Group, UniqueID); in selectWasmSectionForGlobal()
2178 getContext().getWasmSection(".init_array", SectionKind::getData()); in InitializeWasm()
2189 getContext().getWasmSection(".init_array." + utostr(Priority), in getStaticCtorSection()
/llvm-project-15.0.7/lld/wasm/
H A DInputFiles.cpp446 const WasmSection &section = wasmObj->getWasmSection(sec); in parse()
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp1096 getContext().getWasmSection(SecName, SectionKind::getText(), 0, Group, in doBeforeLabelEmit()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp849 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()