Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h24 std::optional<StringRef> ImportModule; variable
89 bool hasImportModule() const { return ImportModule.has_value(); } in hasImportModule()
91 if (ImportModule) in getImportModule()
92 return *ImportModule; in getImportModule()
99 void setImportModule(StringRef Name) { ImportModule = Name; } in setImportModule()
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp923 auto ImportModule = expectIdent(); in parseDirective() local
924 if (ImportModule.empty()) in parseDirective()
927 WasmSym->setImportModule(storeName(ImportModule)); in parseDirective()
928 TOut.emitImportModule(WasmSym, ImportModule); in parseDirective()
/freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp177 struct ImportModule { in computeLTOCacheKey() struct
189 std::vector<ImportModule> ImportModulesVector; in computeLTOCacheKey()
199 [](const ImportModule &Lhs, const ImportModule &Rhs) -> bool { in computeLTOCacheKey()
202 for (const ImportModule &Entry : ImportModulesVector) { in computeLTOCacheKey()
277 for (const ImportModule &ImpM : ImportModulesVector) in computeLTOCacheKey()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h403 std::optional<StringRef> ImportModule; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp662 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
692 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
722 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
789 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h596 static PythonModule ImportModule(llvm::StringRef name) {
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2083 let Args = [StringArgument<"ImportModule">];