Home
last modified time | relevance | path

Searched refs:pcb_svesaved (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/arm64/arm64/
H A Dvfp.c102 MPASS(pcb->pcb_svesaved != NULL); in sve_buf_size()
455 if (pcb->pcb_svesaved == NULL) in vfp_to_sve_sync()
464 sve_reg = (__uint128_t *)((uintptr_t)pcb->pcb_svesaved + in vfp_to_sve_sync()
469 fpxr = (uint32_t *)((uintptr_t)pcb->pcb_svesaved + in vfp_to_sve_sync()
485 if (pcb->pcb_svesaved == NULL) in sve_to_vfp_sync()
494 sve_reg = (__uint128_t *)((uintptr_t)pcb->pcb_svesaved + in sve_to_vfp_sync()
499 fpxr = (uint32_t *)((uintptr_t)pcb->pcb_svesaved + in sve_to_vfp_sync()
549 KASSERT(pcb->pcb_svesaved != NULL, in vfp_save_state_common()
551 sve_store(pcb->pcb_svesaved, pcb->pcb_sve_len); in vfp_save_state_common()
633 newpcb->pcb_svesaved = NULL; in vfp_new_thread()
[all …]
H A Dexec_machdep.c540 if (pcb->pcb_svesaved == NULL) in set_mcontext()
551 memset(pcb->pcb_svesaved, 0, in set_mcontext()
556 pcb->pcb_svesaved, buf_size) != 0) in set_mcontext()
696 if (pcb->pcb_svesaved == NULL) in sendsig_ctx_sve()
699 MPASS(pcb->pcb_svesaved != NULL); in sendsig_ctx_sve()
716 if (copyout(pcb->pcb_svesaved, (void *)(ctx_addr + sizeof(ctx)), in sendsig_ctx_sve()
/freebsd/sys/arm64/include/
H A Dpcb.h73 void *pcb_svesaved; member