Home
last modified time | relevance | path

Searched refs:TableType (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/gnu/llvm/llvm/include/llvm/MC/
DMCSymbolWasm.h29 std::optional<wasm::WasmTableType> TableType; variable
137 bool hasTableType() const { return TableType.has_value(); } in hasTableType()
140 return *TableType; in getTableType()
142 void setTableType(wasm::WasmTableType TT) { TableType = TT; } in setTableType()
/openbsd/src/gnu/llvm/llvm/include/llvm/BinaryFormat/
DWasmTraits.h96 static unsigned getHashValue(const wasm::WasmTableType &TableType) {
98 TableType.ElemType,
99 DenseMapInfo<wasm::WasmLimits, void>::getHashValue(TableType.Limits));
/openbsd/src/gnu/llvm/llvm/include/llvm/Object/
DWasm.h39 const wasm::WasmTableType *TableType, in WasmSymbol() argument
41 : Info(Info), GlobalType(GlobalType), TableType(TableType), in WasmSymbol()
46 const wasm::WasmTableType *TableType; variable
/openbsd/src/gnu/llvm/llvm/include/llvm/ObjectYAML/
DWasmYAML.h31 LLVM_YAML_STRONG_TYPEDEF(uint32_t, TableType)
54 TableType ElemType;
579 template <> struct ScalarEnumerationTraits<WasmYAML::TableType> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
580 static void enumeration(IO &IO, WasmYAML::TableType &Type); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/openbsd/src/gnu/llvm/llvm/lib/Object/
DWasmObjectFile.cpp249 wasm::WasmTableType TableType; in readTableType() local
250 TableType.ElemType = readUint8(Ctx); in readTableType()
251 TableType.Limits = readLimits(Ctx); in readTableType()
252 return TableType; in readTableType()
614 const wasm::WasmTableType *TableType = nullptr; in parseLinkingSectionSymtab() local
691 TableType = &Table.Type; in parseLinkingSectionSymtab()
702 TableType = &Import.Table; in parseLinkingSectionSymtab()
784 Symbols.emplace_back(LinkingData.SymbolTable.back(), GlobalType, TableType, in parseLinkingSectionSymtab()
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp870 CComPtr<IDiaSymbol> TableType; in getVirtualBaseTableType() local
871 if (FAILED(Symbol->get_virtualBaseTableType(&TableType)) || !TableType) in getVirtualBaseTableType()
874 auto RawVT = std::make_unique<DIARawSymbol>(Session, TableType); in getVirtualBaseTableType()
/openbsd/src/gnu/llvm/lld/wasm/
DInputFiles.cpp664 sym.TableType); in createUndefined()
667 sym.TableType); in createUndefined()
/openbsd/src/gnu/llvm/llvm/lib/ObjectYAML/
DWasmYAML.cpp628 void ScalarEnumerationTraits<WasmYAML::TableType>::enumeration( in enumeration()
629 IO &IO, WasmYAML::TableType &Type) { in enumeration()