From: Matt Turner Date: Mon, 2 Dec 2013 20:41:16 +0000 (-0800) Subject: i965/vec4: Print negate and absolute value for src args. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2b8e0a73fbc021305fdcab7a3c6661de7af911a9;p=mesa.git i965/vec4: Print negate and absolute value for src args. Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp index 551f0a211d2..71f530711e1 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp @@ -1166,6 +1166,10 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst) printf(", "); for (int i = 0; i < 3 && inst->src[i].file != BAD_FILE; i++) { + if (inst->src[i].negate) + printf("-"); + if (inst->src[i].abs) + printf("|"); switch (inst->src[i].file) { case GRF: printf("vgrf%d", inst->src[i].reg); @@ -1242,6 +1246,9 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst) printf("%s", chans[BRW_GET_SWZ(inst->src[i].swizzle, c)]); } + if (inst->src[i].abs) + printf("|"); + if (i < 2 && inst->src[i + 1].file != BAD_FILE) printf(", "); }