Lines Matching refs:next_regs
208 bi_disasm_dest_fma(FILE *fp, struct bifrost_regs *next_regs, bool last) in bi_disasm_dest_fma() argument
211 struct bifrost_reg_ctrl ctrl = DecodeRegCtrl(fp, *next_regs, last); in bi_disasm_dest_fma()
213 fprintf(fp, "r%u:t0", next_regs->reg2); in bi_disasm_dest_fma()
216 fprintf(fp, "r%u:t0", next_regs->reg3); in bi_disasm_dest_fma()
223 bi_disasm_dest_add(FILE *fp, struct bifrost_regs *next_regs, bool last) in bi_disasm_dest_add() argument
226 struct bifrost_reg_ctrl ctrl = DecodeRegCtrl(fp, *next_regs, last); in bi_disasm_dest_add()
229 fprintf(fp, "r%u:t1", next_regs->reg3); in bi_disasm_dest_add()
655 struct bifrost_regs regs, next_regs; in dump_clause() local
657 memcpy((char *) &next_regs, (char *) &instrs[0].reg_bits, in dump_clause()
658 sizeof(next_regs)); in dump_clause()
660 memcpy((char *) &next_regs, (char *) &instrs[i + 1].reg_bits, in dump_clause()
661 sizeof(next_regs)); in dump_clause()
671 bi_disasm_fma(fp, instrs[i].fma_bits, ®s, &next_regs, in dump_clause()
675 bi_disasm_add(fp, instrs[i].add_bits, ®s, &next_regs, in dump_clause()