| /f-stack/freebsd/amd64/amd64/ |
| H A D | ptrace_machdep.c | 69 savefpu = (char *)(get_pcb_user_save_td(td) + 1); in cpu_ptrace_xstate() 115 savefpu = (char *)(get_pcb_user_save_td(td)); in cpu_ptrace_xstate() 173 error = copyout(get_pcb_user_save_td(td), addr, in cpu32_ptrace() 179 fpstate = get_pcb_user_save_td(td); in cpu32_ptrace()
|
| H A D | vm_machdep.c | 98 get_pcb_user_save_td(struct thread *td) in get_pcb_user_save_td() function 121 return (get_pcb_user_save_td(td)); in get_pcb_user_save_pcb() 180 bcopy(get_pcb_user_save_td(td1), get_pcb_user_save_pcb(pcb2), in cpu_fork() 576 bcopy(get_pcb_user_save_td(td0), pcb2->pcb_save, in cpu_copy_thread()
|
| H A D | fpu.c | 959 hdr = (struct xstate_hdr *)(get_pcb_user_save_td(td) + 1); in fpusetxstate() 985 bcopy(addr, get_pcb_user_save_td(td), sizeof(*addr)); in fpusetregs() 986 fpurestore(get_pcb_user_save_td(td)); in fpusetregs() 993 bcopy(addr, get_pcb_user_save_td(td), sizeof(*addr)); in fpusetregs()
|
| H A D | machdep.c | 1896 thread0.td_pcb->pcb_save = get_pcb_user_save_td(&thread0); in hammer_time() 1899 xhdr = (struct xstate_hdr *)(get_pcb_user_save_td(&thread0) + in hammer_time() 2251 fill_fpregs_xmm(get_pcb_user_save_td(td), fpregs); in fill_fpregs() 2261 set_fpregs_xmm(fpregs, get_pcb_user_save_td(td)); in set_fpregs() 2400 bcopy(get_pcb_user_save_td(td), &mcp->mc_fpstate[0], in get_fpcontext() 2413 bcopy(get_pcb_user_save_td(td) + 1, xfpusave, len); in get_fpcontext()
|
| H A D | elf_machdep.c | 240 get_pcb_user_save_td(td), dst, in elf64_dump_thread()
|
| H A D | sys_machdep.c | 354 error = copyout((char *)(get_pcb_user_save_td(td) + 1), in sysarch()
|
| H A D | trap.c | 1173 KASSERT(td->td_pcb->pcb_save == get_pcb_user_save_td(td), in amd64_syscall()
|
| /f-stack/freebsd/i386/i386/ |
| H A D | ptrace_machdep.c | 57 savefpu = (char *)(get_pcb_user_save_td(td) + 1); in cpu_ptrace_xstate() 88 savefpu = (char *)(get_pcb_user_save_td(td)); in cpu_ptrace_xstate() 124 fpstate = &get_pcb_user_save_td(td)->sv_xmm; in cpu_ptrace_xmm()
|
| H A D | vm_machdep.c | 92 get_pcb_user_save_td(struct thread *td) in get_pcb_user_save_td() function 187 bcopy(get_pcb_user_save_td(td1), get_pcb_user_save_pcb(pcb2), in cpu_fork() 440 bcopy(get_pcb_user_save_td(td0), pcb2->pcb_save, in cpu_copy_thread()
|
| H A D | npx.c | 1108 hdr = (struct xstate_hdr *)(get_pcb_user_save_td(td) + 1); in npxsetxstate() 1137 bcopy(addr, get_pcb_user_save_td(td), sizeof(*addr)); in npxsetregs() 1138 fpurstor(get_pcb_user_save_td(td)); in npxsetregs() 1144 bcopy(addr, get_pcb_user_save_td(td), sizeof(*addr)); in npxsetregs() 1259 sv = get_pcb_user_save_td(td); in npx_get_fsave()
|
| H A D | elf_machdep.c | 148 get_pcb_user_save_td(td), dst, in elf32_dump_thread()
|
| H A D | machdep.c | 2482 thread0.td_pcb->pcb_save = get_pcb_user_save_td(&thread0); in init386() 2483 bzero(get_pcb_user_save_td(&thread0), cpu_max_ext_state_size); in init386() 2485 xhdr = (struct xstate_hdr *)(get_pcb_user_save_td(&thread0) + in init386() 2865 npx_fill_fpregs_xmm(&get_pcb_user_save_td(td)->sv_xmm, in fill_fpregs() 2868 bcopy(&get_pcb_user_save_td(td)->sv_87, fpregs, in fill_fpregs() 2880 &get_pcb_user_save_td(td)->sv_xmm); in set_fpregs() 2882 bcopy(fpregs, &get_pcb_user_save_td(td)->sv_87, in set_fpregs() 2997 bcopy(get_pcb_user_save_td(td), &mcp->mc_fpstate[0], in get_fpcontext() 3010 bcopy(get_pcb_user_save_td(td) + 1, xfpusave, len); in get_fpcontext()
|
| H A D | sys_machdep.c | 270 error = copyout((char *)(get_pcb_user_save_td(td) + 1), in sysarch()
|
| H A D | trap.c | 1144 KASSERT(td->td_pcb->pcb_save == get_pcb_user_save_td(td), in syscall()
|
| /f-stack/freebsd/amd64/ia32/ |
| H A D | ia32_reg.c | 158 sv_fpu = get_pcb_user_save_td(td); in fill_fpregs32() 220 struct savefpu *sv_fpu = get_pcb_user_save_td(td); in set_fpregs32()
|
| H A D | ia32_signal.c | 104 bcopy(get_pcb_user_save_td(td), &mcp->mc_fpstate[0], in ia32_get_fpcontext() 117 bcopy(get_pcb_user_save_td(td) + 1, xfpusave, len); in ia32_get_fpcontext()
|
| /f-stack/freebsd/amd64/include/ |
| H A D | md_var.h | 89 struct savefpu *get_pcb_user_save_td(struct thread *td);
|
| /f-stack/freebsd/i386/include/ |
| H A D | md_var.h | 81 union savefpu *get_pcb_user_save_td(struct thread *td);
|
| /f-stack/freebsd/i386/linux/ |
| H A D | linux_ptrace.c | 222 bcopy(&get_pcb_user_save_td(td)->sv_xmm, fpxregs, sizeof(*fpxregs)); in linux_proc_read_fpxregs() 233 bcopy(fpxregs, &get_pcb_user_save_td(td)->sv_xmm, sizeof(*fpxregs)); in linux_proc_write_fpxregs()
|