I'm working on a project that requires a lot of processing power, and hence have optimised a lot of the critical functions, as well as having it multithreaded to use multiple cores. I am using Intel's SSE rand function (http://software.intel.com/en-us/articles/fast-random-number-generator-on-the-intel-pentiumr-4-processor/) which by using SSE functions requires 16 byte aligned variables, and because this is multithreaded I've declared the cur_seed variable as __declspec(thread). However I'm finding that the variable isn't 16 byte aligned (most of the time it ends up with an address 0x.......8 ), which in turn generates an access violation when calling _mm_set_epi32.
According to Microsoft it should work: http://msdn.microsoft.com/en-us/library/83ythb65.aspx#vclrfthreadlocalstorageallocation
I'm using Visual Studio 2010, with an x86 project. Not sure what else is relevant so let me know if you need more info.
Anyone got any ideas on what might be wrong (project config?) or a way around it?