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 *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#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 {
|
|
|
|
char *filename;
|
|
|
|
int mode;
|
|
|
|
Prop p;
|
|
|
|
UInt c;
|
|
|
|
} consult_obj;
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* Either we are assembling clauses or indexing code */
|
|
|
|
|
|
|
|
#define ASSEMBLING_CLAUSE 0
|
|
|
|
#define ASSEMBLING_INDEX 1
|
2004-02-05 16:57:02 +00:00
|
|
|
#define ASSEMBLING_EINDEX 2
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2008-09-05 05:22:19 +01:00
|
|
|
#define NextDynamicClause(X) (((yamop *)X)->u.Otapl.d)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define PredFirstClause 0
|
|
|
|
#define PredMiddleClause 1
|
|
|
|
#define PredLastClause 2
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
typedef struct logic_upd_index {
|
|
|
|
CELL ClFlags;
|
|
|
|
UInt ClRefCount;
|
2001-04-09 20:54:03 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
/* A lock for manipulating the clause */
|
2008-08-07 21:51:23 +01:00
|
|
|
// lockvar ClLock;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2004-03-05 15:26:33 +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;
|
2001-04-09 20:54:03 +01: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 {
|
|
|
|
Functor Id; /* allow pointers to this struct to id */
|
|
|
|
/* as dbref */
|
|
|
|
/* A set of flags describing info on the clause */
|
|
|
|
/* A set of flags describing info on the clause */
|
|
|
|
CELL ClFlags;
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
/* A lock for manipulating the clause */
|
2008-08-07 21:51:23 +01:00
|
|
|
// lockvar ClLock;
|
2003-08-27 14:37:10 +01:00
|
|
|
#endif
|
2004-03-05 15:26:33 +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 */
|
|
|
|
UInt ClRefCount;
|
|
|
|
/* data for clauses with environments */
|
|
|
|
yamop *ClExt;
|
2013-11-05 17:59:19 +00:00
|
|
|
union {
|
|
|
|
DBTerm *ClSource;
|
|
|
|
Int ClLine;
|
|
|
|
} lusl;
|
2003-08-27 14:37:10 +01:00
|
|
|
/* doubly linked list of clauses */
|
|
|
|
struct logic_upd_clause *ClPrev, *ClNext;
|
|
|
|
/* parent pointer */
|
|
|
|
PredEntry *ClPred;
|
2006-09-20 21:03:51 +01:00
|
|
|
UInt ClTimeStart, ClTimeEnd;
|
2003-08-27 14:37:10 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
|
|
|
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
|
|
|
|
2012-06-30 19:42:14 +01:00
|
|
|
INLINE_ONLY inline EXTERN int
|
2006-10-10 15:08:17 +01:00
|
|
|
VALID_TIMESTAMP(UInt timestamp, struct logic_upd_clause *cl)
|
|
|
|
{
|
|
|
|
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 */
|
|
|
|
CELL ClFlags;
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
/* A lock for manipulating the clause */
|
|
|
|
lockvar ClLock;
|
|
|
|
#endif
|
2004-03-05 15:26:33 +00:00
|
|
|
UInt ClSize;
|
2013-11-05 17:59:19 +00:00
|
|
|
Int ClLine;
|
2003-08-27 14:37:10 +01:00
|
|
|
UInt ClRefCount;
|
2003-04-30 18:46:05 +01:00
|
|
|
yamop *ClPrevious; /* immediate update clause */
|
|
|
|
/* The instructions, at least one of the form sl */
|
|
|
|
yamop ClCode[MIN_ARRAY];
|
|
|
|
} DynamicClause;
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
typedef struct static_index {
|
|
|
|
/* A set of flags describing info on the clause */
|
|
|
|
CELL ClFlags;
|
2004-03-05 15:26:33 +00:00
|
|
|
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;
|
2003-08-27 14:37:10 +01:00
|
|
|
yamop ClCode[MIN_ARRAY];
|
|
|
|
} StaticIndex;
|
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
typedef struct static_clause {
|
|
|
|
/* A set of flags describing info on the clause */
|
|
|
|
CELL ClFlags;
|
2004-03-05 15:26:33 +00:00
|
|
|
UInt ClSize;
|
2003-11-24 00:00:43 +00:00
|
|
|
union {
|
2013-11-05 17:59:19 +00:00
|
|
|
DBTerm *ClSource;
|
|
|
|
Int ClLine;
|
2003-11-24 00:00:43 +00:00
|
|
|
} usc;
|
2003-11-26 18:36:35 +00:00
|
|
|
struct static_clause *ClNext;
|
2003-04-30 18:46:05 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
|
|
|
yamop ClCode[MIN_ARRAY];
|
|
|
|
} StaticClause;
|
|
|
|
|
2004-09-27 21:45:04 +01:00
|
|
|
typedef struct static_mega_clause {
|
|
|
|
/* A set of flags describing info on the clause */
|
|
|
|
CELL ClFlags;
|
|
|
|
UInt ClSize;
|
|
|
|
PredEntry *ClPred;
|
|
|
|
UInt ClItemSize;
|
2013-11-05 17:59:19 +00:00
|
|
|
Int ClLine;
|
2006-03-22 20:07:28 +00:00
|
|
|
struct static_mega_clause *ClNext;
|
2004-09-27 21:45:04 +01:00
|
|
|
/* The instructions, at least one of the form sl */
|
|
|
|
yamop ClCode[MIN_ARRAY];
|
|
|
|
} 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;
|
|
|
|
|
2013-03-15 19:56:18 +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
|
|
|
|
2013-03-15 19:56:18 +00:00
|
|
|
INLINE_ONLY EXTERN inline BITS32
|
2013-01-08 12:35:18 +00:00
|
|
|
EXO_ADDRESS_TO_OFFSET(struct index_t *it, CELL* ptr)
|
|
|
|
{
|
2013-06-23 02:09:20 +01:00
|
|
|
return (ptr-it->cls)/it->arity+1;
|
2013-01-08 12:35:18 +00:00
|
|
|
}
|
|
|
|
|
2013-06-22 06:25:37 +01:00
|
|
|
INLINE_ONLY EXTERN inline CELL *EXO_OFFSET_TO_ADDRESS(struct index_t *it, BITS32 off);
|
2013-01-08 12:35:18 +00:00
|
|
|
|
|
|
|
INLINE_ONLY EXTERN inline CELL *
|
2013-03-15 19:56:18 +00:00
|
|
|
EXO_OFFSET_TO_ADDRESS(struct index_t *it, BITS32 off)
|
|
|
|
{
|
|
|
|
if (off == 0L)
|
|
|
|
return NULL;
|
2013-06-23 02:09:20 +01:00
|
|
|
return (it->cls)+(off-1)*it->arity;
|
2013-03-15 19:56:18 +00:00
|
|
|
}
|
|
|
|
|
2013-06-22 06:25:37 +01:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 ADDRESS_TO_LINK(struct index_t *it, BITS32 *ptr);
|
2013-03-15 19:56:18 +00:00
|
|
|
|
|
|
|
INLINE_ONLY EXTERN inline BITS32
|
2013-06-22 06:25:37 +01:00
|
|
|
ADDRESS_TO_LINK(struct index_t *it, BITS32* ptr)
|
2013-03-15 19:56:18 +00:00
|
|
|
{
|
|
|
|
return ptr-it->links;
|
|
|
|
}
|
|
|
|
|
2013-06-22 06:25:37 +01:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 *LINK_TO_ADDRESS(struct index_t *it, BITS32 off);
|
2013-03-15 19:56:18 +00:00
|
|
|
|
2013-06-22 06:25:37 +01:00
|
|
|
INLINE_ONLY EXTERN inline BITS32 *
|
2013-03-15 19:56:18 +00:00
|
|
|
LINK_TO_ADDRESS(struct index_t *it, BITS32 off)
|
2013-01-08 12:35:18 +00:00
|
|
|
{
|
|
|
|
return it->links+off;
|
|
|
|
}
|
|
|
|
|
2013-04-17 03:49:37 +01:00
|
|
|
typedef void (*CRefitExoIndex)(struct index_t **ip, UInt b[] USES_REGS);
|
|
|
|
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;
|
|
|
|
|
2003-04-30 18:46:05 +01: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)))
|
2004-09-27 21:45:04 +01:00
|
|
|
#define ClauseCodeToMegaClause(p) ((MegaClause *)((CODEADDR)(p)-(CELL)(((MegaClause *)NULL)->ClCode)))
|
2003-08-27 14:37:10 +01:00
|
|
|
#define ClauseCodeToLogUpdIndex(p) ((LogUpdIndex *)((CODEADDR)(p)-(CELL)(((LogUpdIndex *)NULL)->ClCode)))
|
|
|
|
#define ClauseCodeToStaticIndex(p) ((StaticIndex *)((CODEADDR)(p)-(CELL)(((StaticIndex *)NULL)->ClCode)))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
#define ClauseFlagsToDynamicClause(p) ((DynamicClause *)(p))
|
2003-08-27 14:37:10 +01:00
|
|
|
#define ClauseFlagsToLogUpdClause(p) ((LogUpdClause *)((CODEADDR)(p)-(CELL)(&(((LogUpdClause *)NULL)->ClFlags))))
|
2003-10-14 01:53:10 +01:00
|
|
|
#define ClauseFlagsToLogUpdIndex(p) ((LogUpdIndex *)((CODEADDR)(p)-(CELL)(&(((LogUpdIndex *)NULL)->ClFlags))))
|
2003-04-30 18:46:05 +01:00
|
|
|
#define ClauseFlagsToStaticClause(p) ((StaticClause *)(p))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
#define DynamicFlags(X) (ClauseCodeToDynamicClause(X)->ClFlags)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
#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
|
|
|
|
#define INC_CLREF_COUNT(X) (X)->ClRefCount++
|
|
|
|
#define DEC_CLREF_COUNT(X) (X)->ClRefCount--
|
2008-08-08 15:05:34 +01:00
|
|
|
|
2004-02-20 02:28:19 +00:00
|
|
|
#define CL_IN_USE(X) ((X)->ClRefCount)
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define INIT_CLREF_COUNT(X)
|
|
|
|
#define INC_CLREF_COUNT(X)
|
|
|
|
#define DEC_CLREF_COUNT(X)
|
2003-08-27 14:37:10 +01:00
|
|
|
#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 */
|
2013-04-25 23:15:04 +01: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 */
|
2013-04-25 23:15:04 +01:00
|
|
|
void Yap_IPred(PredEntry *, UInt, yamop *);
|
|
|
|
int Yap_addclause(Term,yamop *,int,Term,Term*);
|
|
|
|
void Yap_add_logupd_clause(PredEntry *,LogUpdClause *,int);
|
|
|
|
void Yap_kill_iblock(ClauseUnion *,ClauseUnion *,PredEntry *);
|
2013-11-05 17:59:19 +00:00
|
|
|
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 */
|
2013-04-25 23:15:04 +01:00
|
|
|
void Yap_ErCl(DynamicClause *);
|
|
|
|
void Yap_ErLogUpdCl(LogUpdClause *);
|
|
|
|
void Yap_ErLogUpdIndex(LogUpdIndex *);
|
|
|
|
Int Yap_Recordz(Atom, Term);
|
2013-12-09 14:16:30 +00:00
|
|
|
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 */
|
2013-04-25 23:15:04 +01: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 */
|
2013-04-25 23:15:04 +01: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 */
|
2013-01-10 23:22:11 +00:00
|
|
|
yamop *Yap_ExoLookup(PredEntry *ap USES_REGS);
|
2013-01-07 09:47:14 +00:00
|
|
|
CELL Yap_NextExo(choiceptr cpt, struct index_t *it);
|
|
|
|
|
2003-06-06 12:54:02 +01:00
|
|
|
#if USE_THREADED_CODE
|
|
|
|
|
|
|
|
#define OP_HASH_SIZE 2048
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
rtable_hash_op(OPCODE opc, int hash_mask) {
|
|
|
|
return((((CELL)opc) >> 3) & hash_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* given an opcode find the corresponding opnumber. This should make
|
|
|
|
switches on ops a much easier operation */
|
|
|
|
static inline op_numbers
|
|
|
|
Yap_op_from_opcode(OPCODE opc)
|
|
|
|
{
|
|
|
|
int j = rtable_hash_op(opc,OP_HASH_SIZE-1);
|
|
|
|
|
|
|
|
while (OP_RTABLE[j].opc != opc) {
|
2004-09-27 21:45:04 +01:00
|
|
|
if (!OP_RTABLE[j].opc)
|
|
|
|
return _Nstop;
|
2003-06-06 12:54:02 +01:00
|
|
|
if (j == OP_HASH_SIZE-1) {
|
|
|
|
j = 0;
|
|
|
|
} else {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OP_RTABLE[j].opnum;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline op_numbers
|
|
|
|
Yap_op_from_opcode(OPCODE opc)
|
|
|
|
{
|
|
|
|
return((op_numbers)opc);
|
|
|
|
}
|
|
|
|
#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
|
|
|
|
2006-03-24 16:26:31 +00:00
|
|
|
static inline int
|
2004-06-29 20:04:46 +01:00
|
|
|
same_lu_block(yamop **paddr, yamop *p)
|
|
|
|
{
|
|
|
|
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);
|
2004-06-29 20:04:46 +01:00
|
|
|
if (np == p) return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-11-05 17:59:19 +00:00
|
|
|
#define Yap_MkStaticRefTerm(cp, ap) __Yap_MkStaticRefTerm((cp), (ap) PASS_REGS)
|
2013-03-26 20:01:52 +00:00
|
|
|
|
2004-09-27 21:45:04 +01:00
|
|
|
static inline Term
|
2013-11-05 17:59:19 +00:00
|
|
|
__Yap_MkStaticRefTerm(StaticClause *cp, PredEntry *ap USES_REGS)
|
2004-09-27 21:45:04 +01:00
|
|
|
{
|
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);
|
|
|
|
return Yap_MkApplTerm(FunctorStaticClause,2,t);
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline StaticClause *
|
|
|
|
Yap_ClauseFromTerm(Term t)
|
|
|
|
{
|
|
|
|
return (StaticClause *)IntegerOfTerm(ArgOfTerm(1,t));
|
|
|
|
}
|
|
|
|
|
2013-03-26 20:01:52 +00:00
|
|
|
#define Yap_MkMegaRefTerm(ap, ipc) __Yap_MkMegaRefTerm((ap), (ipc) PASS_REGS)
|
|
|
|
|
2004-09-27 21:45:04 +01:00
|
|
|
static inline Term
|
2013-03-26 20:01:52 +00:00
|
|
|
__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);
|
2004-09-27 21:45:04 +01:00
|
|
|
return Yap_MkApplTerm(FunctorMegaClause,2,t);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline yamop *
|
|
|
|
Yap_MegaClauseFromTerm(Term t)
|
|
|
|
{
|
2004-10-06 22:15:49 +01:00
|
|
|
return (yamop *)IntegerOfTerm(ArgOfTerm(2,t));
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline PredEntry *
|
|
|
|
Yap_MegaClausePredicateFromTerm(Term t)
|
|
|
|
{
|
2004-10-06 22:15:49 +01:00
|
|
|
return (PredEntry *)IntegerOfTerm(ArgOfTerm(1,t));
|
2004-09-27 21:45:04 +01:00
|
|
|
}
|
|
|
|
|
2013-12-09 14:16:30 +00:00
|
|
|
#define Yap_MkExoRefTerm(ap, i) __Yap_MkExoRefTerm((ap), (i) PASS_REGS)
|
|
|
|
|
|
|
|
static inline Term
|
|
|
|
__Yap_MkExoRefTerm(PredEntry *ap,Int i USES_REGS)
|
|
|
|
{
|
|
|
|
Term t[2];
|
|
|
|
t[0] = MkIntegerTerm((Int)ap);
|
|
|
|
t[1] = MkIntegerTerm((Int)i);
|
|
|
|
return Yap_MkApplTerm(FunctorExoClause,2,t);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Int
|
|
|
|
Yap_ExoClauseFromTerm(Term t)
|
|
|
|
{
|
|
|
|
return IntegerOfTerm(ArgOfTerm(2,t));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline PredEntry *
|
|
|
|
Yap_ExoClausePredicateFromTerm(Term t)
|
|
|
|
{
|
|
|
|
return (PredEntry *)IntegerOfTerm(ArgOfTerm(1,t));
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DEAD_REF(ref) FALSE
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2013-04-25 23:15:04 +01:00
|
|
|
Int Yap_PredForCode(yamop *, find_pred_type, Atom *, UInt *, Term *);
|
|
|
|
PredEntry *Yap_PredEntryForCode(yamop *, find_pred_type, CODEADDR *, CODEADDR *);
|
|
|
|
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 */
|
2013-04-25 23:15:04 +01:00
|
|
|
void Yap_udi_init(void);
|
|
|
|
int Yap_new_udi_clause(PredEntry *, yamop *, Term);
|
|
|
|
yamop *Yap_udi_search(PredEntry *);
|
|
|
|
void Yap_udi_abolish(PredEntry *p);
|
2009-02-12 16:39:20 +00:00
|
|
|
|
2005-07-06 16:10:18 +01:00
|
|
|
#ifdef DEBUG
|
2013-04-25 23:15:04 +01:00
|
|
|
void Yap_bug_location(yamop *);
|
2004-10-26 21:16:18 +01:00
|
|
|
#endif
|
|
|
|
|
2005-12-17 03:25:39 +00:00
|
|
|
#if LOW_PROF
|
2013-04-25 23:15:04 +01:00
|
|
|
void Yap_InformOfRemoval(void *);
|
|
|
|
void Yap_dump_code_area_for_profiler(void);
|
2005-12-17 03:25:39 +00:00
|
|
|
#else
|
|
|
|
#define Yap_InformOfRemoval(X)
|
|
|
|
#endif
|