What does
mean? I got it from Win32Dasm....
Dominik
leave
mean? I got it from Win32Dasm....
Dominik
Dom,
Its an old timer that MASM still uses to exit a stack frame. It originally matched ENTER but neither are used much these days.
LEAVE is seen as slow but its small and has the advantage that it avoids a stall on exit from a stack frame so it still has a place for normal stack frame code.
If the call speed of a procedure actually matters which in most cases it does not, you manually write your own stack entry and exit without a stack frame.
Its an old timer that MASM still uses to exit a stack frame. It originally matched ENTER but neither are used much these days.
LEAVE is seen as slow but its small and has the advantage that it avoids a stall on exit from a stack frame so it still has a place for normal stack frame code.
If the call speed of a procedure actually matters which in most cases it does not, you manually write your own stack entry and exit without a stack frame.