diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2009-08-03 08:43:24 -0700 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-08-03 20:33:41 +0400 |
commit | 174c80d51612ce33960965c75e40c922599a503e (patch) | |
tree | 42c7e5b5961a8641f9e497bd926cb5518f5e4e4e /target-ppc | |
parent | d11f69b20180f14ba596bf78667403fb7b2020db (diff) | |
download | qemu-174c80d51612ce33960965c75e40c922599a503e.zip |
target-ppc: add cpu_set_tls
Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/cpu.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 148e8c3fe6..fe2257db0c 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -1589,4 +1589,15 @@ static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc, *flags = env->hflags; } +static inline void cpu_set_tls(CPUState *env, target_ulong newtls) +{ +#if defined(TARGET_PPC64) + /* The kernel checks TIF_32BIT here; we don't support loading 32-bit + binaries on PPC64 yet. */ + env->gpr[13] = newtls; +#else + env->gpr[2] = newtls; +#endif +} + #endif /* !defined (__CPU_PPC_H__) */ |