mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
![]() On win64, xmm6-xmm15 are preserved registers, but the prologues and epilogues of JITted code don't handle these. The issue occurs when calling into the JIT code again via an internal handler (like call_user_func). Therefore, we want to save/restore xmm registers upon entering/leaving execute_ex. Since MSVC x64 does not support inline assembly, we create an assembly wrapper around the real execute_ex function. The alternative is to always save/restore these xmm registers into the fixed call frame, but this causes unnecessary overhead. The same issue occurs for ARM64 platforms for floating point register 8 to 15. However, there we can use inline asm to fix this. Closes GH-18352. |
||
---|---|---|
.. | ||
jump_arm64_aapcs_elf_gas.S | ||
jump_arm64_aapcs_macho_gas.S | ||
jump_arm64_aapcs_pe_armasm.asm | ||
jump_arm_aapcs_elf_gas.S | ||
jump_arm_aapcs_macho_gas.S | ||
jump_combined_sysv_macho_gas.S | ||
jump_i386_ms_pe_masm.asm | ||
jump_i386_sysv_elf_gas.S | ||
jump_i386_sysv_macho_gas.S | ||
jump_loongarch64_sysv_elf_gas.S | ||
jump_mips32_o32_elf_gas.S | ||
jump_mips64_n64_elf_gas.S | ||
jump_ppc32_sysv_elf_gas.S | ||
jump_ppc32_sysv_macho_gas.S | ||
jump_ppc32_sysv_xcoff_gas.S | ||
jump_ppc64_sysv_elf_gas.S | ||
jump_ppc64_sysv_macho_gas.S | ||
jump_ppc64_sysv_xcoff_gas.S | ||
jump_riscv64_sysv_elf_gas.S | ||
jump_s390x_sysv_elf_gas.S | ||
jump_sparc64_sysv_elf_gas.S | ||
jump_x86_64_ms_pe_gas.S | ||
jump_x86_64_ms_pe_masm.asm | ||
jump_x86_64_sysv_elf_gas.S | ||
jump_x86_64_sysv_macho_gas.S | ||
LICENSE | ||
make_arm64_aapcs_elf_gas.S | ||
make_arm64_aapcs_macho_gas.S | ||
make_arm64_aapcs_pe_armasm.asm | ||
make_arm_aapcs_elf_gas.S | ||
make_arm_aapcs_macho_gas.S | ||
make_combined_sysv_macho_gas.S | ||
make_i386_ms_pe_masm.asm | ||
make_i386_sysv_elf_gas.S | ||
make_i386_sysv_macho_gas.S | ||
make_loongarch64_sysv_elf_gas.S | ||
make_mips32_o32_elf_gas.S | ||
make_mips64_n64_elf_gas.S | ||
make_ppc32_sysv_elf_gas.S | ||
make_ppc32_sysv_macho_gas.S | ||
make_ppc32_sysv_xcoff_gas.S | ||
make_ppc64_sysv_elf_gas.S | ||
make_ppc64_sysv_macho_gas.S | ||
make_ppc64_sysv_xcoff_gas.S | ||
make_riscv64_sysv_elf_gas.S | ||
make_s390x_sysv_elf_gas.S | ||
make_sparc64_sysv_elf_gas.S | ||
make_x86_64_ms_pe_gas.S | ||
make_x86_64_ms_pe_masm.asm | ||
make_x86_64_sysv_elf_gas.S | ||
make_x86_64_sysv_macho_gas.S | ||
save_xmm_x86_64_ms_masm.asm |