6e98bf
commit ae8c6de01417023e78763de145b1c0e6ddd87277
6e98bf
Author: Carl Love <cel@us.ibm.com>
6e98bf
Date:   Wed Oct 20 20:40:13 2021 +0000
6e98bf
6e98bf
    Fix for the prefixed stq instruction in PC relative mode.
6e98bf
    
6e98bf
    The pstq instruction for R=1, was not using the correct effective address.
6e98bf
    The EA_hi and EA_lo should have been based on the value of EA as calculated
6e98bf
    by the function calculate_prefix_EA.  Unfortuanely, the EA_hi and EA_lo
6e98bf
    addresses were still using the previous code (not PC relative) to calculate
6e98bf
    the address from the contants of RA plus the offset.
6e98bf
6e98bf
diff --git a/VEX/priv/guest_ppc_toIR.c b/VEX/priv/guest_ppc_toIR.c
6e98bf
index 8afd77490..543fa9574 100644
6e98bf
--- a/VEX/priv/guest_ppc_toIR.c
6e98bf
+++ b/VEX/priv/guest_ppc_toIR.c
6e98bf
@@ -9838,23 +9838,24 @@ static Bool dis_int_store_ds_prefix ( UInt prefix,
6e98bf
             if (host_endness == VexEndnessBE) {
6e98bf
 
6e98bf
                /* upper 64-bits */
6e98bf
-               assign( EA_hi, ea_rAor0_simm( rA_addr, immediate_val ) );
6e98bf
+               assign( EA_hi, mkexpr(EA));
6e98bf
 
6e98bf
                /* lower 64-bits */
6e98bf
-               assign( EA_lo, ea_rAor0_simm( rA_addr, immediate_val+8 ) );
6e98bf
+               assign( EA_lo, binop(Iop_Add64, mkexpr(EA), mkU64(8)));
6e98bf
+
6e98bf
             } else {
6e98bf
                /* upper 64-bits */
6e98bf
-               assign( EA_hi, ea_rAor0_simm( rA_addr, immediate_val+8 ) );
6e98bf
+               assign( EA_hi, binop(Iop_Add64, mkexpr(EA), mkU64(8)));
6e98bf
 
6e98bf
                /* lower 64-bits */
6e98bf
-               assign( EA_lo, ea_rAor0_simm( rA_addr, immediate_val ) );
6e98bf
+               assign( EA_lo, mkexpr(EA));
6e98bf
             }
6e98bf
          } else {
6e98bf
             /* upper half of upper 64-bits */
6e98bf
-            assign( EA_hi, ea_rAor0_simm( rA_addr, immediate_val+4 ) );
6e98bf
+            assign( EA_hi, binop(Iop_Add32, mkexpr(EA), mkU32(4)));
6e98bf
 
6e98bf
             /* lower half of upper 64-bits */
6e98bf
-            assign( EA_lo, ea_rAor0_simm( rA_addr, immediate_val+12 ) );
6e98bf
+            assign( EA_lo, binop(Iop_Add32, mkexpr(EA), mkU32(12)));
6e98bf
          }
6e98bf
 
6e98bf
          /* Note, the store order for stq instruction is the same for BE