5544c1b
From 2cbc27913eb9eb7cdc4a41fc6efafccf3db7ebe6 Mon Sep 17 00:00:00 2001
5544c1b
From: Richard Henderson <rth@twiddle.net>
5544c1b
Date: Fri, 21 Sep 2012 11:00:23 -0700
5544c1b
Subject: [PATCH] tcg-sparc: Preserve branch destinations during retranslation
5544c1b
5544c1b
Signed-off-by: Richard Henderson <rth@twiddle.net>
5544c1b
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
5544c1b
---
5544c1b
 tcg/sparc/tcg-target.c | 19 +++++++++++--------
5544c1b
 1 file changed, 11 insertions(+), 8 deletions(-)
5544c1b
5544c1b
diff --git a/tcg/sparc/tcg-target.c b/tcg/sparc/tcg-target.c
5544c1b
index 1db0c9d..876da4f 100644
5544c1b
--- a/tcg/sparc/tcg-target.c
5544c1b
+++ b/tcg/sparc/tcg-target.c
5544c1b
@@ -488,30 +488,33 @@ static inline void tcg_out_nop(TCGContext *s)
5544c1b
 static void tcg_out_branch_i32(TCGContext *s, int opc, int label_index)
5544c1b
 {
5544c1b
     TCGLabel *l = &s->labels[label_index];
5544c1b
+    uint32_t off22;
5544c1b
 
5544c1b
     if (l->has_value) {
5544c1b
-        tcg_out32(s, (INSN_OP(0) | INSN_COND(opc, 0) | INSN_OP2(0x2)
5544c1b
-                      | INSN_OFF22(l->u.value - (unsigned long)s->code_ptr)));
5544c1b
+        off22 = INSN_OFF22(l->u.value - (unsigned long)s->code_ptr);
5544c1b
     } else {
5544c1b
+        /* Make sure to preserve destinations during retranslation.  */
5544c1b
+        off22 = *(uint32_t *)s->code_ptr & INSN_OFF22(-1);
5544c1b
         tcg_out_reloc(s, s->code_ptr, R_SPARC_WDISP22, label_index, 0);
5544c1b
-        tcg_out32(s, (INSN_OP(0) | INSN_COND(opc, 0) | INSN_OP2(0x2) | 0));
5544c1b
     }
5544c1b
+    tcg_out32(s, INSN_OP(0) | INSN_COND(opc, 0) | INSN_OP2(0x2) | off22);
5544c1b
 }
5544c1b
 
5544c1b
 #if TCG_TARGET_REG_BITS == 64
5544c1b
 static void tcg_out_branch_i64(TCGContext *s, int opc, int label_index)
5544c1b
 {
5544c1b
     TCGLabel *l = &s->labels[label_index];
5544c1b
+    uint32_t off19;
5544c1b
 
5544c1b
     if (l->has_value) {
5544c1b
-        tcg_out32(s, (INSN_OP(0) | INSN_COND(opc, 0) | INSN_OP2(0x1) |
5544c1b
-                      (0x5 << 19) |
5544c1b
-                      INSN_OFF19(l->u.value - (unsigned long)s->code_ptr)));
5544c1b
+        off19 = INSN_OFF19(l->u.value - (unsigned long)s->code_ptr);
5544c1b
     } else {
5544c1b
+        /* Make sure to preserve destinations during retranslation.  */
5544c1b
+        off19 = *(uint32_t *)s->code_ptr & INSN_OFF19(-1);
5544c1b
         tcg_out_reloc(s, s->code_ptr, R_SPARC_WDISP19, label_index, 0);
5544c1b
-        tcg_out32(s, (INSN_OP(0) | INSN_COND(opc, 0) | INSN_OP2(0x1) |
5544c1b
-                      (0x5 << 19) | 0));
5544c1b
     }
5544c1b
+    tcg_out32(s, (INSN_OP(0) | INSN_COND(opc, 0) | INSN_OP2(0x1) |
5544c1b
+                  (0x5 << 19) | off19));
5544c1b
 }
5544c1b
 #endif
5544c1b