intel/brw: Rename fs_builder to brw_builder
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33076>
This commit is contained in:
@@ -142,7 +142,7 @@ static void
|
||||
brw_lower_mul_dword_inst(fs_visitor &s, fs_inst *inst, bblock_t *block)
|
||||
{
|
||||
const intel_device_info *devinfo = s.devinfo;
|
||||
const fs_builder ibld(&s, block, inst);
|
||||
const brw_builder ibld(&s, block, inst);
|
||||
|
||||
/* It is correct to use inst->src[1].d in both end of the comparison.
|
||||
* Using .ud in the UINT16_MAX comparison would cause any negative value to
|
||||
@@ -304,7 +304,7 @@ static void
|
||||
brw_lower_mul_qword_inst(fs_visitor &s, fs_inst *inst, bblock_t *block)
|
||||
{
|
||||
const intel_device_info *devinfo = s.devinfo;
|
||||
const fs_builder ibld(&s, block, inst);
|
||||
const brw_builder ibld(&s, block, inst);
|
||||
|
||||
/* Considering two 64-bit integers ab and cd where each letter ab
|
||||
* corresponds to 32 bits, we get a 128-bit result WXYZ. We * cd
|
||||
@@ -373,7 +373,7 @@ static void
|
||||
brw_lower_mulh_inst(fs_visitor &s, fs_inst *inst, bblock_t *block)
|
||||
{
|
||||
const intel_device_info *devinfo = s.devinfo;
|
||||
const fs_builder ibld(&s, block, inst);
|
||||
const brw_builder ibld(&s, block, inst);
|
||||
|
||||
/* According to the BDW+ BSpec page for the "Multiply Accumulate
|
||||
* High" instruction:
|
||||
|
||||
Reference in New Issue
Block a user