2001-04-09 20:54:03 +01:00
|
|
|
/*************************************************************************
|
2008-12-04 23:33:32 +00:00
|
|
|
* *
|
|
|
|
* YAP Prolog *
|
|
|
|
* *
|
|
|
|
* Yap Prolog was developed at NCCUP - Universidade do Porto *
|
|
|
|
* *
|
|
|
|
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
|
|
|
|
* *
|
|
|
|
**************************************************************************
|
|
|
|
* *
|
|
|
|
* File: arithi2.c *
|
|
|
|
* Last rev: *
|
|
|
|
* mods: *
|
|
|
|
* comments: arithmetical expression evaluation *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* This file implements fast binary math operations for YAP
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-12-09 12:54:27 +00:00
|
|
|
inline static int
|
|
|
|
add_overflow(Int x, Int i, Int j)
|
|
|
|
{
|
|
|
|
return (i & j & ~x) | (~i & ~j & x);
|
|
|
|
}
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
inline static Term
|
|
|
|
add_int(Int i, Int j)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
Int x = i+j;
|
|
|
|
#if USE_GMP
|
2008-11-28 15:54:08 +00:00
|
|
|
/* Integer overflow, we need to use big integers */
|
|
|
|
Int overflow = (i & j & ~x) | (~i & ~j & x);
|
|
|
|
if (overflow) {
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_add_ints(i, j));
|
2008-11-28 15:54:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef BEAM
|
|
|
|
RINT(x);
|
|
|
|
return( MkIntegerTerm (x));
|
|
|
|
#else
|
|
|
|
RINT(x);
|
|
|
|
#endif
|
|
|
|
}
|
2006-01-02 02:16:19 +00:00
|
|
|
|
2008-12-09 12:54:27 +00:00
|
|
|
inline static int
|
|
|
|
sub_overflow(Int x, Int i, Int j)
|
|
|
|
{
|
|
|
|
return (i & ~j & ~x) | (~i & j & x);
|
|
|
|
}
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
inline static Term
|
|
|
|
sub_int(Int i, Int j)
|
2008-11-28 15:54:08 +00:00
|
|
|
{
|
|
|
|
Int x = i-j;
|
|
|
|
#if USE_GMP
|
|
|
|
Int overflow = (i & ~j & ~x) | (~i & j & x);
|
|
|
|
/* Integer overflow, we need to use big integers */
|
|
|
|
if (overflow) {
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_sub_ints(i, j));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
2005-09-08 22:59:58 +01:00
|
|
|
#ifdef BEAM
|
|
|
|
RINT(x);
|
|
|
|
return( MkIntegerTerm (x));
|
|
|
|
#else
|
2001-04-09 20:54:03 +01:00
|
|
|
RINT(x);
|
2005-09-08 22:59:58 +01:00
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#ifdef __i386__
|
2008-12-04 23:33:32 +00:00
|
|
|
#define DO_MULTI() { Int tmp1; \
|
|
|
|
__asm__ ("imull %3\n\t movl $0,%1\n\t jno 0f\n\t movl $1,%1\n\t 0:" \
|
|
|
|
: "=a" (z), \
|
|
|
|
"=d" (tmp1) \
|
|
|
|
: "a" (i1), \
|
|
|
|
"rm" (i2) \
|
|
|
|
: "cc" ); \
|
|
|
|
if (tmp1) goto overflow; \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
#define OPTIMIZE_MULTIPLI 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-12-09 12:54:27 +00:00
|
|
|
|
|
|
|
inline static int
|
|
|
|
mul_overflow(Int z, Int i1, Int i2)
|
|
|
|
{
|
|
|
|
return (i2 && z/i2 != i1);
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifndef OPTIMIZE_MULTIPLI
|
2008-12-04 23:33:32 +00:00
|
|
|
#define DO_MULTI() z = i1*i2; \
|
|
|
|
if (i2 && z/i2 != i1) goto overflow
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
inline static Term
|
|
|
|
times_int(Int i1, Int i2) {
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef USE_GMP
|
|
|
|
Int z;
|
|
|
|
DO_MULTI();
|
|
|
|
RINT(z);
|
|
|
|
overflow:
|
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_mul_ints(i1, i2));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
RINT(i1*i2);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
|
|
|
|
#if USE_GMP
|
2008-12-09 12:54:27 +00:00
|
|
|
static inline int
|
|
|
|
sl_overflow(Int x,Int i)
|
2008-12-04 23:33:32 +00:00
|
|
|
{
|
|
|
|
CELL t = (1<<x)-1;
|
|
|
|
return (t & i) != i;
|
|
|
|
}
|
2008-12-09 12:54:27 +00:00
|
|
|
|
|
|
|
static inline int
|
|
|
|
sr_overflow(Int x,Int i)
|
|
|
|
{
|
|
|
|
CELL t = (1>>x)-1;
|
|
|
|
return (t & i) != i;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline Int
|
|
|
|
sl_overflow(Int x,Int i)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Int
|
|
|
|
sr_overflow(Int x,Int i)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
inline static Term
|
|
|
|
do_sll(Int i, Int j)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
#if USE_GMP
|
|
|
|
Int x = (8*sizeof(CELL)-2)-j;
|
|
|
|
|
|
|
|
if (x < 0||
|
2008-12-09 12:54:27 +00:00
|
|
|
sl_overflow(x,i)) {
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_sll_ints(i, j));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
RINT(i << j);
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
static inline Term
|
|
|
|
p_plus(Term t1, Term t2) {
|
|
|
|
switch (ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* two integers */
|
2008-12-04 23:33:32 +00:00
|
|
|
return add_int(IntegerOfTerm(t1),IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
|
|
|
{
|
|
|
|
/* integer, double */
|
|
|
|
Float fl1 = (Float)IntegerOfTerm(t1);
|
|
|
|
Float fl2 = FloatOfTerm(t2);
|
2008-12-04 23:33:32 +00:00
|
|
|
RFLOAT(fl1+fl2);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
return(Yap_gmp_add_int_big(IntegerOfTerm(t1), Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* float * integer */
|
2008-12-04 23:33:32 +00:00
|
|
|
RFLOAT(FloatOfTerm(t1)+IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
RFLOAT(FloatOfTerm(t1)+FloatOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
return(Yap_gmp_add_float_big(FloatOfTerm(t1),Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_add_int_big(IntegerOfTerm(t2), Yap_BigIntOfTerm(t1)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case big_int_e:
|
|
|
|
/* two bignums */
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_add_big_big(Yap_BigIntOfTerm(t1), Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_add_float_big(FloatOfTerm(t2),Yap_BigIntOfTerm(t1)));
|
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
|
|
|
|
static Term
|
|
|
|
p_minus(Term t1, Term t2) {
|
|
|
|
switch (ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* two integers */
|
2008-12-04 23:33:32 +00:00
|
|
|
return sub_int(IntegerOfTerm(t1), IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
|
|
|
{
|
|
|
|
/* integer, double */
|
2008-12-04 23:33:32 +00:00
|
|
|
Float fl1 = (Float)IntegerOfTerm(t1);
|
|
|
|
Float fl2 = FloatOfTerm(t2);
|
|
|
|
RFLOAT(fl1-fl2);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
return(Yap_gmp_sub_int_big(IntegerOfTerm(t1), Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
break;
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* float * integer */
|
2008-12-04 23:33:32 +00:00
|
|
|
RFLOAT(FloatOfTerm(t1)-IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2006-01-02 02:16:19 +00:00
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
RFLOAT(FloatOfTerm(t1)-FloatOfTerm(t2));
|
2006-01-02 02:16:19 +00:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
case big_int_e:
|
|
|
|
#ifdef USE_GMP
|
|
|
|
return(Yap_gmp_sub_float_big(FloatOfTerm(t1),Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
break;
|
2001-04-09 20:54:03 +01:00
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_sub_big_int(Yap_BigIntOfTerm(t1), IntegerOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_sub_big_big(Yap_BigIntOfTerm(t1), Yap_BigIntOfTerm(t2)));
|
|
|
|
case double_e:
|
|
|
|
return(Yap_gmp_sub_big_float(Yap_BigIntOfTerm(t1),FloatOfTerm(t2)));
|
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
static Term
|
|
|
|
p_times(Term t1, Term t2) {
|
|
|
|
switch (ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* two integers */
|
2008-12-04 23:33:32 +00:00
|
|
|
return(times_int(IntegerOfTerm(t1),IntegerOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
/* integer, double */
|
|
|
|
Float fl1 = (Float)IntegerOfTerm(t1);
|
|
|
|
Float fl2 = FloatOfTerm(t2);
|
|
|
|
RFLOAT(fl1*fl2);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case big_int_e:
|
|
|
|
#ifdef USE_GMP
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_mul_int_big(IntegerOfTerm(t1), Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
break;
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
/* float * integer */
|
|
|
|
RFLOAT(FloatOfTerm(t1)*IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
RFLOAT(FloatOfTerm(t1)*FloatOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
return(Yap_gmp_mul_float_big(FloatOfTerm(t1),Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_mul_int_big(IntegerOfTerm(t2), Yap_BigIntOfTerm(t1)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case big_int_e:
|
|
|
|
/* two bignums */
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_mul_big_big(Yap_BigIntOfTerm(t1), Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_mul_float_big(FloatOfTerm(t2),Yap_BigIntOfTerm(t1)));
|
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
|
|
|
|
static Term
|
|
|
|
p_div(Term t1, Term t2) {
|
|
|
|
switch (ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
/* two integers */
|
|
|
|
{
|
|
|
|
Int i2 = IntegerOfTerm(t2);
|
|
|
|
|
|
|
|
if (i2 == 0) {
|
|
|
|
Yap_Error(EVALUATION_ERROR_ZERO_DIVISOR, t2, "// /2");
|
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
RINT(IntegerOfTerm(t1) / i2);
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "// /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
/* Cool */
|
|
|
|
RINT(0);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
break;
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t1, "// /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
/* dividing a bignum by an integer */
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
Term t= Yap_gmp_div_big_int(Yap_BigIntOfTerm(t1), IntegerOfTerm(t2));
|
|
|
|
if (t==0L) {
|
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
return(t);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
/* two bignums */
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
Term t;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
t = Yap_gmp_div_big_big(Yap_BigIntOfTerm(t1), Yap_BigIntOfTerm(t2));
|
|
|
|
if (t==0L) {
|
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
return(t);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
case double_e:
|
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "// /2");
|
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
static Term
|
|
|
|
p_and(Term t1, Term t2) {
|
|
|
|
switch (ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* two integers */
|
2008-12-04 23:33:32 +00:00
|
|
|
RINT(IntegerOfTerm(t1) & IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "/\\ /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
return(Yap_gmp_and_int_big(IntegerOfTerm(t1),Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t1, "/\\ /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
/* anding a bignum with an integer is easy */
|
|
|
|
return(Yap_gmp_and_int_big(IntegerOfTerm(t2),Yap_BigIntOfTerm(t1)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case big_int_e:
|
|
|
|
/* two bignums */
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_and_big_big(Yap_BigIntOfTerm(t2), Yap_BigIntOfTerm(t1)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "/\\ /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
|
|
|
|
static Term
|
|
|
|
p_or(Term t1, Term t2) {
|
|
|
|
switch(ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
/* two integers */
|
|
|
|
RINT(IntegerOfTerm(t1) | IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "\\/ /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
return(Yap_gmp_ior_int_big(IntegerOfTerm(t1),Yap_BigIntOfTerm(t2)));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
break;
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t1, "\\/ /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* anding a bignum with an integer is easy */
|
2008-12-04 23:33:32 +00:00
|
|
|
return(Yap_gmp_ior_int_big(IntegerOfTerm(t2),Yap_BigIntOfTerm(t1)));
|
|
|
|
case big_int_e:
|
|
|
|
/* two bignums */
|
|
|
|
return(Yap_gmp_ior_big_big(Yap_BigIntOfTerm(t2), Yap_BigIntOfTerm(t1)));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "\\/ /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2006-01-02 02:16:19 +00:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
RERROR();
|
2006-01-02 02:16:19 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
static Term
|
|
|
|
p_sll(Term t1, Term t2) {
|
|
|
|
switch (ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* two integers */
|
2006-01-02 02:16:19 +00:00
|
|
|
if (IntegerOfTerm(t2) < 0) {
|
2007-01-26 21:10:13 +00:00
|
|
|
Int i2 = IntegerOfTerm(t2);
|
|
|
|
if (i2 == Int_MIN) {
|
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, ">>/2");
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
RINT(IntegerOfTerm(t1) >> -i2);
|
2006-01-02 02:16:19 +00:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
return do_sll(IntegerOfTerm(t1),IntegerOfTerm(t2));
|
2001-04-09 20:54:03 +01:00
|
|
|
case double_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "<</2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, "<</2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case double_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t1, "<< /2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
Term t = Yap_gmp_sll_big_int(Yap_BigIntOfTerm(t1), IntegerOfTerm(t2));
|
|
|
|
if (t == 0L) {
|
2008-11-28 15:54:08 +00:00
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, ">>/2");
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
return(t);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case big_int_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, "<</2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case double_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, "<</2");
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2006-01-02 02:16:19 +00:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
2008-12-04 23:33:32 +00:00
|
|
|
}
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
static Term
|
|
|
|
p_slr(Term t1, Term t2) {
|
|
|
|
switch (ETypeOfTerm(t1)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
/* two integers */
|
2006-01-02 02:16:19 +00:00
|
|
|
if (IntegerOfTerm(t2) < 0) {
|
2007-01-26 21:10:13 +00:00
|
|
|
Int i2 = IntegerOfTerm(t2);
|
|
|
|
if (i2 == Int_MIN) {
|
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, ">>/2");
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
return do_sll(IntegerOfTerm(t1), -i2);
|
2006-01-02 02:16:19 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
RINT(IntegerOfTerm(t1) >> IntegerOfTerm(t2));
|
|
|
|
case double_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, ">>/2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, ">>/2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case double_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t1, ">>/2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case big_int_e:
|
2008-12-04 23:33:32 +00:00
|
|
|
#ifdef USE_GMP
|
|
|
|
switch (ETypeOfTerm(t2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
case long_int_e:
|
|
|
|
{
|
2008-12-04 23:33:32 +00:00
|
|
|
Term t;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2008-12-04 23:33:32 +00:00
|
|
|
t = Yap_gmp_sll_big_int(Yap_BigIntOfTerm(t1), -IntegerOfTerm(t2));
|
|
|
|
if (t == 0L) {
|
2008-11-28 15:54:08 +00:00
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, ">>/2");
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
return(t);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
case big_int_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(DOMAIN_ERROR_SHIFT_COUNT_OVERFLOW, t2, ">>/2");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
case double_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t2, ">>/2");
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make GCC happy */
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
|
|
|
}
|
2006-01-02 23:19:10 +00:00
|
|
|
#endif
|
2008-12-04 23:33:32 +00:00
|
|
|
case db_ref_e:
|
2001-04-09 20:54:03 +01:00
|
|
|
RERROR();
|
2008-12-04 23:33:32 +00:00
|
|
|
}
|
|
|
|
RERROR();
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2008-12-04 23:33:32 +00:00
|
|
|
|