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 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 error or other weird results to me. The question is if we disable alignment checking, what is the side effect of unaligned memory?

link|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
feedback

2 Answers

up vote 7 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.

link|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
2  
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
feedback

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

link|improve this answer
Many thanks for the answer. – user172818 Sep 30 '09 at 9:07
3  
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
feedback

Your Answer

 
or
required, but never shown

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