Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp842 TextSection = Ctx->getWasmSection(".text", SectionKind::getText()); in initWasmMCObjectFileInfo()
843 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
846 Ctx->getWasmSection(".debug_line", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
848 Ctx->getWasmSection(".debug_line_str", SectionKind::getMetadata(), in initWasmMCObjectFileInfo()
850 DwarfStrSection = Ctx->getWasmSection( in initWasmMCObjectFileInfo()
853 Ctx->getWasmSection(".debug_loc", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
855 Ctx->getWasmSection(".debug_abbrev", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
856 DwarfARangesSection = Ctx->getWasmSection(".debug_aranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
858 Ctx->getWasmSection(".debug_ranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
860 Ctx->getWasmSection(".debug_macinfo", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
[all …]
H A DMCContext.cpp839 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function in MCContext
853 return getWasmSection(Section, K, Flags, GroupSym, UniqueID); in getWasmSection()
856 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind Kind, in getWasmSection() function in MCContext
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmReader.cpp24 const WasmSection &WS = WasmObj.getWasmSection(Sec); in create()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp436 OutContext.getWasmSection(SectionName, SectionKind::getMetadata()); in emitEndOfAsmFile()
476 MCSectionWasm *Producers = OutContext.getWasmSection( in EmitProducerInfo()
548 MCSectionWasm *FeaturesSection = OutContext.getWasmSection( in EmitTargetFeatures()
590 MCSectionWasm *CustomSection = OutContext.getWasmSection( in EmitFunctionAttributes()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h646 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
648 return getWasmSection(Section, K, Flags, "", ~0);
651 LLVM_ABI MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
655 LLVM_ABI MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h135 const WasmSection &getWasmSection(const SectionRef &Section) const;
246 const WasmSection &getWasmSection(DataRefImpl Ref) const;
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp195 MCSectionWasm *WS = getContext().getWasmSection( in parseSectionDirective()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp157 const WasmSection &WasmSec = Obj->getWasmSection(Section); in printSectionHeaders()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp2030 return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE; in isSectionText()
2034 return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA; in isSectionData()
2049 const WasmSection &Sec = getWasmSection(Ref); in section_rel_end()
2127 const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const { in getWasmSection() function in WasmObjectFile
2133 WasmObjectFile::getWasmSection(const SectionRef &Section) const { in getWasmSection() function in WasmObjectFile
2134 return getWasmSection(Section.getRawDataRefImpl()); in getWasmSection()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp2250 MCSectionWasm *Section = getContext().getWasmSection(Name, Kind, Flags, Group, in getExplicitSectionGlobal()
2286 return Ctx.getWasmSection(Name, Kind, Flags, Group, UniqueID); in selectWasmSectionForGlobal()
2319 getContext().getWasmSection(".init_array", SectionKind::getData()); in InitializeWasm()
2330 getContext().getWasmSection(".init_array." + utostr(Priority), in getStaticCtorSection()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp1254 auto *WS = getContext().getWasmSection(SecName, SectionKind::getText(), 0, in doBeforeLabelEmit()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1262 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()