Polly
23.0.0git
llvm-project
polly
include
polly
Pass
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
12
#include "
polly/Pass/PhaseManager.h
"
13
#include "llvm/IR/Analysis.h"
14
#include "llvm/IR/PassManager.h"
15
#include <utility>
16
17
namespace
polly
{
18
19
class
PollyFunctionPass
20
:
public
llvm::OptionalPassInfoMixin<PollyFunctionPass> {
21
public
:
22
PollyFunctionPass
() {}
23
PollyFunctionPass
(
PollyPassOptions
Opts
) :
Opts
(std::move(
Opts
)) {}
24
25
llvm::PreservedAnalyses
run
(llvm::Function &F,
26
llvm::FunctionAnalysisManager &);
27
28
private
:
29
PollyPassOptions
Opts
;
30
};
31
}
// namespace polly
32
33
#endif
/* POLLY_PASS_POLLYFUNCTIONPASS_H_ */
PhaseManager.h
polly::PollyFunctionPass::run
llvm::PreservedAnalyses run(llvm::Function &F, llvm::FunctionAnalysisManager &)
Definition
PollyFunctionPass.cpp:14
polly::PollyFunctionPass::PollyFunctionPass
PollyFunctionPass(PollyPassOptions Opts)
Definition
PollyFunctionPass.h:23
polly::PollyFunctionPass::Opts
PollyPassOptions Opts
Definition
PollyFunctionPass.h:29
polly::PollyFunctionPass::PollyFunctionPass
PollyFunctionPass()
Definition
PollyFunctionPass.h:22
polly::PollyPassOptions
Options for the Polly pass.
Definition
PhaseManager.h:74
polly
Definition
Canonicalization.h:14
Generated on
for Polly by
1.14.0