Polly 22.0.0git
PollyModulePass.h
Go to the documentation of this file.
1//===------ PollyModulePass.h - Polly module pass -------------------------===//
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_PASS_POLLYMODULEPASS_H_
10#define POLLY_PASS_POLLYMODULEPASS_H_
11
13#include "llvm/IR/PassManager.h"
14
15namespace polly {
16
17class PollyModulePass : public llvm::PassInfoMixin<PollyModulePass> {
18public:
21
22 llvm::PreservedAnalyses run(llvm::Module &M, llvm::ModuleAnalysisManager &);
23
24private:
26};
27
28} // namespace polly
29
30#endif /* POLLY_PASS_POLLYMODULEPASS_H_ */
PollyPassOptions Opts
llvm::PreservedAnalyses run(llvm::Module &M, llvm::ModuleAnalysisManager &)
PollyModulePass(PollyPassOptions Opts)
Options for the Polly pass.