summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir
Commit message (Expand)AuthorAgeFilesLines
* glsl: Resolve GCC sign-compare warning.Rhys Kidd2015-09-103-7/+7
* nir/glsl: Use lower_outputs_to_temporaries instead of relying on GLSL IRJason Ekstrand2015-09-091-0/+2
* nir: Add a pass to lower outputs to temporary variablesJason Ekstrand2015-09-092-0/+129
* nir/cursor: Add a constructor for the end of a block but before the jumpJason Ekstrand2015-09-092-6/+12
* nir: Add a nir_system_value_from_intrinsic() function.Kenneth Graunke2015-09-082-0/+36
* nir: UBO loads no longer use const_index[1]Iago Toral Quiroga2015-09-081-1/+0
* nir/dead_cf: add support for removing useless loopsConnor Abbott2015-09-011-12/+109
* nir: add a helper for iterating over blocks in a cf nodeConnor Abbott2015-09-012-0/+9
* nir: add nir_block_get_following_loop() helperConnor Abbott2015-09-012-0/+18
* nir/dead_cf: delete code that's unreachable due to jumpsConnor Abbott2015-09-011-8/+115
* nir: add an optimization for removing dead control flowConnor Abbott2015-09-012-0/+157
* nir/builder: Use nir_after_instr to advance the cursorJason Ekstrand2015-08-311-2/+1
* nir: Convert the builder to use the new NIR cursor API.Kenneth Graunke2015-08-276-38/+15
* nir: Convert the NIR instruction insertion API to use cursors.Kenneth Graunke2015-08-272-97/+89
* nir: Move nir_cursor to nir.h.Kenneth Graunke2015-08-272-89/+97
* nir: Strengthen "no jumps" assertions in instruction insertion API.Kenneth Graunke2015-08-271-5/+5
* nir: Use nir_shader::stage rather than passing it around.Kenneth Graunke2015-08-253-11/+8
* nir: Store gl_shader_stage in nir_shader.Kenneth Graunke2015-08-253-2/+10
* nir/lower_io: Remove assign_var_locations_direct_firstJason Ekstrand2015-08-252-82/+0
* nir/lower_io: Separate driver_location and base offset for uniformsJason Ekstrand2015-08-251-2/+7
* nir/intrinsics: Add a second const index to load_uniformJason Ekstrand2015-08-251-11/+17
* nir: Pass a type_size() function pointer into nir_lower_io().Kenneth Graunke2015-08-252-106/+20
* nir: Use !block_ends_in_jump() in a few places rather than open-coding.Kenneth Graunke2015-08-241-12/+9
* nir/cf: reimplement nir_cf_node_remove() using the new APIConnor Abbott2015-08-242-33/+9
* nir/cf: add new control modification API'sConnor Abbott2015-08-242-0/+137
* nir/cf: use a cursor for inserting control flowConnor Abbott2015-08-242-175/+49
* nir/cf: add split_block_cursor()Connor Abbott2015-08-241-0/+48
* nir/cf: add split_block_before_instr()Connor Abbott2015-08-241-0/+18
* nir/cf: add a cursor structureConnor Abbott2015-08-241-0/+91
* nir/cf: fix link_blocks() when there are no successorsConnor Abbott2015-08-241-1/+2
* nir/cf: clean up jumps when cleaning up CF nodesConnor Abbott2015-08-241-1/+4
* nir/cf: remove uses of SSA definitions that are being deletedConnor Abbott2015-08-241-8/+24
* nir/cf: handle jumps better in stitch_blocks()Connor Abbott2015-08-241-6/+16
* nir/cf: handle jumps in split_block_end()Connor Abbott2015-08-241-1/+8
* nir/cf: add block_ends_in_jump()Connor Abbott2015-08-241-0/+8
* nir/cf: handle phi nodes better in split_block_beginning()Connor Abbott2015-08-241-0/+13
* nir/cf: split up and improve nir_handle_remove_jumps()Connor Abbott2015-08-241-54/+81
* nir/cf: add remove_phi_src() helperConnor Abbott2015-08-241-0/+17
* nir: add nir_foreach_phi_src_safe()Connor Abbott2015-08-241-0/+2
* nir/cf: add insert_phi_undef() helperConnor Abbott2015-08-241-0/+25
* nir: move control flow modification to its own fileConnor Abbott2015-08-247-687/+796
* nir: make cleanup_cf_node() not use remove_defs_uses()Connor Abbott2015-08-241-2/+4
* nir: inline block_add_pred() a few placesConnor Abbott2015-08-241-3/+2
* nir/validate: check successors/predecessors more carefullyConnor Abbott2015-08-241-11/+84
* nir: Delete the nir_function_impl::start_block field.Kenneth Graunke2015-08-246-9/+15
* nir: convert the glsl intrinsic image_size to nir_intrinsic_image_sizeMartin Peres2015-08-202-6/+17
* nir: Use nir_builder in nir_lower_io's get_io_offset().Kenneth Graunke2015-08-191-28/+14
* nir: Pull nir_lower_io's load_op selection into a helper function.Kenneth Graunke2015-08-191-17/+22
* nir: Simplify feq(fneg(a), a)) -> feq(a, 0.0)Thomas Helland2015-08-181-0/+1
* nir: Simplify fne(fneg(a), a) -> fne(a, 0.0)Thomas Helland2015-08-181-0/+1