/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | WasmTraits.h | 50 template <> struct DenseMapInfo<wasm::WasmGlobalType> { 51 static wasm::WasmGlobalType getEmptyKey() { 52 return wasm::WasmGlobalType{1, true}; 54 static wasm::WasmGlobalType getTombstoneKey() { 55 return wasm::WasmGlobalType{2, true}; 57 static unsigned getHashValue(const wasm::WasmGlobalType &GlobalType) { 60 static bool isEqual(const wasm::WasmGlobalType &LHS, 61 const wasm::WasmGlobalType &RHS) {
|
D | Wasm.h | 39 const wasm::WasmGlobalType *GlobalType, in WasmSymbol() 46 const wasm::WasmGlobalType *GlobalType;
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | WasmTraits.h | 50 template <> struct DenseMapInfo<wasm::WasmGlobalType> { 51 static wasm::WasmGlobalType getEmptyKey() { 52 return wasm::WasmGlobalType{1, true}; 54 static wasm::WasmGlobalType getTombstoneKey() { 55 return wasm::WasmGlobalType{2, true}; 57 static unsigned getHashValue(const wasm::WasmGlobalType &GlobalType) { 60 static bool isEqual(const wasm::WasmGlobalType &LHS, 61 const wasm::WasmGlobalType &RHS) {
|
D | Wasm.h | 92 struct WasmGlobalType { struct 99 WasmGlobalType Type; argument 122 WasmGlobalType Global; 407 inline bool operator==(const WasmGlobalType &LHS, const WasmGlobalType &RHS) { 411 inline bool operator!=(const WasmGlobalType &LHS, const WasmGlobalType &RHS) {
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Wasm.h | 85 struct WasmGlobalType { struct 92 WasmGlobalType Type; argument 115 WasmGlobalType Global; 378 inline bool operator==(const WasmGlobalType &LHS, const WasmGlobalType &RHS) { 382 inline bool operator!=(const WasmGlobalType &LHS, const WasmGlobalType &RHS) {
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSymbolWasm.h | 26 Optional<wasm::WasmGlobalType> GlobalType; 101 const wasm::WasmGlobalType &getGlobalType() const { in getGlobalType() 105 void setGlobalType(wasm::WasmGlobalType GT) { GlobalType = GT; } in setGlobalType()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSymbolWasm.h | 27 Optional<wasm::WasmGlobalType> GlobalType; 117 const wasm::WasmGlobalType &getGlobalType() const { in getGlobalType() 121 void setGlobalType(wasm::WasmGlobalType GT) { GlobalType = GT; } in setGlobalType()
|
/external/llvm-project/lld/include/lld/Common/ |
D | LLVM.h | 51 struct WasmGlobalType; 90 using llvm::wasm::WasmGlobalType;
|
/external/llvm-project/lld/wasm/ |
D | WriterUtils.h | 52 void writeGlobalType(raw_ostream &os, const llvm::wasm::WasmGlobalType &type); 70 std::string toString(const llvm::wasm::WasmGlobalType &type);
|
D | Symbols.h | 317 const WasmGlobalType *getGlobalType() const { return globalType; } in getGlobalType() 326 const WasmGlobalType *globalType) in GlobalSymbol() 329 const WasmGlobalType *globalType; 350 const WasmGlobalType *type = nullptr)
|
D | InputGlobal.h | 29 const WasmGlobalType &getType() const { return global.Type; } in getType()
|
D | WriterUtils.cpp | 58 std::string toString(const WasmGlobalType &type) { in toString() 186 void writeGlobalType(raw_ostream &os, const WasmGlobalType &type) { in writeGlobalType()
|
D | Driver.cpp | 566 createUndefinedGlobal(StringRef name, llvm::wasm::WasmGlobalType *type) { in createUndefinedGlobal() 608 static llvm::wasm::WasmGlobalType globalTypeI32 = {WASM_TYPE_I32, false}; in createSyntheticSymbols() 609 static llvm::wasm::WasmGlobalType globalTypeI64 = {WASM_TYPE_I64, false}; in createSyntheticSymbols() 610 static llvm::wasm::WasmGlobalType mutableGlobalTypeI32 = {WASM_TYPE_I32, in createSyntheticSymbols() 612 static llvm::wasm::WasmGlobalType mutableGlobalTypeI64 = {WASM_TYPE_I64, in createSyntheticSymbols()
|
D | SymbolTable.h | 75 const WasmGlobalType *type);
|
D | SymbolTable.cpp | 158 const WasmGlobalType *newType) { in checkGlobalType() 164 const WasmGlobalType *oldType = cast<GlobalSymbol>(existing)->getGlobalType(); in checkGlobalType() 536 const WasmGlobalType *type) { in addUndefinedGlobal()
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | Wasm.h | 38 const wasm::WasmGlobalType *GlobalType, const uint8_t TableType, in WasmSymbol() 45 const wasm::WasmGlobalType *GlobalType;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyMCInstLower.cpp | 86 WasmSym->setGlobalType(wasm::WasmGlobalType{ in GetExternalSymbolSymbol()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyMCInstLower.cpp | 88 WasmSym->setGlobalType(wasm::WasmGlobalType{ in GetExternalSymbolSymbol()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 680 wasm::WasmGlobalType{uint8_t(Type.getValue()), true}); in ParseDirective()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 738 wasm::WasmGlobalType{uint8_t(Type.getValue()), Mutable}); in ParseDirective()
|
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 437 SPSym->setGlobalType(wasm::WasmGlobalType{ in updateSubprogramScopeDIE()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | WasmObjectWriter.cpp | 124 wasm::WasmGlobalType Type;
|
/external/llvm-project/llvm/lib/MC/ |
D | WasmObjectWriter.cpp | 82 wasm::WasmGlobalType Type;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 488 const wasm::WasmGlobalType *GlobalType = nullptr; in parseLinkingSectionSymtab()
|
/external/llvm-project/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 520 const wasm::WasmGlobalType *GlobalType = nullptr; in parseLinkingSectionSymtab()
|