Re: function signature and reference parameter
On 2 Dez., 14:36, Ralf Goertz wrote:
Victor Bazarov wrote:
[...]
My questions are: Can I rely on this?
On what, exactly?
On the fact that the compiled library is the same whether or not I use
references for the parameters. At least that's what happens on my
system. Whether the parameter is changed depends only on how I cast the
function pointer in the calling program. But as you pointed out that is
probably UB:
It works in your case because of the (current) G++ ABI. This is an
implementation-specific detail. Objects of "complicated types" are
always passed by reference to a function under the hood and the caller
has to locally create a temporary copy if the function was declared to
take the parameter by value. Similarly, objects of "complicated types"
are returned from functions by in-place construction in an
uninitialized memory area which is given by an additional (hidden)
pointer parameter. This kind of binary interface allows many of the
copy elisions (including return value optimization) which the C++
standard explicitly allows.
But again: This is all implementation-specific. According to the C++
standard, invoking a function via a pointer where the pointer's type
doesn't match the function's actual type is definitely undefined
behaviour.
Cheers!
SG