Polly 22.0.0git
PollyFunctionPass.h
Go to the documentation of this file.
1//===------ PollyFunctionPass.h - Polly function 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_POLLYFUNCTIONPASS_H_
10#define POLLY_PASS_POLLYFUNCTIONPASS_H_
11
13#include "llvm/IR/Analysis.h"
14#include "llvm/IR/PassManager.h"
15#include <utility>
16
17namespace polly {
18
19class PollyFunctionPass : public llvm::PassInfoMixin<PollyFunctionPass> {
20public:
23
24 llvm::PreservedAnalyses run(llvm::Function &F,
25 llvm::FunctionAnalysisManager &);
26
27private:
29};
30} // namespace polly
31
32#endif /* POLLY_PASS_POLLYFUNCTIONPASS_H_ */
llvm::PreservedAnalyses run(llvm::Function &F, llvm::FunctionAnalysisManager &)
PollyFunctionPass(PollyPassOptions Opts)
Options for the Polly pass.