summaryrefslogtreecommitdiff
path: root/ir_hierarchical_visitor.h
AgeCommit message (Collapse)AuthorFilesLines
2010-06-23Fix typos of "variable" as "varaible"Carl Worth1-1/+1
One of these was just in a comment. But ther other was in an enum tag, (which is apparently not being used anywhere yet).
2010-06-23ir_hierarchical_visitor: Add generic callback functionalityIan Romanick1-0/+18
2010-06-09Add stub visitor support for ir_texture.Kenneth Graunke1-0/+2
2010-05-26Refactor ir_dereference support for ir_hierarchical_visitorIan Romanick1-2/+20
Move the accept method for hierarchical visitors from ir_dereference to the derived classes. This was mostly straight-forward, but I suspect that ir_dead_code_local may be broken now.
2010-05-17Add ir_hierarchical_visitor base class and associated infrastructureIan Romanick1-0/+121
This type of visitor should eventually replace all or almost all current uses of ir_visitor.