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.

Quick Question guys... Are these code spinets have the same alignment ?

struct sse_t {
     float sse_data[4];
};

// the array "cacheline" will be aligned to 64-byte boundary
struct sse_t alignas(64) cacheline[1000000];

Or

// every object of type sse_t will be aligned to 64-byte boundary
struct sse_t {
     float sse_data[4];
} __attribute((aligned(64)));

struct sse_t cacheline[1000000];
share|improve this question
Short answer, no. You seem to be changing two things between the snippets. What's the bigger problem you're trying to solve? – Mysticial Aug 19 '12 at 4:48
1  
Sorry, there was a typo... I am trying do declare aligned array of sse_t objects. – ARH Aug 19 '12 at 5:05

1 Answer

up vote 4 down vote accepted

Are these code spinets have the same alignment ?

Not quite. Your two examples are actually very different.

In your first example, you will get an array of sse_t objects. A sse_t object is only guaranteed 4-byte alignment. But since the entire array is aligned to 64-bytes, each sse_t object will be properly aligned for SSE access.

In your second example, you are forcing each sse_t object to be aligned to 64-bytes. But each sse_t object is only 16 bytes. So the array will be 4x larger. (You will have 48 bytes of padding at the end of each sse_t object).


struct objA {
     float sse_data[4];
};
struct objB {
     float sse_data[4];
} __attribute((aligned(64)));

int main(){
    cout << sizeof(objA) << endl;
    cout << sizeof(objB) << endl;
}

Output:

16
64

I'm pretty sure that the second case is not what you want.

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.