summaryrefslogtreecommitdiff
path: root/ir_hierarchical_visitor.cpp
AgeCommit message (Collapse)Author
2010-06-24ir_function_inlining: Re-add the "s/return/retval =/" functionality.Eric Anholt
I ripped it out with the cloning changes yesterday, and should have tested and noticed that there were now returns all over.
2010-06-23ir_hierarchical_visitor: Add generic callback functionalityIan Romanick
2010-06-22Include stdio.h and stdlib.h everywhere, and don't cook our own #define NULL.Eric Anholt
2010-06-09Add stub visitor support for ir_texture.Kenneth Graunke
2010-05-26Refactor ir_dereference support for ir_hierarchical_visitorIan Romanick
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 Romanick
This type of visitor should eventually replace all or almost all current uses of ir_visitor.