diff options
author | Jason Ekstrand <[email protected]> | 2020-01-29 16:20:23 -0600 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-31 17:23:39 +0000 |
commit | 51d7c42165d2344d0019299d42b34c07f7f5e8d0 (patch) | |
tree | cbf3d1ed4468bdababf91aefa6acf6387c90be0a | |
parent | fa3ef6a8370bf1ce121806e60ccdedb2ddc6aa83 (diff) |
intel/disasm: SEND has two sources on Gen12+
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3642>
-rw-r--r-- | src/intel/compiler/brw_eu.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/intel/compiler/brw_eu.cpp b/src/intel/compiler/brw_eu.cpp index 16600bdc537..78272f27fbf 100644 --- a/src/intel/compiler/brw_eu.cpp +++ b/src/intel/compiler/brw_eu.cpp @@ -531,8 +531,10 @@ static const struct opcode_desc opcode_descs[] = { { BRW_OPCODE_GOTO, 46, "goto", 0, 0, GEN_GE(GEN8) }, { BRW_OPCODE_POP, 47, "pop", 2, 0, GEN_LE(GEN5) }, { BRW_OPCODE_WAIT, 48, "wait", 1, 0, GEN_LT(GEN12) }, - { BRW_OPCODE_SEND, 49, "send", 1, 1, GEN_ALL }, - { BRW_OPCODE_SENDC, 50, "sendc", 1, 1, GEN_ALL }, + { BRW_OPCODE_SEND, 49, "send", 1, 1, GEN_LT(GEN12) }, + { BRW_OPCODE_SENDC, 50, "sendc", 1, 1, GEN_LT(GEN12) }, + { BRW_OPCODE_SEND, 49, "send", 2, 1, GEN_GE(GEN12) }, + { BRW_OPCODE_SENDC, 50, "sendc", 2, 1, GEN_GE(GEN12) }, { BRW_OPCODE_SENDS, 51, "sends", 2, 1, GEN_GE(GEN9) & GEN_LT(GEN12) }, { BRW_OPCODE_SENDSC, 52, "sendsc", 2, 1, GEN_GE(GEN9) & GEN_LT(GEN12) }, { BRW_OPCODE_MATH, 56, "math", 2, 1, GEN_GE(GEN6) }, |