
AsmJit Project
Machine Code Generation for C++
Function signature.
Contains information about function return type, count of arguments and their TypeIds. Function signature is a low level structure which doesn't contain platform specific or calling convention specific information.
Initializes the function signature.
Returns the calling convention.
Sets the calling convention to ccId
;.
Tests whether the function has variable number of arguments (...).
Returns the variable arguments (...) index, kNoVarArgs
if none.
Sets the variable arguments (...) index to index
.
Resets the variable arguments index (making it a non-va function).
Returns the number of function arguments.
Returns the return value type.
Returns the type of the argument at index i
.
Returns the array of function arguments' types.
Calling convention id.
Count of arguments.
Index of a first VA or kNoVarArgs
.
Return value TypeId.
Function arguments TypeIds.