From: Karol Herbst Date: Thu, 6 Oct 2016 21:33:14 +0000 (+0200) Subject: nv50/ir: start LocalCSE with getFirst to merge PHI instructions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0404678c5f72162c9898c9c94ca67969106227c8;p=mesa.git nv50/ir: start LocalCSE with getFirst to merge PHI instructions total instructions in shared programs : 3499888 -> 3499445 (-0.01%) total gprs used in shared programs : 453866 -> 453803 (-0.01%) total local used in shared programs : 21621 -> 21621 (0.00%) total bytes used in shared programs : 32078952 -> 32074936 (-0.01%) local gpr inst bytes helped 0 39 119 119 hurt 0 0 0 0 Signed-off-by: Karol Herbst Reviewed-by: Ilia Mirkin Reviewed-by: Samuel Pitoiset --- diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp index 8494c885f9e..28b59857e63 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp @@ -3323,7 +3323,7 @@ LocalCSE::visit(BasicBlock *bb) for (ir = bb->getFirst(); ir; ir = ir->next) ir->serial = serial++; - for (ir = bb->getEntry(); ir; ir = next) { + for (ir = bb->getFirst(); ir; ir = next) { int s; Value *src = NULL;