Lines Matching refs:dst

447 	elf_greg_t *dst = arg;  in do_copy_task_regs()  local
452 memset(dst, 0, sizeof(elf_gregset_t)); /* don't leak any kernel bits to user-level */ in do_copy_task_regs()
481 unw_get_gr(info, i, &dst[i], &nat); in do_copy_task_regs()
486 dst[32] = nat_bits; in do_copy_task_regs()
487 unw_get_pr(info, &dst[33]); in do_copy_task_regs()
490 unw_get_br(info, i, &dst[34 + i]); in do_copy_task_regs()
493 dst[42] = ip + ia64_psr(pt)->ri; in do_copy_task_regs()
494 dst[43] = cfm; in do_copy_task_regs()
495 dst[44] = pt->cr_ipsr & IA64_PSR_UM; in do_copy_task_regs()
497 unw_get_ar(info, UNW_AR_RSC, &dst[45]); in do_copy_task_regs()
502 dst[46] = urbs_end; /* note: by convention PT_AR_BSP points to the end of the urbs! */ in do_copy_task_regs()
503 dst[47] = pt->ar_bspstore; in do_copy_task_regs()
504 dst[48] = ar_rnat; in do_copy_task_regs()
505 unw_get_ar(info, UNW_AR_CCV, &dst[49]); in do_copy_task_regs()
506 unw_get_ar(info, UNW_AR_UNAT, &dst[50]); in do_copy_task_regs()
507 unw_get_ar(info, UNW_AR_FPSR, &dst[51]); in do_copy_task_regs()
508 dst[52] = pt->ar_pfs; /* UNW_AR_PFS is == to pt->cr_ifs for interrupt frames */ in do_copy_task_regs()
509 unw_get_ar(info, UNW_AR_LC, &dst[53]); in do_copy_task_regs()
510 unw_get_ar(info, UNW_AR_EC, &dst[54]); in do_copy_task_regs()
511 unw_get_ar(info, UNW_AR_CSD, &dst[55]); in do_copy_task_regs()
512 unw_get_ar(info, UNW_AR_SSD, &dst[56]); in do_copy_task_regs()
518 elf_fpreg_t *dst = arg; in do_dump_task_fpu() local
521 memset(dst, 0, sizeof(elf_fpregset_t)); /* don't leak any "random" bits */ in do_dump_task_fpu()
529 unw_get_fr(info, i, dst + i); in do_dump_task_fpu()
533 memcpy(dst + 32, task->thread.fph, 96*16); in do_dump_task_fpu()
549 ia64_elf_core_copy_regs (struct pt_regs *pt, elf_gregset_t dst) in ia64_elf_core_copy_regs() argument
551 unw_init_running(do_copy_regs, dst); in ia64_elf_core_copy_regs()
555 dump_fpu (struct pt_regs *pt, elf_fpregset_t dst) in dump_fpu() argument
557 unw_init_running(do_dump_fpu, dst); in dump_fpu()