diff options
author | Jose Maria Casanova Crespo <[email protected]> | 2018-07-09 02:00:34 +0200 |
---|---|---|
committer | Jose Maria Casanova Crespo <[email protected]> | 2018-07-10 00:14:49 +0200 |
commit | 11c904d0d30c3b6507be7e3bece4677a40abbd63 (patch) | |
tree | 21dbf986766cbc71fc1bdb9181e72ac36abbe6f3 | |
parent | 87fc9af3fc5ab7b5b61e17615ce5ec47e8907698 (diff) |
intel/compiler: relax brw_eu_validate for byte raw movs
When the destination is a BYTE type allow raw movs
even if the stride is not exact multiple of destination
type and exec type, execution type is Word and its size is 2.
This restriction was only allowing stride==2 destinations
for 8-bit types.
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/compiler/brw_eu_validate.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/intel/compiler/brw_eu_validate.c b/src/intel/compiler/brw_eu_validate.c index 29d1fe46f71..a25010b225c 100644 --- a/src/intel/compiler/brw_eu_validate.c +++ b/src/intel/compiler/brw_eu_validate.c @@ -472,9 +472,11 @@ general_restrictions_based_on_operand_types(const struct gen_device_info *devinf dst_type_size = 8; if (exec_type_size > dst_type_size) { - ERROR_IF(dst_stride * dst_type_size != exec_type_size, - "Destination stride must be equal to the ratio of the sizes of " - "the execution data type to the destination type"); + if (!(dst_type_is_byte && inst_is_raw_move(devinfo, inst))) { + ERROR_IF(dst_stride * dst_type_size != exec_type_size, + "Destination stride must be equal to the ratio of the sizes " + "of the execution data type to the destination type"); + } unsigned subreg = brw_inst_dst_da1_subreg_nr(devinfo, inst); |