//===- bolt/Rewrite/MachORewriteInstance.h - MachO rewriter -----*- 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 // //===----------------------------------------------------------------------===// // // Interface to control an instance of a macho binary rewriting process. // //===----------------------------------------------------------------------===// #ifndef BOLT_REWRITE_MACHO_REWRITE_INSTANCE_H #define BOLT_REWRITE_MACHO_REWRITE_INSTANCE_H #include "bolt/Core/Linker.h" #include "bolt/Utils/NameResolver.h" #include "llvm/Support/Error.h" #include <memory> namespace llvm { class ToolOutputFile; class raw_pwrite_stream; namespace object { class MachOObjectFile; } // namespace object namespace bolt { class BinaryContext; class ProfileReaderBase; class MachORewriteInstance { … }; } // namespace bolt } // namespace llvm #endif