[Mesa-dev] [PATCH 7/9] i965: Print argument types in dump_instruction().
Matt Turner
mattst88 at gmail.com
Mon Dec 2 13:28:40 PST 2013
---
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
More information about the mesa-dev
mailing list