在哪里放置 __attribute__ ((aligned)) 和 typedef:ed 结构?

发布于 2024-10-06 08:11:43 字数 666 浏览 1 评论 0原文

我在 Google 上搜索了有关 gcc 的 __attribute__ ((aligned)) 的信息,以了解有关如何使用该属性的更多信息。

根据 GNU 的说法,“您可以在 typedef 声明中或仅在完整枚举、结构或联合类型定义的右大括号之后指定对齐和透明_union 属性,并且仅在定义的右大括号之后指定打包属性。”此外,该文档还显示了以下示例:

struct S { short f[3]; } __attribute__ ((aligned (8)));

但我发现了一些带有“typedef struct”的示例。我发现了以下两个:

typedef struct __attribute__ ((aligned)) { char a; int x; } foo;
typedef struct { char a; int x; } __attribute__ ((aligned)) foo;

哪个是首选方法:在 struct 之后和 { 之前的属性,还是在 } 之后和 foo 之前的属性?

他们都提供相同的结果吗?

我非常感谢有关 typedef:ed 结构正确使用 __attribute__ ((aligned)) 的任何其他详细信息。

I have Googled information on gcc's __attribute__ ((aligned)) to learn more about how to use the attribute.

According to GNU "You may specify aligned and transparent_union attributes either in a typedef declaration or just past the closing curly brace of a complete enum, struct or union type definition and the packed attribute only past the closing brace of a definition." In addition the document shows the following example:

struct S { short f[3]; } __attribute__ ((aligned (8)));

But I have found few examples with "typedef struct". I found the following two:

typedef struct __attribute__ ((aligned)) { char a; int x; } foo;
typedef struct { char a; int x; } __attribute__ ((aligned)) foo;

Which is the preferred method: attribute after struct and before {, or attribute after } and before foo?

Do they both deliver the same result?

I would greatly appreciate any additional detail about the correct usage of __attribute__ ((aligned)) with a typedef:ed struct.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

╰沐子 2024-10-13 08:11:43

来自 GCC 文档

对于枚举、结构或联合类型,您
可以指定介于之间的属性
枚举、结构或联合标签以及
类型的名称,或刚刚过去的
定义的右大括号。
首选前一种语法

From the GCC doc:

For an enum, struct or union type, you
may specify attributes either between
the enum, struct or union tag and the
name of the type, or just past the
closing curly brace of the definition.
The former syntax is preferred.

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