2013-06-28 13:22:32 +00:00
|
|
|
/*
|
|
|
|
* m68k specific CPU ABI and functions for linux-user
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005-2007 CodeSourcery
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2019-01-29 13:43:58 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2013-06-28 13:22:32 +00:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2019-01-29 13:43:58 +00:00
|
|
|
* Lesser General Public License for more details.
|
2013-06-28 13:22:32 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-06-29 14:05:18 +00:00
|
|
|
#ifndef M68K_TARGET_CPU_H
|
|
|
|
#define M68K_TARGET_CPU_H
|
2013-06-28 13:22:32 +00:00
|
|
|
|
2019-11-06 11:33:15 +00:00
|
|
|
static inline void cpu_clone_regs_child(CPUM68KState *env, target_ulong newsp,
|
|
|
|
unsigned flags)
|
2013-06-28 13:22:32 +00:00
|
|
|
{
|
|
|
|
if (newsp) {
|
|
|
|
env->aregs[7] = newsp;
|
|
|
|
}
|
|
|
|
env->dregs[0] = 0;
|
|
|
|
}
|
|
|
|
|
2019-11-06 11:33:16 +00:00
|
|
|
static inline void cpu_clone_regs_parent(CPUM68KState *env, unsigned flags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-16 17:44:55 +00:00
|
|
|
static inline void cpu_set_tls(CPUM68KState *env, target_ulong newtls)
|
|
|
|
{
|
2019-03-23 01:23:25 +00:00
|
|
|
CPUState *cs = env_cpu(env);
|
2013-08-26 16:14:44 +00:00
|
|
|
TaskState *ts = cs->opaque;
|
|
|
|
|
2013-07-16 17:44:55 +00:00
|
|
|
ts->tp_value = newtls;
|
|
|
|
}
|
2013-06-28 13:22:32 +00:00
|
|
|
|
2018-05-29 19:42:00 +00:00
|
|
|
static inline abi_ulong get_sp_from_cpustate(CPUM68KState *state)
|
|
|
|
{
|
|
|
|
return state->aregs[7];
|
|
|
|
}
|
2013-06-28 13:22:32 +00:00
|
|
|
#endif
|