Polly 23.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
20 : public llvm::OptionalPassInfoMixin<PollyFunctionPass> {
21public:
24
25 llvm::PreservedAnalyses run(llvm::Function &F,
26 llvm::FunctionAnalysisManager &);
27
28private:
30};
31} // namespace polly
32
33#endif /* POLLY_PASS_POLLYFUNCTIONPASS_H_ */
llvm::PreservedAnalyses run(llvm::Function &F, llvm::FunctionAnalysisManager &)
PollyFunctionPass(PollyPassOptions Opts)
Options for the Polly pass.