Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSymbolWasm.h24 Optional<StringRef> ImportModule; variable
89 bool hasImportModule() const { return ImportModule.has_value(); } in hasImportModule()
91 if (ImportModule) in getImportModule()
92 return ImportModule.value(); in getImportModule()
99 void setImportModule(StringRef Name) { ImportModule = Name; } in setImportModule()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/wasm/
H A Dwasm-imports.test111 # CHECK-NEXT: ImportModule: red
122 # CHECK-NEXT: ImportModule: env
133 # CHECK-NEXT: ImportModule: blue
H A Dsymbols.test29 # CHECK-NEXT: ImportModule: env
46 # CHECK-NEXT: ImportModule: env
/llvm-project-15.0.7/lld/wasm/
H A DInputFiles.cpp329 info->ImportModule = tableImport->Module; in addLegacyIndirectFunctionTableIfNeeded()
641 sym.Info.ImportModule, flags, this, in createUndefined()
644 sym.Info.ImportModule, flags, this, in createUndefined()
653 sym.Info.ImportModule, flags, this, in createUndefined()
656 sym.Info.ImportModule, flags, this, in createUndefined()
661 sym.Info.ImportModule, flags, this, in createUndefined()
664 sym.Info.ImportModule, flags, this, in createUndefined()
669 sym.Info.ImportModule, flags, this, in createUndefined()
672 sym.Info.ImportModule, flags, this, in createUndefined()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp231 if (Symbol.Info.ImportModule) { in printSymbol()
232 W.printString("ImportModule", *Symbol.Info.ImportModule); in printSymbol()
/llvm-project-15.0.7/llvm/test/MC/WebAssembly/
H A Dfunction-alias.ll82 ; REF-NEXT: ImportModule: env
H A Ddebug-info.ll240 ; CHECK-NEXT: ImportModule: env
H A Ddebug-info64.ll246 ; CHECK-NEXT: ImportModule: env
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp904 auto ImportModule = expectIdent(); in ParseDirective() local
906 WasmSym->setImportModule(storeName(ImportModule)); in ParseDirective()
907 TOut.emitImportModule(WasmSym, ImportModule); in ParseDirective()
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DWasm.h208 Optional<StringRef> ImportModule; member
/llvm-project-15.0.7/llvm/lib/Object/
H A DWasmObjectFile.cpp644 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
676 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
708 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
773 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h568 static PythonModule ImportModule(llvm::StringRef name) {
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td1923 let Args = [StringArgument<"ImportModule">];