随笔分类 -
x86
-
x86 Tips and Tricks
摘要:The following tips and tricks put some of the techniques described above into practice.Initializing Data:- Set a register to zero:movd eax, 0Faster:xor eax, eaxpxor mm0, mm0pxor xmm0, xmm0- Set all bits of MM0 to 1s:C declaration: unsigned temp[4] = {0xFFFFFFFF, 0xFFFFFFFF,0xFFFFFFFF, 0xFFFFFFFF};as
阅读全文
|