Displaying 1 result from an estimated 1 matches for "argumentsizespecifies".
2013 Oct 02
2
[LLVMdev] builtin_apply?
...lock.
--- Built-in Function: void **__builtin_apply*(void(*function)(), void
*arguments, size_t size)
This built-in function invokesfunctionwith a copy of the parameters
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. Th...