//===- bolt/Rewrite/ExecutableFileMemoryManager.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 // //===----------------------------------------------------------------------===// #ifndef BOLT_REWRITE_EXECUTABLE_FILE_MEMORY_MANAGER_H #define BOLT_REWRITE_EXECUTABLE_FILE_MEMORY_MANAGER_H #include "llvm/ADT/StringRef.h" #include "llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h" #include <cstdint> #include <string> namespace llvm { namespace bolt { class BinaryContext; /// Class responsible for allocating and managing code and data sections. class ExecutableFileMemoryManager : public jitlink::JITLinkMemoryManager { … }; } // namespace bolt } // namespace llvm #endif