__m128i
Visual Studio 2005
You should not access the __m128i fields directly. You can, however, see these types in the debugger. A variable of type __m128i maps to the XMM[0-7] registers.
Variables of type _m128i are automatically aligned on 16-byte boundaries.
Note |
|---|
| Using variables of type __m128i will cause the compiler to generate the SSE2 movdqa instruction. This instruction does not cause a fault on Pentium III processors but will result in silent failure, with possible side effects caused by whatever instructions movdqa translates into on Pentium III processors. |
The __m128i data type is not supported on Itanium Processor Family (IPF) processors.
Note