summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir
Commit message (Expand)AuthorAgeFilesLines
* nir: Expose nir_print_instr() for debug printsEric Anholt2015-01-232-2/+8
* nir: When asked to print with a NULL state, just use bare variable names.Eric Anholt2015-01-231-6/+16
* nir: Add nir_lower_alu_to_scalar.Eric Anholt2015-01-232-0/+187
* nir: Make some helpers for copying ALU src/dests.Eric Anholt2015-01-234-9/+25
* nir: Add algebraic optimizations for division and reciprocal.Kenneth Graunke2015-01-231-0/+5
* nir: Add algebraic optimizations for exponential/logarithmic functions.Kenneth Graunke2015-01-231-0/+10
* nir: Add algebraic optimizations for simplifying comparisons.Kenneth Graunke2015-01-231-0/+9
* nir: Add algebraic optimizations for pointless shifts.Kenneth Graunke2015-01-231-0/+7
* nir: Add a bunch of algebraic optimizations on logic/bit operations.Kenneth Graunke2015-01-231-0/+13
* nir: Implement CSE on intrinsics that can be eliminated and reordered.Kenneth Graunke2015-01-231-2/+38
* nir: Pull nir_instr_can_cse()'s SSA checks out of the switch.Kenneth Graunke2015-01-231-2/+6
* nir: add generated file to .gitignoreConnor Abbott2015-01-231-0/+1
* nir: Fix setup of constant bool initializers.Eric Anholt2015-01-221-1/+1
* nir: Make an easier helper for setting up SSA defs.Eric Anholt2015-01-2213-66/+46
* nir: Replace assert(0) with unreachable().Matt Turner2015-01-214-43/+22
* nir: Stop using designated initializersJason Ekstrand2015-01-2110-105/+47
* nir: Add src and dest constructorsJason Ekstrand2015-01-211-0/+37
* nir: Add a nir_foreach_phi_src helper macroJason Ekstrand2015-01-209-11/+14
* nir: s/malloc.h/stdlib.h/Vinson Lee2015-01-161-1/+1
* nir/live_variables: Use a worklistJason Ekstrand2015-01-151-55/+75
* nir: Add a worklist helper structureJason Ekstrand2015-01-152-0/+235
* nir: fix incorrect argument passed to validate_src() in validate_tex_instr()Brian Paul2015-01-151-1/+1
* nir: silence compiler warning from visit_src() callBrian Paul2015-01-151-1/+1
* util/hash_set: Rework the API to know about hashingJason Ekstrand2015-01-159-103/+76
* util: Move main/set to util/hash_setJason Ekstrand2015-01-151-1/+1
* hash_table: Rename insert_with_hash to insert_pre_hashedJason Ekstrand2015-01-151-1/+1
* nir/algebraic: Only replace an instruction onceJason Ekstrand2015-01-151-1/+3
* nir/vars_to_ssa: Use the copy lowering from lower_var_copiesJason Ekstrand2015-01-151-152/+46
* nir: Add a pass for lowering copy instructionsJason Ekstrand2015-01-152-0/+226
* nir/vars_to_ssa: Refactor get_deref_nodeJason Ekstrand2015-01-151-20/+25
* nir: Rename lower_variables to lower_vars_to_ssaJason Ekstrand2015-01-152-4/+4
* nir/tex_instr: Add a nir_tex_src struct and dynamically allocate the src arrayJason Ekstrand2015-01-156-40/+48
* nir/validate: Only build in debug modeJason Ekstrand2015-01-152-0/+11
* nir/lower_variables: Improve documentationJason Ekstrand2015-01-151-27/+79
* nir/lower_variables: Use a for loop for get_deref_nodeJason Ekstrand2015-01-151-58/+48
* nir: Use the actual FNV-1a hash for hashing derefsJason Ekstrand2015-01-152-90/+79
* nir: Make intrinsic flags into an enumJason Ekstrand2015-01-151-14/+14
* nir: Use static inlines instead of macros for list gettersJason Ekstrand2015-01-151-28/+81
* nir/variable: Remove the constant_value fieldJason Ekstrand2015-01-152-16/+4
* nir: Add some documentationJason Ekstrand2015-01-151-22/+69
* nir/lower_variables: Follow the Cytron paper more closelyJason Ekstrand2015-01-151-26/+69
* nir/print: Various cleanups recommended by EricJason Ekstrand2015-01-151-33/+12
* nir/lower_variables: Add a bunch of comments and re-arrange a few thingsJason Ekstrand2015-01-151-57/+170
* nir: Rename parallel_copy_copy to parallel_copy_entry and add a foreach macroJason Ekstrand2015-01-154-46/+55
* nir/from_ssa: Clean up parallel copy handling and document it betterJason Ekstrand2015-01-153-66/+92
* nir: Rename nir_block_following_if to nir_block_get_following_ifJason Ekstrand2015-01-155-5/+5
* nir/opcodes: Remove the per_component info fieldJason Ekstrand2015-01-153-37/+33
* nir/search: Use nir_op_infos to determine if an operation is commutativeJason Ekstrand2015-01-151-33/+2
* nir/opcodes: Add algebraic properties metadataJason Ekstrand2015-01-153-71/+89
* nir: Make load_const SSA-onlyJason Ekstrand2015-01-1514-136/+51