php-src/Zend/zend_multiply.h

48 lines
1.9 KiB
C
Raw Normal View History

2003-04-24 03:35:06 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) 2003-2004 Sascha Schumann |
2003-04-24 03:35:06 +00: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 |
| available through the world-wide-web at the following url: |
2003-04-24 03:35:06 +00: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> |
+----------------------------------------------------------------------+
*/
2003-06-10 22:39:29 +00:00
/* $Id$ */
2003-04-24 03:35:06 +00:00
#if defined(__i386__) && defined(__GNUC__)
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
2003-06-06 12:12:25 +00:00
long __tmpvar; \
2003-04-24 03:35:06 +00:00
__asm__ ("imul %3,%0\n" \
"adc $0,%1" \
2003-06-06 12:12:25 +00:00
: "=r"(__tmpvar),"=r"(usedval) \
2003-04-24 03:35:06 +00:00
: "0"(a), "r"(b), "1"(0)); \
if (usedval) (dval) = (double) (a) * (double) (b); \
2003-06-06 12:12:25 +00:00
else (lval) = __tmpvar; \
2003-04-24 03:35:06 +00:00
} while (0)
#else
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
double __tmpvar = (double) (a) * (double) (b); \
2003-04-24 03:35:06 +00:00
\
if (__tmpvar >= LONG_MAX || __tmpvar <= LONG_MIN) { \
(dval) = __tmpvar; \
2003-04-24 03:35:06 +00:00
(usedval) = 1; \
} else { \
(lval) = (a) * (b); \
(usedval) = 0; \
} \
} while (0)
#endif