1 //===- BreakCriticalEdges.h - Critical Edge Elimination Pass --------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // BreakCriticalEdges pass - Break all of the critical edges in the CFG by
10 // inserting a dummy basic block. This pass may be "required" by passes that
11 // cannot deal with critical edges. For this usage, the structure type is
12 // forward declared. This pass obviously invalidates the CFG, but can update
15 //===----------------------------------------------------------------------===//
17 #ifndef LLVM_TRANSFORMS_UTILS_BREAKCRITICALEDGES_H
18 #define LLVM_TRANSFORMS_UTILS_BREAKCRITICALEDGES_H
20 #include "llvm/IR/Function.h"
21 #include "llvm/IR/PassManager.h"
24 struct BreakCriticalEdgesPass
: public PassInfoMixin
<BreakCriticalEdgesPass
> {
25 PreservedAnalyses
run(Function
&F
, FunctionAnalysisManager
&AM
);
28 #endif // LLVM_TRANSFORMS_UTILS_BREAKCRITICALEDGES_H