Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h30 std::optional<wasm::WasmTableType> TableType; variable
140 bool hasTableType() const { return TableType.has_value(); } in hasTableType()
143 return *TableType; in getTableType()
145 void setTableType(wasm::WasmTableType TT) { TableType = TT; } in setTableType()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h97 static unsigned getHashValue(const wasm::WasmTableType &TableType) {
99 TableType.ElemType,
100 DenseMapInfo<wasm::WasmLimits, void>::getHashValue(TableType.Limits));
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h39 const wasm::WasmTableType *TableType, in WasmSymbol() argument
41 : Info(Info), GlobalType(GlobalType), TableType(TableType), in WasmSymbol()
50 const wasm::WasmTableType *TableType; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyUtilities.cpp
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyUtilities.cpp138 wasm::WasmTableType TableType = {wasm::ValType::FUNCREF, Limits}; in getOrCreateFuncrefCallTableSymbol() local
140 Sym->setTableType(TableType); in getOrCreateFuncrefCallTableSymbol()
/freebsd/sys/contrib/dev/acpica/common/
H A Ddmtables.c200 UINT8 TableType) in AdDisassemblerHeader() argument
210 if (TableType == ACPI_IS_AML_TABLE) in AdDisassemblerHeader()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h31 LLVM_YAML_STRONG_TYPEDEF(uint32_t, TableType)
54 TableType ElemType;
580 template <> struct ScalarEnumerationTraits<WasmYAML::TableType> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
581 static void enumeration(IO &IO, WasmYAML::TableType &Type); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp301 wasm::WasmTableType TableType; in readTableType() local
303 TableType.ElemType = ElemType; in readTableType()
304 TableType.Limits = readLimits(Ctx); in readTableType()
305 return TableType; in readTableType()
544 const wasm::WasmTableType *TableType = nullptr; in parseNameSection() local
596 Symbols.emplace_back(Info, GlobalType, TableType, Signature); in parseNameSection()
717 const wasm::WasmTableType *TableType = nullptr; in parseLinkingSectionSymtab() local
794 TableType = &Table.Type; in parseLinkingSectionSymtab()
805 TableType = &Import.Table; in parseLinkingSectionSymtab()
890 Symbols.emplace_back(Info, GlobalType, TableType, Signature); in parseLinkingSectionSymtab()
[all …]
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp638 void ScalarEnumerationTraits<WasmYAML::TableType>::enumeration( in enumeration()
639 IO &IO, WasmYAML::TableType &Type) { in enumeration()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacdisasm.h1500 UINT8 TableType);