pan/midgard: Extend choose_instruction for scalar units

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
Alyssa Rosenzweig
2019-09-28 09:48:43 -04:00
parent e9edae3ecb
commit 57bac68fff

View File

@@ -393,6 +393,7 @@ mir_choose_instruction(
bool alu = tag == TAG_ALU_4;
unsigned unit = predicate->unit;
bool branch = alu && (unit == ALU_ENAB_BR_COMPACT);
bool scalar = (unit != ~0) && (unit & UNITS_SCALAR);
/* Iterate to find the best instruction satisfying the predicate */
unsigned i;
@@ -427,6 +428,9 @@ mir_choose_instruction(
if (branch && !instructions[i]->compact_branch)
continue;
if (alu && scalar && !mir_is_scalar(instructions[i]))
continue;
if (alu && !mir_adjust_constants(instructions[i], predicate, false))
continue;