summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir
Commit message (Expand)AuthorAgeFilesLines
* nir: Delete all traces of nir_op_flogIan Romanick2015-05-082-7/+0
* nir: Don't produce nir_op_flog from GLSL IRIan Romanick2015-05-081-1/+1
* nir: Delete all traces of nir_op_fexpIan Romanick2015-05-082-8/+0
* nir: Don't produce nir_op_fexp from GLSL IRIan Romanick2015-05-081-1/+1
* nir: Allow feq/fne/ieq/ine to be optimized with inot.Matt Turner2015-05-071-0/+4
* nir: Recognize (a < c || b < c) as min(a, b) < c.Matt Turner2015-05-071-0/+2
* nir: Recognize trivial min/max.Matt Turner2015-05-071-0/+6
* nir: Recognize i2b(b2i(x)) as x.Matt Turner2015-05-071-0/+1
* nir: Recognize imul(b2i(a), b2i(b)) as a logical AND.Matt Turner2015-05-071-0/+1
* Fix a few typosZoë Blade2015-04-271-1/+1
* nir: Transform pow(x, 4) into (x*x)*(x*x).Matt Turner2015-04-241-0/+1
* nir/lower_source_mods: Don't propagate register sourcesJason Ekstrand2015-04-221-0/+7
* nir: Rewrite instr_rewrite_srcJason Ekstrand2015-04-221-24/+28
* nir/locals_to_regs: Hanadle indirect accesses of length-1 arraysJason Ekstrand2015-04-221-0/+8
* nir/locals_to_regs: Initialize registers with constant initializersJason Ekstrand2015-04-221-0/+103
* nir/locals_to_regs: Pass around the nir_shader rather than a void * mem_ctxJason Ekstrand2015-04-221-13/+13
* nir: Add a simple growing array data structureJason Ekstrand2015-04-221-0/+96
* nir/types: Make glsl_get_length smarterJason Ekstrand2015-04-224-55/+8
* nir: Move get_const_initializer_load from vars_to_ssa to NIR coreJason Ekstrand2015-04-223-62/+65
* nir/lower_vars_to_ssa: Pass around the nir_shader instead of a void mem_ctxJason Ekstrand2015-04-221-14/+14
* nir/print: Print the closing paren on load_const instructionsJason Ekstrand2015-04-221-0/+2
* nir/tex: Use the correct return size for query_levels and lodJason Ekstrand2015-04-221-1/+4
* nir: Refactor tex_instr_dest_size to use a switch statementJason Ekstrand2015-04-221-5/+8
* nir/lower_vars_to_ssa: Actually look for indirects when determining aliasingJason Ekstrand2015-04-221-0/+4
* nir: Allow abs/neg in select peephole pass.Matt Turner2015-04-171-1/+3
* nir/builder: add nir_builder_insert_after_instr()Rob Clark2015-04-171-2/+18
* nir: Convert the if-test for num_inputs == 2 to an assertionIan Romanick2015-04-161-2/+2
* nir: Try commutative sources in CSEIan Romanick2015-04-151-9/+18
* nir: Fix typo in "ushr by 0" algebraic replacementIan Romanick2015-04-141-1/+1
* nir: Silence unused parameter warningsIan Romanick2015-04-142-1/+3
* nir/cse: fix bug with comparing non-per-component sourcesConnor Abbott2015-04-141-10/+7
* nir: Store num_direct_uniforms in the nir_shader.Kenneth Graunke2015-04-111-0/+3
* nir: fix bit of cargo-culting in lower_idivRob Clark2015-04-111-2/+0
* nir: split out lower_sub from lower_negateRob Clark2015-04-112-2/+4
* nir: Constify nir_lower_sampler's gl_shader_program pointer.Kenneth Graunke2015-04-102-6/+6
* nir: Remove linker_error calls from nir_lower_samplers().Kenneth Graunke2015-04-101-7/+2
* nir: Make nir_lower_samplers take a gl_shader_stage, not a gl_program *.Kenneth Graunke2015-04-102-15/+13
* nir: Move gl_shader_stage enum from mtypes.h to shader_enums.h.Kenneth Graunke2015-04-101-0/+1
* nir: Make nir_*_instr_create take a nir_shader instead of a void * contextJason Ekstrand2015-04-072-27/+27
* nir: Implement a nir_sweep() pass.Kenneth Graunke2015-04-072-0/+174
* nir: Allocate dereferences out of their parent instruction or deref.Kenneth Graunke2015-04-075-37/+41
* nir: Allocate nir_ssa_def::uses/if_uses out of the instruction.Kenneth Graunke2015-04-071-4/+2
* nir: Allocate nir_phi_src values out of the nir_phi_instr.Kenneth Graunke2015-04-073-3/+3
* nir: Allocate nir_call_instr::params out of the nir_call itself.Kenneth Graunke2015-04-071-1/+1
* nir/lower_tex_projector: Don't use designated initializersJason Ekstrand2015-04-071-1/+2
* nir: Remove fsin_reduced/fcos_reduced.Matt Turner2015-04-061-2/+0
* glsl: Remove never used sin_reduced/cos_reduced.Matt Turner2015-04-061-6/+0
* nir: add lowering for idiv/udiv/umodRob Clark2015-04-052-0/+158
* nir: fix typo for f2b/i2b/b2i expressions (v2)Rob Clark2015-04-051-3/+3
* nir: add option to lower slt/sge/seq/sneRob Clark2015-04-052-0/+7