index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
glsl
/
nir
Commit message (
Expand
)
Author
Age
Files
Lines
*
nir: Expose nir_print_instr() for debug prints
Eric Anholt
2015-01-23
2
-2
/
+8
*
nir: When asked to print with a NULL state, just use bare variable names.
Eric Anholt
2015-01-23
1
-6
/
+16
*
nir: Add nir_lower_alu_to_scalar.
Eric Anholt
2015-01-23
2
-0
/
+187
*
nir: Make some helpers for copying ALU src/dests.
Eric Anholt
2015-01-23
4
-9
/
+25
*
nir: Add algebraic optimizations for division and reciprocal.
Kenneth Graunke
2015-01-23
1
-0
/
+5
*
nir: Add algebraic optimizations for exponential/logarithmic functions.
Kenneth Graunke
2015-01-23
1
-0
/
+10
*
nir: Add algebraic optimizations for simplifying comparisons.
Kenneth Graunke
2015-01-23
1
-0
/
+9
*
nir: Add algebraic optimizations for pointless shifts.
Kenneth Graunke
2015-01-23
1
-0
/
+7
*
nir: Add a bunch of algebraic optimizations on logic/bit operations.
Kenneth Graunke
2015-01-23
1
-0
/
+13
*
nir: Implement CSE on intrinsics that can be eliminated and reordered.
Kenneth Graunke
2015-01-23
1
-2
/
+38
*
nir: Pull nir_instr_can_cse()'s SSA checks out of the switch.
Kenneth Graunke
2015-01-23
1
-2
/
+6
*
nir: add generated file to .gitignore
Connor Abbott
2015-01-23
1
-0
/
+1
*
nir: Fix setup of constant bool initializers.
Eric Anholt
2015-01-22
1
-1
/
+1
*
nir: Make an easier helper for setting up SSA defs.
Eric Anholt
2015-01-22
13
-66
/
+46
*
nir: Replace assert(0) with unreachable().
Matt Turner
2015-01-21
4
-43
/
+22
*
nir: Stop using designated initializers
Jason Ekstrand
2015-01-21
10
-105
/
+47
*
nir: Add src and dest constructors
Jason Ekstrand
2015-01-21
1
-0
/
+37
*
nir: Add a nir_foreach_phi_src helper macro
Jason Ekstrand
2015-01-20
9
-11
/
+14
*
nir: s/malloc.h/stdlib.h/
Vinson Lee
2015-01-16
1
-1
/
+1
*
nir/live_variables: Use a worklist
Jason Ekstrand
2015-01-15
1
-55
/
+75
*
nir: Add a worklist helper structure
Jason Ekstrand
2015-01-15
2
-0
/
+235
*
nir: fix incorrect argument passed to validate_src() in validate_tex_instr()
Brian Paul
2015-01-15
1
-1
/
+1
*
nir: silence compiler warning from visit_src() call
Brian Paul
2015-01-15
1
-1
/
+1
*
util/hash_set: Rework the API to know about hashing
Jason Ekstrand
2015-01-15
9
-103
/
+76
*
util: Move main/set to util/hash_set
Jason Ekstrand
2015-01-15
1
-1
/
+1
*
hash_table: Rename insert_with_hash to insert_pre_hashed
Jason Ekstrand
2015-01-15
1
-1
/
+1
*
nir/algebraic: Only replace an instruction once
Jason Ekstrand
2015-01-15
1
-1
/
+3
*
nir/vars_to_ssa: Use the copy lowering from lower_var_copies
Jason Ekstrand
2015-01-15
1
-152
/
+46
*
nir: Add a pass for lowering copy instructions
Jason Ekstrand
2015-01-15
2
-0
/
+226
*
nir/vars_to_ssa: Refactor get_deref_node
Jason Ekstrand
2015-01-15
1
-20
/
+25
*
nir: Rename lower_variables to lower_vars_to_ssa
Jason Ekstrand
2015-01-15
2
-4
/
+4
*
nir/tex_instr: Add a nir_tex_src struct and dynamically allocate the src array
Jason Ekstrand
2015-01-15
6
-40
/
+48
*
nir/validate: Only build in debug mode
Jason Ekstrand
2015-01-15
2
-0
/
+11
*
nir/lower_variables: Improve documentation
Jason Ekstrand
2015-01-15
1
-27
/
+79
*
nir/lower_variables: Use a for loop for get_deref_node
Jason Ekstrand
2015-01-15
1
-58
/
+48
*
nir: Use the actual FNV-1a hash for hashing derefs
Jason Ekstrand
2015-01-15
2
-90
/
+79
*
nir: Make intrinsic flags into an enum
Jason Ekstrand
2015-01-15
1
-14
/
+14
*
nir: Use static inlines instead of macros for list getters
Jason Ekstrand
2015-01-15
1
-28
/
+81
*
nir/variable: Remove the constant_value field
Jason Ekstrand
2015-01-15
2
-16
/
+4
*
nir: Add some documentation
Jason Ekstrand
2015-01-15
1
-22
/
+69
*
nir/lower_variables: Follow the Cytron paper more closely
Jason Ekstrand
2015-01-15
1
-26
/
+69
*
nir/print: Various cleanups recommended by Eric
Jason Ekstrand
2015-01-15
1
-33
/
+12
*
nir/lower_variables: Add a bunch of comments and re-arrange a few things
Jason Ekstrand
2015-01-15
1
-57
/
+170
*
nir: Rename parallel_copy_copy to parallel_copy_entry and add a foreach macro
Jason Ekstrand
2015-01-15
4
-46
/
+55
*
nir/from_ssa: Clean up parallel copy handling and document it better
Jason Ekstrand
2015-01-15
3
-66
/
+92
*
nir: Rename nir_block_following_if to nir_block_get_following_if
Jason Ekstrand
2015-01-15
5
-5
/
+5
*
nir/opcodes: Remove the per_component info field
Jason Ekstrand
2015-01-15
3
-37
/
+33
*
nir/search: Use nir_op_infos to determine if an operation is commutative
Jason Ekstrand
2015-01-15
1
-33
/
+2
*
nir/opcodes: Add algebraic properties metadata
Jason Ekstrand
2015-01-15
3
-71
/
+89
*
nir: Make load_const SSA-only
Jason Ekstrand
2015-01-15
14
-136
/
+51
[next]