summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2010-04-28ir_reader: Replace function prototypes with the definition.Kenneth Graunke
2010-04-28ir_reader: Fix incorrect error message for expressions.Kenneth Graunke
2010-04-28Make ir_read_error print out the given S-Expression, for context.Kenneth Graunke
2010-04-28ir_reader: Fix for swizzles.Kenneth Graunke
2010-04-28ir_reader: Preliminary work toward reading functions.Kenneth Graunke
2010-04-28ir_reader: Perform a preliminary pass to scan for function prototypes.Kenneth Graunke
2010-04-28ir_reader: Don't initialize globals, builtins, or constructors.Kenneth Graunke
2010-04-28Make ir_read_error set state->error.Kenneth Graunke
2010-04-28ir_reader: Add support for "break" and "continue" in loops.Kenneth Graunke
2010-04-28ir_reader: Add initial loop support; doesn't yet support break/continue.Kenneth Graunke
2010-04-28ir_reader: Add support for reading (var_ref ...) and (array_ref ...)Kenneth Graunke
2010-04-28ir_reader: rvalues are instructions too!Kenneth Graunke
2010-04-28ir_reader: Add support for reading conditionals: (if ...)Kenneth Graunke
2010-04-28ir_reader: Add support for reading array types.Kenneth Graunke
2010-04-28ir_reader: Add support for reading (return ...)Kenneth Graunke
2010-04-28ir_reader: Add support for reading variable declarations.Kenneth Graunke
2010-04-28Partial IR reader.Kenneth Graunke
2010-04-28Set language_version to 130 (the max currently supported) when reading IR.Kenneth Graunke
2010-04-28Add stub ir_reader and new 'i' mode for reading IR rather than GLSL.Kenneth Graunke
2010-04-28Add a simple S-Expression reader and printer.Kenneth Graunke
2010-04-28Use "neg" when printing/reading unary negation rather than "-".Kenneth Graunke
2010-04-28Move array of operator strings out of ir_print_visitor.cpp.Kenneth Graunke
2010-04-28Factor out parameter list replacement for later reuse.Kenneth Graunke
2010-04-28Factor out parameter list matching from ast_function::hir for later reuse.Kenneth Graunke
2010-04-28Factor out qualifier checking code for later reuse.Kenneth Graunke
2010-04-28ir_print_visitor: Re-parenthesize ir_call output.Kenneth Graunke
2010-04-28ir_print_visitor: Print return type of ir_function_signatures.Kenneth Graunke
2010-04-28ir_print_visitor: Print (constant bool (1)) instead of "true"Kenneth Graunke
2010-04-28ir_print_visitor: Remove unnecessary parens around expression operands.Kenneth Graunke
2010-04-28ir_print_visitor: Remove unnecessary parens around array size in types.Kenneth Graunke
2010-04-28ir_print_visitor: Fix unclosed parenthesis in (call...Kenneth Graunke
2010-04-28ir_print_visitor: Fix unclosed parenthesis in (assign ...Kenneth Graunke
2010-04-28Add parens around printed IR so it's an official list of instructions.Kenneth Graunke
2010-04-28ir_print_visitor: Remove unnecessary parenthesis around variable names.Kenneth Graunke
2010-04-28Refactor ir_expression::get_num_operands.Kenneth Graunke
2010-04-28ir_print_visitor: print the type of expressions.Kenneth Graunke
2010-04-28ir_print_visitor: Remove unnecessary parenthesis around type names.Kenneth Graunke
2010-04-28Print full type for ir_constant instead of base and component count.Kenneth Graunke
2010-04-26Implement gl_TextureMatrix built-in uniformIan Romanick
2010-04-26Make private glsl_type singletons publicIan Romanick
2010-04-26Initial implementation of #lineIan Romanick
2010-04-23builtin_functions: Clean up compiler warning about unused name, instructions.Eric Anholt
2010-04-23De-obfuscate some of builtin_types.h.Eric Anholt
2010-04-23ir_function_inlining: Implement inlining in many more cases.Eric Anholt
2010-04-23Put static pointers to vec[234]_types along with the static float_type.Eric Anholt
2010-04-23Replace builtin_types.h generation with the generated output.Eric Anholt
2010-04-23Fix the swizzling of vector constructors from scalars.Eric Anholt
2010-04-23ir_function_inlining: Avoid NULL dereference on assignment conditions.Eric Anholt
2010-04-23Zero-out the entire parser state structure at initializationIan Romanick
2010-04-23Add missing 'else's to fix extension processingIan Romanick