summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir
Commit message (Expand)AuthorAgeFilesLines
* 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
* nir: Move the compare-with-zero optimizations to the late sectionJason Ekstrand2015-04-011-4/+4
* nir/algebraic: Add a seperate section for "late" optimizationsJason Ekstrand2015-04-012-0/+10
* nir/algebraic: Remove a duplicate optimizationJason Ekstrand2015-04-011-3/+0
* nir/algebraic: #define around structure definitionsJason Ekstrand2015-04-011-6/+11
* nir/print: Don't print extra swizzzle componentsJason Ekstrand2015-04-011-7/+19
* nir: Recognize a pattern of bool frobbing from TGSI KILL_IF.Eric Anholt2015-04-011-0/+2
* nir: Recognize a pattern for doing b2f without the opcode.Eric Anholt2015-04-011-0/+1
* nir: Fix copy and pasted error message in nir_validate.Kenneth Graunke2015-03-281-2/+1
* nir: Lower subtraction to add with negation when !lower_negate.Kenneth Graunke2015-03-271-0/+2
* nir: Add builder helpers for MOVs with ALU sources and swizzling MOVs.Kenneth Graunke2015-03-271-0/+44
* nir: Add nir_builder helpers for creating load_const intrinsics.Kenneth Graunke2015-03-271-0/+35
* nir: Add optional lowering of flrp.Eric Anholt2015-03-272-0/+2
* nir: Add glsl_float_type() wrapper.Kenneth Graunke2015-03-252-0/+7
* nir: Fix typo.Matt Turner2015-03-241-1/+1
* nir: Recognize sat(add(b2f(a), b2f(b))) as a logical OR.Matt Turner2015-03-241-0/+1
* nir: Recognize mul(b2f(a), b2f(b)) as a logical AND.Matt Turner2015-03-241-0/+2
* nir: Handle mixed scalar/vector arguments to logical and/or/xor.Matt Turner2015-03-241-18/+21
* nir/lower_io: Add a assign_locations function that sorts by [in]direct useJason Ekstrand2015-03-192-0/+75
* nir/lower_io: Make variable location assignment a manual operationJason Ekstrand2015-03-192-12/+5
* nir: Use a list instead of a hash_table for inputs, outputs, and uniformsJason Ekstrand2015-03-196-35/+29
* mesa: Replace _mesa_round_to_even() with _mesa_roundeven().Matt Turner2015-03-182-7/+10
* nir/peephole_select: Allow uniform/input loads and load_constJason Ekstrand2015-03-171-0/+25
* nir/peephole_select: Copy instructions into the block before the ifJason Ekstrand2015-03-171-13/+20
* nir/peephole_select: Rename are_all_move_to_phi and use a switchJason Ekstrand2015-03-171-25/+31
* nir: Fix non-determinism in nir_lower_vars_to_ssa().Kenneth Graunke2015-03-121-97/+26
* nir: Add intrinsics for SYSTEM_VALUE_BASE_VERTEX and VERTEX_ID_ZERO_BASEKenneth Graunke2015-03-122-0/+8
* nir/worklist: Don't change the start index when computing the tail indexJason Ekstrand2015-03-112-7/+7
* nir: Optimize a + neg(a)Thomas Helland2015-03-111-0/+2
* nir: Optimize (a*b)+(a*c) -> a*(b+c)Thomas Helland2015-03-111-0/+2
* nir: Make the printer include nir_variable::location too.Kenneth Graunke2015-03-091-1/+1
* nir: Only do gl_FrontFacing workaround in glsl_to_nir for the FS.Kenneth Graunke2015-03-081-1/+2
* nir: Plumb the shader stage into glsl_to_nir().Kenneth Graunke2015-03-082-7/+9
* nir: Add native_integers to nir_shader_compiler_options.Kenneth Graunke2015-03-083-7/+12