From: Kenneth Graunke Date: Sun, 15 May 2016 06:53:19 +0000 (-0700) Subject: i965: Make a "does this while jump before our instruction?" helper. X-Git-Tag: upstream/17.1.0~9896 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2f02fad6b3a0429798c3bd4feb4501dafa5e2fc0;p=platform%2Fupstream%2Fmesa.git i965: Make a "does this while jump before our instruction?" helper. I need to use this in an additional place. Cc: mesa-stable@lists.freedesktop.org Signed-off-by: Kenneth Graunke Reviewed-by: Francisco Jerez --- diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c index 1a2ed3f..cc2876b 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_emit.c +++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c @@ -2655,6 +2655,17 @@ brw_send_indirect_surface_message(struct brw_codegen *p, return insn; } +static bool +while_jumps_before_offset(const struct brw_device_info *devinfo, + brw_inst *insn, int while_offset, int start_offset) +{ + int scale = 16 / brw_jump_scale(devinfo); + int jip = devinfo->gen == 6 ? brw_inst_gen6_jump_count(devinfo, insn) + : brw_inst_jip(devinfo, insn); + return while_offset + jip * scale <= start_offset; +} + + static int brw_find_next_block_end(struct brw_codegen *p, int start_offset) { @@ -2698,7 +2709,6 @@ brw_find_loop_end(struct brw_codegen *p, int start_offset) { const struct brw_device_info *devinfo = p->devinfo; int offset; - int scale = 16 / brw_jump_scale(devinfo); void *store = p->store; assert(devinfo->gen >= 6); @@ -2712,9 +2722,7 @@ brw_find_loop_end(struct brw_codegen *p, int start_offset) brw_inst *insn = store + offset; if (brw_inst_opcode(devinfo, insn) == BRW_OPCODE_WHILE) { - int jip = devinfo->gen == 6 ? brw_inst_gen6_jump_count(devinfo, insn) - : brw_inst_jip(devinfo, insn); - if (offset + jip * scale <= start_offset) + if (while_jumps_before_offset(devinfo, insn, offset, start_offset)) return offset; } }