mesa.git
2010-05-26 Ian RomanickRefactor ir_dereference data fields to subclasses
2010-05-26 Ian RomanickReplace open coded deref navigation with hierarchical...
2010-05-26 Ian RomanickRefactor ir_dereference support for ir_visitor
2010-05-26 Ian RomanickRefactor ir_dereference support for ir_hierarchical_visitor
2010-05-26 Ian RomanickBegin refactoring ir_dereference
2010-05-18 Ian RomanickUse ir_rvalue::variable_referenced instead of open...
2010-05-17 Ian Romanickir_visit_tree is no longer used, remove ir_visit_tree...
2010-05-17 Ian RomanickReimplement kill_for_derefs using ir_hierarchical_vistor
2010-05-17 Ian RomanickReimplement has_call_callback using ir_hierarchical_vistor
2010-05-17 Ian RomanickReimplement ir_if_simplicifation_visitor using ir_hiera...
2010-05-17 Ian RomanickMake visit_list_elements safe against node removals
2010-05-17 Ian RomanickReimplement ir_function_can_inline_visitor using ir_hie...
2010-05-17 Ian RomanickReimplement ir_dead_code_visitor using ir_hierarchical_...
2010-05-17 Ian RomanickAdd ir_hierarchical_visitor base class and associated...
2010-05-17 Ian RomanickReplace find_dead_code with visit_exec_list
2010-05-15 Ian RomanickUse ir_rvalue::variable_referenced instead of open...
2010-05-15 Ian RomanickAdd ir_rvalue::variable_referenced
2010-05-14 Kenneth GraunkeRefresh autogenerated builtin_function.cpp.
2010-05-14 Kenneth GraunkeImplement "tan" builtin.
2010-05-14 Kenneth GraunkeImplement "sin" and "cos" builtins via new expression...
2010-05-14 Kenneth GraunkeImplement "cross" builtin.
2010-05-14 Kenneth GraunkeImplement "fract" builtin.
2010-05-14 Kenneth GraunkeImplement "sign" builtin via a new expression operator.
2010-05-14 Kenneth GraunkeImplement "smoothstep" builtin.
2010-05-14 Kenneth GraunkeImplement "step" builtin.
2010-05-14 Kenneth GraunkeIntegrate generate_builtins.pl into the build process.
2010-05-14 Kenneth GraunkeReplace old builtin_function.cpp with new autogenerated...
2010-05-14 Kenneth GraunkeAdd a perl script to generate builtin_function.cpp.
2010-05-14 Kenneth GraunkeFix bogus expression typing in various builtins.
2010-05-14 Kenneth GraunkeInitial commit of IR for builtins.
2010-05-14 Kenneth Graunkeir_reader: Set function signatures as defined.
2010-05-14 Eric AnholtFS gl_FragCoord and and gl_FrontFacing are FS ins,...
2010-05-14 Ian RomanickFix function call parameter printer to omit extraneous...
2010-05-11 Ian RomanickReplace many uses of foreach_list with foreach_list_typed
2010-05-11 Ian Romanickexec_list: Add foreach_list_typed and foreach_list_type...
2010-05-10 Ian RomanickConvert ast_node use of simple_node to exec_list and...
2010-05-10 Ian Romanickexec_list: Add simpler exec_list for-each macros
2010-05-10 Ian Romanickexec_list: Add macros to get ptr to structure containin...
2010-05-10 Ian RomanickLoop bodies, then-statements, and else-statements are...
2010-05-10 Ian RomanickRemove unnecessary include of simple_list.h
2010-05-10 Ian RomanickStore AST function call parameters in expressions
2010-05-05 Eric AnholtMove optimization pass prototypes to a single header.
2010-05-05 Eric Anholtir_dead_code_local: Remove redundant assignments within...
2010-05-05 Eric Anholtir_visit_tree: Make sure we visit dereference targets...
2010-05-05 Eric Anholtir_copy_propagation: Fix up the doxygen about the file.
2010-05-05 Eric Anholtir_copy_propagation: Return true if we optimized out...
2010-05-05 Eric Anholtir_copy_propagation: Handle swizzles and array derefs...
2010-05-05 Eric Anholtir_copy_propagation: New pass to rewrite dereferences...
2010-05-04 Eric Anholtir_to_mesa.cpp: Fix missing types on some ir_swizzles.
2010-05-03 Eric AnholtRemove the pedantic C junk.
2010-05-03 Eric AnholtStore warnings and errors in a parser state infolog.
2010-05-03 Eric AnholtQuiet warnings about ir_shader not being handled in...
2010-05-03 Eric AnholtUse the AM_SILENT_RULES when available.
2010-05-03 Eric Anholtglsl_lexer: Quiet warning about unused unput().
2010-05-03 Ian RomanickMerge branch 'fixes'
2010-05-01 Kenneth GraunkeUse %p rather than %08x when printing pointers to fix...
2010-05-01 Kenneth GraunkeFix ir_return cloning to actually use the cloned subexp...
2010-05-01 Kenneth GraunkeFix incorrect comments in function inliner.
2010-04-29 Eric Anholtir_dead_code: Fix segfault on handling a return stateme...
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-29 Eric Anholtir_function_inlining: Handle inlining of structure...
2010-04-29 Eric AnholtCorrectly handle remapping of array dereferences if...
2010-04-29 Ian RomanickBegin handling some varieties of invalid declarations
2010-04-29 Ian RomanickReject conflicting struct declarations, generate struct...
2010-04-29 Ian Romanickglsl_type::generate_constructor_prototype now generates...
2010-04-29 Ian RomanickAlways return a value from ast_type_specifier::hir
2010-04-29 Ian RomanickSupport structures in glsl_type::generate_constructor_p...
2010-04-29 Ian RomanickImplement structures and arrays in ir_dereference:...
2010-04-29 Ian RomanickEnsure that structure fields have non-NULL types
2010-04-29 Ian RomanickEnsure that anonymous structures have non-NULL names
2010-04-29 Ian RomanickConvert structure field dereferences to HIR
2010-04-29 Ian RomanickAdd ir_dereference constructor for structure field...
2010-04-29 Ian RomanickAdd glsl_type::field_type
2010-04-29 Ian RomanickBegin converting structure definitions to IR
2010-04-29 Ian RomanickUse IDENTIFIER instead of TYPE_NAME for structure names
2010-04-29 Kenneth Graunkeir_reader: Slightly better error message when failing...
2010-04-29 Kenneth Graunkeir_reader: Don't print out the S-Expression.
2010-04-29 Kenneth Graunkeir_reader: Read function calls.
2010-04-29 Kenneth Graunkeir_reader: Replace function prototypes with the definition.
2010-04-29 Kenneth Graunkeir_reader: Fix incorrect error message for expressions.
2010-04-29 Kenneth GraunkeMake ir_read_error print out the given S-Expression...
2010-04-29 Kenneth Graunkeir_reader: Fix for swizzles.
2010-04-29 Kenneth Graunkeir_reader: Preliminary work toward reading functions.
2010-04-29 Kenneth Graunkeir_reader: Perform a preliminary pass to scan for funct...
2010-04-29 Kenneth Graunkeir_reader: Don't initialize globals, builtins, or const...
2010-04-29 Kenneth GraunkeMake ir_read_error set state->error.
2010-04-29 Kenneth Graunkeir_reader: Add support for "break" and "continue" in...
2010-04-29 Kenneth Graunkeir_reader: Add initial loop support; doesn't yet suppor...
2010-04-29 Kenneth Graunkeir_reader: Add support for reading (var_ref ...) and...
2010-04-29 Kenneth Graunkeir_reader: rvalues are instructions too!
2010-04-29 Kenneth Graunkeir_reader: Add support for reading conditionals: (if...
2010-04-29 Kenneth Graunkeir_reader: Add support for reading array types.
2010-04-29 Kenneth Graunkeir_reader: Add support for reading (return ...)
2010-04-29 Kenneth Graunkeir_reader: Add support for reading variable declarations.
2010-04-29 Kenneth GraunkePartial IR reader.
2010-04-29 Kenneth GraunkeSet language_version to 130 (the max currently supporte...
2010-04-29 Kenneth GraunkeAdd stub ir_reader and new 'i' mode for reading IR...
2010-04-29 Kenneth GraunkeAdd a simple S-Expression reader and printer.
next