Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | nir: Switch the arguments to nir_foreach_function | Jason Ekstrand | 2016-04-28 | 61 | -77/+77 |
| | | | | | | | | | This matches the "foreach x in container" pattern found in many other programming languages. Generated by the following regular expression: s/nir_foreach_function(\([^,]*\),\s*\([^,]*\))/nir_foreach_function(\2, \1)/ Reviewed-by: Ian Romanick <[email protected]> | ||||
* | nir: Switch the arguments to nir_foreach_parallel_copy_entry | Jason Ekstrand | 2016-04-28 | 4 | -7/+7 |
| | | | | | | | | This matches the "foreach x in container" pattern found in many other programming languages. Reviewed-by: Eduardo Lima Mitev <[email protected]> Reviewed-by: Ian Romanick <[email protected]> | ||||
* | nir: Switch the arguments to nir_foreach_phi_src | Jason Ekstrand | 2016-04-28 | 15 | -23/+23 |
| | | | | | | | | | | | This matches the "foreach x in container" pattern found in many other programming languages. Generated by the following regular expression: s/nir_foreach_phi_src(\([^,]*\),\s*\([^,]*\))/nir_foreach_phi_src(\2, \1)/ and a similar expression for nir_foreach_phi_src_safe. Reviewed-by: Eduardo Lima Mitev <[email protected]> | ||||
* | nir: Switch the arguments to nir_foreach_instr | Jason Ekstrand | 2016-04-28 | 65 | -106/+106 |
| | | | | | | | | | | | This matches the "foreach x in container" pattern found in many other programming languages. Generated by the following regular expression: s/nir_foreach_instr(\([^,]*\),\s*\([^,]*\))/nir_foreach_instr(\2, \1)/ and similar expressions for nir_foreach_instr_safe etc. Reviewed-by: Ian Romanick <[email protected]> | ||||
* | anv/lower_push_constants: fixup for nir_foreach_block() | Jason Ekstrand | 2016-04-28 | 1 | -22/+18 |
| | | | | Signed-off-by: Jason Ekstrand <[email protected]> | ||||
* | anv/apply_pipeline_layout: fixup for nir_foreach_block() | Jason Ekstrand | 2016-04-28 | 1 | -22/+19 |
| | | | | Signed-off-by: Jason Ekstrand <[email protected]> | ||||
* | anv/apply_dynamic_offsets: fixup for nir_foreach_block() | Jason Ekstrand | 2016-04-28 | 1 | -33/+22 |
| | | | | Signed-off-by: Jason Ekstrand <[email protected]> | ||||
* | i965/nir: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 6 | -80/+69 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/algebraic: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -20/+14 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/validate: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -10/+4 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/nir_worklist: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -9/+3 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/remove_dead_variables: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -28/+20 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/split_var_copies: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -4/+4 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/repair_ssa: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -11/+5 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_peephole_select: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -23/+14 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/phi_builder: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -9/+3 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_cp: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -18/+10 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_remove_phis: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -5/+7 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_undef: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -15/+8 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_dead_cf: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -22/+21 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_dce: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -20/+13 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_gcm: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -4/+5 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/opt_constant_folding: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -15/+13 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_samplers: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -28/+8 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/normalize_cubemap_coords: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -15/+11 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_var_copies: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -19/+15 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/move_vec_src_uses_to_dest: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -2/+5 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_vars_to_ssa: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -5/+9 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_vec_to_movs: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -14/+10 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_idiv: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -14/+7 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_to_source_mods: fixup for new foreeach_block() | Connor Abbott | 2016-04-28 | 1 | -9/+6 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_io: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -4/+5 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_system_values: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -16/+11 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_phis_to_scalar: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -4/+5 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_indirect_derefs: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -22/+17 |
| | | | | | | v2 (Jason Ekstrand): Use nir_foreach_block_safe Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/nir_lower_global_vars: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -22/+16 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_atomics: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -25/+11 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_load_const: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -12/+6 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_locals_to_regs: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -4/+5 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_gs_intrinsics: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -4/+4 |
| | | | | | | v2 (Jason Ekstrand): Use nir_foreach_block_safe Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/nir: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -28/+14 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_clip: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -29/+21 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/lower_alu_to_scalar: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -12/+6 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/liveness: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -14/+10 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/inline_functions: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -30/+23 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/from_ssa: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -27/+30 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nir/dominance: fixup for new foreach_block() | Connor Abbott | 2016-04-28 | 1 | -101/+59 |
| | | | | Reviewed-by: Jason Ekstrand <[email protected]> | ||||
* | nvc0: stick compute kernel arguments into uniform_bo | Samuel Pitoiset | 2016-04-29 | 5 | -26/+10 |
| | | | | | | | | | | | | | Having one buffer object for input kernel arguments coming from clover and an other one for OpenGL user uniforms is unnecessary. Using the uniform_bo object for both GL/CL uniforms avoids to declare a new BO. This only affects compute programs but it should not hurt anything because the states are dirtied and data will get reuploaded. Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Hans de Goede <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]> | ||||
* | swr: remove duplicated constant update code | Tim Rowley | 2016-04-28 | 1 | -44/+47 |
| | | | | Reviewed-by: Bruce Cherniak <[email protected]> | ||||
* | gallium/radeon: add the size only once in r600_context_add_resource_size | Marek Olšák | 2016-04-28 | 1 | -5/+3 |
| | | | | Reviewed-by: Alex Deucher <[email protected]> |