---
 src/mesa/drivers/dri/i965/brw_fs.cpp   | 6 +++++-
 src/mesa/drivers/dri/i965/brw_vec4.cpp | 6 +++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp 
b/src/mesa/drivers/dri/i965/brw_fs.cpp
index c21239f..f10f5c0 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -2888,7 +2888,7 @@ fs_visitor::dump_instruction(backend_instruction *be_inst)
       printf("???");
       break;
    }
-   printf(", ");
+   printf(":%s, ", reg_encoding[inst->dst.type]);
 
    for (int i = 0; i < 3 && inst->src[i].file != BAD_FILE; i++) {
       if (inst->src[i].negate)
@@ -2968,6 +2968,10 @@ fs_visitor::dump_instruction(backend_instruction 
*be_inst)
       if (inst->src[i].abs)
          printf("|");
 
+      if (inst->src[i].file != IMM) {
+         printf(":%s", reg_encoding[inst->src[i].type]);
+      }
+
       if (i < 2 && inst->src[i + 1].file != BAD_FILE)
          printf(", ");
    }
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp 
b/src/mesa/drivers/dri/i965/brw_vec4.cpp
index 13f69f1..06ae052 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp
@@ -1163,7 +1163,7 @@ vec4_visitor::dump_instruction(backend_instruction 
*be_inst)
       if (inst->dst.writemask & 8)
          printf("w");
    }
-   printf(", ");
+   printf(":%s, ", reg_encoding[inst->dst.type]);
 
    for (int i = 0; i < 3 && inst->src[i].file != BAD_FILE; i++) {
       if (inst->src[i].negate)
@@ -1251,6 +1251,10 @@ vec4_visitor::dump_instruction(backend_instruction 
*be_inst)
       if (inst->src[i].abs)
          printf("|");
 
+      if (inst->src[i].file != IMM) {
+         printf(":%s", reg_encoding[inst->src[i].type]);
+      }
+
       if (i < 2 && inst->src[i + 1].file != BAD_FILE)
          printf(", ");
    }
-- 
1.8.3.2

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

Reply via email to