From: Alyssa Rosenzweig Date: Mon, 27 Apr 2020 17:29:13 +0000 (-0400) Subject: pan/bi: Add bool->float opcodes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=100edfe26d947fbecd3cf2ca190478348601eb42;p=mesa.git pan/bi: Add bool->float opcodes Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index 6c68877f1e9..84ed0144228 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -984,8 +984,10 @@ static const struct add_op_info add_op_infos[] = { { 0x078d1, "U16_TO_F16.XY", ADD_ONE_SRC }, { 0x078d8, "I16_TO_F16.YY", ADD_ONE_SRC }, { 0x078d9, "U16_TO_F16.YY", ADD_ONE_SRC }, + { 0x07909, "B1_TO_F16", ADD_ONE_SRC }, { 0x07936, "F32_TO_I32", ADD_ONE_SRC }, { 0x07937, "F32_TO_U32", ADD_ONE_SRC }, + { 0x07971, "B1_TO_F32", ADD_ONE_SRC }, { 0x07978, "I32_TO_F32", ADD_ONE_SRC }, { 0x07979, "U32_TO_F32", ADD_ONE_SRC }, { 0x07998, "I16_TO_I32.X", ADD_ONE_SRC },