gpt4 book ai didi

c - apcs-gnu ABI 中的结构布局

转载 作者:太空宇宙 更新时间:2023-11-04 02:30:38 25 4
gpt4 key购买 nike

对于 this code :

struct S {     unsigned char ch[2]; };

int main(void)
{
_Static_assert( sizeof(struct S) == 2, "size was not 2");
}

将 GCC(各种版本)用于 ARM 和 ABI apcs-gnu(又名 OABI,或 EABI 版本 0),我得到断言失败。结果该结构的大小为 4

我可以使用 __attribute__((packed)) 来解决这个问题;但我的问题是:

  • 将此结构大小设置为 4 的基本原理是什么?
  • 是否有任何文档指定此 ABI 中的结构布局?

在 ARM 网站上,我找到了 aapcs(EABI 版本 5)的文档,其中确实指定此结构的大小为 2;但我找不到任何关于 apcs-gnu 的信息。

最佳答案

这是 GCC 特定的决定,以权衡大小换取性能。它可以用 -mstructure-size-boundary=8 覆盖。

摘自 source code :

/* Setting STRUCTURE_SIZE_BOUNDARY to 32 produces more efficient code, but the
value set in previous versions of this toolchain was 8, which produces more
compact structures. The command line option -mstructure_size_boundary=<n>
can be used to change this value. For compatibility with the ARM SDK
however the value should be left at 32. ARM SDT Reference Manual (ARM DUI
0020D) page 2-20 says "Structures are aligned on word boundaries".
The AAPCS specifies a value of 8. */
#define STRUCTURE_SIZE_BOUNDARY arm_structure_size_boundary

关于c - apcs-gnu ABI 中的结构布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43786747/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com