5
votes
2answers
143 views
Cache Line Alignment (Need clarification on article)
I've recently encountered what I think is a false-sharing problem in my application, and I've looked up Sutter's article on how to align my data to cache lines. He suggests the following C++ code:
// …
2
votes
2answers
147 views
Does unaligned memory access always cause bus errors?
According to this wiki page, bus error can be caused by unaligned memory access. The wiki page gives an example about how to trigger a bus error. In the example, we have to enable alignment checking …
0
votes
1answer
125 views
Memory (sbrk) 16-byte aligned shifting on pointer access
I wrote a reasonably basic memory allocator using sbrk. I ask for a chunk of memory, say 65k and carve it up as needed for variables requesting dynamic memory. I free the memory by adding it back to …
1
vote
2answers
111 views
Message-dispatch system in C that doesn’t break strict aliasing and alignment
I'm writing an embedded control system in C that consists of multiple tasks that send messages to each other (a fairly common idiom, I believe!), but I'm having a hard time designing a mechanism …
3
votes
3answers
261 views
Align native code on fixed size memory boundaries with GCC/G++/AS ?
I have a C function that contains all the code that will implement the bytecodes of a bytecode interpreter.
I'm wondering if there is a way to align segments of the compiled code in memory on fixed …
0
votes
3answers
335 views
Struct members alignment in Visual C++ 2008
Visual C++ let's you select the struct members alignemnt in the project's properties page. Problem is, this configuration is being used for all srtructs in the project.
Is there any way (VC++ …
0
votes
2answers
332 views
structure alignment to port code to 64-bit
Hi,
I have a 32-bit .NET assembly which PInvokes into the C layer. I want to port this assembly to 64-bit. I have read many documents related to porting to 64-bit, all of which seems to suggest that …
4
votes
4answers
298 views
Safe, efficient way to access unaligned data in a network packet from C
I'm writing a program in C for Linux on an ARM9 processor. The program is to access network packets which include a sequence of tagged data like:
…
3
votes
6answers
407 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 …
8
votes
6answers
500 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 …
