/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSymbolWasm.h | 24 Optional<std::string> ExportName; variable 91 bool hasExportName() const { return ExportName.hasValue(); } in hasExportName() 92 const StringRef getExportName() const { return ExportName.getValue(); } in getExportName() 93 void setExportName(StringRef Name) { ExportName = Name; } in setExportName()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSymbolWasm.h | 25 Optional<StringRef> ExportName; variable 95 bool hasExportName() const { return ExportName.hasValue(); } in hasExportName() 96 StringRef getExportName() const { return ExportName.getValue(); } in getExportName() 97 void setExportName(StringRef Name) { ExportName = Name; } in setExportName()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
D | WebAssemblyTargetStreamer.h | 53 StringRef ExportName) = 0; 74 void emitExportName(const MCSymbolWasm *Sym, StringRef ExportName) override; 93 StringRef ExportName) override {} in emitExportName() argument
|
D | WebAssemblyTargetStreamer.cpp | 98 StringRef ExportName) { in emitExportName() argument 100 << ExportName << '\n'; in emitExportName()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
D | WebAssemblyTargetStreamer.h | 54 StringRef ExportName) = 0; 76 void emitExportName(const MCSymbolWasm *Sym, StringRef ExportName) override; 96 StringRef ExportName) override {} in emitExportName() argument
|
D | WebAssemblyTargetStreamer.cpp | 107 StringRef ExportName) { in emitExportName() argument 109 << ExportName << '\n'; in emitExportName()
|
/external/llvm-project/lld/wasm/ |
D | InputChunks.h | 127 exportName(func && func->ExportName.hasValue() in InputFunction() 128 ? (*func->ExportName).str() in InputFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Wasm.h | 134 StringRef ExportName; // from the "export" section member 183 StringRef ExportName; // For symbols to be exported from the final module member
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | Wasm.h | 141 Optional<StringRef> ExportName; // from the "export" section member 193 Optional<StringRef> ExportName; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 721 auto ExportName = expectIdent(); in ParseDirective() local 723 WasmSym->setExportName(ExportName); in ParseDirective() 724 TOut.emitExportName(WasmSym, ExportName); in ParseDirective()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 802 auto ExportName = expectIdent(); in ParseDirective() local 804 WasmSym->setExportName(storeName(ExportName)); in ParseDirective() 805 TOut.emitExportName(WasmSym, ExportName); in ParseDirective()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 1037 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
|
/external/llvm-project/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 1173 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Attr.td | 1730 let Args = [StringArgument<"ExportName">];
|