mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-26 05:00:28 +02:00
New aarch64 port built on the Foundation v8 emulator.
* include/lightning/jit_aarch64.h, lib/jit_aarch64-cpu.c, lib/jit_aarch64-fpu.c, lib/jit_aarch64.c: New files implementing the new aarch64 port, as a new architecture, not as an expansion of the existing armv[4-7] port. * check/lightning.c: Add aarch64 support and a small change to recognize character constants as immediate values. * check/float.tst: Add aarch64 preprocessor conditionals to select proper expected value when converting [+-]Inf and NaN to integer. * include/lightning/jit_arm.h, lib/jit_arm.c: Minor changes to better match the new aarch64 files. * configure.ac, include/lightning.h, include/lightning/Makefile.am, include/lightning/jit_private.h, lib/Makefile.am, lib/lightning.c: Minor adjustments for the aarch64 port.
This commit is contained in:
parent
4f9b9d9b2e
commit
89a0b7a10b
15 changed files with 4498 additions and 31 deletions
|
@ -124,6 +124,8 @@ typedef jit_int32_t jit_fpr_t;
|
|||
# include <lightning/jit_ia64.h>
|
||||
#elif defined(__hppa__)
|
||||
# include <lightning/jit_hppa.h>
|
||||
#elif defined(__aarch64__)
|
||||
# include <lightning/jit_aarch64.h>
|
||||
#endif
|
||||
|
||||
#define jit_flag_node 0x00000001 /* patch node not absolute */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue