/src/shaderc/third_party/spirv-tools/source/opt/pass.h
Line | Count | Source |
1 | | // Copyright (c) 2016 Google Inc. |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); |
4 | | // you may not use this file except in compliance with the License. |
5 | | // You may obtain a copy of the License at |
6 | | // |
7 | | // http://www.apache.org/licenses/LICENSE-2.0 |
8 | | // |
9 | | // Unless required by applicable law or agreed to in writing, software |
10 | | // distributed under the License is distributed on an "AS IS" BASIS, |
11 | | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 | | // See the License for the specific language governing permissions and |
13 | | // limitations under the License. |
14 | | |
15 | | #ifndef SOURCE_OPT_PASS_H_ |
16 | | #define SOURCE_OPT_PASS_H_ |
17 | | |
18 | | #include <algorithm> |
19 | | #include <map> |
20 | | #include <unordered_map> |
21 | | #include <unordered_set> |
22 | | #include <utility> |
23 | | |
24 | | #include "source/opt/basic_block.h" |
25 | | #include "source/opt/def_use_manager.h" |
26 | | #include "source/opt/ir_context.h" |
27 | | #include "source/opt/module.h" |
28 | | #include "spirv-tools/libspirv.hpp" |
29 | | #include "types.h" |
30 | | |
31 | | // Avoid unused variable warning/error on Linux |
32 | | #ifndef NDEBUG |
33 | | #define USE_ASSERT(x) assert(x) |
34 | | #else |
35 | 0 | #define USE_ASSERT(x) ((void)(x)) |
36 | | #endif |
37 | | |
38 | | namespace spvtools { |
39 | | namespace opt { |
40 | | |
41 | | // Abstract class of a pass. All passes should implement this abstract class |
42 | | // and all analysis and transformation is done via the Process() method. |
43 | | class Pass { |
44 | | public: |
45 | | // The status of processing a module using a pass. |
46 | | // |
47 | | // The numbers for the cases are assigned to make sure that Failure & anything |
48 | | // is Failure, SuccessWithChange & any success is SuccessWithChange. |
49 | | enum class Status { |
50 | | Failure = 0x00, |
51 | | SuccessWithChange = 0x10, |
52 | | SuccessWithoutChange = 0x11, |
53 | | }; |
54 | | |
55 | | using ProcessFunction = std::function<bool(Function*)>; |
56 | | |
57 | | // Destructs the pass. |
58 | 42.7k | virtual ~Pass() = default; |
59 | | |
60 | | // Returns a descriptive name for this pass. |
61 | | // |
62 | | // NOTE: When deriving a new pass class, make sure you make the name |
63 | | // compatible with the corresponding spirv-opt command-line flag. For example, |
64 | | // if you add the flag --my-pass to spirv-opt, make this function return |
65 | | // "my-pass" (no leading hyphens). |
66 | | virtual const char* name() const = 0; |
67 | | |
68 | | // Sets the message consumer to the given |consumer|. |consumer| which will be |
69 | | // invoked every time there is a message to be communicated to the outside. |
70 | 42.7k | void SetMessageConsumer(MessageConsumer c) { consumer_ = std::move(c); } |
71 | | |
72 | | // Returns the reference to the message consumer for this pass. |
73 | 0 | const MessageConsumer& consumer() const { return consumer_; } |
74 | | |
75 | | // Returns the def-use manager used for this pass. TODO(dnovillo): This should |
76 | | // be handled by the pass manager. |
77 | 2.94M | analysis::DefUseManager* get_def_use_mgr() const { |
78 | 2.94M | return context()->get_def_use_mgr(); |
79 | 2.94M | } |
80 | | |
81 | 834k | analysis::DecorationManager* get_decoration_mgr() const { |
82 | 834k | return context()->get_decoration_mgr(); |
83 | 834k | } |
84 | | |
85 | 0 | FeatureManager* get_feature_mgr() const { |
86 | 0 | return context()->get_feature_mgr(); |
87 | 0 | } |
88 | | |
89 | | // Returns a pointer to the current module for this pass. |
90 | 112k | Module* get_module() const { return context_->module(); } |
91 | | |
92 | | // Sets the pointer to the current context for this pass. |
93 | 0 | void SetContextForTesting(IRContext* ctx) { context_ = ctx; } |
94 | | |
95 | | // Returns a pointer to the current context for this pass. |
96 | 9.05M | IRContext* context() const { return context_; } |
97 | | |
98 | | // Returns a pointer to the CFG for current module. |
99 | 347k | CFG* cfg() const { return context()->cfg(); } |
100 | | |
101 | | // Run the pass on the given |module|. Returns Status::Failure if errors occur |
102 | | // when processing. Returns the corresponding Status::Success if processing is |
103 | | // successful to indicate whether changes are made to the module. If there |
104 | | // were any changes it will also invalidate the analyses in the IRContext |
105 | | // that are not preserved. |
106 | | // |
107 | | // It is an error if |Run| is called twice with the same instance of the pass. |
108 | | // If this happens the return value will be |Failure|. |
109 | | Status Run(IRContext* ctx); |
110 | | |
111 | | // Returns the set of analyses that the pass is guaranteed to preserve. |
112 | 1.41k | virtual IRContext::Analysis GetPreservedAnalyses() { |
113 | 1.41k | return IRContext::kAnalysisNone; |
114 | 1.41k | } |
115 | | |
116 | | // Return type id for |ptrInst|'s pointee |
117 | | uint32_t GetPointeeTypeId(const Instruction* ptrInst) const; |
118 | | |
119 | | // Return base type of |ty_id| type |
120 | | Instruction* GetBaseType(uint32_t ty_id); |
121 | | |
122 | | // Return true if |inst| returns scalar, vector or matrix type with base |
123 | | // float and |width| |
124 | | bool IsFloat(uint32_t ty_id, uint32_t width); |
125 | | |
126 | | // Return the id of OpConstantNull of type |type_id|. Create if necessary. |
127 | | uint32_t GetNullId(uint32_t type_id); |
128 | | |
129 | | protected: |
130 | | // Constructs a new pass. |
131 | | // |
132 | | // The constructed instance will have an empty message consumer, which just |
133 | | // ignores all messages from the library. Use SetMessageConsumer() to supply |
134 | | // one if messages are of concern. |
135 | | Pass(); |
136 | | |
137 | | // Processes the given |module|. Returns Status::Failure if errors occur when |
138 | | // processing. Returns the corresponding Status::Success if processing is |
139 | | // successful to indicate whether changes are made to the module. |
140 | | virtual Status Process() = 0; |
141 | | |
142 | | // Return the next available SSA id and increment it. |
143 | | // TODO(1841): Handle id overflow. |
144 | 6.97k | uint32_t TakeNextId() { return context_->TakeNextId(); } |
145 | | |
146 | | // Returns the id whose value is the same as |object_to_copy| except its type |
147 | | // is |new_type_id|. Any instructions needed to generate this value will be |
148 | | // inserted before |insertion_position|. Returns 0 if a copy could not be |
149 | | // done. |
150 | | uint32_t GenerateCopy(Instruction* object_to_copy, uint32_t new_type_id, |
151 | | Instruction* insertion_position); |
152 | | |
153 | | private: |
154 | | MessageConsumer consumer_; // Message consumer. |
155 | | |
156 | | // The context that this pass belongs to. |
157 | | IRContext* context_; |
158 | | |
159 | | // An instance of a pass can only be run once because it is too hard to |
160 | | // enforce proper resetting of internal state for each instance. This member |
161 | | // is used to check that we do not run the same instance twice. |
162 | | bool already_run_; |
163 | | }; |
164 | | |
165 | 3.84k | inline Pass::Status CombineStatus(Pass::Status a, Pass::Status b) { |
166 | 3.84k | return std::min(a, b); |
167 | 3.84k | } |
168 | | |
169 | | } // namespace opt |
170 | | } // namespace spvtools |
171 | | |
172 | | #endif // SOURCE_OPT_PASS_H_ |