Re: [Mesa-dev] [PATCH 06/10] i965: Don't dead-code eliminate instructions that write to the accumulator.

2013-10-05 Thread Kenneth Graunke
On 09/27/2013 06:17 PM, Matt Turner wrote: > v2: Set destination register using brw_null_reg(). > --- > src/mesa/drivers/dri/i965/brw_fs.cpp | 15 ++- > src/mesa/drivers/dri/i965/brw_vec4.cpp | 15 ++- > 2 files changed, 28 insertions(+), 2 deletions(-) > > diff --git a/

Re: [Mesa-dev] [PATCH 06/10] i965: Don't dead-code eliminate instructions that write to the accumulator.

2013-10-04 Thread Paul Berry
On 27 September 2013 18:17, Matt Turner wrote: > v2: Set destination register using brw_null_reg(). > Reviewed-by: Paul Berry > --- > src/mesa/drivers/dri/i965/brw_fs.cpp | 15 ++- > src/mesa/drivers/dri/i965/brw_vec4.cpp | 15 ++- > 2 files changed, 28 insertions(+

[Mesa-dev] [PATCH 06/10] i965: Don't dead-code eliminate instructions that write to the accumulator.

2013-09-27 Thread Matt Turner
v2: Set destination register using brw_null_reg(). --- src/mesa/drivers/dri/i965/brw_fs.cpp | 15 ++- src/mesa/drivers/dri/i965/brw_vec4.cpp | 15 ++- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/

Re: [Mesa-dev] [PATCH 06/10] i965: Don't dead-code eliminate instructions that write to the accumulator.

2013-09-23 Thread Kenneth Graunke
On 09/23/2013 04:13 PM, Matt Turner wrote: > --- > I've noticed that the vec4 backend doesn't use the ARF register file. Is this > because we decided that it's not necessary and we can just use HW_REG? > > So, this patch will probably need a fixup. I believe so. I think we should convert the sca

[Mesa-dev] [PATCH 06/10] i965: Don't dead-code eliminate instructions that write to the accumulator.

2013-09-23 Thread Matt Turner
--- I've noticed that the vec4 backend doesn't use the ARF register file. Is this because we decided that it's not necessary and we can just use HW_REG? So, this patch will probably need a fixup. src/mesa/drivers/dri/i965/brw_fs.cpp | 16 +++- src/mesa/drivers/dri/i965/brw_vec4.cpp