Polly 19.0.0git
DeadCodeElimination.h
Go to the documentation of this file.
1//===- DeadCodeElimination.h ----------------------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// Eliminate dead iterations.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef POLLY_DEADCODEELIMINATION_H
14#define POLLY_DEADCODEELIMINATION_H
15
16#include "polly/ScopPass.h"
17
18namespace llvm {
19class PassRegistry;
20class Pass;
21class raw_ostream;
22} // namespace llvm
23
24namespace polly {
26
27struct DeadCodeElimPass final : llvm::PassInfoMixin<DeadCodeElimPass> {
29
30 llvm::PreservedAnalyses run(Scop &S, ScopAnalysisManager &SAM,
32};
33
34} // namespace polly
35
36namespace llvm {
37void initializeDeadCodeElimWrapperPassPass(llvm::PassRegistry &);
38} // namespace llvm
39
40#endif /* POLLY_DEADCODEELIMINATION_H */
Static Control Part.
Definition: ScopInfo.h:1628
This file contains the declaration of the PolyhedralInfo class, which will provide an interface to ex...
void initializeDeadCodeElimWrapperPassPass(llvm::PassRegistry &)
llvm::Pass * createDeadCodeElimWrapperPass()
AnalysisManager< Scop, ScopStandardAnalysisResults & > ScopAnalysisManager
Definition: ScopPass.h:46
llvm::PreservedAnalyses run(Scop &S, ScopAnalysisManager &SAM, ScopStandardAnalysisResults &SAR, SPMUpdater &U)