about summary refs log tree commit diff
path: root/ports/sysdeps/arm/armv7/multiarch
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-11-22 11:39:20 -0800
committerRoland McGrath <roland@hack.frob.com>2013-11-22 11:39:20 -0800
commit068dcfd6758b2f50445d40cfe9d10e4284bd0635 (patch)
tree998c08fbfd6f8aab2723c480ce3723785a541020 /ports/sysdeps/arm/armv7/multiarch
parent12e0e8c65d639fe1e648d116cb5caa434c34ab61 (diff)
downloadglibc-068dcfd6758b2f50445d40cfe9d10e4284bd0635.tar.gz
glibc-068dcfd6758b2f50445d40cfe9d10e4284bd0635.tar.xz
glibc-068dcfd6758b2f50445d40cfe9d10e4284bd0635.zip
ARM: Fix memcpy computed-jump calculations for ARM_ALWAYS_BX case.
Diffstat (limited to 'ports/sysdeps/arm/armv7/multiarch')
-rw-r--r--ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S21
1 files changed, 11 insertions, 10 deletions
diff --git a/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S b/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S
index ad43a3db5a..44cecb02d4 100644
--- a/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S
+++ b/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S
@@ -127,25 +127,26 @@
 	.purgem dispatch_step
 	.endm
 #else
-# if ARM_BX_ALIGN_LOG2 < 4
+# if ARM_BX_ALIGN_LOG2 < 3
 #  error case not handled
 # endif
 	.macro dispatch_helper steps, log2_bytes_per_step
-	.p2align ARM_BX_ALIGN_LOG2
 	/* TMP1 gets (max_bytes - bytes_to_copy), where max_bytes is
 	   (STEPS << LOG2_BYTES_PER_STEP).
-	   So this is (steps_to_skip << LOG2_BYTES_PER_STEP).  */
-	rsb	tmp1, tmp1, #(\steps << \log2_bytes_per_step)
-	/* Pad so that the add;bx pair immediately precedes an alignment
-	   boundary.  Hence, TMP1=0 will run all the steps.  */
-	.rept (1 << (ARM_BX_ALIGN_LOG2 - 2)) - (2 + ARM_BX_NINSNS)
-	nop
-	.endr
+	   So this is (steps_to_skip << LOG2_BYTES_PER_STEP).
+	   Then it needs further adjustment to compensate for the
+	   distance between the PC value taken below (0f + PC_OFS)
+	   and the first step's instructions (1f).  */
+	rsb	tmp1, tmp1, #((\steps << \log2_bytes_per_step) \
+			      + ((1f - PC_OFS - 0f) \
+				 >> (ARM_BX_ALIGN_LOG2 - \log2_bytes_per_step)))
 	/* Shifting down LOG2_BYTES_PER_STEP gives us the number of
 	   steps to skip, then shifting up ARM_BX_ALIGN_LOG2 gives us
 	   the (byte) distance to add to the PC.  */
-	add	tmp1, pc, tmp1, lsl #(ARM_BX_ALIGN_LOG2 - \log2_bytes_per_step)
+0:	add	tmp1, pc, tmp1, lsl #(ARM_BX_ALIGN_LOG2 - \log2_bytes_per_step)
 	bx	tmp1
+	.p2align ARM_BX_ALIGN_LOG2
+1:
 	.endm
 
 	.macro dispatch_7_dword