Displaying 1 result from an estimated 1 matches for "byfunction".
Did you mean:
myfunction
2013 Oct 02
2
[LLVMdev] builtin_apply?
...rs
described byargumentsandsize.
The value ofargumentsshould be the value returned
by|__builtin_apply_args|. The argumentsizespecifies the size of the
stack argument data, in bytes.
This function returns a pointer to data describing how to return
whatever value is returned byfunction. The data is saved in a block
of memory allocated on the stack.
It is not always simple to compute the proper value forsize. The
value is used by|__builtin_apply|to compute the amount of data that
should be pushed on the stack and copied from the incoming argument
area.
----...