mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-04 05:50:26 +02:00
S390: Add support for 32 bit.
* include/lightning.h, include/lightning/jit_private.h, include/lightning/jit_s390x.h, lib/jit_disasm.c, lib/jit_s390x-cpu.c, lib/jit_s390x-fpu.c, lib/jit_s390x-sz.c, lib/jit_s390x.c, lib/jit_size.c, lib/lightning.c: Add support for generating jit for s390 32 bit. This change also removed %f15 from the list of temporaries fpr registers; it was not being used, but if were, it would corrupt the stack frame because the spill address would overwrite grp offsets.
This commit is contained in:
parent
af9df5faeb
commit
32c4f90a2b
11 changed files with 876 additions and 173 deletions
|
@ -140,7 +140,7 @@ typedef jit_int32_t jit_fpr_t;
|
|||
# include <lightning/jit_hppa.h>
|
||||
#elif defined(__aarch64__)
|
||||
# include <lightning/jit_aarch64.h>
|
||||
#elif defined(__s390x__)
|
||||
#elif defined(__s390__) || defined(__s390x__)
|
||||
# include <lightning/jit_s390x.h>
|
||||
#elif defined(__alpha__)
|
||||
# include <lightning/jit_alpha.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue