From: Rob Clark Date: Sat, 18 Oct 2014 18:46:35 +0000 (-0400) Subject: freedreno/ir3: comment + better fxn name X-Git-Tag: upstream/17.1.0~22793 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab33a240890a7ef147d4b8cf35c27ae1932a1dbe;p=platform%2Fupstream%2Fmesa.git freedreno/ir3: comment + better fxn name Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/ir3/ir3_sched.c b/src/gallium/drivers/freedreno/ir3/ir3_sched.c index cf09cea..24d7c63 100644 --- a/src/gallium/drivers/freedreno/ir3/ir3_sched.c +++ b/src/gallium/drivers/freedreno/ir3/ir3_sched.c @@ -162,7 +162,8 @@ static void schedule(struct ir3_sched_ctx *ctx, * Delay-slot calculation. Follows fanin/fanout. */ -static unsigned delay_calc2(struct ir3_sched_ctx *ctx, +/* calculate delay for specified src: */ +static unsigned delay_calc_srcn(struct ir3_sched_ctx *ctx, struct ir3_instruction *assigner, struct ir3_instruction *consumer, unsigned srcn) { @@ -173,7 +174,7 @@ static unsigned delay_calc2(struct ir3_sched_ctx *ctx, for (i = 1; i < assigner->regs_count; i++) { struct ir3_register *reg = assigner->regs[i]; if (reg->flags & IR3_REG_SSA) { - unsigned d = delay_calc2(ctx, reg->instr, + unsigned d = delay_calc_srcn(ctx, reg->instr, consumer, srcn); delay = MAX2(delay, d); } @@ -186,6 +187,7 @@ static unsigned delay_calc2(struct ir3_sched_ctx *ctx, return delay; } +/* calculate delay for instruction (maximum of delay for all srcs): */ static unsigned delay_calc(struct ir3_sched_ctx *ctx, struct ir3_instruction *instr) { @@ -194,7 +196,7 @@ static unsigned delay_calc(struct ir3_sched_ctx *ctx, for (i = 1; i < instr->regs_count; i++) { struct ir3_register *reg = instr->regs[i]; if (reg->flags & IR3_REG_SSA) { - unsigned d = delay_calc2(ctx, reg->instr, + unsigned d = delay_calc_srcn(ctx, reg->instr, instr, i - 1); delay = MAX2(delay, d); }