Align 16 for use with SIMD instructions doesn't work

Started by jj2007, June 21, 2015, 12:14:34 PM

Previous topic - Next topic

jj2007

Any ideas why this doesn't work as expected?

__declspec(align(16)) byte xms[512];

void XmmPrint(int index) {
  RECT rc;
//   __m128 xms[32]; // same problem
  __asm int 3;
  __asm lea eax, xms; // eax is 004090E4, clearly unaligned...
  __asm fxsave xms;


P.S.:
Quote from: Pelle on November 02, 2007, 02:22:02 AM
Perhaps I can do something about __declspec(align()) for variables later. It suspect it will take much more than "5 minutes", so not top priority at the moment...

P.P.S.: The locally defined version works: __declspec(align(16)) byte xms[512];