❑ Function prologue: A code at the beginning of a function that creates a stack frame.
* PUSH EBP
MOV EBP, ESP
MOV EBP, ESP
❑ Function epilogue: A code at the end of the function that removes the stack frame and returns.
❑ Stack frame: The stack space on memory for each function call. There are may stack frames in the stack area.
* MOV ESP, EBP
POP EBP
RET
POP EBP
RET
❑ Stack area: It is the stack data structure existing in memory. It is also called call stack.