Home
last modified time | relevance | path

Searched refs:mc_gpregs (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/bsd-user/aarch64/
H A Dsignal.c62 uint64_t *gr = mcp->mc_gpregs.gp_x; in get_mcontext()
64 mcp->mc_gpregs.gp_spsr = pstate_read(regs); in get_mcontext()
67 mcp->mc_gpregs.gp_spsr &= ~CPSR_C; in get_mcontext()
76 mcp->mc_gpregs.gp_sp = tswap64(regs->xregs[TARGET_REG_SP]); in get_mcontext()
77 mcp->mc_gpregs.gp_lr = tswap64(regs->xregs[TARGET_REG_LR]); in get_mcontext()
78 mcp->mc_gpregs.gp_elr = tswap64(regs->pc); in get_mcontext()
105 const uint64_t *gr = mcp->mc_gpregs.gp_x; in set_mcontext()
111 regs->xregs[TARGET_REG_SP] = tswap64(mcp->mc_gpregs.gp_sp); in set_mcontext()
112 regs->xregs[TARGET_REG_LR] = tswap64(mcp->mc_gpregs.gp_lr); in set_mcontext()
113 regs->pc = mcp->mc_gpregs.gp_elr; in set_mcontext()
[all …]
H A Dtarget_arch_signal.h60 struct target_gpregs mc_gpregs; member