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: 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
*
i965: Use typed foreach_in_list_safe instead of foreach_list_safe.
Matt Turner
2014-07-01
1
-2
/
+1
*
i965: Use typed foreach_in_list instead of foreach_list.
Matt Turner
2014-07-01
1
-18
/
+8
*
i965: Use brw->gen in some generation checks.
Matt Turner
2014-06-11
1
-5
/
+6
*
i965/fs: Loop from 0 to inst->sources, not 0 to 3.
Matt Turner
2014-06-01
1
-5
/
+5
*
Revert "i965: Don't make instructions with a null dest a barrier to scheduling."
Matt Turner
2014-05-26
1
-8
/
+4
*
i965: Don't treat HW_REGs as barriers if they're immediates.
Matt Turner
2014-05-25
1
-4
/
+12
*
i965: Relax accumulator dependency scheduling on Gen < 6
Iago Toral Quiroga
2014-05-13
1
-59
/
+25
*
i965: Don't make instructions with a null dest a barrier to scheduling.
Matt Turner
2014-04-16
1
-4
/
+8
*
i965: Add writes_accumulator flag
Juha-Pekka Heikkila
2014-04-16
1
-0
/
+94
*
i965/vec4: Rename depends_on_flags() to reads_flag().
Matt Turner
2014-03-24
1
-2
/
+2
*
i965/vec4: Add and use vec4_instruction::writes_flag().
Matt Turner
2014-03-24
1
-2
/
+2
*
i965: Disassemble 3-src operands widths' correctly.
Matt Turner
2014-03-10
1
-8
/
+8
*
i965: Move compiler debugging output to stderr.
Eric Anholt
2014-02-22
1
-7
/
+9
*
i965: Replace 8-wide and 16-wide with SIMD8 and SIMD16.
Eric Anholt
2014-01-17
1
-3
/
+3
*
i965/fs: Make the first pre-allocation heuristic be the post heuristic.
Eric Anholt
2013-11-22
1
-2
/
+2
*
i965/vec4: Add invalidate_live_intervals method.
Matt Turner
2013-11-20
1
-1
/
+1
*
i965: Add missing break in SHADER_OPCODE_GEN7_SCRATCH_READ case.
Vinson Lee
2013-11-15
1
-0
/
+2
*
i965: Initialize schedule_node::delay.
Vinson Lee
2013-11-14
1
-0
/
+1
*
i965/fs: Try a different pre-scheduling heuristic if the first spills.
Eric Anholt
2013-11-12
1
-39
/
+46
*
i965/fs: Ignore actual latency pre-reg-alloc.
Eric Anholt
2013-11-12
1
-21
/
+29
*
i965/fs: Prefer things we know reduce reg pressure when pre-scheduling.
Eric Anholt
2013-11-12
1
-0
/
+144
*
i965/gen7: Add instruction latency estimates for untyped atomics and reads.
Francisco Jerez
2013-11-04
1
-0
/
+39
*
i965: Add a 'has_side_effects' back-end instruction predicate.
Francisco Jerez
2013-11-04
1
-1
/
+5
*
i965/fs: Use reads_flag and writes_flag methods in the scheduler.
Matt Turner
2013-10-30
1
-12
/
+4
*
i965/fs: Use the gen7 scratch read opcode when possible.
Eric Anholt
2013-10-30
1
-0
/
+12
*
i965/fs: Prefer more-critical instructions of the same age in LIFO scheduling.
Eric Anholt
2013-10-30
1
-15
/
+67
*
i965: Compute the node's delay time for scheduling.
Eric Anholt
2013-10-30
1
-0
/
+28
*
i965: Handle deallocation of some private ralloc contexts explicitly.
Francisco Jerez
2013-10-29
1
-1
/
+1
*
i965/fs: Stop trying to hack around MRF dep chains on gen7+ LIFO scheduling.
Eric Anholt
2013-10-25
1
-1
/
+1
[next]