Home
last modified time | relevance | path

Searched refs:PCB_FP_KERN (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/arm64/arm64/
H A Dvfp.c291 pcb->pcb_fpflags |= PCB_FP_KERN | PCB_FP_NOSAVE | in fpu_kern_enter()
304 KASSERT((pcb->pcb_fpflags & PCB_FP_KERN) != 0 || in fpu_kern_enter()
311 pcb->pcb_fpflags |= PCB_FP_KERN; in fpu_kern_enter()
350 pcb->pcb_fpflags &= ~PCB_FP_KERN; in fpu_kern_leave()
352 KASSERT((pcb->pcb_fpflags & PCB_FP_KERN) != 0, in fpu_kern_leave()
368 KASSERT((pcb->pcb_fpflags & PCB_FP_KERN) == 0, in fpu_kern_thread()
370 pcb->pcb_fpflags |= PCB_FP_KERN; in fpu_kern_thread()
382 return ((curpcb->pcb_fpflags & PCB_FP_KERN) != 0); in is_fpu_kern_thread()
H A Dvm_machdep.c181 td->td_pcb->pcb_fpflags &= ~(PCB_FP_STARTED | PCB_FP_KERN | PCB_FP_NOSAVE); in cpu_copy_thread()
H A Dtrap.c384 if ((td->td_pcb->pcb_fpflags & PCB_FP_KERN) != 0) { in do_el1h_sync()
/f-stack/freebsd/arm64/include/
H A Dpcb.h58 #define PCB_FP_KERN 0x02 macro