I am working on a legacy project that has a large amount of files dating back to pre-OS X days. It's data has been 16 bit aligned for > 15 years. I would like to move to a full LLVM compilation but I can't seem to get 2 byte alignment working. Are there any compiler level options available for this? (previously using -malign-mac68k)

I am aware of the #pragma pack(2) option here. However that would require me to modify upwards of 1000 source files to include this. That it's a worst-case option, but it seems like a hack. Besides, if this is possible then surely there is a default option to set the alignment?

link|improve this question

75% accept rate
are you using clang or llvm-gcc? I had much better luck with clang than llvm-gcc for 32 bit alignment on a 32 bit target when compiling on a 64 bit host. (-m32 or whatever it is, is ignored by llvm-gcc). Basically I recommend trying clang. – dwelch Jun 22 '11 at 4:31
llvm-gcc seems to honor -malign-mac68k, so that's what we will use if there is no other solution. I do expect llvm-gcc to be going away at some point and would prefer to fully convert if possible. But that may have to wait if we can't find a solution. – slycrel Jun 22 '11 at 6:19
That's a great and tricky question. You could try to ask in the LLVM IRC chat. If it's not possible, they'll probably tell you. llvm.org/docs/#irc – gcamp Jul 7 '11 at 20:19
thanks for the tip gcamp, I'll ask in IRC over there. – slycrel Jul 7 '11 at 20:33
Just curious: Why does the alignment matter? – Eiko Jul 9 '11 at 23:53
show 3 more comments
feedback

4 Answers

up vote 8 down vote accepted
+50

According to clang's sources, it does support mac68k alignment rules. It seems that right now you can enable it via "#pragma options align=mac68k" only. If you're ok with small clang hacking, then you can implement the cmdline option as well and submit the patch to clang.

link|improve this answer
That's both encouraging and discouraging. Thanks for the heads up! Modifying this may be beyond me (with the time I have available for this), so any volounteers to help would be wonderful. =) – slycrel Jul 10 '11 at 0:33
I might try if I'll find some time tonight. – Anton Korobeynikov Jul 10 '11 at 10:27
Well, even if this doesn't happen by someone here I've filed a bug report with apple so hopefully this will be supported in the future. Thanks for the help. – slycrel Jul 14 '11 at 14:37
This will likely not be done by apple. I recently got the apple bug report removed as an issue that their development team is aware of. Which likely means it won't get completed by their team. :( – slycrel Feb 7 at 20:12
feedback

I would suggest looking at #pragma pack (see http://msdn.microsoft.com/en-us/library/2e70t5y1%28v=vs.80%29.aspx and http://gcc.gnu.org/onlinedocs/gcc/Structure_002dPacking-Pragmas.html). It's relatively easy to use, and should work with any compiler Apple ships.

link|improve this answer
I am aware of the #pragma pack(2) option here. However that would require me to modify upwards of 1000 source files to include this. You're correct in that it's an option, but it seems like a hack. Besides, if this is possible then surely there is a default option to set the alignment? – slycrel Jun 22 '11 at 7:34
You could "-include" a file with "#pragma pack(2)", I guess... you don't want to be applying it to system headers, though. – servn Jun 22 '11 at 21:45
feedback

Because system-level headers assume default alignment (they don't have directives to override alignment in most cases), changing the alignment for everything will break OS calls. As such, you don't want to be doing this.

Just write a script to apply your #pragma pack(2) to the source files in question, avoiding #includes. It's relatively easy and unlikely to cause unfortunate side-effects.

link|improve this answer
I'm not sure this is completely accurate, or I'm misunderstanding you. Currently with GCC we are compiling our code with the -malign-mac68k setting, which means anything in the project is compiled as 2 byte aligned. It links just great with system stuff and there are no issues there currently, I don't think a setting at the LLVM level will change this -- we're already doing it with GCC this way. – slycrel Jul 8 '11 at 4:26
@slycrel: It might work for the calls you happen to be using, but it's still a bad idea, particularly if you use other third party libraries that might not have explicit packing directives – bdonlan Jul 8 '11 at 4:30
I'd be interested as to why you think this is a "bad idea". As I've said, this program has done any number of system calls since MacOS 6.x until today with no issues on 2 byte alignment (other than our own dumb mistakes). You'll have to forgive me for being a bit skeptical, but I'm willing to listen. It's not ideal for a non-standard alignment sure, but I can't see anything particularly incorrect going on here. Other than being careful about reading and writing blocks of memory to/from disk (or between memory structs) on self-defined structures I don't see this as being an issue. – slycrel Jul 8 '11 at 15:40
If you use an external library that has a struct foo { short x; int y; }, the layout of foo will differ between the library and your program, potentially leading to crashes or other issues. You may have been lucky enough to avoid such problems so far, but there is no guarantee you won't run into them in the future. That's why I suggest you add #pragma pack(2) to your own code only, to avoid problems in the future. – bdonlan Jul 8 '11 at 15:57
Yep, we're aware of those types of issues and it's business as usual dealing with them. Really it only matters if you're doing block memory operations or writing to disk. Member field access doesn't particularly change. But I think you're missing the fact that #pragma pack(2) and -malign-mac68k do the same things, just that one is explicit in the code and the other is a flag when compiling the code. The idea is to get the compiler level flag (if one exists). I think there may be something since there are flags for 32 and 64 bit alignment. It's an obscure request, thus the bounty. – slycrel Jul 8 '11 at 18:02
show 1 more comment
feedback

i use the latest gcc/gortran on osx compiled by the guys at ibm, if you read the gcc manual there are at least 8 different alignment optimizations to consider not just the bulk malign

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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