OSDN Git Service

i965: Disassemble vector float immediates properly.
authorMatt Turner <mattst88@gmail.com>
Sun, 9 Mar 2014 01:18:26 +0000 (17:18 -0800)
committerMatt Turner <mattst88@gmail.com>
Wed, 26 Nov 2014 01:29:02 +0000 (17:29 -0800)
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
src/mesa/drivers/dri/i965/brw_disasm.c

index e235fd4..dd7bb43 100644 (file)
@@ -1025,7 +1025,11 @@ imm(FILE *file, struct brw_context *brw, unsigned type, brw_inst *inst)
       format(file, "0x%08xUV", brw_inst_imm_ud(brw, inst));
       break;
    case BRW_HW_REG_IMM_TYPE_VF:
-      format(file, "Vector Float");
+      format(file, "[%-gF, %-gF, %-gF, %-gF]VF",
+             brw_vf_to_float(brw_inst_imm_ud(brw, inst)),
+             brw_vf_to_float(brw_inst_imm_ud(brw, inst) >> 8),
+             brw_vf_to_float(brw_inst_imm_ud(brw, inst) >> 16),
+             brw_vf_to_float(brw_inst_imm_ud(brw, inst) >> 24));
       break;
    case BRW_HW_REG_IMM_TYPE_V:
       format(file, "0x%08xV", brw_inst_imm_ud(brw, inst));