Home
last modified time | relevance | path

Searched refs:ImportModule (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h25 std::optional<StringRef> ImportModule; variable
90 bool hasImportModule() const { return ImportModule.has_value(); } in hasImportModule()
92 if (ImportModule) in getImportModule()
93 return *ImportModule; in getImportModule()
100 void setImportModule(StringRef Name) { ImportModule = Name; } in setImportModule()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.h47 StringRef ImportModule) = 0;
72 void emitImportModule(const MCSymbolWasm *Sym, StringRef ImportModule) override;
89 StringRef ImportModule) override {} in emitImportModule() argument
H A DWebAssemblyTargetStreamer.cpp98 StringRef ImportModule) { in emitImportModule() argument
100 << ImportModule << '\n'; in emitImportModule()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp231 if (Symbol.Info.ImportModule) { in printSymbol()
232 W.printString("ImportModule", *Symbol.Info.ImportModule); in printSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp1056 auto ImportModule = expectIdent(); in parseDirective() local
1057 if (ImportModule.empty()) in parseDirective()
1060 WasmSym->setImportModule(Ctx.allocateString(ImportModule)); in parseDirective()
1061 TOut.emitImportModule(WasmSym, ImportModule); in parseDirective()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h469 std::optional<StringRef> ImportModule; member
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp756 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
786 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
816 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
883 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h598 static PythonModule ImportModule(llvm::StringRef name) {
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2495 let Args = [StringArgument<"ImportModule">];