diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-04-14 12:33:08 -0400 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2020-04-17 16:25:34 -0400 |
commit | 62c8c3445ed50b73ab3d40d63631cad64f084f12 (patch) | |
tree | 754daa8c0516175735021f2aa516d4d98d85433b /src/panfrost/bifrost/disassemble.c | |
parent | cc611566260eacc0d4e92d8b3dc3a8a4d7c94b6e (diff) |
pan/bi: Add op for ADD_FREXPM
Used in log2. Needs a new class as well due to scheduling silliness.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4615>
Diffstat (limited to 'src/panfrost/bifrost/disassemble.c')
-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 3d7d6e40d90..fe5c2220e5e 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -553,6 +553,7 @@ static const struct fma_op_info FMAOpInfos[] = { { true, 0x01e08, "SEL.YX.i16", FMA_TWO_SRC }, { true, 0x01e10, "SEL.XY.i16", FMA_TWO_SRC }, { true, 0x01e18, "SEL.YY.i16", FMA_TWO_SRC }, + { true, 0x01e80, "ADD_FREXPM.f32", FMA_TWO_SRC }, { true, 0x00800, "IMAD", FMA_THREE_SRC }, { true, 0x078db, "POPCNT", FMA_ONE_SRC }, }; |