mspgcc: A port of the GNU tools to the Texas Instruments MSP430 microcontrollers | ||
---|---|---|
<<< Previous | mspgcc's ABI | Next >>> |
Function arguments are allocated left to right. They are assigned from r15 to r12. If more parameters are passed than will fit in the registers, the rest are passed on the stack. This should be avoided since the code takes a performance hit when using variables residing on the stack.
Parameters passed to functions that have a variable argument list (printf, scanf, etc.) are all passed on the stack. Any char parameters are extended to ints.
The various functions types return the results as follows:
char, int and pointer functions return their values r15
long and float functions return their values in r15:r14
long long functions return their values r15:r14:r13:r12
If the returned value wider than 64 bits, it is returned in memory. The first 'hidden' argument to such a function call will be a memory address. All other arguments will be allocated in the usual way, from r14.
<<< Previous | Home | Next >>> |
mspgcc's ABI | Up | Call definitions |