Here is how you push a register. I assume we are talking about x86.
push ebx
push eax
It is pushed on stack. The value of ESP register is decremented to size of pushed value as stack grows downwards in x86 systems.
It is needed to preserve the values. The general usage is
push eax ; preserve the value of eax
call some_method ; some method is called which will put return value in eax
mov edx, eax ; move the return value to edx
pop eax ; restore original eax
A push is a single instruction in x86, which does two things internally.
- Store the pushed value at current address of
ESP register.
- Decrement the
ESP register to size of pushed value.
b,w,l, orqto denote the size of the memory being manipulated. Ex:pushl %eaxandpopl %eax– Hawken Apr 14 '12 at 16:34%eaxis always 32 bit in size. – hirschhornsalz May 2 '12 at 9:38