ARM linux 内核头-common.S

发布于 2024-12-11 20:12:16 字数 297 浏览 0 评论 0原文

查看 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剑心龙吟 2024-12-18 20:12:16

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文