Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-22 | ir: Give ir_instruction a print visitor helper. | Eric Anholt | |
This avoids spamming each file with includes of ir_print_visitor.h because someone was doing debugging at some point, and is less typing when doing debugging. | |||
2010-06-22 | Include stdio.h and stdlib.h everywhere, and don't cook our own #define NULL. | Eric Anholt | |
2010-06-02 | ir_dereference_array always operates on an r-value | Ian Romanick | |
ir_dereference_array::array is always an r-value. If the dereference is of a varaible, that r-value will be an ir_dereference_variable. This simplifies the code a bit. | |||
2010-06-01 | ir_vec_index_to_swizzle: Pass to convert indexing of vectors to swizzles. | Eric Anholt | |
This should remove the burden of handling constant vector indexing well from backend codegen, and could help with swizzle optimizations. |