Home
last modified time | relevance | path

Searched refs:vfp_state (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/arm/include/
H A Dpcb.h65 struct vfp_state pcb_vfpstate; /* VP/NEON state */
70 struct vfp_state *pcb_vfpsaved; /* VP/NEON state */
H A Dvfp.h147 struct vfp_state { struct
160 void vfp_store(struct vfp_state *, boolean_t); argument
/freebsd/sys/arm/arm/
H A Dvfp.c48 static void vfp_restore(struct vfp_state *);
59 struct vfp_state *prev;
63 struct vfp_state state;
304 vfp_restore(struct vfp_state *vfpsave) in vfp_restore()
336 vfp_store(struct vfp_state *vfpsave, boolean_t disable_vfp) in vfp_store()
/freebsd/sys/arm64/arm64/
H A Dvfp.c186 __uint128_t *vfp_state; in vfp_store() local
189 vfp_state = state->vfp_regs; in vfp_store()
211 : "=&r"(fpcr), "=&r"(fpsr) : "r"(vfp_state)); in vfp_store()
220 __uint128_t *vfp_state; in vfp_restore() local
223 vfp_state = state->vfp_regs; in vfp_restore()
248 : : "r"(fpcr), "r"(fpsr), "r"(vfp_state)); in vfp_restore()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeRegisterContextFreeBSD_arm.h55 std::array<uint8_t, sizeof(reg) + sizeof(vfp_state)> m_reg_data;