MIPS usermode TLS register
authorPaul Brook <paul@codesourcery.com>
Thu, 9 Jul 2009 14:07:57 +0000 (15:07 +0100)
committerPaul Brook <paul@codesourcery.com>
Thu, 9 Jul 2009 14:07:57 +0000 (15:07 +0100)
Implement cpu_set_tls for MIPS.

Signed-off-by: Paul Brook <paul@codesourcery.com>

target-mips/cpu.h

index b415dc4..6ebb82b 100644 (file)
@@ -597,4 +597,9 @@ static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc,
     *flags = env->hflags & (MIPS_HFLAG_TMASK | MIPS_HFLAG_BMASK);
 }
 
+static inline void cpu_set_tls(CPUState *env, target_ulong newtls)
+{
+    env->tls_value = newtls;
+}
+
 #endif /* !defined (__MIPS_CPU_H__) */