From: Alyssa Rosenzweig Date: Mon, 27 Apr 2020 17:29:43 +0000 (-0400) Subject: pan/bi: Add some 8-bit compares X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52cc7165c6a1c7d9338edc9f0add5e8439d8a2c2;p=mesa.git pan/bi: Add some 8-bit compares Not all but enough to see the pattern. Signed-off-by: Alyssa Rosenzweig Part-of: --- 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 },