2001-04-09 20:54:03 +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: clause.h *
|
|
|
|
* Last rev: *
|
|
|
|
* mods: *
|
|
|
|
* comments: clause info *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
#ifndef CLAUSE_H
|
|
|
|
#define CLAUSE_H 1
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#include "Yatom.h"
|
2009-10-23 14:22:17 +01:00
|
|
|
#include "YapHeap.h"
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2002-01-01 05:26:25 +00:00
|
|
|
/* consulting files */
|
|
|
|
|
|
|
|
typedef union CONSULT_OBJ {
|
2015-09-21 23:05:36 +01:00
|
|
|
const unsigned char *filename;
|
2002-01-01 05:26:25 +00:00
|
|
|
int mode;
|
2016-01-03 02:06:09 +00:00
|
|
|
Prop p;
|
2002-01-01 05:26:25 +00:00
|
|
|
UInt c;
|
2016-05-16 09:35:29 +01:00
|
|
|
Term r;
|
2002-01-01 05:26:25 +00:00
|
|
|
} consult_obj;
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* Either we are assembling clauses or indexing code */
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define ASSEMBLING_CLAUSE 0
|
|
|
|
#define ASSEMBLING_INDEX 1
|
|
|
|
#define ASSEMBLING_EINDEX 2
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define NextDynamicClause(X) (((yamop *)X)->y_u.Otapl.d)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define PredFirstClause 0
|
|
|
|
#define PredMiddleClause 1
|
|
|
|
#define PredLastClause 2
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
typedef struct logic_upd_index {
|
2016-01-03 02:06:09 +00:00
|
|
|
CELL ClFlags;
|
|
|
|
UInt ClRefCount;
|
2001-04-09 20:54:03 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2016-01-03 02:06:09 +00:00
|
|
|
/* A lock for manipulating the clause */
|
|
|
|
// lockvar ClLock;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2016-01-03 02:06:09 +00:00
|
|
|
UInt ClSize;
|
2005-12-17 03:25:39 +00:00
|
|
|
struct logic_upd_index *ParentIndex;
|
2003-08-27 14:37:10 +01:00
|
|
|
struct logic_upd_index *SiblingIndex;
|
2005-05-31 20:42:28 +01:00
|
|
|
struct logic_upd_index *PrevSiblingIndex;
|
2003-08-27 14:37:10 +01:00
|
|
|
struct logic_upd_index *ChildIndex;
|
2001-04-09 20:54:03 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
2005-12-17 03:25:39 +00:00
|
|
|
PredEntry *ClPred;
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop ClCode[MIN_ARRAY];
|
2003-08-27 14:37:10 +01:00
|
|
|
} LogUpdIndex;
|
|
|
|
|
2004-02-06 17:22:24 +00:00
|
|
|
/* The ordering of the first 3 fields should be compatible with dbrefs */
|
2003-08-27 14:37:10 +01:00
|
|
|
typedef struct logic_upd_clause {
|
2016-01-03 02:06:09 +00:00
|
|
|
Functor Id; /* allow pointers to this struct to id */
|
|
|
|
/* as dbref */
|
2003-08-27 14:37:10 +01:00
|
|
|
/* A set of flags describing info on the clause */
|
|
|
|
/* A set of flags describing info on the clause */
|
2016-01-03 02:06:09 +00:00
|
|
|
CELL ClFlags;
|
2003-08-27 14:37:10 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2016-01-03 02:06:09 +00:00
|
|
|
/* A lock for manipulating the clause */
|
|
|
|
// lockvar ClLock;
|
2003-08-27 14:37:10 +01:00
|
|
|
#endif
|
2016-01-03 02:06:09 +00:00
|
|
|
UInt ClSize;
|
2003-08-27 14:37:10 +01:00
|
|
|
/* extra clause information for logical update indices and facts */
|
|
|
|
/* indices that may still backtrack to this clause */
|
2016-01-03 02:06:09 +00:00
|
|
|
UInt ClRefCount;
|
2003-08-27 14:37:10 +01:00
|
|
|
/* data for clauses with environments */
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop *ClExt;
|
2013-11-05 17:59:19 +00:00
|
|
|
union {
|
2016-01-03 02:06:09 +00:00
|
|
|
DBTerm *ClSource;
|
|
|
|
Int ClLine;
|
2013-11-05 17:59:19 +00:00
|
|
|
} lusl;
|
2003-08-27 14:37:10 +01:00
|
|
|
/* doubly linked list of clauses */
|
2016-01-03 02:06:09 +00:00
|
|
|
struct logic_upd_clause *ClPrev, *ClNext;
|
2003-08-27 14:37:10 +01:00
|
|
|
/* parent pointer */
|
2016-01-03 02:06:09 +00:00
|
|
|
PredEntry *ClPred;
|
|
|
|
UInt ClTimeStart, ClTimeEnd;
|
2003-08-27 14:37:10 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop ClCode[MIN_ARRAY];
|
2003-04-30 18:46:05 +01:00
|
|
|
} LogUpdClause;
|
|
|
|
|
2012-06-29 22:44:08 +01:00
|
|
|
#include "inline-only.h"
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int VALID_TIMESTAMP(UInt, struct logic_upd_clause *);
|
2006-10-10 15:08:17 +01:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY inline EXTERN int VALID_TIMESTAMP(UInt timestamp,
|
|
|
|
struct logic_upd_clause *cl) {
|
2006-10-10 15:08:17 +01:00
|
|
|
return IN_BETWEEN(cl->ClTimeStart, timestamp, cl->ClTimeEnd);
|
|
|
|
}
|
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
typedef struct dynamic_clause {
|
|
|
|
/* A set of flags describing info on the clause */
|
2016-01-03 02:06:09 +00:00
|
|
|
CELL ClFlags;
|
2003-04-30 18:46:05 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
/* A lock for manipulating the clause */
|
2016-01-03 02:06:09 +00:00
|
|
|
lockvar ClLock;
|
2003-04-30 18:46:05 +01:00
|
|
|
#endif
|
2016-01-03 02:06:09 +00:00
|
|
|
UInt ClSize;
|
|
|
|
Int ClLine;
|
|
|
|
UInt ClRefCount;
|
|
|
|
yamop *ClPrevious; /* immediate update clause */
|
2003-04-30 18:46:05 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop ClCode[MIN_ARRAY];
|
2003-04-30 18:46:05 +01:00
|
|
|
} DynamicClause;
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
typedef struct static_index {
|
|
|
|
/* A set of flags describing info on the clause */
|
2016-01-03 02:06:09 +00:00
|
|
|
CELL ClFlags;
|
|
|
|
UInt ClSize;
|
2003-08-27 14:37:10 +01:00
|
|
|
struct static_index *SiblingIndex;
|
|
|
|
struct static_index *ChildIndex;
|
|
|
|
/* The instructions, at least one of the form sl */
|
2005-12-17 03:25:39 +00:00
|
|
|
PredEntry *ClPred;
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop ClCode[MIN_ARRAY];
|
2003-08-27 14:37:10 +01:00
|
|
|
} StaticIndex;
|
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
typedef struct static_clause {
|
|
|
|
/* A set of flags describing info on the clause */
|
2016-01-03 02:06:09 +00:00
|
|
|
CELL ClFlags;
|
|
|
|
UInt ClSize;
|
2003-11-24 00:00:43 +00:00
|
|
|
union {
|
2016-01-03 02:06:09 +00:00
|
|
|
DBTerm *ClSource;
|
|
|
|
Int ClLine;
|
2003-11-24 00:00:43 +00:00
|
|
|
} usc;
|
2016-01-03 02:06:09 +00:00
|
|
|
struct static_clause *ClNext;
|
2003-04-30 18:46:05 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop ClCode[MIN_ARRAY];
|
2003-04-30 18:46:05 +01:00
|
|
|
} StaticClause;
|
|
|
|
|
2004-09-27 21:45:04 +01:00
|
|
|
typedef struct static_mega_clause {
|
|
|
|
/* A set of flags describing info on the clause */
|
2016-01-03 02:06:09 +00:00
|
|
|
CELL ClFlags;
|
|
|
|
UInt ClSize;
|
|
|
|
PredEntry *ClPred;
|
|
|
|
UInt ClItemSize;
|
|
|
|
Int ClLine;
|
|
|
|
struct static_mega_clause *ClNext;
|
2004-09-27 21:45:04 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop ClCode[MIN_ARRAY];
|
2004-09-27 21:45:04 +01:00
|
|
|
} MegaClause;
|
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
typedef union clause_obj {
|
|
|
|
struct logic_upd_clause luc;
|
2003-08-27 14:37:10 +01:00
|
|
|
struct logic_upd_index lui;
|
2003-04-30 18:46:05 +01:00
|
|
|
struct dynamic_clause ic;
|
|
|
|
struct static_clause sc;
|
2004-09-27 21:45:04 +01:00
|
|
|
struct static_mega_clause mc;
|
2003-08-27 14:37:10 +01:00
|
|
|
struct static_index si;
|
2003-04-30 18:46:05 +01:00
|
|
|
} ClauseUnion;
|
|
|
|
|
2006-03-21 15:06:36 +00:00
|
|
|
typedef union clause_ptr {
|
|
|
|
struct logic_upd_clause *luc;
|
|
|
|
struct logic_upd_index *lui;
|
|
|
|
struct dynamic_clause *ic;
|
|
|
|
struct static_clause *sc;
|
|
|
|
struct static_mega_clause *mc;
|
|
|
|
struct static_index *si;
|
|
|
|
} ClausePointer;
|
|
|
|
|
2013-01-07 09:47:14 +00:00
|
|
|
typedef struct index_t {
|
|
|
|
struct index_t *next, *prev;
|
|
|
|
UInt nels;
|
|
|
|
UInt arity;
|
|
|
|
PredEntry *ap;
|
|
|
|
CELL bmap;
|
|
|
|
int is_key;
|
2013-04-17 02:04:53 +01:00
|
|
|
int is_udi;
|
2013-01-09 16:38:39 +00:00
|
|
|
UInt ncollisions;
|
2013-08-05 21:07:51 +01:00
|
|
|
UInt max_col_count;
|
2013-01-09 16:38:39 +00:00
|
|
|
UInt ntrys;
|
|
|
|
UInt nentries;
|
2013-01-07 09:47:14 +00:00
|
|
|
UInt hsize;
|
2013-03-15 19:56:18 +00:00
|
|
|
BITS32 *key;
|
2013-06-23 02:09:20 +01:00
|
|
|
CELL *cls, *bcls;
|
2013-03-15 19:56:18 +00:00
|
|
|
BITS32 *links;
|
2013-01-23 10:43:32 +00:00
|
|
|
size_t size;
|
2013-01-07 09:47:14 +00:00
|
|
|
yamop *code;
|
2013-04-29 22:19:43 +01:00
|
|
|
BITS32 *udi_data;
|
|
|
|
void *udi_first, *udi_next;
|
2013-06-26 04:53:23 +01:00
|
|
|
UInt udi_free_args;
|
2013-04-21 02:29:08 +01:00
|
|
|
UInt udi_arg;
|
2013-01-07 09:47:14 +00:00
|
|
|
} Index_t;
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 EXO_ADDRESS_TO_OFFSET(struct index_t *it,
|
|
|
|
CELL *ptr);
|
2013-01-08 12:35:18 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 EXO_ADDRESS_TO_OFFSET(struct index_t *it,
|
|
|
|
CELL *ptr) {
|
|
|
|
return (ptr - it->cls) / it->arity + 1;
|
2013-01-08 12:35:18 +00:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline CELL *EXO_OFFSET_TO_ADDRESS(struct index_t *it,
|
|
|
|
BITS32 off);
|
2013-01-08 12:35:18 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline CELL *EXO_OFFSET_TO_ADDRESS(struct index_t *it,
|
|
|
|
BITS32 off) {
|
2015-04-13 13:28:17 +01:00
|
|
|
if (off == 0L)
|
2014-06-12 01:25:50 +01:00
|
|
|
return (CELL *)NULL;
|
2016-01-03 02:06:09 +00:00
|
|
|
return (it->cls) + (off - 1) * it->arity;
|
2013-03-15 19:56:18 +00:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 ADDRESS_TO_LINK(struct index_t *it,
|
|
|
|
BITS32 *ptr);
|
2013-03-15 19:56:18 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 ADDRESS_TO_LINK(struct index_t *it,
|
|
|
|
BITS32 *ptr) {
|
|
|
|
return ptr - it->links;
|
2013-03-15 19:56:18 +00:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 *LINK_TO_ADDRESS(struct index_t *it,
|
|
|
|
BITS32 off);
|
2013-03-15 19:56:18 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 *LINK_TO_ADDRESS(struct index_t *it,
|
|
|
|
BITS32 off) {
|
|
|
|
return it->links + off;
|
2013-01-08 12:35:18 +00:00
|
|
|
}
|
|
|
|
|
2013-04-17 03:49:37 +01:00
|
|
|
typedef void (*CRefitExoIndex)(struct index_t **ip, UInt b[] USES_REGS);
|
2016-01-03 02:06:09 +00:00
|
|
|
typedef yamop *(*CEnterExoIndex)(struct index_t *it USES_REGS);
|
|
|
|
typedef int (*CRetryExoIndex)(struct index_t *it USES_REGS);
|
2013-01-07 09:47:14 +00:00
|
|
|
|
2007-11-06 17:02:13 +00:00
|
|
|
typedef struct dbterm_list {
|
|
|
|
/* a list of dbterms associated with a clause */
|
|
|
|
DBTerm *dbterms;
|
|
|
|
yamop *clause_code;
|
|
|
|
PredEntry *p;
|
|
|
|
struct dbterm_list *next_dbl;
|
|
|
|
} DBTermList;
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define ClauseCodeToDynamicClause(p) \
|
|
|
|
((DynamicClause *)((CODEADDR)(p) - (CELL)(((DynamicClause *)NULL)->ClCode)))
|
|
|
|
#define ClauseCodeToStaticClause(p) \
|
|
|
|
((StaticClause *)((CODEADDR)(p) - (CELL)(((StaticClause *)NULL)->ClCode)))
|
|
|
|
#define ClauseCodeToLogUpdClause(p) \
|
|
|
|
((LogUpdClause *)((CODEADDR)(p) - (CELL)(((LogUpdClause *)NULL)->ClCode)))
|
|
|
|
#define ClauseCodeToMegaClause(p) \
|
|
|
|
((MegaClause *)((CODEADDR)(p) - (CELL)(((MegaClause *)NULL)->ClCode)))
|
|
|
|
#define ClauseCodeToLogUpdIndex(p) \
|
|
|
|
((LogUpdIndex *)((CODEADDR)(p) - (CELL)(((LogUpdIndex *)NULL)->ClCode)))
|
|
|
|
#define ClauseCodeToStaticIndex(p) \
|
|
|
|
((StaticIndex *)((CODEADDR)(p) - (CELL)(((StaticIndex *)NULL)->ClCode)))
|
|
|
|
|
|
|
|
#define ClauseFlagsToDynamicClause(p) ((DynamicClause *)(p))
|
|
|
|
#define ClauseFlagsToLogUpdClause(p) \
|
|
|
|
((LogUpdClause *)((CODEADDR)(p) - (CELL)(&(((LogUpdClause *)NULL)->ClFlags))))
|
|
|
|
#define ClauseFlagsToLogUpdIndex(p) \
|
|
|
|
((LogUpdIndex *)((CODEADDR)(p) - (CELL)(&(((LogUpdIndex *)NULL)->ClFlags))))
|
|
|
|
#define ClauseFlagsToStaticClause(p) ((StaticClause *)(p))
|
|
|
|
|
|
|
|
#define DynamicFlags(X) (ClauseCodeToDynamicClause(X)->ClFlags)
|
|
|
|
|
|
|
|
#define DynamicLock(X) (ClauseCodeToDynamicClause(X)->ClLock)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2011-04-14 18:51:11 +01:00
|
|
|
#if MULTIPLE_STACKS
|
2003-08-27 14:37:10 +01:00
|
|
|
#define INIT_CLREF_COUNT(X) (X)->ClRefCount = 0
|
2016-01-03 02:06:09 +00:00
|
|
|
#define INC_CLREF_COUNT(X) (X)->ClRefCount++
|
|
|
|
#define DEC_CLREF_COUNT(X) (X)->ClRefCount--
|
2008-08-08 15:05:34 +01:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define CL_IN_USE(X) ((X)->ClRefCount)
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define INIT_CLREF_COUNT(X)
|
2016-01-03 02:06:09 +00:00
|
|
|
#define INC_CLREF_COUNT(X)
|
|
|
|
#define DEC_CLREF_COUNT(X)
|
|
|
|
#define CL_IN_USE(X) ((X)->ClFlags & InUseMask || (X)->ClRefCount)
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
2003-01-13 14:02:50 +00:00
|
|
|
/* amasm.c */
|
2016-01-03 02:06:09 +00:00
|
|
|
wamreg Yap_emit_x(CELL);
|
|
|
|
COUNT Yap_compile_cmp_flags(PredEntry *);
|
|
|
|
void Yap_InitComma(void);
|
2003-01-13 14:02:50 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* cdmgr.c */
|
2016-01-03 02:06:09 +00:00
|
|
|
void Yap_IPred(PredEntry *, UInt, yamop *);
|
2016-02-21 11:30:13 +00:00
|
|
|
bool Yap_addclause(Term, yamop *, Term, Term, Term *);
|
2016-01-03 02:06:09 +00:00
|
|
|
void Yap_add_logupd_clause(PredEntry *, LogUpdClause *, int);
|
|
|
|
void Yap_kill_iblock(ClauseUnion *, ClauseUnion *, PredEntry *);
|
|
|
|
void Yap_EraseStaticClause(StaticClause *, PredEntry *, Term);
|
2013-04-25 23:15:04 +01:00
|
|
|
ClauseUnion *Yap_find_owner_index(yamop *, PredEntry *);
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* dbase.c */
|
2016-01-03 02:06:09 +00:00
|
|
|
void Yap_ErCl(DynamicClause *);
|
|
|
|
void Yap_ErLogUpdCl(LogUpdClause *);
|
|
|
|
void Yap_ErLogUpdIndex(LogUpdIndex *);
|
|
|
|
Int Yap_Recordz(Atom, Term);
|
|
|
|
Int Yap_db_nth_recorded(PredEntry *, Int USES_REGS);
|
|
|
|
Int Yap_unify_immediate_ref(DBRef ref USES_REGS);
|
2002-12-27 16:53:09 +00:00
|
|
|
|
2003-01-29 14:47:17 +00:00
|
|
|
/* exec.c */
|
2016-01-03 02:06:09 +00:00
|
|
|
Term Yap_cp_as_integer(choiceptr);
|
2003-01-29 14:47:17 +00:00
|
|
|
|
2002-12-27 16:53:09 +00:00
|
|
|
/* index.c */
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop *Yap_PredIsIndexable(PredEntry *, UInt, yamop *);
|
|
|
|
yamop *Yap_ExpandIndex(PredEntry *, UInt);
|
|
|
|
void Yap_CleanUpIndex(struct logic_upd_index *);
|
|
|
|
void Yap_CleanKids(struct logic_upd_index *);
|
|
|
|
void Yap_AddClauseToIndex(PredEntry *, yamop *, int);
|
|
|
|
void Yap_RemoveClauseFromIndex(PredEntry *, yamop *);
|
|
|
|
LogUpdClause *Yap_NthClause(PredEntry *, Int);
|
|
|
|
LogUpdClause *Yap_FollowIndexingCode(PredEntry *, yamop *, Term *, yamop *,
|
|
|
|
yamop *);
|
2002-12-27 16:53:09 +00:00
|
|
|
|
2013-01-07 09:47:14 +00:00
|
|
|
/* exo.c */
|
2016-01-03 02:06:09 +00:00
|
|
|
yamop *Yap_ExoLookup(PredEntry *ap USES_REGS);
|
|
|
|
CELL Yap_NextExo(choiceptr cpt, struct index_t *it);
|
2013-01-07 09:47:14 +00:00
|
|
|
|
2015-04-13 13:28:17 +01:00
|
|
|
#
|
2003-06-06 12:54:02 +01:00
|
|
|
#if USE_THREADED_CODE
|
|
|
|
|
|
|
|
#define OP_HASH_SIZE 2048
|
|
|
|
|
2015-04-15 11:21:15 +01:00
|
|
|
INLINE_ONLY inline EXTERN int rtable_hash_op(OPCODE opc, int hash_mask);
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY inline EXTERN int rtable_hash_op(OPCODE opc, int hash_mask) {
|
|
|
|
return ((((CELL)opc) >> 3) & hash_mask);
|
2003-06-06 12:54:02 +01:00
|
|
|
}
|
|
|
|
|
2015-04-15 11:21:15 +01:00
|
|
|
INLINE_ONLY inline EXTERN op_numbers Yap_op_from_opcode(OPCODE opc);
|
|
|
|
|
2003-06-06 12:54:02 +01:00
|
|
|
/* given an opcode find the corresponding opnumber. This should make
|
|
|
|
switches on ops a much easier operation */
|
2016-01-03 02:06:09 +00:00
|
|
|
INLINE_ONLY inline EXTERN op_numbers Yap_op_from_opcode(OPCODE opc) {
|
|
|
|
int j = rtable_hash_op(opc, OP_HASH_SIZE - 1);
|
2003-06-06 12:54:02 +01:00
|
|
|
|
|
|
|
while (OP_RTABLE[j].opc != opc) {
|
2004-09-27 21:45:04 +01:00
|
|
|
if (!OP_RTABLE[j].opc)
|
|
|
|
return _Nstop;
|
2016-01-03 02:06:09 +00:00
|
|
|
if (j == OP_HASH_SIZE - 1) {
|
2003-06-06 12:54:02 +01:00
|
|
|
j = 0;
|
|
|
|
} else {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OP_RTABLE[j].opnum;
|
|
|
|
}
|
|
|
|
#else
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline op_numbers Yap_op_from_opcode(OPCODE opc) {
|
|
|
|
return ((op_numbers)opc);
|
2003-06-06 12:54:02 +01:00
|
|
|
}
|
|
|
|
#endif /* USE_THREADED_CODE */
|
2003-08-27 14:37:10 +01:00
|
|
|
|
2004-06-29 20:04:46 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2006-03-24 16:26:31 +00:00
|
|
|
static inline int same_lu_block(yamop **, yamop *);
|
2004-12-02 06:06:47 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline int same_lu_block(yamop **paddr, yamop *p) {
|
2004-06-29 20:04:46 +01:00
|
|
|
yamop *np = *paddr;
|
|
|
|
if (np != p) {
|
|
|
|
OPCODE jmp_op = Yap_opcode(_jump_if_nonvar);
|
|
|
|
|
|
|
|
while (np->opc == jmp_op) {
|
2005-04-10 05:01:15 +01:00
|
|
|
np = NEXTOP(np, xll);
|
2016-01-03 02:06:09 +00:00
|
|
|
if (np == p)
|
|
|
|
return TRUE;
|
2004-06-29 20:04:46 +01:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define Yap_MkStaticRefTerm(cp, ap) __Yap_MkStaticRefTerm((cp), (ap)PASS_REGS)
|
2013-03-26 20:01:52 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline Term __Yap_MkStaticRefTerm(StaticClause *cp,
|
|
|
|
PredEntry *ap USES_REGS) {
|
2013-11-05 17:59:19 +00:00
|
|
|
Term t[2];
|
2004-09-27 21:45:04 +01:00
|
|
|
t[0] = MkIntegerTerm((Int)cp);
|
2013-11-05 17:59:19 +00:00
|
|
|
t[1] = MkIntegerTerm((Int)ap);
|
2016-01-03 02:06:09 +00:00
|
|
|
return Yap_MkApplTerm(FunctorStaticClause, 2, t);
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline StaticClause *Yap_ClauseFromTerm(Term t) {
|
|
|
|
return (StaticClause *)IntegerOfTerm(ArgOfTerm(1, t));
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define Yap_MkMegaRefTerm(ap, ipc) __Yap_MkMegaRefTerm((ap), (ipc)PASS_REGS)
|
2013-03-26 20:01:52 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline Term __Yap_MkMegaRefTerm(PredEntry *ap, yamop *ipc USES_REGS) {
|
2004-09-27 21:45:04 +01:00
|
|
|
Term t[2];
|
|
|
|
t[0] = MkIntegerTerm((Int)ap);
|
2004-09-30 20:51:54 +01:00
|
|
|
t[1] = MkIntegerTerm((Int)ipc);
|
2016-01-03 02:06:09 +00:00
|
|
|
return Yap_MkApplTerm(FunctorMegaClause, 2, t);
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline yamop *Yap_MegaClauseFromTerm(Term t) {
|
|
|
|
return (yamop *)IntegerOfTerm(ArgOfTerm(2, t));
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline PredEntry *Yap_MegaClausePredicateFromTerm(Term t) {
|
|
|
|
return (PredEntry *)IntegerOfTerm(ArgOfTerm(1, t));
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define Yap_MkExoRefTerm(ap, i) __Yap_MkExoRefTerm((ap), (i)PASS_REGS)
|
2013-12-09 14:16:30 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline Term __Yap_MkExoRefTerm(PredEntry *ap, Int i USES_REGS) {
|
2013-12-09 14:16:30 +00:00
|
|
|
Term t[2];
|
|
|
|
t[0] = MkIntegerTerm((Int)ap);
|
|
|
|
t[1] = MkIntegerTerm((Int)i);
|
2016-01-03 02:06:09 +00:00
|
|
|
return Yap_MkApplTerm(FunctorExoClause, 2, t);
|
2013-12-09 14:16:30 +00:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline Int Yap_ExoClauseFromTerm(Term t) {
|
|
|
|
return IntegerOfTerm(ArgOfTerm(2, t));
|
2013-12-09 14:16:30 +00:00
|
|
|
}
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline PredEntry *Yap_ExoClausePredicateFromTerm(Term t) {
|
|
|
|
return (PredEntry *)IntegerOfTerm(ArgOfTerm(1, t));
|
2013-12-09 14:16:30 +00:00
|
|
|
}
|
|
|
|
|
2015-09-21 23:05:36 +01:00
|
|
|
/******************************************************************
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
EXECUTING PROLOG CLAUSES
|
2015-09-21 23:05:36 +01:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
bool Yap_search_for_static_predicate_in_use(PredEntry *p,
|
|
|
|
bool check_everything);
|
2013-12-09 14:16:30 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
static inline bool Yap_static_in_use(PredEntry *p, bool check_everything) {
|
2015-09-21 23:05:36 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
return TRUE;
|
|
|
|
#else
|
|
|
|
pred_flags_t pflags = p->PredFlags;
|
2016-01-03 02:06:09 +00:00
|
|
|
if (pflags & (DynamicPredFlag | LogUpdatePredFlag)) {
|
2015-09-21 23:05:36 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (STATIC_PREDICATES_MARKED) {
|
|
|
|
return (p->PredFlags & InUsePredFlag);
|
|
|
|
} else {
|
|
|
|
/* This code does not work for YAPOR or THREADS!!!!!!!! */
|
|
|
|
return Yap_search_for_static_predicate_in_use(p, check_everything);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEAD_REF(ref) FALSE
|
|
|
|
}
|
2013-12-09 14:16:30 +00:00
|
|
|
|
2004-10-26 21:16:18 +01:00
|
|
|
typedef enum {
|
|
|
|
FIND_PRED_FROM_ANYWHERE,
|
|
|
|
FIND_PRED_FROM_CP,
|
|
|
|
FIND_PRED_FROM_ENV
|
|
|
|
} find_pred_type;
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
Int Yap_PredForCode(yamop *, find_pred_type, Atom *, UInt *, Term *);
|
|
|
|
PredEntry *Yap_PredEntryForCode(yamop *, find_pred_type, void **, void **);
|
|
|
|
LogUpdClause *Yap_new_ludbe(Term, PredEntry *, UInt);
|
|
|
|
Term Yap_LUInstance(LogUpdClause *, UInt);
|
2005-07-06 16:10:18 +01:00
|
|
|
|
2009-02-12 16:39:20 +00:00
|
|
|
/* udi.c */
|
2016-01-03 02:06:09 +00:00
|
|
|
int Yap_new_udi_clause(PredEntry *, yamop *, Term);
|
|
|
|
yamop *Yap_udi_search(PredEntry *);
|
2009-02-12 16:39:20 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
Term Yap_bug_location(yamop *p, yamop *cp, choiceptr b_ptr, CELL *env);
|
|
|
|
Term Yap_pc_location(yamop *p, choiceptr b_ptr, CELL *env);
|
|
|
|
Term Yap_env_location(yamop *p, choiceptr b_ptr, CELL *env, Int ignore_first);
|
2004-10-26 21:16:18 +01:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#if LOW_PROF
|
|
|
|
void Yap_InformOfRemoval(void *);
|
|
|
|
void Yap_dump_code_area_for_profiler(void);
|
2005-12-17 03:25:39 +00:00
|
|
|
#else
|
2016-01-03 02:06:09 +00:00
|
|
|
#define Yap_InformOfRemoval(X)
|
2005-12-17 03:25:39 +00:00
|
|
|
#endif
|
2015-07-06 12:01:55 +01:00
|
|
|
|
|
|
|
#endif
|