Skip to content

Commit

Permalink
bsd-user:Add AArch64 improvements and signal handling functions
Browse files Browse the repository at this point in the history
Added get_ucontext_sigreturn function to check processor state ensuring current execution mode is EL0 and no flags
indicating interrupts or exceptions are set.
Updated AArch64 code to use CF directly without reading/writing the entire processor state, improving efficiency.
Changed FP data structures to use Int128 instead of __uint128_t, leveraging QEMU's generic mechanism for referencing this type.

Signed-off-by: Stacey Son <[email protected]>
Signed-off-by: Ajeet Singh <[email protected]>
Signed-off-by: Warner Losh <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Warner Losh <[email protected]>
  • Loading branch information
staceyson authored and bsdimp committed Jul 23, 2024
1 parent dadfc6d commit ce6c541
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 8 deletions.
20 changes: 19 additions & 1 deletion bsd-user/aarch64/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "qemu.h"

/*
* Compare to sendsig() in sys/arm64/arm64/machdep.c
* Compare to sendsig() in sys/arm64/arm64/exec_machdep.c
* Assumes that target stack frame memory is locked.
*/
abi_long set_sigtramp_args(CPUARMState *regs, int sig,
Expand Down Expand Up @@ -117,3 +117,21 @@ abi_long set_mcontext(CPUARMState *regs, target_mcontext_t *mcp, int srflag)

return err;
}

/* Compare to sys_sigreturn() in arm64/arm64/machdep.c */
abi_long get_ucontext_sigreturn(CPUARMState *regs, abi_ulong target_sf,
abi_ulong *target_uc)
{
uint32_t pstate = pstate_read(regs);

*target_uc = 0;

if ((pstate & PSTATE_M) != PSTATE_MODE_EL0t ||
(pstate & (PSTATE_F | PSTATE_I | PSTATE_A | PSTATE_D)) != 0) {
return -TARGET_EINVAL;
}

*target_uc = target_sf;

return 0;
}
7 changes: 2 additions & 5 deletions bsd-user/aarch64/target_arch_cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ static inline void target_cpu_loop(CPUARMState *env)
CPUState *cs = env_cpu(env);
int trapnr, ec, fsc, si_code, si_signo;
uint64_t code, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8;
uint32_t pstate;
abi_long ret;

for (;;) {
Expand Down Expand Up @@ -88,18 +87,16 @@ static inline void target_cpu_loop(CPUARMState *env)
* The carry bit is cleared for no error; set for error.
* See arm64/arm64/vm_machdep.c cpu_set_syscall_retval()
*/
pstate = pstate_read(env);
if (ret >= 0) {
pstate &= ~PSTATE_C;
env->CF = 0;
env->xregs[0] = ret;
} else if (ret == -TARGET_ERESTART) {
env->pc -= 4;
break;
} else if (ret != -TARGET_EJUSTRETURN) {
pstate |= PSTATE_C;
env->CF = 1;
env->xregs[0] = -ret;
}
pstate_write(env, pstate);
break;

case EXCP_INTERRUPT:
Expand Down
2 changes: 1 addition & 1 deletion bsd-user/aarch64/target_arch_reg.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ typedef struct target_reg {
} target_reg_t;

typedef struct target_fpreg {
__uint128_t fp_q[32];
Int128 fp_q[32];
uint32_t fp_sr;
uint32_t fp_cr;
} target_fpreg_t;
Expand Down
2 changes: 1 addition & 1 deletion bsd-user/aarch64/target_arch_signal.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ struct target_gpregs {
};

struct target_fpregs {
__uint128_t fp_q[32];
Int128 fp_q[32];
uint32_t fp_sr;
uint32_t fp_cr;
uint32_t fp_flags;
Expand Down
3 changes: 3 additions & 0 deletions bsd-user/qemu.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
#ifndef QEMU_H
#define QEMU_H

#include <sys/param.h>

#include "qemu/int128.h"
#include "cpu.h"
#include "qemu/units.h"
#include "exec/cpu_ldst.h"
Expand Down

0 comments on commit ce6c541

Please sign in to comment.