Home
last modified time | relevance | path

Searched refs:PCB_VSX (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/powerpc/powerpc/
H A Dfpu.c58 if (pcb->pcb_flags & PCB_VSX) in save_fpu_int()
66 if (pcb->pcb_flags & PCB_VSX) { in save_fpu_int()
124 if (pcb->pcb_flags & PCB_VSX) in enable_fpu()
138 if (pcb->pcb_flags & PCB_VSX) in enable_fpu()
151 if (pcb->pcb_flags & PCB_VSX) { in enable_fpu()
295 pcb->pcb_flags &= ~(PCB_FPU | PCB_VSX); in disable_fpu()
H A Dptrace_machdep.c86 if (pcb->pcb_flags & PCB_VSX) { in cpu_ptrace()
106 pcb->pcb_flags |= PCB_VSX; in cpu_ptrace()
H A Dtrap.c305 KASSERT((td->td_pcb->pcb_flags & PCB_VSX) != PCB_VSX, in trap()
311 td->td_pcb->pcb_flags |= PCB_VSX; in trap()
H A Delf32_machdep.c203 if (pcb->pcb_flags & PCB_VSX) { in elf32_dump_thread()
H A Delf64_machdep.c292 if (pcb->pcb_flags & PCB_VSX) { in elf64_dump_thread()
H A Dexec_machdep.c434 if (pcb->pcb_flags & PCB_VSX) { in grab_mcontext()
532 pcb->pcb_flags &= ~(PCB_FPU | PCB_VSX | PCB_VEC); in set_mcontext()
/freebsd/sys/powerpc/include/
H A Dpcb.h60 #define PCB_VSX 0x8 /* Process had VSX initialized */ macro