Searched refs:getWasmSection (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp746 TextSection = Ctx->getWasmSection(".text", SectionKind::getText());
747 DataSection = Ctx->getWasmSection(".data", SectionKind::getData());
750 Ctx->getWasmSection(".debug_line", SectionKind::getMetadata());
752 Ctx->getWasmSection(".debug_line_str", SectionKind::getMetadata());
754 Ctx->getWasmSection(".debug_str", SectionKind::getMetadata());
756 Ctx->getWasmSection(".debug_loc", SectionKind::getMetadata());
758 Ctx->getWasmSection(".debug_abbrev", SectionKind::getMetadata());
759 DwarfARangesSection = Ctx->getWasmSection(".debug_aranges", SectionKind::getMetadata());
761 Ctx->getWasmSection(".debug_ranges", SectionKind::getMetadata());
763 Ctx->getWasmSection("
[all...]
H A DMCContext.cpp496 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind K, function in class:MCContext
505 return getWasmSection(Section, K, GroupSym, UniqueID, BeginSymName);
508 MCSectionWasm *MCContext::getWasmSection(const Twine &Section, SectionKind Kind, function in class:MCContext
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h487 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K) { function
488 return getWasmSection(Section, K, nullptr);
491 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, function
493 return getWasmSection(Section, K, "", ~0, BeginSymName);
496 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K, function
498 return getWasmSection(Section, K, Group, UniqueID, nullptr);
501 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
505 MCSectionWasm *getWasmSection(const Twine &Section, SectionKind K,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp131 MCSectionWasm *Section = getContext().getWasmSection(Name, Kind.getValue());
151 auto WS = getContext().getWasmSection(Name, Kind.getValue());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp168 OutContext.getWasmSection(SectionName, SectionKind::getMetadata());
207 MCSectionWasm *Producers = OutContext.getWasmSection(
265 MCSectionWasm *FeaturesSection = OutContext.getWasmSection(
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h126 const WasmSection &getWasmSection(const SectionRef &Section) const;
230 const WasmSection &getWasmSection(DataRefImpl Ref) const;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp168 const WasmSection &WasmSec = Obj->getWasmSection(Section);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1447 return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE;
1451 return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA;
1468 const WasmSection &Sec = getWasmSection(Ref);
1542 const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const { function in class:WasmObjectFile
1548 WasmObjectFile::getWasmSection(const SectionRef &Section) const { function in class:WasmObjectFile
1549 return getWasmSection(Section.getRawDataRefImpl());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1722 getContext().getWasmSection(Name, Kind, Group,
1755 return Ctx.getWasmSection(Name, Kind, Group, UniqueID);
1806 getContext().getWasmSection(".init_array", SectionKind::getData());
1817 getContext().getWasmSection(".init_array." + utostr(Priority),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp880 auto WS = getContext().getWasmSection(SecName, SectionKind::getText());

Completed in 270 milliseconds