ARM linux 内核头-common.S
查看 head-common.S
我在__mmap_switched 处
.long init_thread_union + THREAD_START_SP @ sp //for stack pointer
: THREAD_START_SP 在“thread+info.h”中定义了 THREAD_SIZE(8192) - 8,
设置堆栈大小 8KB(8129) 和负 8 字节。
为什么要负8字节?
我怀疑,我认为 DA(之后递减)对吧?
I was looking head-common.S
at the __mmap_switched:
.long init_thread_union + THREAD_START_SP @ sp //for stack pointer
THREAD_START_SP is defined THREAD_SIZE(8192) - 8 in "thread+info.h"
set stack size 8KB(8129) and minus 8byte.
why minus 8byte?
i suspect, i think DA(decrement after) right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
8字节对齐是APCS中的要求。
在 APCS 的第 5.2.1 章“堆栈”中,
堆栈还必须在公共接口处符合以下约束:
SP mod 8 = 0。堆栈必须双字对齐。
http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.subset.swdev.abi/index.html
The 8 bytes aligned is the requirement in APCS.
In APCS, the chapter 5.2.1 The Stack,
The stack must also conform to the following constraint at a public interface:
SP mod 8 = 0. The stack must be double-word aligned.
http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.subset.swdev.abi/index.html