Polly 22.0.0git
ScopInliner.h
Go to the documentation of this file.
1//===------ ScopInliner.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#ifndef POLLY_POLLYINLINER_H
10#define POLLY_POLLYINLINER_H
11
12#include "llvm/Analysis/CGSCCPassManager.h"
13#include "llvm/Analysis/LazyCallGraph.h"
14#include "llvm/IR/PassManager.h"
15
16namespace polly {
17class ScopInlinerPass : public llvm::PassInfoMixin<ScopInlinerPass> {
18public:
20
21 llvm::PreservedAnalyses run(llvm::LazyCallGraph::SCC &C,
22 llvm::CGSCCAnalysisManager &AM,
23 llvm::LazyCallGraph &CG,
24 llvm::CGSCCUpdateResult &UR);
25};
26
28} // namespace polly
29
30namespace llvm {
31void initializeScopInlinerWrapperPassPass(llvm::PassRegistry &);
32}
33
34#endif /* POLLY_POLLYINLINER_H */
llvm::PreservedAnalyses run(llvm::LazyCallGraph::SCC &C, llvm::CGSCCAnalysisManager &AM, llvm::LazyCallGraph &CG, llvm::CGSCCUpdateResult &UR)
#define C(FN,...)
Definition isl_test2.cc:197
void initializeScopInlinerWrapperPassPass(llvm::PassRegistry &)
llvm::Pass * createScopInlinerWrapperPass()