Home | History | Annotate | Download | only in gdb

Lines Matching defs:fpregs

79 /* Supply the floating-point registers stored in FPREGS to REGCACHE.  */
82 hppanbsd_supply_fpregset (struct regcache *regcache, const void *fpregs)
84 const char *regs = (const char *)fpregs;
143 in FPREGS. */
147 void *fpregs, int regnum)
149 char *regs = (char *)fpregs;
186 struct fpreg fpregs;
188 if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, lwp) == -1)
191 hppanbsd_supply_fpregset (regcache, &fpregs);
219 struct fpreg fpregs;
221 if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, lwp) == -1)
224 hppanbsd_collect_fpregset (regcache, &fpregs, regnum);
226 if (ptrace (PT_SETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, lwp) == -1)