Searched refs:visitor (Results 1 - 25 of 43) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_cf.h50 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
51 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
64 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
65 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
79 bool accept(InstructionVisitor& visitor) override {return visitor argument
92 accept(InstructionVisitor & visitor) argument
105 accept(InstructionVisitor & visitor) argument
119 accept(InstructionVisitor & visitor) argument
132 accept(InstructionVisitor & visitor) argument
[all...]
H A Dsfn_instruction_misc.h40 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
41 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
57 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
58 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
H A Dsfn_instruction_lds.h17 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
18 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
39 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
40 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
66 bool accept(InstructionVisitor& visitor) override {return visitor argument
[all...]
H A Dsfn_instruction_block.h66 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
67 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
H A Dsfn_instruction_export.h67 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
68 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
94 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
95 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
126 bool accept(InstructionVisitor& visitor) override {return visitor argument
167 accept(InstructionVisitor & visitor) argument
[all...]
H A Dsfn_instruction_gds.h82 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
83 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
178 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
179 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
213 bool accept(InstructionVisitor& visitor) override {return visitor argument
[all...]
H A Dsfn_instruction_alu.h121 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
122 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
H A Dsfn_instruction_tex.h116 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
117 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
H A Dsfn_instruction_fetch.h134 bool accept(InstructionVisitor& visitor) override {return visitor.visit(*this);} argument
135 bool accept(ConstInstructionVisitor& visitor) const override {return visitor.visit(*this);}
H A Dsfn_instruction_base.h117 virtual bool accept(InstructionVisitor& visitor) = 0;
118 virtual bool accept(ConstInstructionVisitor& visitor) const = 0;
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dpropagate_invariance.cpp119 ir_invariance_propagation_visitor visitor; local in function:propagate_invariance
123 visitor.progress = false;
124 visit_list_elements(&visitor, instructions);
125 progress = progress || visitor.progress;
126 } while (visitor.progress);
H A Dir_function_detect_recursion.cpp250 has_recursion_visitor *visitor = (has_recursion_visitor *) closure; local in function:remove_unlinked_functions
264 hash_entry *entry = _mesa_hash_table_search(visitor->function_hash, key);
265 _mesa_hash_table_remove(visitor->function_hash, entry);
266 visitor->progress = true;
H A Dopt_dead_code_local.cpp147 this->visitor = v;
152 ir->array_index->accept(visitor);
162 ir_hierarchical_visitor *visitor; member in class:__anonb614897c0110::array_index_visit
H A Dglsl_to_nir.cpp123 * This visitor runs before the main visitor, calling create_function() for
124 * each function so that the main visitor can resolve forward references in
131 nir_function_visitor(nir_visitor *v) : visitor(v)
137 nir_visitor *visitor; member in class:__anon442fee740110::nir_function_visitor
141 * to NIR. This visitor checks for parameters it can't currently handle.
187 ir_function_param_visitor visitor; local in function:has_unsupported_function_param
188 visit_list_elements(&visitor, ir);
189 return visitor.unsupported;
690 visitor
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/tools/trace/
H A Dmodel.py47 def visit(self, visitor):
63 def visit(self, visitor):
64 visitor.visit_literal(self)
79 def visit(self, visitor):
80 visitor.visit_blob(self)
88 def visit(self, visitor):
89 visitor.visit_named_constant(self)
97 def visit(self, visitor):
98 visitor.visit_array(self)
107 def visit(self, visitor)
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/tools/trace/
H A Dmodel.py42 def visit(self, visitor):
58 def visit(self, visitor):
59 visitor.visit_literal(self)
74 def visit(self, visitor):
75 visitor.visit_blob(self)
83 def visit(self, visitor):
84 visitor.visit_named_constant(self)
92 def visit(self, visitor):
93 visitor.visit_array(self)
102 def visit(self, visitor)
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dpropagate_invariance.cpp119 ir_invariance_propagation_visitor visitor; local in function:propagate_invariance
122 visitor.progress = false;
123 visit_list_elements(&visitor, instructions);
124 } while (visitor.progress);
H A Dir_function_detect_recursion.cpp250 has_recursion_visitor *visitor = (has_recursion_visitor *) closure; local in function:remove_unlinked_functions
264 hash_entry *entry = _mesa_hash_table_search(visitor->function_hash, key);
265 _mesa_hash_table_remove(visitor->function_hash, entry);
266 visitor->progress = true;
H A Dopt_dead_code_local.cpp145 this->visitor = v;
150 ir->array_index->accept(visitor);
160 ir_hierarchical_visitor *visitor; member in class:__anon112b9f490110::array_index_visit
H A Dlower_packed_varyings.cpp160 * shader, this visitor determines whether it needs to be packed. If so, it
231 * Exec list into which the visitor should insert the packing instructions.
233 * appropriate place in the shader once the visitor has finished running.
238 * Exec list into which the visitor should insert any new variables.
885 lower_packed_varyings_visitor visitor(mem_ctx, local in function:lower_packed_varyings
894 visitor.run(shader);
H A Dglsl_to_nir.cpp121 * This visitor runs before the main visitor, calling create_function() for
122 * each function so that the main visitor can resolve forward references in
129 nir_function_visitor(nir_visitor *v) : visitor(v)
135 nir_visitor *visitor; member in class:__anon9c8887410110::nir_function_visitor
139 * to NIR. This visitor checks for parameters it can't currently handle.
179 ir_function_param_visitor visitor; local in function:has_unsupported_function_param
180 visit_list_elements(&visitor, ir);
181 return visitor.unsupported;
622 visitor
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py161 visitor = type_dumper_t(instance, type_)
162 algorithm.apply_visitor(visitor, type_)
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py161 visitor = type_dumper_t(instance, type_)
162 algorithm.apply_visitor(visitor, type_)
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D11.2.2.rst113 - glsl: Convert lower_vec_index_to_swizzle to a rvalue visitor.
128 visitor
H A D11.1.4.rst110 visitor

Completed in 15 milliseconds

12