Polly
22.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
:
public
llvm::PassInfoMixin<PollyFunctionPass> {
20
public
:
21
PollyFunctionPass
() {}
22
PollyFunctionPass
(
PollyPassOptions
Opts
) :
Opts
(std::move(
Opts
)) {}
23
24
llvm::PreservedAnalyses
run
(llvm::Function &F,
25
llvm::FunctionAnalysisManager &);
26
27
private
:
28
PollyPassOptions
Opts
;
29
};
30
}
// namespace polly
31
32
#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:22
polly::PollyFunctionPass::Opts
PollyPassOptions Opts
Definition
PollyFunctionPass.h:28
polly::PollyFunctionPass::PollyFunctionPass
PollyFunctionPass()
Definition
PollyFunctionPass.h:21
polly::PollyPassOptions
Options for the Polly pass.
Definition
PhaseManager.h:74
polly
Definition
Canonicalization.h:14
Generated on
for Polly by
1.14.0