From: Alyssa Rosenzweig Date: Mon, 27 Apr 2020 17:29:56 +0000 (-0400) Subject: pan/bi: Add 64-bit int compares X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4f2d3a51c988a53ebf5af31c6dd6d84e32d2ee3;p=mesa.git pan/bi: Add 64-bit int compares Likewise. Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index 48d6e700e3d..07791f5ab92 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -1084,6 +1084,13 @@ static const struct add_op_info add_op_infos[] = { { 0x0f6d0, "UCMP.D3D.GT", ADD_TWO_SRC }, { 0x0f6d8, "UCMP.D3D.GE", ADD_TWO_SRC }, { 0x0f6e0, "ICMP.D3D.EQ", ADD_TWO_SRC }, + { 0x0f700, "ICMP.64.GT.PT1", ADD_TWO_SRC }, + { 0x0f708, "ICMP.64.GE.PT1", ADD_TWO_SRC }, + { 0x0f710, "UCMP.64.GT.PT1", ADD_TWO_SRC }, + { 0x0f718, "UCMP.64.GE.PT1", ADD_TWO_SRC }, + { 0x0f720, "ICMP.64.EQ.PT1", ADD_TWO_SRC }, + { 0x0f728, "ICMP.64.NE.PT1", ADD_TWO_SRC }, + { 0x0f7c0, "ICMP.64.PT2", ADD_THREE_SRC }, // src3 = result of PT1 { 0x10000, "MAX.v2f16", ADD_FMINMAX16 }, { 0x11000, "ADD_MSCALE.f32", ADD_FADDMscale }, { 0x12000, "MIN.v2f16", ADD_FMINMAX16 },