In D, you can align struct/class members by using the align keyword, e.g.:

struct Vec4 { align(16) float[4] elems; }

However, it appears that you can't do the same on the stack:

void foo()
{
    align(16) float[4] vec; // error: found 'align' instead of statement
}

Is there a way to align data on the stack? In particular, I want to create an 16-byte aligned array of floats to load into XMM registers using movaps, which is significantly faster than movups.

e.g.

void foo()
{
    float[4] v = [1.0f, 2.0f, 3.0f, 4.0f];
    asm
    {
        movaps XMM0, v; // v must be 16-byte aligned for this to work.
        ...
    }
}
link|improve this question

why would this be necessary? – ratchet freak Sep 10 '11 at 23:19
3  
So that I can use movaps instead of movups in inline assembler. – Peter Alexander Sep 10 '11 at 23:20
feedback

1 Answer

If you are willing to burn an extra 16 bytes you can do the alignment your self at run time. Aside from that, I wouldn't know.

link|improve this answer
Yeah, that's what I'm doing at the moment, although it's a bit ugly and wastes a few extra cycles. – Peter Alexander Sep 11 '11 at 11:45
feedback

Your Answer

 
or
required, but never shown

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