Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFImportFile.cpp253 StringRef ExportName,
548 StringRef ExportName, MachineTypes Machine) { in createShortImport() argument
550 if (!ExportName.empty()) in createShortImport()
551 ImpSize += ExportName.size() + 1; in createShortImport()
571 if (!ExportName.empty()) { in createShortImport()
573 memcpy(P, ExportName.data(), ExportName.size()); in createShortImport()
717 std::string ExportName; in writeImportLibrary() local
722 ExportName = E.ExportAs; in writeImportLibrary()
736 ExportName = E.ImportName; in writeImportLibrary()
755 if (!E.Noname && ExportName.empty()) { in writeImportLibrary()
[all …]
H A DWasmObjectFile.cpp567 if (F.ExportName) { in parseNameSection()
568 Info.ExportName = F.ExportName; in parseNameSection()
1462 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h27 std::optional<StringRef> ExportName; variable
110 bool hasExportName() const { return ExportName.has_value(); } in hasExportName()
111 StringRef getExportName() const { return *ExportName; } in getExportName()
112 void setExportName(StringRef Name) { ExportName = Name; } in setExportName()
/freebsd/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.cpp110 StringRef ExportName) { in emitExportName() argument
112 << ExportName << '\n'; in emitExportName()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h404 std::optional<StringRef> ExportName; // from the "export" section member
473 std::optional<StringRef> ExportName; member
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp1041 auto ExportName = expectIdent(); in parseDirective() local
1042 if (ExportName.empty()) in parseDirective()
1045 WasmSym->setExportName(Ctx.allocateString(ExportName)); in parseDirective()
1046 TOut.emitExportName(WasmSym, ExportName); in parseDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2487 let Args = [StringArgument<"ExportName">];