Mesa (master): i965/disasm: Add CSEL.

Matt Turner mattst88 at kemper.freedesktop.org
Tue Aug 19 01:27:50 UTC 2014


Module: Mesa
Branch: master
Commit: 6cc6c3b6473ba838b86268ce2c60dfce4d5993d5
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6cc6c3b6473ba838b86268ce2c60dfce4d5993d5

Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Aug 18 18:18:30 2014 -0700

i965/disasm: Add CSEL.

---

 src/mesa/drivers/dri/i965/brw_disasm.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c
index c6f981a..424b214 100644
--- a/src/mesa/drivers/dri/i965/brw_disasm.c
+++ b/src/mesa/drivers/dri/i965/brw_disasm.c
@@ -74,6 +74,7 @@ const struct opcode_desc opcode_descs[128] = {
    [BRW_OPCODE_ASR]      = { .name = "asr",     .nsrc = 2, .ndst = 1 },
    [BRW_OPCODE_CMP]      = { .name = "cmp",     .nsrc = 2, .ndst = 1 },
    [BRW_OPCODE_CMPN]     = { .name = "cmpn",    .nsrc = 2, .ndst = 1 },
+   [BRW_OPCODE_CSEL]     = { .name = "csel",    .nsrc = 3, .ndst = 1 },
    [BRW_OPCODE_BFE]      = { .name = "bfe",     .nsrc = 3, .ndst = 1 },
    [BRW_OPCODE_BFI1]     = { .name = "bfi1",    .nsrc = 2, .ndst = 1 },
    [BRW_OPCODE_BFI2]     = { .name = "bfi2",    .nsrc = 3, .ndst = 1 },




More information about the mesa-commit mailing list