HomeSort by: relevance | last modified time | path
    Searched defs:fpsimd (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/compat/linux/arch/aarch64/
linux_machdep.c 73 struct fpsimd_context *fpsimd; local
75 fpsimd = (struct fpsimd_context *)ctx->__reserved;
76 fpsimd->head.magic = FPSIMD_MAGIC;
77 fpsimd->head.size = sizeof(struct fpsimd_context);
78 fpsimd->fpsr = uc.uc_mcontext.__fregs.__fpsr;
79 fpsimd->fpcr = uc.uc_mcontext.__fregs.__fpcr;
80 CTASSERT(sizeof(fpsimd->vregs) ==
82 memcpy(fpsimd->vregs, uc.uc_mcontext.__fregs.__qregs,
93 struct fpsimd_context *fpsimd; local
118 fpsimd = (struct fpsimd_context *)ctx->__reserved
    [all...]
  /src/external/gpl3/gdb/dist/gdb/nat/
aarch64-scalable-linux-ptrace.c 419 dump of all the SVE and FP registers, or an fpsimd structure (identical to
663 /* There is no SVE state yet - the register dump contains a fpsimd
668 struct user_fpsimd_state *fpsimd local
675 /* Copy across the V registers from fpsimd structure to the Z registers,
681 aarch64_maybe_swab128 (reg, (const gdb_byte *) &fpsimd->vregs[i],
687 (const gdb_byte *) &fpsimd->fpsr);
689 (const gdb_byte *) &fpsimd->fpcr);
733 /* There is no SVE state yet - the register dump contains a fpsimd
735 back to the kernel using the fpsimd structure. However, if we cannot
736 then we'll need to reformat the fpsimd into a full SVE structure
772 struct user_fpsimd_state *fpsimd local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/nat/
aarch64-scalable-linux-ptrace.c 419 dump of all the SVE and FP registers, or an fpsimd structure (identical to
663 /* There is no SVE state yet - the register dump contains a fpsimd
668 struct user_fpsimd_state *fpsimd local
675 /* Copy across the V registers from fpsimd structure to the Z registers,
681 aarch64_maybe_swab128 (reg, (const gdb_byte *) &fpsimd->vregs[i],
687 (const gdb_byte *) &fpsimd->fpsr);
689 (const gdb_byte *) &fpsimd->fpcr);
733 /* There is no SVE state yet - the register dump contains a fpsimd
735 back to the kernel using the fpsimd structure. However, if we cannot
736 then we'll need to reformat the fpsimd into a full SVE structure
772 struct user_fpsimd_state *fpsimd local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
aarch64-linux-tdep.c 169 /* Defines for the fpsimd that follows an AARCH64_FPSIMD_MAGIC. */
220 /* Starting address of the section containing the FPSIMD registers. */
269 /* Given CACHE, use the trad_frame* functions to restore the FPSIMD
272 FPSIMD_CONTEXT is the address of the signal frame context containing FPSIMD
303 error (_("Failed to read fpsimd register from signal context."));
600 /* Restore the SVE / FPSIMD registers. */
640 /* Restore the FPSIMD registers. */
643 CORE_ADDR fpsimd = signal_frame.fpsimd_section; local
646 fpsimd + AARCH64_FPSIMD_FPSR_OFFSET);
648 fpsimd + AARCH64_FPSIMD_FPCR_OFFSET)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
aarch64-linux-tdep.c 167 /* Defines for the fpsimd that follows an AARCH64_FPSIMD_MAGIC. */
218 /* Starting address of the section containing the FPSIMD registers. */
267 /* Given CACHE, use the trad_frame* functions to restore the FPSIMD
270 FPSIMD_CONTEXT is the address of the signal frame context containing FPSIMD
301 error (_("Failed to read fpsimd register from signal context."));
598 /* Restore the SVE / FPSIMD registers. */
638 /* Restore the FPSIMD registers. */
641 CORE_ADDR fpsimd = signal_frame.fpsimd_section; local
644 fpsimd + AARCH64_FPSIMD_FPSR_OFFSET);
646 fpsimd + AARCH64_FPSIMD_FPCR_OFFSET)
    [all...]

Completed in 32 milliseconds