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.c123 pcb->pcb_flags |= PCB_FPU; in enable_fpu()
295 pcb->pcb_flags &= ~(PCB_FPU | PCB_VSX); in disable_fpu()
326 if (pcb->pcb_flags & PCB_FPU) { in fpu_kern_enter()
H A Dswtch32.S110 andi. %r7, %r18, PCB_FPU
166 andi. %r6, %r19, PCB_FPU
H A Dexec_machdep.c262 if (td->td_pcb->pcb_flags & PCB_FPU) in sendsig()
420 if (pcb->pcb_flags & PCB_FPU) { in grab_mcontext()
532 pcb->pcb_flags &= ~(PCB_FPU | PCB_VSX | PCB_VEC); in set_mcontext()
581 if (pcb_flags & PCB_FPU) in cleanup_power_extras()
646 if (pcb_flags & PCB_FPU) in cpu_save_thread_regs()
1286 } else if (pcb->pcb_flags & PCB_FPU) in ppc_instr_emulate()
1289 if ((sig == 0 || sig == SIGFPE) && pcb->pcb_flags & PCB_FPU) in ppc_instr_emulate()
H A Dtrap.c293 KASSERT((td->td_pcb->pcb_flags & PCB_FPU) != PCB_FPU, in trap()
309 if (td->td_pcb->pcb_flags & PCB_FPU) in trap()
409 (td->td_pcb->pcb_flags & PCB_FPU)) in trap()
H A Dswtch64.S169 andi. %r7, %r18, PCB_FPU
221 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