llvm/bolt/include/bolt/Rewrite/MetadataManager.h

//===- bolt/Rewrite/MetadataManager.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_METADATA_MANAGER_H
#define BOLT_REWRITE_METADATA_MANAGER_H

#include "bolt/Rewrite/MetadataRewriter.h"
#include "llvm/ADT/SmallVector.h"

namespace llvm {
namespace bolt {

class BinaryContext;

/// This class manages a collection of metadata handlers/rewriters.
/// It is responsible for registering new rewriters and invoking them at
/// certain stages of the binary processing pipeline.
class MetadataManager {};

} // namespace bolt
} // namespace llvm

#endif // BOLT_REWRITE_METADATA_MANAGER_H