Home | History | Annotate | Download | only in gdb

Lines Matching refs:fprs

437   double fprs[ppc_num_fprs];
469 if (!ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL))
470 memset (fprs, 0, sizeof (fprs));
471 memcpy (context->fpr, fprs, sizeof(fprs));
1324 AIX provides a way to query all of a kernel thread's GPRs, FPRs, or
1344 double fprs[ppc_num_fprs];
1417 if (!ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL))
1418 memset (fprs, 0, sizeof (fprs));
1419 supply_fprs (regcache, fprs);
1756 AIX provides a way to set all of a kernel thread's GPRs, FPRs, or
1769 double fprs[ppc_num_fprs];
1811 ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL);
1812 fill_fprs (regcache, fprs);
1813 ptrace32 (PTT_WRITE_FPRS, tid, (uintptr_t) fprs, 0, NULL);