Can anybody explain me what effect these two instructions cause in the assembly code generated by gcc for x86 machines:
push %ebp
movl %esp, %ebp
|
|
|
unwind's explanation is the literal truth (one minor directional error notwithstanding), but doesn't explain why.
This generates the following assembler.
Now to explain that prologue code (all the stuff before
Now your function is ready for business. Any references with a negative offset from the The final point of interest is the |
|||
|
It's typical code that you see at the beginning of a function. It saves the contents of the EBP register on the stack, and then stores the content of the current stack pointer in EBP. The stack is used during a function call to store local arguments. But in the function, the stack pointer may change because values are stored on the stack. If you save the original value of the stack, you can refer to the stored arguments via the EBP register, while you can still use (add values to) the stack. At the end of the function you will probably see the command
|
|||
|
|
This will push the 32 bit (extended) base pointer register on the stack, i.e. the stack pointer (%esp) is subtracted by four, then the value of %ebp is copied to the location that the stack pointer points to.
This copies the stack pointer register to the base pointer register. The purpose of copying the stack pointer to the base pointer is to create a stack frame, i.e. an area on the stack where a subroutine can store local data. The code in the subroutine would use the base pointer to reference the data. |
||||
|
|
|
It's part of what is known as the function prolog. It saves the current base pointer that is going to be retrieved when the function ends and sets the new ebp to the beginning of the new frame. |
|||
|
|