[Mesa-dev] [PATCH] i965/gen8: Always use BRW_REGISTER_TYPE_UW for MUL on GEN8+

Lofstedt, Marta marta.lofstedt at intel.com
Wed Dec 30 00:38:38 PST 2015



> -----Original Message-----
> From: mesa-dev [mailto:mesa-dev-bounces at lists.freedesktop.org] On
> Behalf Of Ilia Mirkin
> Sent: Tuesday, December 29, 2015 5:39 PM
> To: Marta Lofstedt
> Cc: mesa-dev at lists.freedesktop.org; Romanick, Ian D
> Subject: Re: [Mesa-dev] [PATCH] i965/gen8: Always use
> BRW_REGISTER_TYPE_UW for MUL on GEN8+
> 
> On Tue, Dec 29, 2015 at 10:15 AM, Marta Lofstedt
> <marta.lofstedt at linux.intel.com> wrote:
> > From: Marta Lofstedt <marta.lofstedt at intel.com>
> >
> > The imulExtended test of the shader bitfield tests of the OpenGL ES
> > 3.1 CTS, fail on gen8+, when BRW_REGISTER_TYPE_W is used for
> > SHADER_OPECODE_MULH.
> >
> > See:
> > https://bugs.freedesktop.org/show_bug.cgi?id=92595
> >
> > Signed-off-by: Marta Lofstedt <marta.lofstedt at linux.intel.com>
> 
> You might also consider removing the type_is_signed helper -- this was the
> only use. While I'm no i965 expert, I suspect using it is almost always going to
> be a bug, since the type here is maintained very differently than in the glsl ir.
> 

Thanks for the idea Ilia. The obsolete function is now gone!

BR,

Marta

> Cheers,
> 
>   -ilia
> 
> > ---
> >  src/mesa/drivers/dri/i965/brw_fs.cpp | 3 +--
> >  1 file changed, 1 insertion(+), 2 deletions(-)
> >
> > diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp
> > b/src/mesa/drivers/dri/i965/brw_fs.cpp
> > index 6ac2f85..511979d 100644
> > --- a/src/mesa/drivers/dri/i965/brw_fs.cpp
> > +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
> > @@ -3436,8 +3436,7 @@ fs_visitor::lower_integer_multiplication()
> >               */
> >              assert(mul->src[1].type == BRW_REGISTER_TYPE_D ||
> >                     mul->src[1].type == BRW_REGISTER_TYPE_UD);
> > -            mul->src[1].type = (type_is_signed(mul->src[1].type) ?
> > -                                BRW_REGISTER_TYPE_W : BRW_REGISTER_TYPE_UW);
> > +            mul->src[1].type = BRW_REGISTER_TYPE_UW;
> >              mul->src[1].stride *= 2;
> >
> >           } else if (devinfo->gen == 7 && !devinfo->is_haswell &&
> > --
> > 2.5.0
> >
> > _______________________________________________
> > mesa-dev mailing list
> > mesa-dev at lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/mesa-dev
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list