/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSymbolWasm.h | 23 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/ |
D | MCSymbolWasm.h | 22 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/ |
D | WebAssemblyTargetStreamer.h | 47 StringRef ImportModule) = 0; 72 void emitImportModule(const MCSymbolWasm *Sym, StringRef ImportModule) override; 89 StringRef ImportModule) override {} in emitImportModule() argument
|
D | WebAssemblyTargetStreamer.cpp | 86 StringRef ImportModule) { in emitImportModule() argument 88 << ImportModule << '\n'; in emitImportModule()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
D | WebAssemblyTargetStreamer.h | 48 StringRef ImportModule) = 0; 74 void emitImportModule(const MCSymbolWasm *Sym, StringRef ImportModule) override; 92 StringRef ImportModule) override {} in emitImportModule() argument
|
D | WebAssemblyTargetStreamer.cpp | 95 StringRef ImportModule) { in emitImportModule() argument 97 << ImportModule << '\n'; in emitImportModule()
|
/external/llvm-project/llvm/test/tools/llvm-readobj/wasm/ |
D | wasm-imports.test | 111 # CHECK-NEXT: ImportModule: red 122 # CHECK-NEXT: ImportModule: env 133 # CHECK-NEXT: ImportModule: blue
|
D | symbols.test | 29 # CHECK-NEXT: ImportModule: env 46 # CHECK-NEXT: ImportModule: env
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | WasmDumper.cpp | 226 if (Symbol.Info.ImportModule) { in printSymbol() 227 W.printString("ImportModule", *Symbol.Info.ImportModule); in printSymbol()
|
/external/llvm-project/lld/wasm/ |
D | InputFiles.cpp | 511 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/ |
D | WebAssemblyAsmParser.cpp | 733 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/ |
D | Wasm.h | 181 StringRef ImportModule; // For undefined symbols the module of the import member
|
/external/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 814 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/ |
D | Wasm.h | 189 Optional<StringRef> ImportModule; member
|
/external/llvm-project/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 552 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/ |
D | debug-info64.ll | 222 ; CHECK-NEXT: ImportModule: env
|
D | debug-info.ll | 222 ; CHECK-NEXT: ImportModule: env
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 517 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/ |
D | PythonDataObjects.h | 597 static PythonModule ImportModule(llvm::StringRef name) {
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Attr.td | 1738 let Args = [StringArgument<"ImportModule">];
|