diff options
author | Kenneth Graunke <[email protected]> | 2014-06-30 08:05:42 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-08-10 19:32:34 -0700 |
commit | a1c899c718758d68c112590d826e16c772ace195 (patch) | |
tree | d201f4be331339728aac4d06a3160bb3af78c696 /src | |
parent | 7d41170b62570eafa0d3041a87cff9ad57ff418e (diff) |
i965/eu: Set UIP on ELSE instructions on Broadwell.
Broadwell adds UIP on ELSE instructions.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu_emit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c index e102d4b1c4a..3ab44333ec8 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_emit.c +++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c @@ -1391,6 +1391,12 @@ patch_IF_ELSE(struct brw_compile *p, /* The IF instruction's UIP and ELSE's JIP should point to ENDIF */ brw_inst_set_uip(brw, if_inst, br * (endif_inst - if_inst)); brw_inst_set_jip(brw, else_inst, br * (endif_inst - else_inst)); + if (brw->gen >= 8) { + /* Since we don't set branch_ctrl, the ELSE's JIP and UIP both + * should point to ENDIF. + */ + brw_inst_set_uip(brw, else_inst, br * (endif_inst - else_inst)); + } } } } |