Home
last modified time | relevance | path

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

/freebsd/sys/powerpc/powerpc/
H A Dfpu.c134 pcb->pcb_flags |= PCB_FPU; in enable_fpu()
317 pcb->pcb_flags &= ~(PCB_FPU | PCB_VSX); in disable_fpu()
347 if (pcb->pcb_flags & PCB_FPU) { in fpu_kern_enter()
H A Dswtch32.S109 andi. %r7, %r18, PCB_FPU
161 andi. %r6, %r19, PCB_FPU
H A Dexec_machdep.c262 if (td->td_pcb->pcb_flags & PCB_FPU) in sendsig()
413 if (pcb->pcb_flags & PCB_FPU) { in grab_mcontext()
527 pcb->pcb_flags &= ~(PCB_FPU | PCB_VSX | PCB_VEC); in set_mcontext()
596 if (pcb_flags & PCB_FPU) in cleanup_power_extras()
649 if (pcb_flags & PCB_FPU) in cpu_update_pcb()
1283 } else if (pcb->pcb_flags & PCB_FPU) in ppc_instr_emulate()
1286 if ((sig == 0 || sig == SIGFPE) && pcb->pcb_flags & PCB_FPU) in ppc_instr_emulate()
H A Dtrap.c295 KASSERT((td->td_pcb->pcb_flags & PCB_FPU) != PCB_FPU, in trap()
311 if (td->td_pcb->pcb_flags & PCB_FPU) in trap()
412 (td->td_pcb->pcb_flags & PCB_FPU)) in trap()
H A Dswtch64.S168 andi. %r7, %r18, PCB_FPU
220 andi. %r6, %r19, PCB_FPU
H A Dgenassym.c205 ASSYM(PCB_FPU, PCB_FPU);
/freebsd/sys/powerpc/include/
H A Dpcb.h57 #define PCB_FPU 0x1 /* Process uses FPU */ macro