From: Matt Turner Date: Mon, 2 Dec 2013 21:10:29 +0000 (-0800) Subject: i965: Print argument types in dump_instruction(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=637dda1c307aee921ecc646b75f891deab6585a9;p=mesa.git i965: Print argument types in dump_instruction(). Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index c21239f0528..f10f5c0de18 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 13f69f1f166..06ae0524c41 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(", "); }