]> git.proxmox.com Git - qemu.git/commitdiff
mips-linux-user: Always support rdhwr.
authorRichard Henderson <rth@twiddle.net>
Fri, 30 Mar 2012 17:16:37 +0000 (13:16 -0400)
committerAurelien Jarno <aurelien@aurel32.net>
Mon, 27 Aug 2012 10:17:40 +0000 (12:17 +0200)
The kernel will emulate this instruction if it's not supported
natively.  This insn is used for TLS, among other things, and
so is required by modern glibc.

Signed-off-by: Richard Henderson <rth@twiddle.net>
Cc: Riku Voipio <riku.voipio@iki.fi>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
target-mips/translate.c

index f740a083209d3ebd7b8e21dc84a2ab9f08daf95b..35624e9da1f3de6218332a836d33ea245c8e27d0 100644 (file)
@@ -8111,7 +8111,11 @@ gen_rdhwr (CPUMIPSState *env, DisasContext *ctx, int rt, int rd)
 {
     TCGv t0;
 
+#if !defined(CONFIG_USER_ONLY)
+    /* The Linux kernel will emulate rdhwr if it's not supported natively.
+       Therefore only check the ISA in system mode.  */
     check_insn(env, ctx, ISA_MIPS32R2);
+#endif
     t0 = tcg_temp_new();
 
     switch (rd) {