llvm/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h

//=- MachineBranchProbabilityInfo.h - Branch Probability Analysis -*- 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
//
//===----------------------------------------------------------------------===//
//
// This pass is used to evaluate branch probabilties on machine basic blocks.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CODEGEN_MACHINEBRANCHPROBABILITYINFO_H
#define LLVM_CODEGEN_MACHINEBRANCHPROBABILITYINFO_H

#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachinePassManager.h"
#include "llvm/Pass.h"
#include "llvm/Support/BranchProbability.h"

namespace llvm {

class MachineBranchProbabilityInfo {};

class MachineBranchProbabilityAnalysis
    : public AnalysisInfoMixin<MachineBranchProbabilityAnalysis> {};

class MachineBranchProbabilityPrinterPass
    : public PassInfoMixin<MachineBranchProbabilityPrinterPass> {};

class MachineBranchProbabilityInfoWrapperPass : public ImmutablePass {};
}


#endif