From 6409896ca70d6f7cbcc95b370118c7fa95b7220f Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 10 Mar 2020 08:47:39 -0400 Subject: [PATCH] pan/bi: Print source types unconditionally We track them all now, let's use them. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/bi_print.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/panfrost/bifrost/bi_print.c b/src/panfrost/bifrost/bi_print.c index a91bb5e8af4..e258333649d 100644 --- a/src/panfrost/bifrost/bi_print.c +++ b/src/panfrost/bifrost/bi_print.c @@ -349,15 +349,10 @@ bi_print_instruction(bi_instruction *ins, FILE *fp) bi_foreach_src(ins, s) { bi_print_src(fp, ins, s); - if (ins->src[s] && !(ins->src[s] & (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO))) - bi_print_swizzle(ins, s, fp); - - bool is_convert = ins->type == BI_CONVERT && s == 0; - bool is_branch = ins->type == BI_BRANCH && s < 2 && ins->branch.cond != BI_COND_ALWAYS; - bool is_csel = ins->type == BI_CSEL && s < 2; - - if (is_convert || is_branch || is_csel) + if (ins->src[s] && !(ins->src[s] & (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO))) { bi_print_alu_type(ins->src_types[s], fp); + bi_print_swizzle(ins, s, fp); + } if (s < BIR_SRC_COUNT) fprintf(fp, ", "); -- 2.30.2