diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-05-05 16:15:44 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-05-29 20:34:55 +0000 |
commit | 4096be05af306d18bf948f92ab03ee7d6f7468f4 (patch) | |
tree | 316be1c08f8946b37513bb2852d1a00f95f4fa71 /src/panfrost | |
parent | ec8665615f4b4bd019ea56fb1dd2be3716802b78 (diff) |
pan/bi: Add MUL.i32 to disasm
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5260>
Diffstat (limited to 'src/panfrost')
-rw-r--r-- | src/panfrost/bifrost/disassemble.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index e90b7ca973f..53654280d56 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -557,6 +557,7 @@ static const struct fma_op_info FMAOpInfos[] = { { true, 0x02000, "SWZ.XXXX.v4i8", FMA_ONE_SRC }, { true, 0x03e00, "SWZ.ZZZZ.v4i8", FMA_ONE_SRC }, { true, 0x00800, "IMAD", FMA_THREE_SRC }, + { true, 0x07818, "MUL.i32", FMA_TWO_SRC }, { true, 0x078db, "POPCNT", FMA_ONE_SRC }, }; |