Polly 23.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/ADT/IntrusiveRefCntPtr.h"
13#include "llvm/Analysis/CGSCCPassManager.h"
14#include "llvm/Analysis/LazyCallGraph.h"
15#include "llvm/IR/PassManager.h"
16
17namespace llvm {
18namespace vfs {
19class FileSystem;
20}
21} // namespace llvm
22
23namespace polly {
24class ScopInlinerPass : public llvm::PassInfoMixin<ScopInlinerPass> {
25 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS;
26
27public:
28 explicit ScopInlinerPass(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS);
29
30 llvm::PreservedAnalyses run(llvm::LazyCallGraph::SCC &C,
31 llvm::CGSCCAnalysisManager &AM,
32 llvm::LazyCallGraph &CG,
33 llvm::CGSCCUpdateResult &UR);
34};
35} // namespace polly
36
37#endif /* POLLY_POLLYINLINER_H */
llvm::PreservedAnalyses run(llvm::LazyCallGraph::SCC &C, llvm::CGSCCAnalysisManager &AM, llvm::LazyCallGraph &CG, llvm::CGSCCUpdateResult &UR)
ScopInlinerPass(llvm::IntrusiveRefCntPtr< llvm::vfs::FileSystem > FS)
llvm::IntrusiveRefCntPtr< llvm::vfs::FileSystem > FS
Definition ScopInliner.h:25
#define C(FN,...)
Definition isl_test2.cc:266