Module: Mesa
Branch: master
Commit: 8c3952051e26c644448fa607a7bdba97631728cb
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=8c3952051e26c644448fa607a7bdba97631728cb

Author: Rob Clark <robcl...@freedesktop.org>
Date:   Fri Jan  2 09:26:38 2015 -0500

freedreno/ir3: handle relative addr in ir3_dump

Signed-off-by: Rob Clark <robcl...@freedesktop.org>

---

 src/gallium/drivers/freedreno/ir3/ir3_dump.c |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/gallium/drivers/freedreno/ir3/ir3_dump.c 
b/src/gallium/drivers/freedreno/ir3/ir3_dump.c
index 136b57f..60be64c 100644
--- a/src/gallium/drivers/freedreno/ir3/ir3_dump.c
+++ b/src/gallium/drivers/freedreno/ir3/ir3_dump.c
@@ -128,13 +128,20 @@ static void dump_reg_name(struct ir3_dump_ctx *ctx,
                                fprintf(ctx->f, "]");
                        }
                }
+       } else if (reg->flags & IR3_REG_RELATIV) {
+               if (reg->flags & IR3_REG_HALF)
+                       fprintf(ctx->f, "h");
+               if (reg->flags & IR3_REG_CONST)
+                       fprintf(ctx->f, "c<a0.x + %u>", reg->num);
+               else
+                       fprintf(ctx->f, "\x1b[0;31mr<a0.x + %u>\x1b[0m", 
reg->num);
        } else {
                if (reg->flags & IR3_REG_HALF)
                        fprintf(ctx->f, "h");
                if (reg->flags & IR3_REG_CONST)
                        fprintf(ctx->f, "c%u.%c", reg_num(reg), 
"xyzw"[reg_comp(reg)]);
                else
-                       fprintf(ctx->f, "r%u.%c", reg_num(reg), 
"xyzw"[reg_comp(reg)]);
+                       fprintf(ctx->f, "\x1b[0;31mr%u.%c\x1b[0m", 
reg_num(reg), "xyzw"[reg_comp(reg)]);
        }
 }
 

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to