The prologue and epilogue are not a part of the assembly language itself - rather, they represent a convention used by assembly language programmers, and compilers of many higher-level languages. Both of them are fairly rigid, having the same form in each function.
Note that several possible prologues can be written, resulting in slightly different stack configuration. These differences are acceptable, as long as the programmer or compiler uses the stack in the correct way inside the function.
For example, these three steps may be accomplished in 32-bit x86 assembly language by the following instructions (using AT&T syntax):
pushl %ebp
movl %esp, %ebp
subl $n, %esp
Where n is the size of the local variables, in bytes, and l means long, which occupies 4 bytes. The above sequence is typical of the output produced by the GCC compiler.A slightly different prologue is built-in to the x86 processor, and can be called with the enter instruction:
enter $n, $0Even more complex prologues can be obtained using different values (other than 0) for the second operand of the enter instruction. These prologues push several base/frame pointers to allow for nested functions, as required by languages such as Pascal.
Note that the given epilogue will reverse the effects of either of the above prologues (either the full one, or the one which uses enter).
For example, these three steps may be accomplished in 32-bit x86 assembly language by the following instructions (using AT&T syntax):
mov %ebp, %esp
pop %ebp
ret
Like the prologue, the x86 processor contains a built-in instruction which performs part of the epilogue. The following code is equivalent to the above code:
leave
retThe
leave instruction simply performs the mov and pop instructions, as outlined above.It is not uncommon for a function to contain multiple epilogues. Every function exit point must either jump to a common epilogue at the end, or contain its own epilogue. Therefore, programmers or compilers often use the combination of leave and ret to exit the function at any point. (For example, a C compiler would substitute a return statement with a leave/ret sequence).