In a few commits, we'll start emitting an add(32) instruction on some platforms. Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>tags/10.6-branchpoint
@@ -213,7 +213,7 @@ validate_reg(const struct brw_context *brw, brw_inst *inst, struct brw_reg reg) | |||
const int hstride_for_reg[] = {0, 1, 2, 4}; | |||
const int vstride_for_reg[] = {0, 1, 2, 4, 8, 16, 32}; | |||
const int width_for_reg[] = {1, 2, 4, 8, 16}; | |||
const int execsize_for_reg[] = {1, 2, 4, 8, 16}; | |||
const int execsize_for_reg[] = {1, 2, 4, 8, 16, 32}; | |||
int width, hstride, vstride, execsize; | |||
if (reg.file == BRW_IMMEDIATE_VALUE) { |
@@ -1630,6 +1630,7 @@ fs_generator::generate_code(const cfg_t *cfg, int dispatch_width) | |||
} | |||
break; | |||
case 16: | |||
case 32: | |||
brw_set_default_compression_control(p, BRW_COMPRESSION_COMPRESSED); | |||
break; | |||
default: |