Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVStringPool.h30 using TableType = StringMap<size_t, BumpPtrAllocator>; variable
31 using ValueType = TableType::value_type;
33 TableType StringTable;
51 TableType::const_iterator Iter = StringTable.find(Key); in findIndex()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A 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/
H A 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/
H A 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/lib/Target/WebAssembly/Utils/
H A DWebAssemblyUtilities.cpp159 wasm::WasmTableType TableType = {wasm::WASM_TYPE_FUNCREF, Limits}; in getOrCreateFuncrefCallTableSymbol() local
161 Sym->setTableType(TableType); in getOrCreateFuncrefCallTableSymbol()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A 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/
H A 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/
H A 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/
H A DInputFiles.cpp664 sym.TableType); in createUndefined()
667 sym.TableType); in createUndefined()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp628 void ScalarEnumerationTraits<WasmYAML::TableType>::enumeration( in enumeration()
629 IO &IO, WasmYAML::TableType &Type) { in enumeration()