projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39a920c
)
i965/disasm: Add CSEL.
author
Matt Turner
<mattst88@gmail.com>
Tue, 19 Aug 2014 01:18:30 +0000
(18:18 -0700)
committer
Matt Turner
<mattst88@gmail.com>
Tue, 19 Aug 2014 01:18:50 +0000
(18:18 -0700)
src/mesa/drivers/dri/i965/brw_disasm.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_disasm.c
b/src/mesa/drivers/dri/i965/brw_disasm.c
index c6f981a70e7ff946718e7f4e7540ffa3cb5cf364..424b21487db973842c96c88bfe92b7af51543bfe 100644
(file)
--- 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 },