gpt4 book ai didi

visual-c++ - #pragma pack(8) 应该如何工作?

转载 作者:行者123 更新时间:2023-12-05 01:45:54 24 4
gpt4 key购买 nike

我不熟悉结构对齐和打包。我以为我明白了,但我发现了一些我没想到的结果(见下文)。

我对结构对齐的理解是:

  1. 类型通常在为其大小的倍数的内存地址上对齐。

  2. 根据需要添加填充以促进正确对齐

  3. 结构的末尾必须填充到最大元素的倍数(以方便数组访问)

#pragma pack 指令基本上允许覆盖基于类型大小对齐的一般约定:

#pragma pack(push, 8)
struct SPack8
{
// Assume short int is 2 bytes, double is 8 bytes, and int is 4 bytes
short int a;
double b;
short int c;
int d;
};
#pragma pack(pop)

Pseudo struct layout: What I expected:
// note: PADDING IS BRACKETED
0, 1, [2, 3, 4, 5, 6, 7] // a occupies address 0, 1
8, 9, 10, 11, 12, 13, 14, 15, // b occupies 8-15 inclusive
16, 17, [18, 19, 20, 21, 22, 23] // c occupies 16-17 inclusive
24, 25, 26, 27 // d occupies 24-27 inclusive
// Thus far, SPack8 is 28 bytes, but the structure must be a multiple of
// sizeof(double) so we need to add padding to make it 32 bytes
[28, 29, 30, 31]

令我惊讶的是,VS 2015 x86 上的 sizeof(SPack8) == 24。似乎 d 没有在 8 字节地址上对齐:

offsetof(SPack, a) // 0, as expected
offsetof(SPack, b) // 8, as expected
offsetof(Spack, c) // 16, as expected
offsetof(SPack, d) // 20..what??

有人可以解释一下发生了什么/我误解了什么吗?

谢谢!

最佳答案

您的误解是 #pragma pack 让您扩展 结构,但事实并非如此。 pack 允许您在需要时更紧密地打包结构。 #pragma pack(push, 8) 告诉编译器,它可以最多在 8 字节边界上对齐,但不能

例子:

#pragma pack(push, 2)
struct X {
char a; // 1 byte
// 1 byte padding
int b; // 4 bytes, note though that it's aligned on 2 bytes, not 4.
char c, d, e; // 3 bytes
//1 byte padding
}; // == 10 bytes, the whole struct is also aligned on 2 bytes, not 4
#pragma pack(pop)

// The same struct without the pragma pack:
struct Y {
char a; // 1 byte
// 3 bytes padding
int b; // 4 bytes
char c, d, e; // 3 bytes
// 1 byte padding
};

这就是 pack 所做的,使用编译器通常使用的 less 填充。在您的示例中,您尝试将 int 在 8 字节边界上对齐,但是由于您允许编译器在最多 8 字节上对齐,编译器 的 4 字节对齐 < em>想使用就可以了。大小为 24 的整个结构的大小也为 8 的倍数(最大成员),因此无需填充即可将其填充到 32。

您可以强行对齐您的结构

__declspec(align(32)) struct Z {
char a;
int b;
char c, d, e;
};

甚至是你的结构的成员

struct SPack8
{
// Assume short int is 2 bytes, double is 8 bytes, and int is 4 bytes
short int a;
double b;
short int c;
__declspec(align(8)) int d;
};

在特定边界上,但我看不出有什么理由强制 4 字节类型在 8 字节上对齐。

关于visual-c++ - #pragma pack(8) 应该如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39359918/

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