Lines Matching refs:win
20 struct reg_window *win; in pt_regs_to_gdb_regs() local
27 win = (struct reg_window *) (regs->u_regs[UREG_FP] + STACK_BIAS); in pt_regs_to_gdb_regs()
29 gdb_regs[GDB_L0 + i] = win->locals[i]; in pt_regs_to_gdb_regs()
31 gdb_regs[GDB_I0 + i] = win->ins[i]; in pt_regs_to_gdb_regs()
49 struct reg_window *win; in sleeping_thread_to_gdb_regs() local
62 win = (struct reg_window *) (t->ksp + STACK_BIAS); in sleeping_thread_to_gdb_regs()
64 gdb_regs[GDB_L0 + i] = win->locals[i]; in sleeping_thread_to_gdb_regs()
66 gdb_regs[GDB_I0 + i] = win->ins[i]; in sleeping_thread_to_gdb_regs()
89 struct reg_window *win; in gdb_regs_to_pt_regs() local
108 win = (struct reg_window *) (regs->u_regs[UREG_FP] + STACK_BIAS); in gdb_regs_to_pt_regs()
110 win->locals[i] = gdb_regs[GDB_L0 + i]; in gdb_regs_to_pt_regs()
112 win->ins[i] = gdb_regs[GDB_I0 + i]; in gdb_regs_to_pt_regs()