Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCObjectFileInfo.cpp833 TextSection = Ctx->getWasmSection(".text", SectionKind::getText()); in initWasmMCObjectFileInfo()
834 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
837 Ctx->getWasmSection(".debug_line", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
839 Ctx->getWasmSection(".debug_line_str", SectionKind::getMetadata(), in initWasmMCObjectFileInfo()
841 DwarfStrSection = Ctx->getWasmSection( in initWasmMCObjectFileInfo()
844 Ctx->getWasmSection(".debug_loc", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
846 Ctx->getWasmSection(".debug_abbrev", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
847 DwarfARangesSection = Ctx->getWasmSection(".debug_aranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
849 Ctx->getWasmSection(".debug_ranges", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
851 Ctx->getWasmSection(".debug_macinfo", SectionKind::getMetadata()); in initWasmMCObjectFileInfo()
[all …]
H A DMCContext.cpp721 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function in MCContext
731 return getWasmSection(Section, K, Flags, GroupSym, UniqueID, BeginSymName); in getWasmSection()
734 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind Kind, in getWasmSection() function in MCContext
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCContext.h644 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
646 return getWasmSection(Section, K, Flags, nullptr);
649 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function
651 return getWasmSection(Section, K, Flags, "", ~0, BeginSymName); in getWasmSection()
654 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, in getWasmSection() function
657 return getWasmSection(Section, K, Flags, Group, UniqueID, nullptr); in getWasmSection()
660 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
664 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/wasm/
H A DWasmReader.cpp24 const WasmSection &WS = WasmObj.getWasmSection(Sec); in create()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DWasm.h128 const WasmSection &getWasmSection(const SectionRef &Section) const;
236 const WasmSection &getWasmSection(DataRefImpl Ref) const;
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp118 const WasmSection &WasmSec = Obj.getWasmSection(Sec); in dumpCustomSection()
203 const WasmSection &WasmSec = Obj.getWasmSection(Sec); in dump()
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp191 MCSectionWasm *WS = getContext().getWasmSection( in parseSectionDirective()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp1747 return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE; in isSectionText()
1751 return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA; in isSectionData()
1766 const WasmSection &Sec = getWasmSection(Ref); in section_rel_end()
1844 const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const { in getWasmSection() function in WasmObjectFile
1850 WasmObjectFile::getWasmSection(const SectionRef &Section) const { in getWasmSection() function in WasmObjectFile
1851 return getWasmSection(Section.getRawDataRefImpl()); in getWasmSection()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp157 const WasmSection &WasmSec = Obj->getWasmSection(Section); in printSectionHeaders()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp2140 MCSectionWasm *Section = getContext().getWasmSection( in getExplicitSectionGlobal()
2174 return Ctx.getWasmSection(Name, Kind, Flags, Group, UniqueID); in selectWasmSectionForGlobal()
2225 getContext().getWasmSection(".init_array", SectionKind::getData()); in InitializeWasm()
2236 getContext().getWasmSection(".init_array." + utostr(Priority), in getStaticCtorSection()
/openbsd-src/gnu/llvm/lld/wasm/
H A DInputFiles.cpp448 const WasmSection &section = wasmObj->getWasmSection(sec); in parse()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp1111 getContext().getWasmSection(SecName, SectionKind::getText(), 0, Group, in doBeforeLabelEmit()
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp879 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()