Home
last modified time | relevance | path

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

/linux/arch/s390/kernel/
H A Dfpu.c17 __vector128 *vxrs = state->vxrs; in __kernel_fpu_begin() local
29 save_fp_regs_vx(vxrs); in __kernel_fpu_begin()
34 vxrs += fpu_vstm(0, 15, vxrs); in __kernel_fpu_begin()
35 vxrs += fpu_vstm(16, 31, vxrs); in __kernel_fpu_begin()
39 vxrs += fpu_vstm(8, 23, vxrs); in __kernel_fpu_begin()
45 vxrs += fpu_vstm(0, 15, vxrs); in __kernel_fpu_begin()
47 vxrs += fpu_vstm(0, 7, vxrs); in __kernel_fpu_begin()
49 vxrs += fpu_vstm(8, 15, vxrs); in __kernel_fpu_begin()
54 vxrs += fpu_vstm(16, 31, vxrs); in __kernel_fpu_begin()
56 vxrs += fpu_vstm(16, 23, vxrs); in __kernel_fpu_begin()
[all …]
H A Dptrace.c256 tmp = *(addr_t *)((addr_t)child->thread.ufpu.vxrs + 2 * offset); in __peek_user()
397 *(addr_t *)((addr_t)child->thread.ufpu.vxrs + 2 * offset) = data; in __poke_user()
583 convert_vx_to_fp(fprs, target->thread.ufpu.vxrs); in s390_fpregs_set()
600 convert_fp_to_vx(target->thread.ufpu.vxrs, fprs); in s390_fpregs_set()
644 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_get() local
652 vxrs[i] = target->thread.ufpu.vxrs[i].low; in s390_vxrs_low_get()
653 return membuf_write(&to, vxrs, sizeof(vxrs)); in s390_vxrs_low_get()
661 __u64 vxrs[__NUM_VXRS_LOW]; in s390_vxrs_low_set() local
670 vxrs[i] = target->thread.ufpu.vxrs[i].low; in s390_vxrs_low_set()
672 rc = user_regset_copyin(&pos, &count, &kbuf, &ubuf, vxrs, 0, -1); in s390_vxrs_low_set()
[all …]
H A Dcrash_dump.c107 void __init save_area_add_vxrs(struct save_area *sa, __vector128 *vxrs) in save_area_add_vxrs() argument
113 sa->vxrs_low[i] = vxrs[i].low; in save_area_add_vxrs()
115 memcpy(sa->vxrs_high, vxrs + 16, 16 * sizeof(__vector128)); in save_area_add_vxrs()
/linux/arch/s390/include/asm/
H A Dfpu-types.h16 __vector128 vxrs[__NUM_VXRS] __aligned(8); member
26 __vector128 vxrs[] __aligned(8); member
32 __vector128 vxrs[vxr_size] __aligned(8); \
H A Dipl.h62 void __init save_area_add_vxrs(struct save_area *, __vector128 *vxrs);