2003-04-24 11:35:06 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 2003 Sascha Schumann |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| 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. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Sascha Schumann <sascha@schumann.cx> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__i386__) && defined(__GNUC__)
|
|
|
|
|
|
|
|
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
|
2003-06-06 20:12:25 +08:00
|
|
|
long __tmpvar; \
|
2003-04-24 11:35:06 +08:00
|
|
|
__asm__ ("imul %3,%0\n" \
|
|
|
|
"adc $0,%1" \
|
2003-06-06 20:12:25 +08:00
|
|
|
: "=r"(__tmpvar),"=r"(usedval) \
|
2003-04-24 11:35:06 +08:00
|
|
|
: "0"(a), "r"(b), "1"(0)); \
|
|
|
|
if (usedval) (dval) = (double) (a) * (double) (b); \
|
2003-06-06 20:12:25 +08:00
|
|
|
else (lval) = __tmpvar; \
|
2003-04-24 11:35:06 +08:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
|
2003-04-29 23:06:19 +08:00
|
|
|
double __tmpvar = (double) (a) * (double) (b); \
|
2003-04-24 11:35:06 +08:00
|
|
|
\
|
2003-04-29 23:06:19 +08:00
|
|
|
if (__tmpvar >= LONG_MAX || __tmpvar <= LONG_MIN) { \
|
|
|
|
(dval) = __tmpvar; \
|
2003-04-24 11:35:06 +08:00
|
|
|
(usedval) = 1; \
|
|
|
|
} else { \
|
|
|
|
(lval) = (a) * (b); \
|
|
|
|
(usedval) = 0; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#endif
|