//===- WasmTraits.h - DenseMap traits for the Wasm structures ---*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file provides llvm::DenseMapInfo traits for the Wasm structures. // //===----------------------------------------------------------------------===// #ifndef LLVM_BINARYFORMAT_WASMTRAITS_H #define LLVM_BINARYFORMAT_WASMTRAITS_H #include "llvm/ADT/Hashing.h" #include "llvm/BinaryFormat/Wasm.h" namespace llvm { // Traits for using WasmSignature in a DenseMap. template <> struct DenseMapInfo<wasm::WasmSignature, void> { … }; // Traits for using WasmGlobalType in a DenseMap template <> struct DenseMapInfo<wasm::WasmGlobalType, void> { … }; // Traits for using WasmLimits in a DenseMap template <> struct DenseMapInfo<wasm::WasmLimits, void> { … }; // Traits for using WasmTableType in a DenseMap template <> struct DenseMapInfo<wasm::WasmTableType, void> { … }; } // end namespace llvm #endif // LLVM_BINARYFORMAT_WASMTRAITS_H