Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp849 TextSection = Ctx->getWasmSection(".text", SectionKind::getText()); in initWasmMCObjectFileInfo()
850 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
853 Ctx->getWasmSection(".debug_line", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
857 DwarfStrSection = Ctx->getWasmSection( in initWasmMCObjectFileInfo()
860 Ctx->getWasmSection(".debug_loc", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
869 Ctx->getWasmSection(".debug_macro", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
873 Ctx->getWasmSection(".debug_info", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
883 Ctx->getWasmSection(".debug_names", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
887 Ctx->getWasmSection(".debug_addr", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
928 LSDASection = Ctx->getWasmSection(".rodata.gcc_except_table", in initWasmMCObjectFileInfo()
[all …]
H A DMCContext.cpp727 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function in MCContext
737 return getWasmSection(Section, K, Flags, GroupSym, UniqueID, BeginSymName); in getWasmSection()
740 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind Kind, in getWasmSection() function in MCContext
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h646 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
648 return getWasmSection(Section, K, Flags, nullptr);
651 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function
653 return getWasmSection(Section, K, Flags, "", ~0, BeginSymName); in getWasmSection()
656 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function
659 return getWasmSection(Section, K, Flags, Group, UniqueID, nullptr); in getWasmSection()
662 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
666 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmReader.cpp24 const WasmSection &WS = WasmObj.getWasmSection(Sec); in create()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp434 OutContext.getWasmSection(SectionName, SectionKind::getMetadata()); in emitEndOfAsmFile()
474 MCSectionWasm *Producers = OutContext.getWasmSection( in EmitProducerInfo()
547 MCSectionWasm *FeaturesSection = OutContext.getWasmSection( in EmitTargetFeatures()
589 MCSectionWasm *CustomSection = OutContext.getWasmSection( in EmitFunctionAttributes()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h130 const WasmSection &getWasmSection(const SectionRef &Section) const;
239 const WasmSection &getWasmSection(DataRefImpl Ref) const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp192 MCSectionWasm *WS = getContext().getWasmSection( in parseSectionDirective()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1827 return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE; in isSectionText()
1831 return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA; in isSectionData()
1846 const WasmSection &Sec = getWasmSection(Ref); in section_rel_end()
1924 const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const { in getWasmSection() function in WasmObjectFile
1930 WasmObjectFile::getWasmSection(const SectionRef &Section) const { in getWasmSection() function in WasmObjectFile
1931 return getWasmSection(Section.getRawDataRefImpl()); in getWasmSection()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp157 const WasmSection &WasmSec = Obj->getWasmSection(Section); in printSectionHeaders()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp2182 MCSectionWasm *Section = getContext().getWasmSection( in getExplicitSectionGlobal()
2216 return Ctx.getWasmSection(Name, Kind, Flags, Group, UniqueID); in selectWasmSectionForGlobal()
2267 getContext().getWasmSection(".init_array", SectionKind::getData()); in InitializeWasm()
2278 getContext().getWasmSection(".init_array." + utostr(Priority), in getStaticCtorSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp1123 getContext().getWasmSection(SecName, SectionKind::getText(), 0, Group, in doBeforeLabelEmit()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1025 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()