mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-25 20:50:31 +02:00
Implement new, typed, jit_htonr* interfaces
* include/lightning.h: Split jit_htonr in the new 3 interfaces jit_htonr_us, jit_htonr_ui and jit_htonr_ul, the later only available on 64 bit. The plain/untyped jit_htonr macro call maps to the wordsize one. * lib/jit_aarch64-cpu.c, lib/jit_aarch64-sz.c, lib/jit_aarch64.c, lib/jit_alpha-cpu.c, lib/jit_alpha-sz.c, lib/jit_alpha.c, lib/jit_arm-cpu.c, lib/jit_arm-sz.c, lib/jit_arm.c, lib/jit_hppa-cpu.c, lib/jit_hppa-sz.c, lib/jit_hppa.c, lib/jit_ia64-cpu.c, lib/jit_ia64-sz.c, lib/jit_ia64.c, lib/jit_mips-cpu.c, lib/jit_mips-sz.c, lib/jit_mips.c, lib/jit_ppc-cpu.c, lib/jit_ppc-sz.c, lib/jit_ppc.c, lib/jit_s390x-cpu.c, lib/jit_s390x-sz.c, lib/jit_s390x.c, lib/jit_sparc-cpu.c, lib/jit_sparc-sz.c, lib/jit_sparc.c, lib/jit_x86-cpu.c, lib/jit_x86-sz.c, lib/jit_x86.c: Update backends for the new jit_htonr*. * check/lightning.c, lib/jit_names.c, lib/lightning.c: Update for the new jit_htonr* interfaces. * check/Makefile.am: Update for new test cases. * check/hton.ok, check/hton.tst: New test cases.
This commit is contained in:
parent
fdf41c1fa4
commit
88aa2fcad2
38 changed files with 630 additions and 112 deletions
|
@ -1237,7 +1237,8 @@ _jit_classify(jit_state_t *_jit, jit_code_t code)
|
|||
case jit_code_extr_us: case jit_code_extr_i: case jit_code_extr_ui:
|
||||
case jit_code_truncr_f_i: case jit_code_truncr_f_l:
|
||||
case jit_code_truncr_d_i: case jit_code_truncr_d_l:
|
||||
case jit_code_htonr: case jit_code_ldr_c: case jit_code_ldr_uc:
|
||||
case jit_code_htonr_us: case jit_code_htonr_ui: case jit_code_htonr_ul:
|
||||
case jit_code_ldr_c: case jit_code_ldr_uc:
|
||||
case jit_code_ldr_s: case jit_code_ldr_us: case jit_code_ldr_i:
|
||||
case jit_code_ldr_ui: case jit_code_ldr_l: case jit_code_negr_f:
|
||||
case jit_code_absr_f: case jit_code_sqrtr_f: case jit_code_movr_f:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue