Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DCOFFImportFile.cpp216 StringRef ExportName,
513 if (!ExportName.empty()) in createShortImport()
514 ImpSize += ExportName.size() + 1; in createShortImport()
534 if (!ExportName.empty()) { in createShortImport()
536 memcpy(P, ExportName.data(), ExportName.size()); in createShortImport()
675 std::string ExportName; in writeImportLibrary() local
686 if (ExportName.empty()) { in writeImportLibrary()
688 ExportName.swap(Name); in writeImportLibrary()
691 } else if (ExportName.empty()) { in writeImportLibrary()
693 ExportName = std::move(*getArm64ECDemangledFunctionName(Name)); in writeImportLibrary()
[all …]
H A DWasmObjectFile.cpp1315 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h350 std::optional<StringRef> ExportName; // from the "export" section member
407 std::optional<StringRef> ExportName; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp908 auto ExportName = expectIdent(); in parseDirective() local
909 if (ExportName.empty()) in parseDirective()
912 WasmSym->setExportName(storeName(ExportName)); in parseDirective()
913 TOut.emitExportName(WasmSym, ExportName); in parseDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2075 let Args = [StringArgument<"ExportName">];