gpt4 book ai didi

C++ 对齐数组的未对齐属性

转载 作者:行者123 更新时间:2023-11-28 08:00:21 26 4
gpt4 key购买 nike

编辑:这是我的一个工作项目。在职的。我在 .cpp 文件的开头声明了一些字符数组(甚至在 #include 部分之前)。然后我可以将这些数组与“16 字节对齐变量的说明”一起使用。

问题:如果我在另一个 .cpp 文件中使用这个 .cpp 文件作为包含会发生什么?我也可以在其他项目中使用该数组进行对齐操作吗?

问题2:这有捷径吗?我不想将所有变量都放在开头。

一些代码:(我处理了一些 16 字节对齐的数组)

    //I put these arrays at the beginning, so they are aligned
//for the movaps instructions(x2 speed for reading and writing memory)
float v1[16];
float v2[16];
char counters[32];
char array_of_ones[32];
char source_array[4096];
char destination_array[4096];
struct bit_field
{
bf1:32;
bf2:32;
bf3:32;
bf4:32;
}some_area;
struct bit_mask_x
{
bf1:32;
bf2:32;
bf3:32;
bf4:32;
}some_mask;
float var_fast[16];
char alignment_purge[5]; //for the unalignment tests
char unaligned_source_array[4096];
char unaligned_destination_array[4096];



#include <math.h>
#include<stdlib.h>
#include<stdio.h>
#include<time.h>
.....
.....

如果我像这样将这个程序包含在另一个程序中会发生什么:

#include <math.h>
#include<my_aligned.h> <-------- or my_aligned.cpp
#include<stdio.h>
#include<time.h>

我必须为此使用 .h 文件吗?

谢谢...

最佳答案

如果这能正确对齐您的变量,您是否真的尝试过?当您编译时,可执行文件总是有一个 header ,其大小可能不是 16 的倍数。此外,alignment_purge 可能不会真正使它后面的变量不对齐,因为编译器可能会添加填充。最后,标题不引入变量,因此如果您将变量放在标题上方或下方,这不会改变任何内容。

可以看看this question查看如何请求对齐内存。

附带说明一下,通常您不希望将源文件包含到另一个文件中。参见 this question关于这个问题。

关于C++ 对齐数组的未对齐属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11645596/

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