Home
last modified time | relevance | path

Searched refs:ImportModule (Results 1 – 10 of 10) 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.cpp100 StringRef ImportModule) { in emitImportModule() argument
102 << 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.cpp911 auto ImportModule = expectIdent(); in parseDirective() local
912 if (ImportModule.empty()) in parseDirective()
915 WasmSym->setImportModule(Ctx.allocateString(ImportModule)); in parseDirective()
916 TOut.emitImportModule(WasmSym, ImportModule); in parseDirective()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp181 struct ImportModule { in computeLTOCacheKey() struct
193 std::vector<ImportModule> ImportModulesVector; in computeLTOCacheKey()
203 [](const ImportModule &Lhs, const ImportModule &Rhs) -> bool { in computeLTOCacheKey()
207 for (const ImportModule &Entry : ImportModulesVector) { in computeLTOCacheKey()
289 for (const ImportModule &ImpM : ImportModulesVector) in computeLTOCacheKey()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h450 std::optional<StringRef> ImportModule; member
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp746 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
776 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
806 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
873 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.td2203 let Args = [StringArgument<"ImportModule">];