mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
49551d7c29
Fixes GH-10398 The stack was misaligned upon entering the trampoline function [1], this causes a CPU trap when the SSE instruction is executed to copy data from the stack. This was fixed upstream [2]. This commit syncs all upstream changes from the boost/context assembly files to our copy. [1] https://github.com/php/php-src/pull/10407#issuecomment-1404180877 [2] https://github.com/boostorg/context/pull/219 Closes GH-10407.
94 lines
3.7 KiB
ArmAsm
94 lines
3.7 KiB
ArmAsm
/*
|
|
Copyright Oliver Kowalke 2009.
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
(See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
|
|
/****************************************************************************************
|
|
* *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* | 0x0 | 0x4 | 0x8 | 0xc | 0x10 | 0x14 | 0x18 | 0x1c | *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* | fc_mxcsr|fc_x87_cw| guard | EDI | ESI | EBX | EBP | EIP | *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* | 0x20 | 0x24 | 0x28 | | *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* | hidden | to | data | | *
|
|
* ---------------------------------------------------------------------------------- *
|
|
* *
|
|
****************************************************************************************/
|
|
|
|
.file "jump_i386_sysv_elf_gas.S"
|
|
.text
|
|
.globl jump_fcontext
|
|
.align 2
|
|
.type jump_fcontext,@function
|
|
jump_fcontext:
|
|
leal -0x1c(%esp), %esp /* prepare stack */
|
|
|
|
#if !defined(BOOST_USE_TSX)
|
|
stmxcsr (%esp) /* save MMX control- and status-word */
|
|
fnstcw 0x4(%esp) /* save x87 control-word */
|
|
#endif
|
|
|
|
#if defined(BOOST_CONTEXT_TLS_STACK_PROTECTOR)
|
|
movl %gs:0x14, %ecx /* read stack guard from TLS record */
|
|
movl %ecx, 0x8(%esp) /* save stack guard */
|
|
#endif
|
|
|
|
movl %edi, 0xc(%esp) /* save EDI */
|
|
movl %esi, 0x10(%esp) /* save ESI */
|
|
movl %ebx, 0x14(%esp) /* save EBX */
|
|
movl %ebp, 0x18(%esp) /* save EBP */
|
|
|
|
/* store ESP (pointing to context-data) in ECX */
|
|
movl %esp, %ecx
|
|
|
|
/* first arg of jump_fcontext() == fcontext to jump to */
|
|
movl 0x24(%esp), %eax
|
|
|
|
/* second arg of jump_fcontext() == data to be transferred */
|
|
movl 0x28(%esp), %edx
|
|
|
|
/* restore ESP (pointing to context-data) from EAX */
|
|
movl %eax, %esp
|
|
|
|
/* address of returned transport_t */
|
|
movl 0x20(%esp), %eax
|
|
/* return parent fcontext_t */
|
|
movl %ecx, (%eax)
|
|
/* return data */
|
|
movl %edx, 0x4(%eax)
|
|
|
|
movl 0x1c(%esp), %ecx /* restore EIP */
|
|
|
|
#if !defined(BOOST_USE_TSX)
|
|
ldmxcsr (%esp) /* restore MMX control- and status-word */
|
|
fldcw 0x4(%esp) /* restore x87 control-word */
|
|
#endif
|
|
|
|
#if defined(BOOST_CONTEXT_TLS_STACK_PROTECTOR)
|
|
movl 0x8(%esp), %edx /* load stack guard */
|
|
movl %edx, %gs:0x14 /* restore stack guard to TLS record */
|
|
#endif
|
|
|
|
movl 0xc(%esp), %edi /* restore EDI */
|
|
movl 0x10(%esp), %esi /* restore ESI */
|
|
movl 0x14(%esp), %ebx /* restore EBX */
|
|
movl 0x18(%esp), %ebp /* restore EBP */
|
|
|
|
leal 0x24(%esp), %esp /* prepare stack */
|
|
|
|
/* jump to context */
|
|
jmp *%ecx
|
|
.size jump_fcontext,.-jump_fcontext
|
|
|
|
/* Mark that we don't need executable stack. */
|
|
.section .note.GNU-stack,"",%progbits
|