glcpp/tests: Add extra newline at the end of expected output.
[mesa.git] / ir_print_visitor.cpp
2010-06-21 Kenneth GraunkeMerge Carl's preprocessor into the glcpp subdirectory.
2010-06-09 Kenneth Graunkeir_print_visitor: Add support for ir_texture.
2010-05-26 Kenneth Graunkeir_reader: Read record_refs.
2010-05-26 Ian RomanickRefactor ir_dereference data fields to subclasses
2010-05-26 Ian RomanickRefactor ir_dereference support for ir_visitor
2010-05-03 Ian RomanickMerge branch 'fixes'
2010-05-01 Kenneth GraunkeUse %p rather than %08x when printing pointers to fix...
2010-04-29 Ian RomanickTrack and print user defined structure types
2010-04-29 Ian RomanickIR print visitor: Move logic for printing the whole...
2010-04-29 Ian RomanickIR print visitor: Just print the name of structures
2010-04-28 Kenneth GraunkeMove array of operator strings out of ir_print_visitor...
2010-04-28 Kenneth Graunkeir_print_visitor: Re-parenthesize ir_call output.
2010-04-28 Kenneth Graunkeir_print_visitor: Print return type of ir_function_sign...
2010-04-28 Kenneth Graunkeir_print_visitor: Print (constant bool (1)) instead...
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parens around...
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parens around...
2010-04-28 Kenneth Graunkeir_print_visitor: Fix unclosed parenthesis in (call...
2010-04-28 Kenneth Graunkeir_print_visitor: Fix unclosed parenthesis in (assign ...
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parenthesis around...
2010-04-28 Kenneth Graunkeir_print_visitor: print the type of expressions.
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parenthesis around...
2010-04-28 Kenneth GraunkePrint full type for ir_constant instead of base and...
2010-04-21 Kenneth GraunkeRemove ir_label since it is no longer used.
2010-04-21 Kenneth GraunkeRefactor IR function representation.
2010-04-08 Eric AnholtMake function bodies rely on the parameter variable...
2010-04-08 Eric AnholtPut function bodies under function signatures, instead...
2010-04-07 Ian RomanickAdd some newlines when printing ir_loop instructions
2010-04-07 Ian RomanickAdd ir_loop_jump to represent 'break' and 'continue...
2010-04-07 Ian RomanickAdd ir_loop to represent loops
2010-04-06 Eric AnholtAdd some linebreaks in the ir_print_visitor of if state...
2010-04-02 Eric AnholtAdd bool/int conversion as IR operations.
2010-04-02 Eric AnholtAdd conversion of bool to float as an IR operation...
2010-04-02 Eric AnholtRemove fake ir_binop_logic_not. I think you meant...
2010-03-29 Ian RomanickImplement ir_if (for if-statments) and conversion from AST
2010-03-29 Eric AnholtImplement exp2() and log2(), and make ir_unop_exp and...
2010-03-29 Eric AnholtAdd sqrt() builtin as an IR operation.
2010-03-29 Eric AnholtAdd builtin pow() function.
2010-03-27 Eric AnholtIR print visitor: Print out something for the operator.
2010-03-27 Ian RomanickIR print visitor: Print expressions a little better
2010-03-27 Ian RomanickIR print visitor: print function calls
2010-03-26 Ian RomanickAdd glsl_type::components to query total number of...
2010-03-26 Kenneth GraunkeMove swizzles out of ir_dereference and into their...
2010-03-26 Kenneth GraunkeAdd new abstract ir_rvalue class; rework accordingly.
2010-03-26 Ian RomanickMerge branch 'anholt'
2010-03-26 Ian RomanickIR print visitor: Finish printing constants
2010-03-26 Ian RomanickIR print visitor: Remove most of the newlines from...
2010-03-26 Ian RomanickIR print visitor: print expressions
2010-03-26 Ian RomanickIR print visitor: print ir_dereference instructions
2010-03-26 Ian RomanickIR print visitor: Less newlines when printing ir_variables
2010-03-19 Ian RomanickImplement IR return instructions
2010-03-11 Ian RomanickAdd ir_call call to represent function calls.
2010-03-10 Ian RomanickIR print visitor: Add some support for printing types...
2010-03-10 Ian RomanickIR print visitor: Print assignments
2010-03-10 Ian RomanickIR visitor: Add initial version of ir_visitor classes