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: Atoms.h.m4 *
|
|
|
|
* Last rev: 19/2/88 *
|
|
|
|
* mods: *
|
|
|
|
* comments: atom properties header file for YAP *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
|
2009-03-13 12:06:57 +00:00
|
|
|
#ifndef ATOMS_H
|
|
|
|
#define ATOMS_H 1
|
|
|
|
|
2014-05-25 20:50:07 +01:00
|
|
|
#ifndef EXTERN
|
2005-05-27 23:27:59 +01:00
|
|
|
#ifndef ADTDEFS_C
|
|
|
|
#define EXTERN static
|
|
|
|
#else
|
|
|
|
#define EXTERN
|
|
|
|
#endif
|
2014-05-25 20:50:07 +01:00
|
|
|
#endif
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2006-12-13 16:10:26 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
|
2010-12-02 11:49:58 +00:00
|
|
|
typedef struct atom_blob {
|
|
|
|
size_t length;
|
|
|
|
char data[MIN_ARRAY];
|
|
|
|
} atom_blob_t;
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
/********* operations for atoms ****************************************/
|
|
|
|
|
|
|
|
/* Atoms are assumed to be uniquely represented by an OFFSET and to have
|
|
|
|
associated with them a struct of type AtomEntry
|
|
|
|
The two functions
|
|
|
|
RepAtom : Atom -> *AtomEntry
|
|
|
|
AbsAtom : *AtomEntry -> Atom
|
|
|
|
are used to encapsulate the implementation of atoms
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct AtomEntryStruct *Atom;
|
|
|
|
typedef struct PropEntryStruct *Prop;
|
|
|
|
|
|
|
|
|
|
|
|
/* I can only define the structure after I define the actual atoms */
|
|
|
|
|
|
|
|
/* atom structure */
|
|
|
|
typedef struct AtomEntryStruct
|
|
|
|
{
|
|
|
|
Atom NextOfAE; /* used to build hash chains */
|
|
|
|
Prop PropsOfAE; /* property list for this atom */
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
rwlock_t ARWLock;
|
|
|
|
#endif
|
|
|
|
|
2006-12-13 16:10:26 +00:00
|
|
|
union {
|
2015-09-21 23:05:36 +01:00
|
|
|
unsigned char uUStrOfAE[MIN_ARRAY]; /* representation of atom as a string */
|
|
|
|
char uStrOfAE[MIN_ARRAY]; /* representation of atom as a string */
|
2006-12-13 16:10:26 +00:00
|
|
|
wchar_t uWStrOfAE[MIN_ARRAY]; /* representation of atom as a string */
|
2010-12-02 11:49:58 +00:00
|
|
|
struct atom_blob blob[MIN_ARRAY];
|
2006-12-13 16:10:26 +00:00
|
|
|
} rep;
|
2005-05-27 23:27:59 +01:00
|
|
|
}
|
|
|
|
AtomEntry;
|
|
|
|
|
2015-02-09 01:53:28 +00:00
|
|
|
// compatible with C and C++;
|
|
|
|
typedef struct ExtraAtomEntryStruct
|
|
|
|
{
|
|
|
|
Atom NextOfAE; /* used to build hash chains */
|
|
|
|
Prop PropsOfAE; /* property list for this atom */
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
rwlock_t ARWLock;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
union {
|
2015-09-21 23:05:36 +01:00
|
|
|
unsigned char uUStrOfAE[4]; /* representation of atom as a string */
|
|
|
|
char uStrOfAE[4]; /* representation of atom as a string */
|
2015-02-13 12:26:08 +00:00
|
|
|
wchar_t uWStrOfAE[2]; /* representation of atom as a string */
|
|
|
|
struct atom_blob blob[2];
|
2015-02-09 01:53:28 +00:00
|
|
|
} rep;
|
|
|
|
}
|
|
|
|
ExtraAtomEntry;
|
|
|
|
|
2015-09-21 23:05:36 +01:00
|
|
|
#define UStrOfAE rep.uUStrOfAE
|
2006-12-13 16:10:26 +00:00
|
|
|
#define StrOfAE rep.uStrOfAE
|
|
|
|
#define WStrOfAE rep.uWStrOfAE
|
|
|
|
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
/* Props and Atoms are stored in chains, ending with a NIL */
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef USE_OFFSETS
|
2005-05-27 23:27:59 +01:00
|
|
|
# define EndOfPAEntr(P) ( Addr(P) == AtomBase)
|
|
|
|
#else
|
|
|
|
# define EndOfPAEntr(P) ( Addr(P) == NIL )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* ********************** Properties **********************************/
|
|
|
|
|
2008-03-25 22:03:14 +00:00
|
|
|
#if defined(USE_OFFSETS)
|
2005-05-27 23:27:59 +01:00
|
|
|
#define USE_OFFSETS_IN_PROPS 1
|
|
|
|
#else
|
|
|
|
#define USE_OFFSETS_IN_PROPS 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef SFLAGS PropFlags;
|
|
|
|
|
|
|
|
/* basic property entry structure */
|
|
|
|
typedef struct PropEntryStruct
|
|
|
|
{
|
|
|
|
Prop NextOfPE; /* used to chain properties */
|
|
|
|
PropFlags KindOfPE; /* kind of property */
|
|
|
|
} PropEntry;
|
|
|
|
|
|
|
|
/* ************************* Functors **********************************/
|
|
|
|
|
|
|
|
/* Functor data type
|
|
|
|
abstype Functor = atom # int
|
|
|
|
with MkFunctor(a,n) = ...
|
|
|
|
and NameOfFunctor(f) = ...
|
|
|
|
and ArityOfFunctor(f) = ... */
|
|
|
|
|
|
|
|
#define MaxArity 255
|
|
|
|
|
2014-06-04 22:08:37 +01:00
|
|
|
typedef CELL arity_t;
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2015-04-13 13:28:17 +01:00
|
|
|
#define FunctorProperty ((PropFlags)(0xbb00))
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
/* functor property */
|
|
|
|
typedef struct FunctorEntryStruct
|
|
|
|
{
|
|
|
|
Prop NextOfPE; /* used to chain properties */
|
|
|
|
PropFlags KindOfPE; /* kind of property */
|
2014-06-04 22:08:37 +01:00
|
|
|
arity_t ArityOfFE; /* arity of functor */
|
2005-05-27 23:27:59 +01:00
|
|
|
Atom NameOfFE; /* back pointer to owner atom */
|
|
|
|
Prop PropsOfFE; /* pointer to list of properties for this functor */
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
rwlock_t FRWLock;
|
|
|
|
#endif
|
|
|
|
} FunctorEntry;
|
|
|
|
|
|
|
|
typedef FunctorEntry *Functor;
|
2009-03-13 12:06:57 +00:00
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
|
2009-03-13 12:06:57 +00:00
|
|
|
#endif /* ATOMS_H */
|