Lines Matching refs:arg_regs
2513 int i, arg_regs, nr_used_regs = 0; in get_nr_used_regs() local
2516 arg_regs = (m->arg_size[i] + 7) / 8; in get_nr_used_regs()
2517 if (nr_used_regs + arg_regs <= 6) in get_nr_used_regs()
2518 nr_used_regs += arg_regs; in get_nr_used_regs()
2530 int arg_regs, first_off = 0, nr_regs = 0, nr_stack_slots = 0; in save_args() local
2539 arg_regs = (m->arg_size[i] + 7) / 8; in save_args()
2558 if (nr_regs + arg_regs > 6) { in save_args()
2569 for (j = 0; j < arg_regs; j++) { in save_args()
2586 nr_regs += arg_regs; in save_args()
2591 for (j = 0; j < arg_regs; j++) { in save_args()
2607 int i, j, arg_regs, nr_regs = 0; in restore_regs() local
2617 arg_regs = (m->arg_size[i] + 7) / 8; in restore_regs()
2618 if (nr_regs + arg_regs <= 6) { in restore_regs()
2619 for (j = 0; j < arg_regs; j++) { in restore_regs()
2628 stack_size -= 8 * arg_regs; in restore_regs()