Home
last modified time | relevance | path

Searched refs:ExportName (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCSymbolWasm.h26 std::optional<StringRef> ExportName; variable
109 bool hasExportName() const { return ExportName.has_value(); } in hasExportName()
110 StringRef getExportName() const { return *ExportName; } in getExportName()
111 void setExportName(StringRef Name) { ExportName = Name; } in setExportName()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.h53 StringRef ExportName) = 0;
74 void emitExportName(const MCSymbolWasm *Sym, StringRef ExportName) override;
93 StringRef ExportName) override {} in emitExportName() argument
H A DWebAssemblyTargetStreamer.cpp112 StringRef ExportName) { in emitExportName() argument
114 << ExportName << '\n'; in emitExportName()
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DWasm.h155 std::optional<StringRef> ExportName; // from the "export" section member
212 std::optional<StringRef> ExportName; member
/openbsd-src/gnu/llvm/lld/wasm/
H A DInputChunks.h255 exportName(func && func->ExportName ? (*func->ExportName).str() in InputFunction()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp907 auto ExportName = expectIdent(); in ParseDirective() local
909 WasmSym->setExportName(storeName(ExportName)); in ParseDirective()
910 TOut.emitExportName(WasmSym, ExportName); in ParseDirective()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp1283 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td1934 let Args = [StringArgument<"ExportName">];