summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir
Commit message (Expand)AuthorAgeFilesLines
* 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
* nir/lower_samplers: Use the right memory context for realloc'ing tex sourcesJason Ekstrand2015-04-031-1/+1
* nir: Add a cubemap normalizing passJason Ekstrand2015-04-032-0/+112
* nir/from_ssa: Don't set reg->parent_instr for ssa_undef instructionsJason Ekstrand2015-04-031-4/+5
* nir: Add a src_get_parent_instr functionJason Ekstrand2015-04-031-0/+10
* nir: Add a lowering pass for texture projectors.Eric Anholt2015-04-032-0/+143
* nir: Add an interface to turn a nir_src into a nir_ssa_def.Eric Anholt2015-04-031-0/+19
* nir: Add an interface for the builder to insert instructions before.Eric Anholt2015-04-031-4/+23
* nir: Allocate nir_tex_instr::sources out of the instruction itself.Kenneth Graunke2015-04-021-1/+1
* nir: Allocate predecessor and dominance frontier sets from block itself.Kenneth Graunke2015-04-021-2/+2
* nir: Allocate register fields out of the register itself.Kenneth Graunke2015-04-021-3/+3
* nir: Make nir_create_function() strdup the function name.Kenneth Graunke2015-04-021-1/+1
* nir: Free dead variables when removing them.Kenneth Graunke2015-04-021-1/+3
* nir: Combine remove_dead_local_vars() and remove_dead_global_vars().Kenneth Graunke2015-04-021-14/+4
* nir/opt_peephole_ffma: Fix a couple typos in a commentJason Ekstrand2015-04-021-2/+2
* nir/print: Correctly print swizzles for explicitly sized alu sourcesJason Ekstrand2015-04-021-12/+12
* nir: Remove useless ftrunc inside f2i/f2u.Matt Turner2015-04-011-0/+4
* nir: Recognize (a < b || a < c) as a < max(b, c).Matt Turner2015-04-011-0/+2
* nir: Add addition/multiplication identities of exp/log.Matt Turner2015-04-011-0/+6
* nir: Add identities for the log function.Matt Turner2015-04-011-0/+8
* nir: Add identities for the exponential function.Matt Turner2015-04-011-0/+6
* nir: Recognize another open coded lrp.Matt Turner2015-04-011-0/+1
* nir: Recognize open coded lrp.Matt Turner2015-04-011-0/+1
* nir/peephole_ffma: Be less agressive about fusing multiply-addsJason Ekstrand2015-04-011-0/+41
* nir: Add a dedicated ffma peephole optimizationJason Ekstrand2015-04-011-0/+220