提交 05870abe 编写于 作者: R Rich Felker

fix code path where child function returns in arm __clone built as thumb

mov lr,pc is not a valid way to save the return address in thumb mode
since it omits the thumb bit. use a chain of bl and bx to emulate blx.
this could be avoided by converting to a .S file with preprocessor
conditions to use blx if available, but the time cost here is
dominated by the syscall anyway.

while making this change, also remove the remnants of support for
pre-bx ISA levels. commit 9f290a49
removed the hack from the parent code paths, but left the unnecessary
code in the child. keeping it would require rewriting two code paths
rather than one, and is useless for reasons described in that commit.
上级 9920bf45
...@@ -20,13 +20,9 @@ __clone: ...@@ -20,13 +20,9 @@ __clone:
bx lr bx lr
1: mov r0,r6 1: mov r0,r6
tst r5,#1 bl 3f
bne 1f
mov lr,pc
mov pc,r5
2: mov r7,#1 2: mov r7,#1
svc 0 svc 0
1: mov lr,pc
bx r5
b 2b b 2b
3: bx r5
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册