diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-04-27 13:29:43 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-28 17:17:48 +0000 |
commit | 52cc7165c6a1c7d9338edc9f0add5e8439d8a2c2 (patch) | |
tree | 3fae3ad6caeb321e782a818ed0ca08e1ecbe371d /src | |
parent | 2f286eed2a99da99a2934eeae6f1276894289059 (diff) |
pan/bi: Add some 8-bit compares
Not all but enough to see the pattern.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4789>
Diffstat (limited to 'src')
-rw-r--r-- | src/panfrost/bifrost/disassemble.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index 81429d61413..48d6e700e3d 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -1076,6 +1076,9 @@ static const struct add_op_info add_op_infos[] = { { 0x0f658, "UCMP.GL.GE", ADD_TWO_SRC }, { 0x0f660, "ICMP.GL.EQ", ADD_TWO_SRC }, { 0x0f669, "ICMP.GL.NEQ", ADD_TWO_SRC }, + { 0x0f690, "UCMP.8.GT", ADD_TWO_SRC }, + { 0x0f698, "UCMP.8.GE", ADD_TWO_SRC }, + { 0x0f6a8, "ICMP.8.NE", ADD_TWO_SRC }, { 0x0f6c0, "ICMP.D3D.GT", ADD_TWO_SRC }, // src0 > src1 ? ~0 : 0 { 0x0f6c8, "ICMP.D3D.GE", ADD_TWO_SRC }, { 0x0f6d0, "UCMP.D3D.GT", ADD_TWO_SRC }, |