i965/vec4: Print negate and absolute value for src args.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_vec4.cpp
index 551f0a211d205e04ecd3867e71dc2d5334b3dc17..71f530711e1c262a0bf4afd19bcdc022f567b54f 100644 (file)
@@ -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(", ");
    }