aco: Remove some old comments in aco_opcodes.py.

s_cmovk_i32 isn't GFX8_GFX9 only and s_version doesn't need a comment to say
it's GFX10+ exclusive. The encoding list is enough to provide this information,
as for other GFX10+ instructions.

Signed-off-by: Georg Lehmann <dadschoorse@gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16006>
This commit is contained in:
Georg Lehmann 2022-04-18 13:11:56 +02:00 committed by Marge Bot
parent dd7278aa10
commit a8b29094c2

View file

@ -385,8 +385,8 @@ for (gfx6, gfx7, gfx8, gfx9, gfx10, name, cls) in default_class(SOP2, InstrClass
SOPK = {
# GFX6, GFX7, GFX8, GFX9, GFX10, name
(0x00, 0x00, 0x00, 0x00, 0x00, "s_movk_i32"),
( -1, -1, -1, -1, 0x01, "s_version"), # GFX10+
(0x02, 0x02, 0x01, 0x01, 0x02, "s_cmovk_i32"), # GFX8_GFX9
( -1, -1, -1, -1, 0x01, "s_version"),
(0x02, 0x02, 0x01, 0x01, 0x02, "s_cmovk_i32"),
(0x03, 0x03, 0x02, 0x02, 0x03, "s_cmpk_eq_i32"),
(0x04, 0x04, 0x03, 0x03, 0x04, "s_cmpk_lg_i32"),
(0x05, 0x05, 0x04, 0x04, 0x05, "s_cmpk_gt_i32"),