So we can bias by exponents.
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4615>
else
fprintf(fp, "%s", bi_class_name(ins->type));
+ if ((ins->type == BI_ADD || ins->type == BI_FMA) && ins->op.mscale)
+ fprintf(fp, ".mscale");
+
if (ins->type == BI_MINMAX)
fprintf(fp, "%s", bi_minmax_mode_name(ins->minmax));
else if (ins->type == BI_LOAD_VAR)
enum bi_table_op table;
enum bi_frexp_op frexp;
enum bi_cond compare;
+
+ /* For FMA/ADD, should we add a biased exponent? */
+ bool mscale;
} op;
/* Union for class-specific information */