Lines Matching refs:win
21 struct reg_window32 *win; in pt_regs_to_gdb_regs() local
28 win = (struct reg_window32 *) regs->u_regs[UREG_FP]; in pt_regs_to_gdb_regs()
30 gdb_regs[GDB_L0 + i] = win->locals[i]; in pt_regs_to_gdb_regs()
32 gdb_regs[GDB_I0 + i] = win->ins[i]; in pt_regs_to_gdb_regs()
50 struct reg_window32 *win; in sleeping_thread_to_gdb_regs() local
62 win = (struct reg_window32 *) t->ksp; 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()
84 struct reg_window32 *win; in gdb_regs_to_pt_regs() local
103 win = (struct reg_window32 *) regs->u_regs[UREG_FP]; in gdb_regs_to_pt_regs()
105 win->locals[i] = gdb_regs[GDB_L0 + i]; in gdb_regs_to_pt_regs()
107 win->ins[i] = gdb_regs[GDB_I0 + i]; in gdb_regs_to_pt_regs()