2018-03-02 15:31:11 +03:00
|
|
|
#ifndef TARGET_CPU_H
|
|
|
|
#define TARGET_CPU_H
|
|
|
|
|
|
|
|
static inline void cpu_clone_regs(CPURISCVState *env, target_ulong newsp)
|
|
|
|
{
|
|
|
|
if (newsp) {
|
|
|
|
env->gpr[xSP] = newsp;
|
|
|
|
}
|
|
|
|
|
|
|
|
env->gpr[xA0] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|