//===- bolt/Rewrite/BinaryPassManager.h - Binary-level passes ---*- 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 // //===----------------------------------------------------------------------===// // // A very simple binary-level analysis/optimization passes system. // //===----------------------------------------------------------------------===// #ifndef BOLT_REWRITE_BINARY_PASS_MANAGER_H #define BOLT_REWRITE_BINARY_PASS_MANAGER_H #include "bolt/Passes/BinaryPasses.h" #include <memory> #include <vector> namespace llvm { namespace bolt { class BinaryContext; /// Simple class for managing analyses and optimizations on BinaryFunctions. class BinaryFunctionPassManager { … }; } // namespace bolt } // namespace llvm #endif // BOLT_REWRITE_BINARY_PASS_MANAGER_H