target-arm: Generate fences in ARMv7 frontend
authorPranith Kumar <bobby.prani@gmail.com>
Thu, 14 Jul 2016 20:20:23 +0000 (16:20 -0400)
committerRichard Henderson <rth@twiddle.net>
Fri, 16 Sep 2016 15:12:12 +0000 (08:12 -0700)
Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
Message-Id: <20160714202026.9727-12-bobby.prani@gmail.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
target-arm/translate.c

index bd5d5cb5768a455663d7bcdbf40a3c5602daac43..693d4bc6a245a4cb32477289f51357dfe7ebd742 100644 (file)
@@ -8083,7 +8083,7 @@ static void disas_arm_insn(DisasContext *s, unsigned int insn)
             case 4: /* dsb */
             case 5: /* dmb */
                 ARCH(7);
-                /* We don't emulate caches so these are a no-op.  */
+                tcg_gen_mb(TCG_MO_ALL | TCG_BAR_SC);
                 return;
             case 6: /* isb */
                 /* We need to break the TB after this insn to execute
@@ -10432,7 +10432,7 @@ static int disas_thumb2_insn(CPUARMState *env, DisasContext *s, uint16_t insn_hw
                             break;
                         case 4: /* dsb */
                         case 5: /* dmb */
-                            /* These execute as NOPs.  */
+                            tcg_gen_mb(TCG_MO_ALL | TCG_BAR_SC);
                             break;
                         case 6: /* isb */
                             /* We need to break the TB after this insn