Home
last modified time | relevance | path

Searched refs:WasmGlobalType (Results 1 – 25 of 25) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DWasmTraits.h50 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) {
DWasm.h39 const wasm::WasmGlobalType *GlobalType, in WasmSymbol()
46 const wasm::WasmGlobalType *GlobalType;
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DWasmTraits.h50 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) {
DWasm.h92 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/
DWasm.h85 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/
DMCSymbolWasm.h26 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/
DMCSymbolWasm.h27 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/
DLLVM.h51 struct WasmGlobalType;
90 using llvm::wasm::WasmGlobalType;
/external/llvm-project/lld/wasm/
DWriterUtils.h52 void writeGlobalType(raw_ostream &os, const llvm::wasm::WasmGlobalType &type);
70 std::string toString(const llvm::wasm::WasmGlobalType &type);
DSymbols.h317 const WasmGlobalType *getGlobalType() const { return globalType; } in getGlobalType()
326 const WasmGlobalType *globalType) in GlobalSymbol()
329 const WasmGlobalType *globalType;
350 const WasmGlobalType *type = nullptr)
DInputGlobal.h29 const WasmGlobalType &getType() const { return global.Type; } in getType()
DWriterUtils.cpp58 std::string toString(const WasmGlobalType &type) { in toString()
186 void writeGlobalType(raw_ostream &os, const WasmGlobalType &type) { in writeGlobalType()
DDriver.cpp566 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()
DSymbolTable.h75 const WasmGlobalType *type);
DSymbolTable.cpp158 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/
DWasm.h38 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/
DWebAssemblyMCInstLower.cpp86 WasmSym->setGlobalType(wasm::WasmGlobalType{ in GetExternalSymbolSymbol()
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyMCInstLower.cpp88 WasmSym->setGlobalType(wasm::WasmGlobalType{ in GetExternalSymbolSymbol()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp680 wasm::WasmGlobalType{uint8_t(Type.getValue()), true}); in ParseDirective()
/external/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp738 wasm::WasmGlobalType{uint8_t(Type.getValue()), Mutable}); in ParseDirective()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp437 SPSym->setGlobalType(wasm::WasmGlobalType{ in updateSubprogramScopeDIE()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DWasmObjectWriter.cpp124 wasm::WasmGlobalType Type;
/external/llvm-project/llvm/lib/MC/
DWasmObjectWriter.cpp82 wasm::WasmGlobalType Type;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWasmObjectFile.cpp488 const wasm::WasmGlobalType *GlobalType = nullptr; in parseLinkingSectionSymtab()
/external/llvm-project/llvm/lib/Object/
DWasmObjectFile.cpp520 const wasm::WasmGlobalType *GlobalType = nullptr; in parseLinkingSectionSymtab()