Is there a way of pushing a packed doubleword integer from XMM register to the stack? and then later on pop it back when needed?
Ideally I am looking for something
I’d recommend to use a separate, 16-bit aligned stack for this purpose, so you can use movdqa instead of movdqu. There is a slight difference in execution time between these 2 instructions!