2003-04-24 11:35:06 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2007-01-01 17:29:37 +08:00
|
|
|
| Copyright (c) 1998-2007 Zend Technologies Ltd. (http://www.zend.com) |
|
2003-04-24 11:35:06 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2003-04-24 11:35:06 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2004-03-18 06:23:15 +08:00
|
|
|
| Authors: Sascha Schumann <sascha@schumann.cx> |
|
|
|
|
| Ard Biesheuvel <ard@ard.nu> |
|
2003-04-24 11:35:06 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-06-11 06:39:29 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-03-18 06:23:15 +08:00
|
|
|
#if defined(__i386__) && defined(__GNUC__)
|
|
|
|
|
|
|
|
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
|
|
|
|
long __tmpvar; \
|
|
|
|
__asm__ ("imul %3,%0\n" \
|
|
|
|
"adc $0,%1" \
|
|
|
|
: "=r"(__tmpvar),"=r"(usedval) \
|
|
|
|
: "0"(a), "r"(b), "1"(0)); \
|
|
|
|
if (usedval) (dval) = (double) (a) * (double) (b); \
|
|
|
|
else (lval) = __tmpvar; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2004-03-17 17:25:52 +08:00
|
|
|
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
|
2004-03-18 00:40:56 +08:00
|
|
|
long __lres = (a) * (b); \
|
|
|
|
double __dres = (double)(a) * (double)(b); \
|
|
|
|
double __delta = (double) __lres - __dres; \
|
|
|
|
if ( ((usedval) = (( __dres + __delta ) != __dres))) { \
|
|
|
|
(dval) = __dres; \
|
2004-03-17 17:25:52 +08:00
|
|
|
} else { \
|
2004-03-18 00:40:56 +08:00
|
|
|
(lval) = __lres; \
|
2004-03-17 17:25:52 +08:00
|
|
|
} \
|
2003-04-24 11:35:06 +08:00
|
|
|
} while (0)
|
2004-03-18 06:23:15 +08:00
|
|
|
|
|
|
|
#endif
|