Lines Matching defs:next_regs
205 bi_disasm_dest_fma(FILE *fp, struct bifrost_regs *next_regs, bool last)
207 /* If this is the last instruction, next_regs points to the first reg entry. */
208 struct bifrost_reg_ctrl ctrl = DecodeRegCtrl(fp, *next_regs, last);
210 fprintf(fp, "r%u:t0", next_regs->reg2);
213 fprintf(fp, "r%u:t0", next_regs->reg3);
220 bi_disasm_dest_add(FILE *fp, struct bifrost_regs *next_regs, bool last)
222 /* If this is the last instruction, next_regs points to the first reg entry. */
223 struct bifrost_reg_ctrl ctrl = DecodeRegCtrl(fp, *next_regs, last);
226 fprintf(fp, "r%u:t1", next_regs->reg3);
652 struct bifrost_regs regs, next_regs;
654 memcpy((char *) &next_regs, (char *) &instrs[0].reg_bits,
655 sizeof(next_regs));
657 memcpy((char *) &next_regs, (char *) &instrs[i + 1].reg_bits,
658 sizeof(next_regs));
668 bi_disasm_fma(fp, instrs[i].fma_bits, ®s, &next_regs,
672 bi_disasm_add(fp, instrs[i].add_bits, ®s, &next_regs,