In an iOS application, I have a struct that looks like this

typedef struct _Pixel {
  signed char r;
  signed char g;
  signed char b;
} Pixel;

In my code, I allocate an array of these with calloc:

Pixel* buff = calloc(width * height, sizeof(Pixel));

Now, this works perfectly in the simulator, but on the device, if I try to access buff[width * height - 1] (i.e. the last element in buff), I get an EXC_BAD_ACCESS.

This didn't make sense to me, so after a few hours of debugging, I wondered if it was some kind of alignment issue, so on a whim I tried:

typedef struct _Pixel {
  signed char r;
  signed char g;
  signed char b;
  signed char padding;
} Pixel;

making the size of Pixel a power of two.

This fixes the EXC_BAD_ACCESS, but it's awfully weird. Does anyone have any insight into what's going on here? Am I just masking the underlying problem by padding the struct or can alignment really cause a bad access (I thought alignment only had an effect on performance, not correctness).

link|improve this question

75% accept rate
Hey Bill two things. Since SO does not let me edit one character,you got a typo in calloc. You are missing a parentheses in the end. As for your main problem, this sort of thing usually happens if you Either realloacate the buff somewhere else, or in one of the times you access it, you happen to accidentally go off-index. Do you do anything else to buff before trying to access the last element? – Lefteris Feb 13 at 3:46
check your values of width and height again...!!! – Inder Kumar Rathore Feb 13 at 4:04
This is code that has worked for months - the only difference is that I changed the type of the struct members from CGFloat to signed bytes. So width and height are not the problem - it's something to do with the layout of the struct. – Bill Feb 13 at 4:08
Can you include the line you use to access it? Are you trying to set the entire pixel, or just a field in it? – Steven Fisher Feb 13 at 4:17
feedback

1 Answer

EXC_BAD_ACCESS is related to alignment. Unlike x86, ARM requires memory access aligned to certain boundary.

To control alignment, use #pragma push, #pragma pack(n) and #pragma pop around.

See http://tedlogan.com/techblog2.html

link|improve this answer
2  
He did not ask how to control alignment. He asked if anyone knows why without the padding it causes EXC_BAD_ACCESS in the first place – Lefteris Feb 13 at 4:05
Mis-alignment is the cause of EXC_BAD_ACCESS, on ARM. Do not take the behaviors on x86 for granted. – ZhangChn Feb 13 at 4:15
it is strange, since he is accessing bytes, which should not suffer from alignment exceptions. Maybe the struct gets passed to a part of the application which was not recompiled after the struct change? – Willem Hengeveld Feb 14 at 15:53
feedback

Your Answer

 
or
required, but never shown

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