Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to the Wikipedia page Segmentation fault, a bus error can be caused by unaligned memory access. The article gives an example about how to trigger a bus error. In the example, we have to enable alignment checking to see the bus error. What if we disable such alignment checking?

The program seems to work properly. I have a program access unaligned memory frequently, and it is used by quite a few people, but no one reports bus errors or other weird results to me. If we disable alignment checking, what is the side effect of unaligned memory?

Platforms: I am working on x86/x86-64. I also tried my program by compiling it with "gcc -arch ppc" on a Mac and it works properly.

share|improve this question
What is the platform you are working on?? – Frank Bollack Sep 30 '09 at 8:51
Pavel Minaev largely answers my question. I am working on x86/x86_64. I tried my program by compiling it with "gcc -arch ppc" on Mac and it works properly. – user172818 Sep 30 '09 at 9:01

3 Answers

up vote 6 down vote accepted
  1. It is significantly slower to access unaligned memory (as in, several times slower).

  2. Not all platforms even support unaligned access - x86 and x64 do, but ia64 (Itanium) does not, for example.

  3. A compiler can emulate unaligned access (VC++ does that for pointers declared as __unaligned on ia64, for example) - by inserting additional checks to detect the unaligned case, and loading/storing parts of the object that straddle the alignment boundary separately. That is even slower than unaligned access on platforms which natively support it, however.

share|improve this answer
Thanks. Few users of my program are working on ia64. Maybe that is why I have not received bug report. – user172818 Sep 30 '09 at 9:04
4  
You miht also add #4 that an OS can emulate unaligned access onbehal of an application by catching the processor exception and fixing it up (kind of like what happens for a page fault). This is slower than the compiler perofrming unaligned fix ups in the generated code. Windows can support this in ia64. – Michael Burr Sep 30 '09 at 14:03
1  
This answer was referenced in the blog post Data alignment for speed: myth or reality?. – Peter Mortensen Jun 7 '12 at 16:24

It very much depends on the chip architecture. x86 and POWER are very forgiving, Sparc, Itanium and VAX through different exceptions.

share|improve this answer
Many thanks for the answer. – user172818 Sep 30 '09 at 9:07
4  
It does indeed depend on the processor. I recently worked on a DSP that will happily proceed by using the closest aligned memory address when asked to operate on an unaligned one. Debug that, you perverted unaligned memory accessing individual. – Dan Moulding Sep 30 '09 at 12:18
Indeed, why bother even looking at those last few bits at all - Real Men know what they're doing, anyway :) On the other hand, it would be a convenient architecture to use tagged pointers on, if you use the ignored bits for the tag... – Pavel Minaev Sep 30 '09 at 16:23
@Pavel: consider ARM/thumb interworking. The lsb of the "address" of an instruction indicates whether the CPU should enter thumb mode (1) or ARM mode (0) prior to executing code from that address. Either way, the actual bytes of the target instruction are located in memory at address&~1, it's just that copying a value to the program counter potentially switches mode as well as jumping – Steve Jessop Sep 30 '09 at 18:21

Consider the following example I have just tested on ARM9:

//Addresses       0     1     2    3     4     5     6     7      8    9
U8 u8Temp[10] = {0x11,0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0x00};

U32 u32Var;

u32Var = *((U32*)(u16Temp+1));  // Let's read four bytes starting from 0x22

// You would expect that here u32Var will have a value of 0x55443322 (assuming we have little endian)
// But in reallity u32Var will be 0x11443322!
// This is because we are accessing address which %4 is not 0.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.