Home
last modified time | relevance | path

Searched refs:WasmTableType (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h89 template <> struct DenseMapInfo<wasm::WasmTableType> {
90 static wasm::WasmTableType getEmptyKey() {
91 return wasm::WasmTableType{0,
94 static wasm::WasmTableType getTombstoneKey() {
95 return wasm::WasmTableType{
98 static unsigned getHashValue(const wasm::WasmTableType &TableType) {
103 static bool isEqual(const wasm::WasmTableType &LHS,
104 const wasm::WasmTableType &RHS) {
H A DWasm.h70 struct WasmTableType { struct
77 WasmTableType Type; argument
123 WasmTableType Table;
438 inline bool operator==(const WasmTableType &LHS, const WasmTableType &RHS) {
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h29 Optional<wasm::WasmTableType> TableType;
134 const wasm::WasmTableType &getTableType() const { in getTableType()
138 void setTableType(wasm::WasmTableType TT) { TableType = TT; } in setTableType()
/freebsd-13.1/contrib/llvm-project/lld/include/lld/Common/
H A DLLVM.h57 struct WasmTableType;
98 using llvm::wasm::WasmTableType;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyUtilities.cpp134 wasm::WasmTableType TableType = {wasm::WASM_TYPE_FUNCREF, Limits}; in getOrCreateFuncrefCallTableSymbol()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp82 const wasm::WasmTableType &Type = Sym->getTableType(); in emitTableType()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h39 const wasm::WasmTableType *TableType, in WasmSymbol()
47 const wasm::WasmTableType *TableType;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp217 static wasm::WasmTableType readTableType(WasmObjectFile::ReadContext &Ctx) { in readTableType()
218 wasm::WasmTableType TableType; in readTableType()
531 const wasm::WasmTableType *TableType = nullptr; in parseLinkingSectionSymtab()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp861 wasm::WasmTableType Type = {uint8_t(ElemType.getValue()), Limits}; in ParseDirective()