llvm/bolt/BinaryPassManager.h
Bill Nell f7e7e25b88 Put all optimization passes under the pass manager.
Summary:
Move eliminate unreachable code, block reordering, and CFI/exception fixup
into official optimization passes.

(cherry picked from FBD3248991)
2016-05-02 12:47:18 -07:00

77 lines
2.4 KiB
C++

//===--- BinaryPassManager.h - Binary-level analysis/optimization passes --===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// A very simple binary-level analysis/optimization passes system.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVM_BOLT_BINARY_FUNCTION_PASS_MANAGER_H
#define LLVM_TOOLS_LLVM_BOLT_BINARY_FUNCTION_PASS_MANAGER_H
#include "BinaryFunction.h"
#include "BinaryPasses.h"
#include "llvm/Support/Options.h"
#include "llvm/Support/CommandLine.h"
#include <map>
#include <memory>
#include <vector>
namespace llvm {
namespace bolt {
/// Simple class for managing analyses and optimizations on BinaryFunctions.
class BinaryFunctionPassManager {
private:
static cl::opt<bool> AlwaysOn;
static bool NagUser;
BinaryContext &BC;
std::map<uint64_t, BinaryFunction> &BFs;
std::set<uint64_t> &LargeFunctions;
std::vector<std::pair<const cl::opt<bool> &,
std::unique_ptr<BinaryFunctionPass>>> Passes;
public:
BinaryFunctionPassManager(BinaryContext &BC,
std::map<uint64_t, BinaryFunction> &BFs,
std::set<uint64_t> &LargeFunctions)
: BC(BC), BFs(BFs), LargeFunctions(LargeFunctions) {}
/// Adds a pass to this manager based on the value of its corresponding
/// command-line option.
void registerPass(std::unique_ptr<BinaryFunctionPass> Pass,
const cl::opt<bool> &Opt) {
Passes.emplace_back(Opt, std::move(Pass));
}
/// Adds an unconditionally run pass to this manager.
void registerPass(std::unique_ptr<BinaryFunctionPass> Pass) {
Passes.emplace_back(AlwaysOn, std::move(Pass));
}
/// Run all registered passes in the order they were added.
void runPasses() {
for (const auto &OptPassPair : Passes) {
if (OptPassPair.first) {
OptPassPair.second->runOnFunctions(BC, BFs, LargeFunctions);
}
}
}
/// Runs all enabled implemented passes on all functions.
static void runAllPasses(BinaryContext &BC,
std::map<uint64_t, BinaryFunction> &Functions,
std::set<uint64_t> &largeFunctions);
};
} // namespace bolt
} // namespace llvm
#endif