4 constexpr uint32_t eax
= 0x05060708;
5 constexpr uint32_t ebx
= 0x15161718;
6 constexpr uint32_t ecx
= 0x25262728;
7 constexpr uint32_t edx
= 0x35363738;
8 constexpr uint32_t esp
= 0x45464748;
9 constexpr uint32_t ebp
= 0x55565758;
10 constexpr uint32_t esi
= 0x65666768;
11 constexpr uint32_t edi
= 0x75767778;
15 "movd %%esp, %%mm0\n\t"
16 "movd %%ebp, %%mm1\n\t"
24 "movd %%mm0, %%esp\n\t"
25 "movd %%mm1, %%ebp\n\t"
27 : "a"(eax
), "b"(ebx
), "c"(ecx
), "d"(edx
), "i"(esp
), "i"(ebp
), "S"(esi
),