]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix bugs with tbnz/tbz instructions. users/ARM/embedded-binutils-master-2016q4
authorJim Wilson <jim.wilson@linaro.org>
Sun, 4 Dec 2016 01:29:44 +0000 (17:29 -0800)
committerJim Wilson <jim.wilson@linaro.org>
Sun, 4 Dec 2016 01:29:44 +0000 (17:29 -0800)
sim/aarch64
* simulator.c (tbnz, tbz): Cast 1 to uint64_t before shifting.
(dexTestBranchImmediate): Shift high bit of pos by 5 not 4.

sim/aarch64/ChangeLog
sim/aarch64/simulator.c

index d8eb000eb6ccf1097eaf85ae7faf0f06a6f05d6c..2eca54d5101251187ebf14d1430c69c2dc339dd2 100644 (file)
@@ -1,3 +1,8 @@
+2016-12-03  Jim Wilson  <jim.wilson@linaro.org>
+
+       * simulator.c (tbnz, tbz): Cast 1 to uint64_t before shifting.
+       (dexTestBranchImmediate): Shift high bit of pos by 5 not 4.
+
 2016-12-01  Jim Wilson  <jim.wilson@linaro.org>
 
        * simulator.c (fsturs): Switch use of rn and st variables.
index 4fa5dc1a5963d8bb9783a72870290584e28da8a6..34fd17d259aee05c5a01ac77c2f3284906d698ea 100644 (file)
@@ -13353,7 +13353,7 @@ tbnz (sim_cpu *cpu, uint32_t  pos, int32_t offset)
   unsigned rt = INSTR (4, 0);
 
   TRACE_DECODE (cpu, "emulated at line %d", __LINE__);
-  if (aarch64_get_reg_u64 (cpu, rt, NO_SP) & (1 << pos))
+  if (aarch64_get_reg_u64 (cpu, rt, NO_SP) & (((uint64_t) 1) << pos))
     aarch64_set_next_PC_by_offset (cpu, offset);
 }
 
@@ -13364,7 +13364,7 @@ tbz (sim_cpu *cpu, uint32_t  pos, int32_t offset)
   unsigned rt = INSTR (4, 0);
 
   TRACE_DECODE (cpu, "emulated at line %d", __LINE__);
-  if (!(aarch64_get_reg_u64 (cpu, rt, NO_SP) & (1 << pos)))
+  if (!(aarch64_get_reg_u64 (cpu, rt, NO_SP) & (((uint64_t) 1) << pos)))
     aarch64_set_next_PC_by_offset (cpu, offset);
 }
 
@@ -13407,7 +13407,7 @@ dexTestBranchImmediate (sim_cpu *cpu)
      instr[18,5]  = simm14 : signed offset counted in words
      instr[4,0]   = uimm5  */
 
-  uint32_t pos = ((INSTR (31, 31) << 4) | INSTR (23, 19));
+  uint32_t pos = ((INSTR (31, 31) << 5) | INSTR (23, 19));
   int32_t offset = simm32 (aarch64_get_instr (cpu), 18, 5) << 2;
 
   NYI_assert (30, 25, 0x1b);