Tagged Questions
12
votes
10answers
849 views
Memory alignment in C-structs
I'm working on the 32-bit machine, so I suppose that memory alignment should be 4 bytes. Say I have struct:
typedef struct {
unsigned short v1;
unsigned short v2;
unsigned short v3;
} ...
12
votes
6answers
1k views
Do class/struct members always get created in memory in the order they were declared?
This is a question that was sparked by Rob Walker's answer here.
Suppose I declare a class/struct like so:
struct
{
char A;
int B;
char C;
int D;
};
Is it safe to assume that ...
6
votes
8answers
2k views
Purpose of memory alignment
Admittedly I don't get it. Say you have a memory with a memory word of length of 1 byte. Why can't you access a 4 byte long variable in a single memory access on an unaligned address(i.e. not ...
1
vote
1answer
128 views
Prefetching aligned memory
I have some threaded C code that requires 64 byte alignment of the processed data structure. How will this alignment interact with prefetch instructions like the gcc __builtin_prefetch? Will the ...
1
vote
1answer
78 views
Is memory aligned access faster?
Suppose that my machine word is 32 bits long, and I have to sort 8-character strings.
I've read that if you pack the characters into words, the comparisons will be faster since you use aligned memory ...
1
vote
1answer
261 views
Another Memory Alignment Question?
I understand why data need to be aligned (and all the efforts made to accomplish it like padding) so we can reduce the number of memory accesses but this assumes that processor just can fetch ...
0
votes
5answers
124 views
How can I simulate alignas(T)?
I have an array which is used as the underlying memory of an object of type T:
char memory[sizeof T];
.
.
.
new(memory) T(whatever);
How can I make sure memory is aligned correctly for T objects? ...