aco: improve printing of s_delay_alu

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23213>
This commit is contained in:
Rhys Perry
2023-05-24 16:24:35 +01:00
committed by Marge Bot
parent 54c0088629
commit 94958e637d
3 changed files with 41 additions and 15 deletions

View File

@@ -136,6 +136,21 @@ enum bperm_swiz {
bperm_255 = 13,
};
enum class alu_delay_wait {
NO_DEP = 0,
VALU_DEP_1 = 1,
VALU_DEP_2 = 2,
VALU_DEP_3 = 3,
VALU_DEP_4 = 4,
TRANS32_DEP_1 = 5,
TRANS32_DEP_2 = 6,
TRANS32_DEP_3 = 7,
FMA_ACCUM_CYCLE_1 = 8,
SALU_CYCLE_1 = 9,
SALU_CYCLE_2 = 10,
SALU_CYCLE_3 = 11,
};
class Builder {
public:
struct Result {