diff options
author | Matt Turner <[email protected]> | 2014-06-13 20:42:54 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-09-25 11:02:36 -0700 |
commit | 5a559557e672f94061b06ee82072ccc82d6f3491 (patch) | |
tree | da7e7cf7d1b41d60a3e2b3594391ad877108441a /src/mesa/drivers/dri/i965/brw_disasm.c | |
parent | 64c0f62018d0182ccf65e58ac53318b986986288 (diff) |
i965: Add BRW_OPCODE_NENOP for G45.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_disasm.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_disasm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index 5a56591f0ad..a729d11a5ec 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -84,6 +84,7 @@ const struct opcode_desc opcode_descs[128] = { [BRW_OPCODE_SEND] = { .name = "send", .nsrc = 1, .ndst = 1 }, [BRW_OPCODE_SENDC] = { .name = "sendc", .nsrc = 1, .ndst = 1 }, [BRW_OPCODE_NOP] = { .name = "nop", .nsrc = 0, .ndst = 0 }, + [BRW_OPCODE_NENOP] = { .name = "nenop", .nsrc = 0, .ndst = 0 }, [BRW_OPCODE_JMPI] = { .name = "jmpi", .nsrc = 0, .ndst = 0 }, [BRW_OPCODE_IF] = { .name = "if", .nsrc = 2, .ndst = 0 }, [BRW_OPCODE_IFF] = { .name = "iff", .nsrc = 2, .ndst = 1 }, @@ -1225,7 +1226,7 @@ brw_disassemble_inst(FILE *file, struct brw_context *brw, brw_inst *inst, } } - if (opcode != BRW_OPCODE_NOP) { + if (opcode != BRW_OPCODE_NOP && opcode != BRW_OPCODE_NENOP) { string(file, "("); err |= control(file, "execution size", exec_size, brw_inst_exec_size(brw, inst), NULL); @@ -1509,7 +1510,7 @@ brw_disassemble_inst(FILE *file, struct brw_context *brw, brw_inst *inst, } } pad(file, 64); - if (opcode != BRW_OPCODE_NOP) { + if (opcode != BRW_OPCODE_NOP && opcode != BRW_OPCODE_NENOP) { string(file, "{"); space = 1; err |= control(file, "access mode", access_mode, |