//===--- llvm/CodeGen/WasmEHFuncInfo.h --------------------------*- 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 // //===----------------------------------------------------------------------===// // // Data structures for Wasm exception handling schemes. // //===----------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_WASMEHFUNCINFO_H #define LLVM_CODEGEN_WASMEHFUNCINFO_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/PointerUnion.h" #include "llvm/ADT/SmallPtrSet.h" namespace llvm { class BasicBlock; class Function; class MachineBasicBlock; namespace WebAssembly { enum Tag { … }; } BBOrMBB; struct WasmEHFuncInfo { … }; // Analyze the IR in the given function to build WasmEHFuncInfo. void calculateWasmEHInfo(const Function *F, WasmEHFuncInfo &EHInfo); } // namespace llvm #endif // LLVM_CODEGEN_WASMEHFUNCINFO_H