mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-04 22:40:25 +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
|
@ -46,7 +46,7 @@ static jit_int16_t _szs[jit_code_last_code + 1] = {
|
|||
# include "jit_hppa-sz.c"
|
||||
# elif defined(__aarch64__)
|
||||
# include "jit_aarch64-sz.c"
|
||||
# elif defined(__s390x__)
|
||||
# elif defined(__s390__) || defined(__s390x__)
|
||||
# include "jit_s390x-sz.c"
|
||||
# elif defined(__alpha__)
|
||||
# include "jit_alpha-sz.c"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue