vote up 6 vote down star
4

Is there any portable way to determine what the maximum possible alignment for any type is?

For example on x86, SSE instructions require 16-byte alignment, but as far as I'm aware, no instructions require more than that, so any type can be safely stored into a 16-byte aligned buffer.

I need to create a buffer (such as a char array) where I can write objects of arbitrary types, and so I need to be able to rely on the beginning of the buffer to be aligned.

If all else fails, I know that allocating a char array with new is guaranteed to have maximum alignment, but with the TR1/C++0x templates alignment_of and aligned_storage, I am wondering if it would be possible to create the buffer in-place in my buffer class, rather than requiring the extra pointer indirection of a dynamically allocated array.

Ideas?

I realize there are plenty of options for determining the max alignment for a bounded set of types: A union, or just alignment_of from TR1, but my problem is that the set of types is unbounded. I don't know in advance which objects must be stored into the buffer.

flag

portable in what regard, exactly? to each compiler? to each OS? to each architecture? – San Jacinto Oct 6 at 19:53
Just portable as in "guaranteed by the C++ standard to work". Of course, I could easily rely on my own knowledge of the target architecture and hardcode the max alignment, but it would be nice if the language itself provided the tools to answer this. – jalf Oct 6 at 20:27

2 Answers

vote up 5 vote down check

Short of some maximally_aligned_t type that all compilers promised faithfully to support for all architectures everywhere, I don't see how this could be solved at compile time. As you say, the set of potential types is unbounded. Is the extra pointer indirection really that big a deal?

link|flag
It might not be, but I'm curious if there is a solution. C++0x adds a couple of other alignment-related functions, and the implementation already has to determine the maximum possible alignment in other cases (when dynamically allocating a char array) so I thought there might be some obscure standard library template which exposes this value. – jalf Oct 6 at 20:25
Yeah. It's an interesting question, and I wish I had a better answer for you, but I don't think there's any standards-conformant way. maximally_aligned_t (or better, maximal_alignment) wouldn't be hard to implement, though; perhaps you should propose it for c++1x :) – David Seiler Oct 6 at 20:48
vote up 1 vote down

Allocating aligned memory is trickier than it looks - see for exampel http://jongampark.wordpress.com/2008/06/12/implementation-of-aligned-memory-alloc/

link|flag
I know it's tricky. That wasn't my question. ;) But the standard does give some guarantees, and especially when you take C++0x into account, you do have a couple of standard tools to help out. – jalf Oct 6 at 20:26

Your Answer

Get an OpenID
or

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