int max(int n, ...)
I am using cdecl calling convention where the caller cleans up the variable after the callee returns.
I am interested in knowing how do the macros va_end, va_start and va_arg work?
Does the caller pass in the address of the array of arguments as the second argument to max?
If you look at the way the C language stores the parameters on the stack, the way the macros work should become clear:-
(note, depending on the hardware the stack pointer maybe one line down and the higher and lower may be swapped)
The arguments are always stored like this1, even without the
...parameter type.The
va_startmacro just sets up a pointer to the first function parameter, e.g.:-which makes
ppoint to the second parameter. Theva_argmacro does this:-The
va_endmacro just sets thepvalue toNULL.NOTES:
...parameter would switch off this ability and for the compiler to use the stack.