Tagged Questions
7
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 ...
4
votes
1answer
210 views
Should boost library be dependent on structure member alignments?
I found, the hard way, that at least boost::program_options is dependent of the compiler configured structure member alignment.
If you build boost using default settings and link it with a project ...
4
votes
2answers
2k views
How to allocate and free aligned memory in C
How do you allocate memory that's aligned to a specific boundary in C (e.g., cache line boundary)? I'm looking for malloc/free like implementation that ideally would be as portable as possible --- at ...
2
votes
6answers
280 views
Is the byte alignment requirement of a given data type guaranteed to be a power of 2?
Is the byte alignment requirement of a given data type guaranteed to be a power of 2?
Is there something that provides this guarantee other than it "not making sense otherwise" because it wouldn't ...
2
votes
2answers
549 views
VirtualAlloc alignment
Will the memory block returned by VirtualAlloc always be aligned with the page size? In other words, will the modulus always be zero of the return value from VirtualAlloc and the page size?
2
votes
3answers
2k views
C Function alignment in GCC
I am trying to byte-align a function to 16-byte boundary using the 'aligned(16)' attribute. I did the following: void __attribute__((aligned(16))) function() { }
(Source: ...
1
vote
4answers
159 views
Why should structure have to be word aligned? [closed]
Possible Duplicate:
Purpose of memory alignment
Why does structure or any memory allocations like int,char have to be word aligned. What advantage does it serve?
Update:
Is the main ...
1
vote
0answers
279 views
__attribute__((aligned)) - gcc
How will gcc set the alignment for variable/field with
__attribute__((aligned))
What about different gcc versions/ different platforms?
Testing code:
int main() {
printf("%d\n", ...
0
votes
5answers
139 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? ...