1/**
2 * Copyright (c) Glow Contributors. See CONTRIBUTORS file.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef GLOW_OPTIMIZER_GRAPHOPTIMIZER_FUNCTIONPASSES_H
17#define GLOW_OPTIMIZER_GRAPHOPTIMIZER_FUNCTIONPASSES_H
18
19#include "glow/Optimizer/GraphOptimizer/FunctionPass.h"
20
21namespace glow {
22
23/// Declare all FunctionPass classes.
24#define FUN_PASS(PASS_NAME) \
25 class PASS_NAME : public FunctionPass { \
26 public: \
27 PASS_NAME() : FunctionPass(#PASS_NAME) {} \
28 \
29 private: \
30 bool run(Function *F, const CompilationContext &cctx) override; \
31 FunctionPassID getID() const override { \
32 return FunctionPassID::PASS_NAME; \
33 } \
34 };
35#include "FunctionPasses.def"
36
37/// Helper that creates and \returns a FunctionPass given a provided \p passID.
38std::unique_ptr<FunctionPass> createFunctionPass(FunctionPassID passID);
39
40} // namespace glow
41
42#endif // GLOW_OPTIMIZER_GRAPHOPTIMIZER_FUNCTIONPASSES_H
43