Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to declare type alias for 2 bytes variable aligned by 4 bytes.

In GCC, XL C/C++ (AIX), aCC (HP-UX) I can use this code:

typedef uint16_t AlignedType __attribute__ ((aligned (4)));

In Windows I can use:

typedef __declspec(align(4)) unsigned __int16 AlignedType;

How can I declare same type in SunStudio C++ 11?

"pragma align" isn't suitable because it works only for global or static variable and It requires variable name.

share|improve this question

3 Answers

It might be worth at least trying:

typedef union {
  uint16_t value;
  uint32_t _dummy;
} AlignedType;

This of course makes accessing a bit more painful, and kills direct assignment so it might break your entire code base. Also, it's purely based on the assumption that including a larger type, which is assumed to have "native alignment" of 32 bits due to being of that size, makes the union as a whole align on 32 bits.

share|improve this answer
1  
It won't work. Variable must be aligned by 4 bytes, but size of variable must be 2 bytes! For example size of st1 must be 8 bytes, but size of st2 must be 12 bytes. struct st1 { uint32_t f1; AlignedType f3; int16_t f2; }; struct st2 { uint32_t f1; AlignedType f3; AlignedType f2; }; – platerx Jan 24 '12 at 10:25

For future references, when the compilers catch up, C++11 has standard alignment attributes, see alignas ([dcl.align] in N3242).

share|improve this answer

As of Sun C 5.9 (Sun ONE Studio 12), the aligned attribute is supported:

typedef uint16_t AlignedType __attribute__ ((aligned (4)));

Unfortunately this attribute is not supported in C++ (at least through Sun C++ 5.10).

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.