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.cpp798 TextSection = Ctx->getWasmSection(".text", SectionKind::getText()); in initWasmMCObjectFileInfo()
799 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
802 Ctx->getWasmSection(".debug_line", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
804 Ctx->getWasmSection(".debug_line_str", SectionKind::getMetadata(), in initWasmMCObjectFileInfo()
806 DwarfStrSection = Ctx->getWasmSection( in initWasmMCObjectFileInfo()
809 Ctx->getWasmSection(".debug_loc", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
811 Ctx->getWasmSection(".debug_abbrev", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
812 DwarfARangesSection = Ctx->getWasmSection(".debug_aranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
814 Ctx->getWasmSection(".debug_ranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
816 Ctx->getWasmSection(".debug_macinfo", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
[all …]
H A DMCContext.cpp752 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function in MCContext
761 return getWasmSection(Section, K, Flags, GroupSym, UniqueID); in getWasmSection()
764 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/include/llvm/MC/
H A DMCContext.h628 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
630 return getWasmSection(Section, K, Flags, "", ~0);
633 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
637 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
/freebsd/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/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h134 const WasmSection &getWasmSection(const SectionRef &Section) const;
245 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.cpp2009 return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE; in isSectionText()
2013 return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA; in isSectionData()
2028 const WasmSection &Sec = getWasmSection(Ref); in section_rel_end()
2106 const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const { in getWasmSection() function in WasmObjectFile
2112 WasmObjectFile::getWasmSection(const SectionRef &Section) const { in getWasmSection() function in WasmObjectFile
2113 return getWasmSection(Section.getRawDataRefImpl()); in getWasmSection()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp2183 MCSectionWasm *Section = getContext().getWasmSection( in getExplicitSectionGlobal()
2219 return Ctx.getWasmSection(Name, Kind, Flags, Group, UniqueID); in selectWasmSectionForGlobal()
2272 getContext().getWasmSection(".init_array", SectionKind::getData()); in InitializeWasm()
2283 getContext().getWasmSection(".init_array." + utostr(Priority), in getStaticCtorSection()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp1109 auto *WS = getContext().getWasmSection(SecName, SectionKind::getText(), 0, in doBeforeLabelEmit()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1196 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()