1. The caller pushes each of the function’s arguments on the stack one by one, normally using the push x86 instruction.
    • Arguments are pushed in right-to-left order. The stack grows downward: each push decrements the stack pointer, then stores into the location it now points to, like the C expression *(--sp) = value.
  2. The caller pushes the address of its next instruction (the return address) on the stack and jumps to the first instruction of the callee. A single 80x86 instruction, call, does both.
  3. The callee executes. When it takes control, the stack pointer points to the return address, the first argument is just above it, the second argument is just above the first argument, and so on.
  4. If the callee has a return value, it stores it into register eax.
  5. The callee returns by popping the return address from the stack and jumping to the location it specifies, using the 80x86 ret instruction.
  6. The caller pops the arguments off the stack.