index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
mesa
/
drivers
/
dri
/
i965
/
brw_schedule_instructions.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
i965/sched: Change the scheduling heuristics to favor early program termination.
Francisco Jerez
2016-08-18
1
-3
/
+16
*
i965/sched: Assign a preferred exit node to each node of the dependency graph.
Francisco Jerez
2016-08-18
1
-0
/
+59
*
i965/sched: Calculate the critical path of scheduling nodes non-recursively.
Francisco Jerez
2016-08-18
1
-13
/
+12
*
i965/fs: Keep track of flag dependencies with byte granularity during schedul...
Francisco Jerez
2016-05-27
1
-10
/
+31
*
i965/fs: Add missing get_latency_gen7() cases for the Gen7 pull constant opco...
Francisco Jerez
2016-05-27
1
-0
/
+2
*
i965/fs: Rename Gen4 physical varying pull constant load opcode.
Francisco Jerez
2016-05-27
1
-1
/
+1
*
i965: Add infrastucture for sample lod-zero operations.
Matt Turner
2016-05-19
1
-0
/
+2
*
i965: Don't add barrier deps for FB write messages.
Matt Turner
2016-03-30
1
-1
/
+2
*
i965: Add and use is_scheduling_barrier() function.
Matt Turner
2016-03-30
1
-4
/
+17
*
i965: Remove NOP insertion kludge in scheduler.
Matt Turner
2016-03-30
1
-20
/
+5
*
i965: Relax restriction on scheduling last instruction.
Matt Turner
2016-03-30
1
-20
/
+3
*
Revert "i965: Don't add barrier deps for FB write messages."
Matt Turner
2016-03-30
1
-4
/
+3
*
i965: Simplify full scheduling-barrier conditions.
Matt Turner
2016-03-30
1
-27
/
+8
*
i965: Remove incorrect cycle estimates.
Matt Turner
2016-03-30
1
-10
/
+0
*
i965: Use foreach_in_list_reverse_safe() macro.
Matt Turner
2016-03-12
1
-12
/
+2
*
i965: Don't add barrier deps for FB write messages.
Kenneth Graunke
2016-02-08
1
-3
/
+4
*
i965: Clean up #includes in the compiler.
Matt Turner
2015-11-24
1
-2
/
+0
*
i965: Replace HW_REG with ARF/FIXED_GRF.
Matt Turner
2015-11-13
1
-38
/
+15
*
i965: Rename GRF to VGRF.
Matt Turner
2015-11-13
1
-13
/
+13
*
i965: Use brw_reg's nr field to store register number.
Matt Turner
2015-11-13
1
-31
/
+31
*
i965: Remove fixed_hw_reg field from backend_reg.
Matt Turner
2015-11-13
1
-25
/
+25
*
i965/fs: Use regs_read/written for post-RA scheduling in calculate_deps
Jason Ekstrand
2015-11-07
1
-11
/
+4
*
i965/sched: don't calculate live intervals for post-RA scheduling
Connor Abbott
2015-10-31
1
-1
/
+2
*
i965/sched: use liveness analysis for computing register pressure
Connor Abbott
2015-10-30
1
-56
/
+229
*
i965: dump scheduling cycle estimates
Connor Abbott
2015-10-30
1
-0
/
+20
*
i965/sched: write-after-read dependencies are free
Connor Abbott
2015-10-30
1
-5
/
+5
*
i965: fix cycle estimates when there's a pipeline stall
Connor Abbott
2015-10-30
1
-7
/
+8
*
i965: Test fixed_hw_reg.file against BRW_IMMEDIATE_VALUE, not IMM.
Matt Turner
2015-10-29
1
-4
/
+4
*
nir: remove dependency on glsl
Rob Clark
2015-10-16
1
-1
/
+1
*
i965: Turn BRW_MAX_MRF into a macro that accepts a hardware generation
Iago Toral Quiroga
2015-09-21
1
-2
/
+2
*
i965/fs: Use exec_size instead of dst.width for computing component size
Jason Ekstrand
2015-06-30
1
-2
/
+2
*
i965: Rename backend_visitor to backend_shader
Jason Ekstrand
2015-05-28
1
-9
/
+9
*
i965: Add typed surface access opcodes.
Francisco Jerez
2015-05-04
1
-0
/
+3
*
i965: Add untyped surface write opcode.
Francisco Jerez
2015-05-04
1
-0
/
+1
*
i965: Use device_info instead of the context in instruction scheduling
Jason Ekstrand
2015-04-22
1
-11
/
+10
*
i965: Make scheduler cycle estimates use the proper stage name.
Kenneth Graunke
2015-02-19
1
-5
/
+6
*
i965/vec4: Don't infer MRF dependencies for send from GRF instructions.
Francisco Jerez
2015-02-10
1
-14
/
+18
*
i965/vec4: Fix the scheduler to take into account reads and writes of multipl...
Francisco Jerez
2015-02-10
1
-5
/
+10
*
i965/fs: Remove dependency of fs_inst on the visitor class.
Francisco Jerez
2015-02-10
1
-4
/
+4
*
i965: Factor out virtual GRF allocation to a separate object.
Francisco Jerez
2015-02-10
1
-5
/
+5
*
i965: Don't make instructions with a null dest a barrier to scheduling.
Matt Turner
2015-01-23
1
-4
/
+8
*
i965: Remove tabs from instruction scheduler.
Matt Turner
2014-12-02
1
-98
/
+98
*
i965/fs: Use instruction execution sizes instead of heuristics
Jason Ekstrand
2014-09-30
1
-3
/
+1
*
i965/fs_reg: Allocate double the number of vgrfs in SIMD16 mode
Jason Ekstrand
2014-09-30
1
-5
/
+6
*
i965: Make instruction lists local to the bblocks.
Matt Turner
2014-09-24
1
-5
/
+5
*
i965: Remove now unneeded calls to calculate_cfg().
Matt Turner
2014-09-24
1
-1
/
+0
*
i965: Remove cfg-invalidating parameter from invalidate_live_intervals.
Matt Turner
2014-09-24
1
-2
/
+2
*
i965: Preserve the CFG in instruction scheduling.
Matt Turner
2014-09-24
1
-32
/
+42
*
i965: Remove artificial dependency between math instructions.
Matt Turner
2014-07-08
1
-1
/
+2
*
i965/fs: Track dependencies in instruction scheduling per reg offset.
Matt Turner
2014-07-08
1
-8
/
+15
[next]