aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/README
Commit message (Collapse)AuthorAgeFilesLines
* Hybrid 64bit/32bit PowerPC portBernhard Schommer2017-05-031-2/+2
| | | | | | | | | | | | | This commit adds code generation for 64bit PowerPC architectures which execute 32bit applications. The main difference to the normal 32bit PowerPC port is that it uses the available 64bit instructions instead of using the runtime library functions. However pointers are still 32bit and the 32bit calling convention is used. In order to use this port the target architecture must be either in Server execution mode or if in Embedded execution mode the high order 32 bits of GPRs must be implemented in 32-bit mode. Furthermore the operating system must preserve the high order 32 bits of GPRs.
* C reference implementation of the int64 helper functions.Xavier Leroy2015-02-141-0/+11
In test_int64.c: don't test FP->int64 conversions when the FP argument is out of range.