Do WinCE and Linux use the same calling convention on ARM? What are the differences?
The documents I've found so far do not explain very well. For example on http://msdn.microsoft.com/en-us/library/ms864497.aspx, it says "Windows CE .NET Compiler" on one line, but "the ARM compiler" on the next line, and "CLARM" at the bottom, and it's not clear whether it is referring to the same compiler or different compilers. Here's what I've found so far...
- ARM Calling Sequence Specification (WinCE) - poorly-written documentation
- ARM to C calling convention (Linux) - informal explanation
- Wikipedia - no OS is specified and it does not say how structures, floating-point or 64-bit numbers are handled, and it does not say where extra arguments are placed in case they do not fit in registers.
- Update: Procedure Call Standard for the ARM Architecture - finally I found a comprehensive document, but it doesn't say which operating systems follow the standard (or what variants or additional constraints those OSs might impose).
The reason I ask is that I'd like to try using LLVM in WinCE to generate some simple code at run-time, but it only officially supports Linux.