-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass_manager.h
127 lines (113 loc) · 4.91 KB
/
pass_manager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//===- pass_mgr.h -----------------------------------------------*- C++ -*-===//
//
// Copyright (C) 2019-2020 Alibaba Group Holding Limited.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// =============================================================================
#ifndef HALO_LIB_PASS_PASS_MGR_H_
#define HALO_LIB_PASS_PASS_MGR_H_
#include <iostream>
#include <list>
#include <memory>
#include "halo/lib/framework/global_context.h"
#include "halo/lib/ir/module.h"
#include "halo/lib/pass/pass.h"
#include "halo/lib/target/generic_cxx/generic_cxx_codegen.h"
#include "halo/lib/target/generic_llvmir/generic_llvmir_codegen.h"
#include "halo/lib/transforms/fusion.h"
namespace halo {
class FunctionPassManager;
class PassManagerImpl;
// A class that manages all IR transformation passes.
class PassManager final {
public:
explicit PassManager(GlobalContext& ctx);
~PassManager();
/// Add a pass to the pass manager.
template <typename T, typename... TS>
T* AddPass(TS&... args) {
auto pass = std::make_unique<T>(args...);
T* ret = static_cast<T*>(pass.get());
Add(std::move(pass));
return ret;
}
/// Apply all passes on `module`.
Status Run(Module* module);
/// Print the pass structure.
void Print(std::ostream& os) const;
void Dump() const;
Pass* AddAnalyzerPass(std::ostream* os);
Pass* AddARMBinaryWriterPass(std::ostream& os);
Pass* AddARMConstantWriterPass(std::ostream& os);
Pass* AddARMLLVMIRCodeGenPass(
GenericLLVMIRCodeGen::ConstantDataStorage constant_data_storage);
Pass* AddCAFFEExtensionLegalizerPass();
Pass* AddDCEPass();
Pass* AddDevicePlacementPass();
Pass* AddFusionPass(const Fusion::Options& opts);
Pass* AddGenericConstantWriterPass(std::ostream& os, bool bitcode_format);
Pass* AddGenericCXXConstantWriterPass(std::ostream& os);
Pass* AddGenericCXXCodeGenPass(std::ostream& os, std::ostream& header_os);
Pass* AddGenericCXXCodeGenPass(std::ostream& os, std::ostream& header_os,
std::ostream& dynamic_check_os,
const Opts& opts);
Pass* AddGenericLLVMIRCodeGenPass();
Pass* AddGenericLLVMIRCodeGenPass(
GenericLLVMIRCodeGen::ConstantDataStorage constant_data_storage);
Pass* AddGenericLLVMIRCodeGenPass(
const std::string& name,
GenericLLVMIRCodeGen::ConstantDataStorage constant_data_storage);
Pass* AddGenericLLVMIRWriterPass(std::ostream& os, bool bitcode_format);
Pass* AddInputLegalizerPass(int batch_size,
const std::vector<std::string>& inputs_shapes,
const std::string& scale_str);
Pass* AddInputRewriterPass(const std::vector<std::string>& inputs);
Pass* AddInstSimplifyPass();
Pass* AddInstSimplifyPass(bool simplify_for_preprocess,
bool disable_broadcasting,
bool remove_input_transpose,
bool remove_output_transpose, bool disable_conv_bn,
bool fuse_conv_bias);
Pass* AddONNXExtensionLegalizerPass();
Pass* AddOutputRewriterPass(const std::vector<std::string>& outputs);
Pass* AddReorderChannelPass(bool channel_first);
Pass* AddRISCVBinaryWriterPass(std::ostream& os);
Pass* AddRISCVConstantWriterPass(std::ostream& os);
Pass* AddRISCVLLVMIRCodeGenPass(
GenericLLVMIRCodeGen::ConstantDataStorage constant_data_storage);
Pass* AddRISCVLLVMIRCodeGenPass(
GenericLLVMIRCodeGen::ConstantDataStorage constant_data_storage,
std::string rt_lib_name);
Pass* AddSplittingPass();
Pass* AddTFExtensionLegalizerPass();
Pass* AddTFLiteExtensionLegalizerPass();
Pass* AddTritonConfigWriterPass(const std::string& filename,
int max_batch_size);
Pass* AddTypeCastPass();
Pass* AddTypeLegalizerPass();
Pass* AddTypeLegalizerPass(bool relaxed);
Pass* AddWeightsQuantizerPass(CodeGen::Quantization quant,
const std::string& file);
Pass* AddX86BinaryWriterPass(std::ostream& os);
Pass* AddX86ConstantWriterPass(std::ostream& os);
Pass* AddX86LLVMIRCodeGenPass();
Pass* AddX86LLVMIRCodeGenPass(
GenericLLVMIRCodeGen::ConstantDataStorage constant_data_storage);
private:
Pass* Add(std::unique_ptr<ModulePass> pass);
Pass* Add(std::unique_ptr<FunctionPass> pass);
Pass* Add(std::unique_ptr<BasicBlockPass> pass);
std::unique_ptr<PassManagerImpl> impl_;
};
} // end namespace halo.
#endif // HALO_LIB_PASS_PASS_MGR_H_