2005-05-27 23:27:59 +01:00
|
|
|
/*************************************************************************
|
|
|
|
* *
|
|
|
|
* YAP Prolog %W% %G% *
|
|
|
|
* Yap Prolog was developed at NCCUP - Universidade do Porto *
|
|
|
|
* *
|
|
|
|
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
|
|
|
|
* *
|
|
|
|
**************************************************************************
|
|
|
|
* *
|
|
|
|
* File: TermExt.h *
|
|
|
|
* mods: *
|
|
|
|
* comments: Extensions to standard terms for YAP *
|
2008-03-25 22:03:14 +00:00
|
|
|
* version: $Id: TermExt.h,v 1.15 2008-03-25 22:03:13 vsc Exp $ *
|
2005-05-27 23:27:59 +01:00
|
|
|
*************************************************************************/
|
|
|
|
|
2014-09-11 20:06:57 +01:00
|
|
|
/**
|
|
|
|
|
|
|
|
@file TermExt.h
|
|
|
|
|
|
|
|
@page Extensions Extensions to Prolog
|
|
|
|
|
|
|
|
YAP includes a number of extensions over the original Prolog
|
|
|
|
language. Next, we discuss support to the most important ones.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
#ifdef USE_SYSTEM_MALLOC
|
|
|
|
#define SF_STORE (&(Yap_heap_regs->funcs))
|
|
|
|
#else
|
|
|
|
#define SF_STORE ((special_functors *)HEAP_INIT_BASE)
|
|
|
|
#endif
|
|
|
|
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef USE_OFFSETS
|
2005-05-27 23:27:59 +01:00
|
|
|
#define AtomFoundVar ((Atom)(&(((special_functors *)(NULL))->AtFoundVar)))
|
2005-09-09 18:24:39 +01:00
|
|
|
#define AtomFreeTerm ((Atom)(&(((special_functors *)(NULL))->AtFreeTerm)))
|
2005-05-27 23:27:59 +01:00
|
|
|
#define AtomNil ((Atom)(&(((special_functors *)(NULL))->AtNil)))
|
|
|
|
#define AtomDot ((Atom)(&(((special_functors *)(NULL))->AtDot)))
|
|
|
|
#else
|
2015-02-09 01:53:28 +00:00
|
|
|
#define AtomFoundVar AbsAtom((AtomEntry *)&(SF_STORE->AtFoundVar))
|
|
|
|
#define AtomFreeTerm AbsAtom((AtomEntry *)&(SF_STORE->AtFreeTerm))
|
|
|
|
#define AtomNil AbsAtom((AtomEntry *)&(SF_STORE->AtNil))
|
|
|
|
#define AtomDot AbsAtom((AtomEntry *)&(SF_STORE->AtDot))
|
2005-05-27 23:27:59 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define TermFoundVar MkAtomTerm(AtomFoundVar)
|
2005-09-09 18:24:39 +01:00
|
|
|
#define TermFreeTerm MkAtomTerm(AtomFreeTerm)
|
2005-05-27 23:27:59 +01:00
|
|
|
#define TermNil MkAtomTerm(AtomNil)
|
|
|
|
#define TermDot MkAtomTerm(AtomDot)
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
db_ref_e = sizeof (Functor *),
|
2010-03-06 22:34:49 +00:00
|
|
|
attvar_e = 2*sizeof (Functor *),
|
2013-12-02 14:49:41 +00:00
|
|
|
double_e = 3 * sizeof (Functor *),
|
|
|
|
long_int_e = 4 * sizeof (Functor *),
|
|
|
|
big_int_e = 5 * sizeof (Functor *),
|
|
|
|
string_e = 6 * sizeof (Functor *)
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
blob_type;
|
|
|
|
|
|
|
|
#define FunctorDBRef ((Functor)(db_ref_e))
|
2010-03-06 22:34:49 +00:00
|
|
|
#define FunctorAttVar ((Functor)(attvar_e))
|
2013-12-02 14:49:41 +00:00
|
|
|
#define FunctorDouble ((Functor)(double_e))
|
2005-05-27 23:27:59 +01:00
|
|
|
#define FunctorLongInt ((Functor)(long_int_e))
|
|
|
|
#define FunctorBigInt ((Functor)(big_int_e))
|
2013-12-02 14:49:41 +00:00
|
|
|
#define FunctorString ((Functor)(string_e))
|
|
|
|
#define EndSpecials (string_e+sizeof(Functor *))
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-29 22:44:08 +01:00
|
|
|
#include "inline-only.h"
|
2011-11-02 22:55:42 +00:00
|
|
|
|
2013-03-26 21:10:03 +00:00
|
|
|
#define IsAttVar(pt) __IsAttVar((pt) PASS_REGS)
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN int __IsAttVar (CELL *pt USES_REGS);
|
2010-03-08 09:24:11 +00:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2013-03-26 21:10:03 +00:00
|
|
|
__IsAttVar (CELL *pt USES_REGS)
|
2010-03-08 09:24:11 +00:00
|
|
|
{
|
2011-11-10 12:26:23 +00:00
|
|
|
#ifdef YAP_H
|
2011-11-02 22:55:42 +00:00
|
|
|
return (pt)[-1] == (CELL)attvar_e
|
2014-01-19 21:15:05 +00:00
|
|
|
&& pt < HR;
|
2011-11-02 22:55:42 +00:00
|
|
|
#else
|
|
|
|
return (pt)[-1] == (CELL)attvar_e;
|
|
|
|
#endif
|
2010-03-08 09:24:11 +00:00
|
|
|
}
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int GlobalIsAttVar (CELL *pt);
|
2011-03-19 10:25:23 +00:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2011-03-19 10:25:23 +00:00
|
|
|
GlobalIsAttVar (CELL *pt)
|
2011-03-18 19:34:58 +00:00
|
|
|
{
|
|
|
|
return (pt)[-1] == (CELL)attvar_e;
|
|
|
|
}
|
|
|
|
|
2008-11-28 15:54:46 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
BIG_INT = 0x01,
|
|
|
|
BIG_RATIONAL = 0x02,
|
|
|
|
BIG_FLOAT = 0x04,
|
|
|
|
EMPTY_ARENA = 0x10,
|
|
|
|
ARRAY_INT = 0x21,
|
2009-02-11 15:10:57 +00:00
|
|
|
ARRAY_FLOAT = 0x22,
|
2010-06-17 00:31:42 +01:00
|
|
|
CLAUSE_LIST = 0x40,
|
2011-07-22 12:09:33 +01:00
|
|
|
EXTERNAL_BLOB = 0x100, /* generic data */
|
|
|
|
USER_BLOB_START = 0x1000, /* user defined blob */
|
|
|
|
USER_BLOB_END = 0x1100 /* end of user defined blob */
|
2008-11-28 15:54:46 +00:00
|
|
|
}
|
|
|
|
big_blob_type;
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN blob_type BlobOfFunctor (Functor f);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN blob_type
|
2005-05-27 23:27:59 +01:00
|
|
|
BlobOfFunctor (Functor f)
|
|
|
|
{
|
2012-05-08 12:57:32 +01:00
|
|
|
return (blob_type) ((CELL)f);
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
2007-09-21 14:52:52 +01:00
|
|
|
typedef struct cp_frame {
|
|
|
|
CELL *start_cp;
|
|
|
|
CELL *end_cp;
|
|
|
|
CELL *to;
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
CELL oldv;
|
|
|
|
int ground;
|
|
|
|
#endif
|
|
|
|
} copy_frame;
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef COROUTINING
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* what to do when someone tries to bind our term to someone else
|
|
|
|
in some predefined context */
|
2011-03-07 16:02:55 +00:00
|
|
|
void (*bind_op) (Term *, Term CACHE_TYPE);
|
2005-05-27 23:27:59 +01:00
|
|
|
/* what to do if someone wants to copy our constraint */
|
2011-03-07 16:02:55 +00:00
|
|
|
int (*copy_term_op) (CELL *, struct cp_frame **, CELL * CACHE_TYPE);
|
2005-05-27 23:27:59 +01:00
|
|
|
/* copy the constraint into a term and back */
|
2008-11-28 15:54:46 +00:00
|
|
|
Term (*to_term_op) (CELL *);
|
2011-03-07 16:02:55 +00:00
|
|
|
int (*term_to_op) (Term, Term CACHE_TYPE);
|
2005-05-27 23:27:59 +01:00
|
|
|
/* op called to do marking in GC */
|
|
|
|
void (*mark_op) (CELL *);
|
|
|
|
} ext_op;
|
|
|
|
|
|
|
|
/* known delays */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
empty_ext = 0 * sizeof (ext_op), /* default op, this should never be called */
|
|
|
|
attvars_ext = 1 * sizeof (ext_op) /* support for attributed variables */
|
|
|
|
/* add your own extensions here */
|
|
|
|
/* keep this one */
|
|
|
|
}
|
|
|
|
exts;
|
|
|
|
|
|
|
|
|
2011-05-25 16:40:36 +01:00
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-11-02 22:55:42 +00:00
|
|
|
|
2015-02-09 01:53:28 +00:00
|
|
|
#if defined(YAP_H)
|
2005-05-27 23:27:59 +01:00
|
|
|
/* make sure that these data structures are the first thing to be allocated
|
|
|
|
in the heap when we start the system */
|
|
|
|
typedef struct special_functors_struct
|
|
|
|
{
|
2015-02-09 01:53:28 +00:00
|
|
|
struct ExtraAtomEntryStruct AtFoundVar;
|
|
|
|
struct ExtraAtomEntryStruct AtFreeTerm;
|
|
|
|
struct ExtraAtomEntryStruct AtNil;
|
|
|
|
struct ExtraAtomEntryStruct AtDot;
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
special_functors;
|
2012-05-14 15:06:18 +01:00
|
|
|
#endif /* YAP_H */
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Float CpFloatUnaligned(CELL *ptr);
|
2009-02-10 14:24:20 +00:00
|
|
|
|
2013-03-26 20:01:52 +00:00
|
|
|
#define MkFloatTerm(fl) __MkFloatTerm((fl) PASS_REGS)
|
2011-11-02 22:55:42 +00:00
|
|
|
|
2013-03-26 20:01:52 +00:00
|
|
|
INLINE_ONLY inline EXTERN Term __MkFloatTerm (Float USES_REGS);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2014-01-23 01:46:16 +00:00
|
|
|
INLINE_ONLY inline EXTERN Float FloatOfTerm (Term t);
|
|
|
|
|
|
|
|
#if SIZEOF_DOUBLE == SIZEOF_INT_P
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Term
|
2013-03-26 20:01:52 +00:00
|
|
|
__MkFloatTerm (Float dbl USES_REGS)
|
2005-05-27 23:27:59 +01:00
|
|
|
{
|
2014-01-19 21:15:05 +00:00
|
|
|
return (Term) ((HR[0] = (CELL) FunctorDouble, *(Float *) (HR + 1) =
|
|
|
|
dbl, HR[2] = EndSpecials, HR +=
|
|
|
|
3, AbsAppl (HR - 3)));
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Float
|
2005-05-27 23:27:59 +01:00
|
|
|
FloatOfTerm (Term t)
|
|
|
|
{
|
|
|
|
return (Float) (*(Float *) (RepAppl (t) + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define InitUnalignedFloat()
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Float
|
2009-02-10 14:24:20 +00:00
|
|
|
CpFloatUnaligned(CELL *ptr)
|
|
|
|
{
|
|
|
|
return *((Float *)ptr);
|
|
|
|
}
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
#else
|
|
|
|
|
2014-01-19 21:15:05 +00:00
|
|
|
#if SIZEOF_DOUBLE == 2*SIZEOF_INT_P
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
#define DOUBLE_ALIGNED(ADDR) ((CELL)(ADDR) & 0x4)
|
|
|
|
|
2013-09-04 11:05:01 +01:00
|
|
|
INLINE_ONLY EXTERN inline void
|
|
|
|
AlignGlobalForDouble( USES_REGS1 );
|
|
|
|
|
|
|
|
INLINE_ONLY EXTERN inline void
|
|
|
|
AlignGlobalForDouble( USES_REGS1 )
|
|
|
|
{
|
|
|
|
/* Force Alignment for floats. Note that garbage collector may
|
|
|
|
break the alignment; */
|
2014-01-19 21:15:05 +00:00
|
|
|
if (!DOUBLE_ALIGNED(HR)) {
|
|
|
|
RESET_VARIABLE(HR);
|
|
|
|
HR++;
|
2013-09-04 11:05:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
#ifdef i386
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Float
|
2005-05-27 23:27:59 +01:00
|
|
|
CpFloatUnaligned (CELL * ptr)
|
|
|
|
{
|
|
|
|
return *((Float *) (ptr + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* first, need to address the alignment problem */
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Float
|
2005-05-27 23:27:59 +01:00
|
|
|
CpFloatUnaligned (CELL * ptr)
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
Float f;
|
|
|
|
CELL d[2];
|
|
|
|
} u;
|
|
|
|
u.d[0] = ptr[1];
|
|
|
|
u.d[1] = ptr[2];
|
|
|
|
return (u.f);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Term
|
2014-01-19 21:15:05 +00:00
|
|
|
__MkFloatTerm (Float dbl USES_REGS)
|
2005-05-27 23:27:59 +01:00
|
|
|
{
|
2014-01-19 21:15:05 +00:00
|
|
|
return (Term) ((AlignGlobalForDouble ( PASS_REGS1 ), HR[0] =
|
|
|
|
(CELL) FunctorDouble, *(Float *) (HR + 1) = dbl, HR[3] =
|
|
|
|
EndSpecials, HR +=
|
|
|
|
4, AbsAppl (HR - 4)));
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Float
|
2005-05-27 23:27:59 +01:00
|
|
|
FloatOfTerm (Term t)
|
|
|
|
{
|
|
|
|
return (Float) ((DOUBLE_ALIGNED (RepAppl (t)) ? *(Float *) (RepAppl (t) + 1)
|
|
|
|
: CpFloatUnaligned (RepAppl (t))));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* no alignment problems for 64 bit machines */
|
|
|
|
#else
|
|
|
|
/* OOPS, YAP only understands Floats that are as large as cells or that
|
|
|
|
take two cells!!! */
|
2012-06-07 16:28:30 +01:00
|
|
|
|
|
|
|
OOPS
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-05-14 15:06:18 +01:00
|
|
|
#ifndef YAP_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#endif
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsFloatTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsFloatTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t) && FunctorOfTerm (t) == FunctorDouble);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* extern Functor FunctorLongInt; */
|
|
|
|
|
2013-03-26 20:01:52 +00:00
|
|
|
#define MkLongIntTerm(i) __MkLongIntTerm((i) PASS_REGS)
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN Term __MkLongIntTerm (Int USES_REGS);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Term
|
2013-03-26 20:01:52 +00:00
|
|
|
__MkLongIntTerm (Int i USES_REGS)
|
2005-05-27 23:27:59 +01:00
|
|
|
{
|
2014-01-19 21:15:05 +00:00
|
|
|
HR[0] = (CELL) FunctorLongInt;
|
|
|
|
HR[1] = (CELL) (i);
|
|
|
|
HR[2] = EndSpecials;
|
|
|
|
HR += 3;
|
|
|
|
return AbsAppl(HR - 3);
|
2006-03-03 23:11:30 +00:00
|
|
|
}
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2011-11-02 22:55:42 +00:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int LongIntOfTerm (Term t);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
LongIntOfTerm (Term t)
|
|
|
|
{
|
|
|
|
return (Int) (RepAppl (t)[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsLongIntTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsLongIntTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t) && FunctorOfTerm (t) == FunctorLongInt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-02 14:49:41 +00:00
|
|
|
/****************************************************/
|
|
|
|
|
|
|
|
/*********** strings, coded as UTF-8 ****************/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* extern Functor FunctorString; */
|
|
|
|
|
|
|
|
#define MkStringTerm(i) __MkStringTerm((i) PASS_REGS)
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN Term __MkStringTerm (const char *s USES_REGS);
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN Term
|
|
|
|
__MkStringTerm (const char *s USES_REGS)
|
|
|
|
{
|
2014-01-19 21:15:05 +00:00
|
|
|
Term t = AbsAppl(HR);
|
2015-01-20 03:00:42 +00:00
|
|
|
size_t sz = ALIGN_BY_TYPE(strlen(s)+1,CELL);
|
2014-01-19 21:15:05 +00:00
|
|
|
HR[0] = (CELL) FunctorString;
|
|
|
|
HR[1] = (CELL) sz;
|
|
|
|
strcpy((char *)(HR+2), s);
|
|
|
|
HR[2+sz] = EndSpecials;
|
|
|
|
HR += 3+sz;
|
2013-12-02 14:49:41 +00:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN const char *StringOfTerm (Term t);
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN const char *
|
|
|
|
StringOfTerm (Term t)
|
|
|
|
{
|
|
|
|
return (const char *) (RepAppl (t)+2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN int IsStringTerm (Term);
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN int
|
|
|
|
IsStringTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t) && FunctorOfTerm (t) == FunctorString);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************/
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
#ifdef USE_GMP
|
2006-08-23 13:12:14 +01:00
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
#include <stdio.h>
|
2006-08-23 13:12:14 +01:00
|
|
|
|
2015-02-03 02:36:51 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <gmpxx.h>
|
|
|
|
#else
|
2005-05-27 23:27:59 +01:00
|
|
|
#include <gmp.h>
|
2015-02-03 02:36:51 +00:00
|
|
|
#endif
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2006-08-23 13:12:14 +01:00
|
|
|
#else
|
|
|
|
|
2006-09-28 17:15:54 +01:00
|
|
|
typedef UInt mp_limb_t;
|
|
|
|
|
2006-08-23 13:12:14 +01:00
|
|
|
typedef struct {
|
2007-03-30 17:47:22 +01:00
|
|
|
Int _mp_size, _mp_alloc;
|
2006-09-28 17:15:54 +01:00
|
|
|
mp_limb_t *_mp_d;
|
2006-08-23 13:12:14 +01:00
|
|
|
} MP_INT;
|
|
|
|
|
2010-05-27 12:24:15 +01:00
|
|
|
typedef struct {
|
|
|
|
MP_INT _mp_num;
|
|
|
|
MP_INT _mp_den;
|
|
|
|
} MP_RAT;
|
|
|
|
|
2006-08-23 13:12:14 +01:00
|
|
|
#endif
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsBigIntTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsBigIntTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t) && FunctorOfTerm (t) == FunctorBigInt);
|
|
|
|
}
|
|
|
|
|
2007-03-30 17:47:22 +01:00
|
|
|
#ifdef USE_GMP
|
|
|
|
|
2013-04-25 23:15:04 +01:00
|
|
|
Term Yap_MkBigIntTerm(MP_INT *);
|
|
|
|
MP_INT *Yap_BigIntOfTerm(Term);
|
2007-03-30 17:47:22 +01:00
|
|
|
|
2013-04-25 23:15:04 +01:00
|
|
|
Term Yap_MkBigRatTerm(MP_RAT *);
|
|
|
|
MP_RAT *Yap_BigRatOfTerm(Term);
|
2010-05-27 12:24:15 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN void MPZ_SET (mpz_t, MP_INT *);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN void
|
2006-01-02 02:16:19 +00:00
|
|
|
MPZ_SET (mpz_t dest, MP_INT *src)
|
|
|
|
{
|
|
|
|
dest->_mp_size = src->_mp_size;
|
|
|
|
dest->_mp_alloc = src->_mp_alloc;
|
|
|
|
dest->_mp_d = src->_mp_d;
|
|
|
|
}
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsLargeIntTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsLargeIntTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t)
|
|
|
|
&& ((FunctorOfTerm (t) <= FunctorBigInt)
|
|
|
|
&& (FunctorOfTerm (t) >= FunctorLongInt)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN UInt Yap_SizeOfBigInt (Term);
|
2006-05-19 14:48:11 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN UInt
|
2006-05-19 14:48:11 +01:00
|
|
|
Yap_SizeOfBigInt (Term t)
|
|
|
|
{
|
|
|
|
CELL *pt = RepAppl(t)+1;
|
|
|
|
return 2+(sizeof(MP_INT)+
|
|
|
|
(((MP_INT *)pt)->_mp_alloc*sizeof(mp_limb_t)))/sizeof(CELL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsLargeIntTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsLargeIntTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t) && FunctorOfTerm (t) == FunctorLongInt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* extern Functor FunctorLongInt; */
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsLargeNumTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsLargeNumTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t)
|
2013-12-02 14:49:41 +00:00
|
|
|
&& ((FunctorOfTerm (t) <= FunctorBigInt)
|
|
|
|
&& (FunctorOfTerm (t) >= FunctorDouble)));
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsExternalBlobTerm (Term, CELL);
|
2011-07-21 10:24:21 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2011-07-22 12:09:33 +01:00
|
|
|
IsExternalBlobTerm (Term t, CELL tag)
|
2011-07-21 10:24:21 +01:00
|
|
|
{
|
|
|
|
return (int) (IsApplTerm (t) &&
|
|
|
|
FunctorOfTerm (t) == FunctorBigInt &&
|
2011-07-22 12:09:33 +01:00
|
|
|
RepAppl(t)[1] == tag);
|
2011-07-21 10:24:21 +01:00
|
|
|
}
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN void *ExternalBlobFromTerm (Term);
|
2011-07-21 10:24:21 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN void *
|
2011-07-21 10:24:21 +01:00
|
|
|
ExternalBlobFromTerm (Term t)
|
|
|
|
{
|
|
|
|
MP_INT *base = (MP_INT *)(RepAppl(t)+2);
|
|
|
|
return (void *) (base+1);
|
|
|
|
}
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int IsNumTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsNumTerm (Term t)
|
|
|
|
{
|
|
|
|
return (int) ((IsIntTerm (t) || IsLargeNumTerm (t)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int IsAtomicTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsAtomicTerm (Term t)
|
|
|
|
{
|
|
|
|
return (Int) (IsAtomOrIntTerm (t) || IsLargeNumTerm (t));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int IsExtensionFunctor (Functor);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsExtensionFunctor (Functor f)
|
|
|
|
{
|
2013-12-02 14:49:41 +00:00
|
|
|
return (Int) (f <= FunctorString);
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int IsBlobFunctor (Functor);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsBlobFunctor (Functor f)
|
|
|
|
{
|
2013-12-02 14:49:41 +00:00
|
|
|
return (Int) ((f <= FunctorString && f >= FunctorDBRef));
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int IsPrimitiveTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsPrimitiveTerm (Term t)
|
|
|
|
{
|
|
|
|
return (Int) ((IsAtomOrIntTerm (t)
|
|
|
|
|| (IsApplTerm (t) && IsBlobFunctor (FunctorOfTerm (t)))));
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef TERM_EXTENSIONS
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int IsAttachFunc (Functor);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsAttachFunc (Functor f)
|
|
|
|
{
|
|
|
|
return (Int) (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-26 21:10:03 +00:00
|
|
|
#define IsAttachedTerm(t) __IsAttachedTerm(t PASS_REGS)
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2013-03-26 21:10:03 +00:00
|
|
|
INLINE_ONLY inline EXTERN Int __IsAttachedTerm (Term USES_REGS);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2013-03-26 21:10:03 +00:00
|
|
|
__IsAttachedTerm (Term t USES_REGS)
|
2005-05-27 23:27:59 +01:00
|
|
|
{
|
2010-03-08 09:24:11 +00:00
|
|
|
return (Int) ((IsVarTerm (t) && IsAttVar(VarOfTerm(t))));
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int GlobalIsAttachedTerm (Term);
|
2011-03-18 19:34:58 +00:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2011-03-19 10:25:23 +00:00
|
|
|
GlobalIsAttachedTerm (Term t)
|
2011-03-18 19:34:58 +00:00
|
|
|
{
|
2011-03-19 10:25:23 +00:00
|
|
|
return (Int) ((IsVarTerm (t) && GlobalIsAttVar(VarOfTerm(t))));
|
2011-03-18 19:34:58 +00:00
|
|
|
}
|
|
|
|
|
2013-03-26 21:10:03 +00:00
|
|
|
#define SafeIsAttachedTerm(t) __SafeIsAttachedTerm((t) PASS_REGS)
|
|
|
|
|
|
|
|
INLINE_ONLY inline EXTERN Int __SafeIsAttachedTerm (Term USES_REGS);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2013-03-26 21:10:03 +00:00
|
|
|
__SafeIsAttachedTerm (Term t USES_REGS)
|
2005-05-27 23:27:59 +01:00
|
|
|
{
|
2010-03-08 09:24:11 +00:00
|
|
|
return (Int) (IsVarTerm (t) && IsAttVar(VarOfTerm(t)));
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN exts ExtFromCell (CELL *);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN exts
|
2005-05-27 23:27:59 +01:00
|
|
|
ExtFromCell (CELL * pt)
|
|
|
|
{
|
2005-09-09 18:24:39 +01:00
|
|
|
return attvars_ext;
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int IsAttachFunc (Functor);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsAttachFunc (Functor f)
|
|
|
|
{
|
|
|
|
return (Int) (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int IsAttachedTerm (Term);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int
|
2005-05-27 23:27:59 +01:00
|
|
|
IsAttachedTerm (Term t)
|
|
|
|
{
|
|
|
|
return (Int) (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int Yap_BlobTag(Term t);
|
2011-12-13 10:01:51 +00:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN Int Yap_BlobTag(Term t)
|
2011-12-13 10:01:51 +00:00
|
|
|
{
|
|
|
|
CELL *pt = RepAppl(t);
|
|
|
|
|
|
|
|
return pt[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN void *Yap_BlobInfo(Term t);
|
2011-12-13 10:01:51 +00:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN void *Yap_BlobInfo(Term t)
|
2011-12-13 10:01:51 +00:00
|
|
|
{
|
|
|
|
MP_INT *blobp;
|
|
|
|
CELL *pt = RepAppl(t);
|
|
|
|
|
|
|
|
blobp = (MP_INT *)(pt+2);
|
|
|
|
return (void *)(blobp+1);
|
|
|
|
}
|
|
|
|
|
2011-11-10 12:26:23 +00:00
|
|
|
#ifdef YAP_H
|
2011-11-02 22:55:42 +00:00
|
|
|
|
2013-04-25 23:15:04 +01:00
|
|
|
INLINE_ONLY inline EXTERN int unify_extension(Functor, CELL, CELL *, CELL);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2013-04-25 23:15:04 +01:00
|
|
|
EXTERN int unify_extension(Functor, CELL, CELL *, CELL);
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2013-04-25 23:15:04 +01:00
|
|
|
int Yap_gmp_tcmp_big_big(Term, Term);
|
2010-05-28 12:07:01 +01:00
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2005-05-27 23:27:59 +01:00
|
|
|
unify_extension (Functor f, CELL d0, CELL * pt0, CELL d1)
|
|
|
|
{
|
|
|
|
switch (BlobOfFunctor (f))
|
|
|
|
{
|
|
|
|
case db_ref_e:
|
|
|
|
return (d0 == d1);
|
2010-03-06 22:43:21 +00:00
|
|
|
case attvar_e:
|
|
|
|
return (d0 == d1);
|
2005-05-27 23:27:59 +01:00
|
|
|
case long_int_e:
|
|
|
|
return (pt0[1] == RepAppl (d1)[1]);
|
2013-12-02 14:49:41 +00:00
|
|
|
case string_e:
|
2014-02-03 23:26:36 +00:00
|
|
|
return strcmp( (char *)(pt0+2), (char *)(RepAppl (d1)+2) ) == 0;
|
2005-05-27 23:27:59 +01:00
|
|
|
case big_int_e:
|
2006-09-28 17:15:54 +01:00
|
|
|
#ifdef USE_GMP
|
2010-05-28 12:07:01 +01:00
|
|
|
return (Yap_gmp_tcmp_big_big(d0,d1) == 0);
|
2006-09-28 17:15:54 +01:00
|
|
|
#else
|
|
|
|
return d0 == d1;
|
2005-05-27 23:27:59 +01:00
|
|
|
#endif /* USE_GMP */
|
|
|
|
case double_e:
|
|
|
|
{
|
|
|
|
CELL *pt1 = RepAppl (d1);
|
|
|
|
return (pt0[1] == pt1[1]
|
2014-01-19 21:15:05 +00:00
|
|
|
#if SIZEOF_DOUBLE == 2*SIZEOF_INT_P
|
2005-05-27 23:27:59 +01:00
|
|
|
&& pt0[2] == pt1[2]
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (FALSE);
|
|
|
|
}
|
2010-05-14 12:42:30 +01:00
|
|
|
|
|
|
|
static inline
|
|
|
|
CELL Yap_IntP_key(CELL *pt)
|
|
|
|
{
|
|
|
|
#ifdef USE_GMP
|
|
|
|
if (((Functor)pt[-1] == FunctorBigInt)) {
|
|
|
|
MP_INT *b1 = Yap_BigIntOfTerm(AbsAppl(pt-1));
|
|
|
|
/* first cell in program */
|
|
|
|
CELL val = ((CELL *)(b1+1))[0];
|
|
|
|
return MkIntTerm(val & (MAX_ABS_INT-1));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return MkIntTerm(pt[0] & (MAX_ABS_INT-1));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
CELL Yap_Int_key(Term t)
|
|
|
|
{
|
|
|
|
return Yap_IntP_key(RepAppl(t)+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
CELL Yap_DoubleP_key(CELL *pt)
|
|
|
|
{
|
2014-01-19 21:15:05 +00:00
|
|
|
#if SIZEOF_DOUBLE1 == 2*SIZEOF_INT_P
|
2010-05-14 12:42:30 +01:00
|
|
|
CELL val = pt[0]^pt[1];
|
|
|
|
#else
|
|
|
|
CELL val = pt[0];
|
|
|
|
#endif
|
|
|
|
return MkIntTerm(val & (MAX_ABS_INT-1));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
CELL Yap_Double_key(Term t)
|
|
|
|
{
|
|
|
|
return Yap_DoubleP_key(RepAppl(t)+1);
|
|
|
|
}
|
|
|
|
|
2013-12-02 14:49:41 +00:00
|
|
|
static inline
|
|
|
|
CELL Yap_StringP_key(CELL *pt)
|
|
|
|
{
|
|
|
|
UInt n = pt[1], i;
|
|
|
|
CELL val = pt[2];
|
|
|
|
for (i=1; i<n; i++) {
|
|
|
|
val ^= pt[i+1];
|
|
|
|
}
|
|
|
|
return MkIntTerm(val & (MAX_ABS_INT-1));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
CELL Yap_String_key(Term t)
|
|
|
|
{
|
|
|
|
return Yap_StringP_key(RepAppl(t)+1);
|
|
|
|
}
|
|
|
|
|
2011-11-02 22:55:42 +00:00
|
|
|
#endif
|