56 lines
1.7 KiB
C
56 lines
1.7 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Zend Engine |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright © Zend Technologies Ltd., a subsidiary company of |
|
|
| Perforce Software, Inc., and Contributors. |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to the Modified BSD License that is |
|
|
| bundled with this package in the file LICENSE, and is available |
|
|
| through the World Wide Web at <https://www.php.net/license/>. |
|
|
| |
|
|
| SPDX-License-Identifier: BSD-3-Clause |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Christian Seiler <chris_se@gmx.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#include "zend.h"
|
|
#include "zend_compile.h"
|
|
#include "zend_float.h"
|
|
|
|
ZEND_API void zend_init_fpu(void) /* {{{ */
|
|
{
|
|
#if XPFPA_HAVE_CW
|
|
XPFPA_DECLARE
|
|
|
|
if (!EG(saved_fpu_cw_ptr)) {
|
|
EG(saved_fpu_cw_ptr) = (void*)&EG(saved_fpu_cw);
|
|
}
|
|
XPFPA_STORE_CW(EG(saved_fpu_cw_ptr));
|
|
XPFPA_SWITCH_DOUBLE();
|
|
#else
|
|
EG(saved_fpu_cw_ptr) = NULL;
|
|
#endif
|
|
}
|
|
/* }}} */
|
|
|
|
ZEND_API void zend_shutdown_fpu(void) /* {{{ */
|
|
{
|
|
#if XPFPA_HAVE_CW
|
|
if (EG(saved_fpu_cw_ptr)) {
|
|
XPFPA_RESTORE_CW(EG(saved_fpu_cw_ptr));
|
|
}
|
|
#endif
|
|
EG(saved_fpu_cw_ptr) = NULL;
|
|
}
|
|
/* }}} */
|
|
|
|
ZEND_API void zend_ensure_fpu_mode(void) /* {{{ */
|
|
{
|
|
XPFPA_DECLARE
|
|
|
|
XPFPA_SWITCH_DOUBLE();
|
|
}
|
|
/* }}} */
|