Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/MC/
DMCSymbolWasm.h23 Optional<StringRef> ImportModule; variable
75 bool hasImportModule() const { return ImportModule.hasValue(); } in hasImportModule()
77 if (ImportModule.hasValue()) in getImportModule()
78 return ImportModule.getValue(); in getImportModule()
85 void setImportModule(StringRef Name) { ImportModule = Name; } in setImportModule()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCSymbolWasm.h22 Optional<std::string> ImportModule; variable
75 if (ImportModule.hasValue()) { in getImportModule()
76 return ImportModule.getValue(); in getImportModule()
80 void setImportModule(StringRef Name) { ImportModule = Name; } in setImportModule()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyTargetStreamer.h47 StringRef ImportModule) = 0;
72 void emitImportModule(const MCSymbolWasm *Sym, StringRef ImportModule) override;
89 StringRef ImportModule) override {} in emitImportModule() argument
DWebAssemblyTargetStreamer.cpp86 StringRef ImportModule) { in emitImportModule() argument
88 << ImportModule << '\n'; in emitImportModule()
/external/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyTargetStreamer.h48 StringRef ImportModule) = 0;
74 void emitImportModule(const MCSymbolWasm *Sym, StringRef ImportModule) override;
92 StringRef ImportModule) override {} in emitImportModule() argument
DWebAssemblyTargetStreamer.cpp95 StringRef ImportModule) { in emitImportModule() argument
97 << ImportModule << '\n'; in emitImportModule()
/external/llvm-project/llvm/test/tools/llvm-readobj/wasm/
Dwasm-imports.test111 # CHECK-NEXT: ImportModule: red
122 # CHECK-NEXT: ImportModule: env
133 # CHECK-NEXT: ImportModule: blue
Dsymbols.test29 # CHECK-NEXT: ImportModule: env
46 # CHECK-NEXT: ImportModule: env
/external/llvm-project/llvm/tools/llvm-readobj/
DWasmDumper.cpp226 if (Symbol.Info.ImportModule) { in printSymbol()
227 W.printString("ImportModule", *Symbol.Info.ImportModule); in printSymbol()
/external/llvm-project/lld/wasm/
DInputFiles.cpp511 sym.Info.ImportModule, flags, this, in createUndefined()
514 sym.Info.ImportModule, flags, this, in createUndefined()
523 sym.Info.ImportModule, flags, this, in createUndefined()
526 sym.Info.ImportModule, flags, this, in createUndefined()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp733 auto ImportModule = expectIdent(); in ParseDirective() local
735 WasmSym->setImportModule(ImportModule); in ParseDirective()
736 TOut.emitImportModule(WasmSym, ImportModule); in ParseDirective()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DWasm.h181 StringRef ImportModule; // For undefined symbols the module of the import member
/external/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp814 auto ImportModule = expectIdent(); in ParseDirective() local
816 WasmSym->setImportModule(storeName(ImportModule)); in ParseDirective()
817 TOut.emitImportModule(WasmSym, ImportModule); in ParseDirective()
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DWasm.h189 Optional<StringRef> ImportModule; member
/external/llvm-project/llvm/lib/Object/
DWasmObjectFile.cpp552 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
584 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
617 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
681 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
/external/llvm-project/llvm/test/MC/WebAssembly/
Ddebug-info64.ll222 ; CHECK-NEXT: ImportModule: env
Ddebug-info.ll222 ; CHECK-NEXT: ImportModule: env
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWasmObjectFile.cpp517 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
546 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
607 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.h597 static PythonModule ImportModule(llvm::StringRef name) {
/external/llvm-project/clang/include/clang/Basic/
DAttr.td1738 let Args = [StringArgument<"ImportModule">];