I've been trying to understand the purpose of the 0x40
REX opcode for ASM x64 instructions. Like for instance, in this function prologue from Kernel32.dll:
As you see they use push rbx
as:
40 53 push rbx
But using just the 53h
opcode (without the prefix) also produces the same result:
According to this site, the layout for the REX prefix is as follows:
So 40h
opcode seems to be not doing anything. Can someone explain its purpose?