2019-03-15 17:51:18 +03:00
|
|
|
#ifndef RISCV_TARGET_CPU_H
|
|
|
|
#define RISCV_TARGET_CPU_H
|
2018-03-02 15:31:11 +03:00
|
|
|
|
2019-11-06 14:33:15 +03:00
|
|
|
static inline void cpu_clone_regs_child(CPURISCVState *env, target_ulong newsp,
|
|
|
|
unsigned flags)
|
2018-03-02 15:31:11 +03:00
|
|
|
{
|
|
|
|
if (newsp) {
|
|
|
|
env->gpr[xSP] = newsp;
|
|
|
|
}
|
|
|
|
|
|
|
|
env->gpr[xA0] = 0;
|
|
|
|
}
|
|
|
|
|
2019-11-06 14:33:16 +03:00
|
|
|
static inline void cpu_clone_regs_parent(CPURISCVState *env, unsigned flags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-02 15:31:11 +03:00
|
|
|
static inline void cpu_set_tls(CPURISCVState *env, target_ulong newtls)
|
|
|
|
{
|
|
|
|
env->gpr[xTP] = newtls;
|
|
|
|
}
|
|
|
|
|
2018-05-29 22:42:00 +03:00
|
|
|
static inline abi_ulong get_sp_from_cpustate(CPURISCVState *state)
|
|
|
|
{
|
|
|
|
return state->gpr[xSP];
|
|
|
|
}
|
2018-03-02 15:31:11 +03:00
|
|
|
#endif
|