2001-04-09 20:54:03 +01: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: dbase.c *
|
|
|
|
* Last rev: 8/2/88 *
|
|
|
|
* mods: *
|
|
|
|
* comments: YAP's internal data base *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
#ifdef SCCS
|
|
|
|
static char SccsId[] = "%W% %G%";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "Yap.h"
|
|
|
|
#include "clause.h"
|
|
|
|
#include "yapio.h"
|
2004-09-17 20:34:53 +01:00
|
|
|
#include "attvar.h"
|
2003-08-27 14:37:10 +01:00
|
|
|
#include "heapgc.h"
|
2001-04-09 20:54:03 +01:00
|
|
|
#if HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2003-11-12 12:33:31 +00:00
|
|
|
#if HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* There are two options to implement traditional immediate update semantics.
|
|
|
|
|
|
|
|
- In the first option, we only remove an element of the chain when
|
|
|
|
it is phisically disposed of. This simplifies things, because
|
|
|
|
pointers are always valid, but it complicates some stuff a bit:
|
|
|
|
|
|
|
|
o You may have go through long lines of deleted db entries before you
|
|
|
|
actually reach the one you want.
|
|
|
|
|
|
|
|
o Deleted clauses are also not removed of the chain. The solution
|
|
|
|
was to place a fail in every clause, but you still have to
|
|
|
|
backtrack through failed clauses.
|
|
|
|
|
|
|
|
An alternative solution is to remove clauses from the chain, even
|
|
|
|
if they are still phisically present. Unfortunately this creates
|
|
|
|
problems because immediate update semantics means you have to
|
|
|
|
backtrack clauses or see the db entries stored later.
|
|
|
|
|
|
|
|
There are several solutions. One of the simplest is to use an age
|
|
|
|
counter. When you backtrack to a removed clause or to a deleted db
|
|
|
|
entry you use the age to find newly entered clauses in the DB.
|
|
|
|
|
|
|
|
This still causes a problem when you backtrack to a deleted
|
|
|
|
clause, because clauses are supposed to point to the next
|
|
|
|
alternative, and having been removed from the chain you cannot
|
|
|
|
point there directly. One solution is to have a predicate in C that
|
|
|
|
recovers the place where to go to and then gets rid of the clause.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#define DISCONNECT_OLD_ENTRIES 1
|
|
|
|
|
|
|
|
#ifdef MACYAPBUG
|
|
|
|
#define Register
|
|
|
|
#else
|
|
|
|
#define Register register
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Flags for recorda or recordz */
|
|
|
|
/* MkCode should be the same as CodeDBProperty */
|
|
|
|
#define MkFirst 1
|
|
|
|
#define MkCode CodeDBBit
|
|
|
|
#define MkLast 4
|
|
|
|
#define WithRef 8
|
|
|
|
#define MkIfNot 16
|
|
|
|
#define InQueue 32
|
|
|
|
|
|
|
|
#define FrstDBRef(V) ( (V) -> First )
|
|
|
|
#define NextDBRef(V) ( (V) -> Next )
|
|
|
|
|
|
|
|
#define DBLength(V) (sizeof(DBStruct) + (Int)(V) + CellSize)
|
2002-11-18 18:18:05 +00:00
|
|
|
#define AllocDBSpace(V) ((DBRef)Yap_AllocCodeSpace(V))
|
|
|
|
#define FreeDBSpace(V) Yap_FreeCodeSpace(V)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#if SIZEOF_INT_P==4
|
2001-12-21 04:04:19 +00:00
|
|
|
#define ToSmall(V) ((link_entry)(Unsigned(V)>>2))
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2001-12-21 04:04:19 +00:00
|
|
|
#define ToSmall(V) ((link_entry)(Unsigned(V)>>3))
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEAD_REF(ref) FALSE
|
|
|
|
|
|
|
|
#ifdef SFUNC
|
|
|
|
|
|
|
|
#define MaxSFs 256
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Term SName; /* The culprit */
|
|
|
|
CELL *SFather; /* and his father's position */
|
|
|
|
} SFKeep;
|
|
|
|
#endif
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
typedef struct queue_entry {
|
|
|
|
struct queue_entry *next;
|
|
|
|
DBTerm *DBT;
|
|
|
|
} QueueEntry;
|
|
|
|
|
2001-06-08 20:10:43 +01:00
|
|
|
typedef struct idb_queue
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
Functor id; /* identify this as being pointed to by a DBRef */
|
|
|
|
SMALLUNSGN Flags; /* always required */
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
rwlock_t QRWLock; /* a simple lock to protect this entry */
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
QueueEntry *FirstInQueue, *LastInQueue;
|
2001-04-09 20:54:03 +01:00
|
|
|
} db_queue;
|
|
|
|
|
|
|
|
#define HashFieldMask ((CELL)0xffL)
|
|
|
|
#define DualHashFieldMask ((CELL)0xffffL)
|
|
|
|
#define TripleHashFieldMask ((CELL)0xffffffL)
|
|
|
|
#define FourHashFieldMask ((CELL)0xffffffffL)
|
|
|
|
|
|
|
|
#define ONE_FIELD_SHIFT 8
|
|
|
|
#define TWO_FIELDS_SHIFT 16
|
|
|
|
#define THREE_FIELDS_SHIFT 24
|
|
|
|
|
|
|
|
#define AtomHash(t) (Unsigned(t)>>4)
|
|
|
|
#define FunctorHash(t) (Unsigned(t)>>4)
|
|
|
|
#define NumberHash(t) (Unsigned(IntOfTerm(t)))
|
|
|
|
|
2001-11-29 20:29:52 +00:00
|
|
|
#define LARGE_IDB_LINK_TABLE 1
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* traditionally, YAP used a link table to recover IDB terms*/
|
|
|
|
#define IDB_LINK_TABLE 1
|
|
|
|
#if LARGE_IDB_LINK_TABLE
|
|
|
|
typedef BITS32 link_entry;
|
2001-12-18 16:17:26 +00:00
|
|
|
#define SIZEOF_LINK_ENTRY 4
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
typedef BITS16 link_entry;
|
2001-12-18 16:17:26 +00:00
|
|
|
#define SIZEOF_LINK_ENTRY 2
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
/* a second alternative is to just use a tag */
|
|
|
|
/*#define IDB_USE_MBIT 1*/
|
|
|
|
|
|
|
|
/* These global variables are necessary to build the data base
|
|
|
|
structure */
|
2004-02-17 19:00:12 +00:00
|
|
|
typedef struct db_globs {
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
link_entry *lr, *LinkAr;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
/* we cannot call Error directly from within recorded(). These flags are used
|
|
|
|
to delay for a while
|
|
|
|
*/
|
2004-02-17 19:00:12 +00:00
|
|
|
DBRef *tofref; /* place the refs also up */
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef SFUNC
|
2004-02-17 19:00:12 +00:00
|
|
|
CELL *FathersPlace; /* Where the father was going when the term
|
2001-04-09 20:54:03 +01:00
|
|
|
* was reached */
|
2004-02-17 19:00:12 +00:00
|
|
|
SFKeep *SFAr, *TopSF; /* Where are we putting our SFunctors */
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2004-02-17 19:00:12 +00:00
|
|
|
DBRef found_one; /* Place where we started recording */
|
|
|
|
} dbglobs;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
static dbglobs *s_dbg;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#ifdef SUPPORT_HASH_TABLES
|
|
|
|
typedef struct {
|
|
|
|
CELL key;
|
|
|
|
DBRef entry;
|
|
|
|
} hash_db_entry;
|
|
|
|
|
|
|
|
typedef table {
|
|
|
|
Int NOfEntries;
|
|
|
|
Int HashArg;
|
|
|
|
hash_db_entry *table;
|
|
|
|
} hash_db_table;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
STATIC_PROTO(CELL *cpcells,(CELL *,CELL*,Int));
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2003-08-27 14:37:10 +01:00
|
|
|
STATIC_PROTO(void linkblk,(link_entry *,CELL *,CELL));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
#ifdef IDB_USE_MBIT
|
|
|
|
STATIC_PROTO(CELL *linkcells,(CELL *,Int));
|
|
|
|
#endif
|
|
|
|
STATIC_PROTO(Int cmpclls,(CELL *,CELL *,Int));
|
2004-02-12 12:37:12 +00:00
|
|
|
STATIC_PROTO(Prop FindDBProp,(AtomEntry *, int, unsigned int, Term));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(CELL CalcKey, (Term));
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
2004-02-17 19:00:12 +00:00
|
|
|
STATIC_PROTO(CELL *MkDBTerm, (CELL *, CELL *, CELL *, CELL *, CELL *, CELL *,int *, struct db_globs *));
|
2001-12-17 18:31:11 +00:00
|
|
|
#else
|
2004-02-17 19:00:12 +00:00
|
|
|
STATIC_PROTO(CELL *MkDBTerm, (CELL *, CELL *, CELL *, CELL *, CELL *, int *, struct db_globs *));
|
2001-12-17 18:31:11 +00:00
|
|
|
#endif
|
2004-02-17 19:00:12 +00:00
|
|
|
STATIC_PROTO(DBRef CreateDBStruct, (Term, DBProp, int, int *, UInt, struct db_globs *));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(DBRef record, (int, Term, Term, Term));
|
|
|
|
STATIC_PROTO(DBRef check_if_cons, (DBRef, Term));
|
|
|
|
STATIC_PROTO(DBRef check_if_var, (DBRef));
|
|
|
|
STATIC_PROTO(DBRef check_if_wvars, (DBRef, unsigned int, CELL *));
|
|
|
|
#ifdef IDB_LINK_TABLE
|
|
|
|
STATIC_PROTO(int scheckcells, (int, CELL *, CELL *, link_entry *, CELL));
|
|
|
|
#endif
|
2004-02-17 19:00:12 +00:00
|
|
|
STATIC_PROTO(DBRef check_if_nvars, (DBRef, unsigned int, CELL *, struct db_globs *));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(Int p_rcda, (void));
|
|
|
|
STATIC_PROTO(Int p_rcdap, (void));
|
|
|
|
STATIC_PROTO(Int p_rcdz, (void));
|
|
|
|
STATIC_PROTO(Int p_rcdzp, (void));
|
|
|
|
STATIC_PROTO(Int p_drcdap, (void));
|
|
|
|
STATIC_PROTO(Int p_drcdzp, (void));
|
2003-08-27 14:37:10 +01:00
|
|
|
STATIC_PROTO(Term GetDBTerm, (DBTerm *));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(DBProp FetchDBPropFromKey, (Term, int, int, char *));
|
2002-12-10 00:22:01 +00:00
|
|
|
STATIC_PROTO(Int i_recorded, (DBProp,Term));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(Int c_recorded, (int));
|
|
|
|
STATIC_PROTO(Int co_rded, (void));
|
|
|
|
STATIC_PROTO(Int in_rdedp, (void));
|
|
|
|
STATIC_PROTO(Int co_rdedp, (void));
|
|
|
|
STATIC_PROTO(Int p_first_instance, (void));
|
2003-08-27 14:37:10 +01:00
|
|
|
STATIC_PROTO(void ErasePendingRefs, (DBTerm *));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(void RemoveDBEntry, (DBRef));
|
2003-04-30 18:46:05 +01:00
|
|
|
STATIC_PROTO(void EraseLogUpdCl, (LogUpdClause *));
|
|
|
|
STATIC_PROTO(void MyEraseClause, (DynamicClause *));
|
|
|
|
STATIC_PROTO(void PrepareToEraseClause, (DynamicClause *, DBRef));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(void EraseEntry, (DBRef));
|
|
|
|
STATIC_PROTO(Int p_erase, (void));
|
|
|
|
STATIC_PROTO(Int p_eraseall, (void));
|
|
|
|
STATIC_PROTO(Int p_erased, (void));
|
|
|
|
STATIC_PROTO(Int p_instance, (void));
|
|
|
|
STATIC_PROTO(int NotActiveDB, (DBRef));
|
|
|
|
STATIC_PROTO(DBEntry *NextDBProp, (PropEntry *));
|
|
|
|
STATIC_PROTO(Int init_current_key, (void));
|
|
|
|
STATIC_PROTO(Int cont_current_key, (void));
|
|
|
|
STATIC_PROTO(Int cont_current_key_integer, (void));
|
|
|
|
STATIC_PROTO(Int p_rcdstatp, (void));
|
|
|
|
STATIC_PROTO(Int p_somercdedp, (void));
|
|
|
|
STATIC_PROTO(yamop * find_next_clause, (DBRef));
|
2002-12-27 16:53:09 +00:00
|
|
|
STATIC_PROTO(Int p_jump_to_next_dynamic_clause, (void));
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef SFUNC
|
|
|
|
STATIC_PROTO(void SFVarIn, (Term));
|
|
|
|
STATIC_PROTO(void sf_include, (SFKeep *));
|
|
|
|
#endif
|
|
|
|
STATIC_PROTO(Int p_init_queue, (void));
|
|
|
|
STATIC_PROTO(Int p_enqueue, (void));
|
2003-08-27 14:37:10 +01:00
|
|
|
STATIC_PROTO(void keepdbrefs, (DBTerm *));
|
2001-04-09 20:54:03 +01:00
|
|
|
STATIC_PROTO(Int p_dequeue, (void));
|
2002-11-11 17:38:10 +00:00
|
|
|
STATIC_PROTO(void ErDBE, (DBRef));
|
2003-08-27 14:37:10 +01:00
|
|
|
STATIC_PROTO(void ReleaseTermFromDB, (DBTerm *));
|
|
|
|
STATIC_PROTO(PredEntry *new_lu_entry, (Term));
|
|
|
|
STATIC_PROTO(PredEntry *new_lu_int_key, (Int));
|
|
|
|
STATIC_PROTO(PredEntry *find_lu_entry, (Term));
|
|
|
|
STATIC_PROTO(DBProp find_int_key, (Int));
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-10-26 21:16:18 +01:00
|
|
|
#if USE_SYSTEM_MALLOC
|
2004-02-05 16:57:02 +00:00
|
|
|
#define db_check_trail(x) { \
|
2004-02-17 19:00:12 +00:00
|
|
|
if (Unsigned(dbg->tofref) == Unsigned(x)) { \
|
2004-02-05 16:57:02 +00:00
|
|
|
goto error_tr_overflow; \
|
|
|
|
} \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2003-12-01 17:27:42 +00:00
|
|
|
#define db_check_trail(x) { \
|
2004-02-17 19:00:12 +00:00
|
|
|
if (Unsigned(dbg->tofref) == Unsigned(x)) { \
|
2004-10-26 21:16:18 +01:00
|
|
|
goto error_tr_overflow; \
|
2003-12-01 17:27:42 +00:00
|
|
|
} \
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-10-28 18:38:50 +01:00
|
|
|
static UInt new_trail_size(void)
|
|
|
|
{
|
|
|
|
UInt sz = (Yap_TrailTop-(ADDR)TR)/2;
|
|
|
|
if (sz < 64 * 1024L)
|
|
|
|
return 64 * 1024L;
|
|
|
|
if (sz > 1024*1024L)
|
|
|
|
return 1024*1024L;
|
|
|
|
return sz;
|
|
|
|
}
|
|
|
|
|
2004-10-27 16:56:34 +01:00
|
|
|
static int
|
|
|
|
recover_from_record_error(int nargs)
|
|
|
|
{
|
|
|
|
switch(Yap_Error_TYPE) {
|
|
|
|
case OUT_OF_STACK_ERROR:
|
|
|
|
if (!Yap_gc(nargs, ENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
goto recover_record;
|
|
|
|
case OUT_OF_TRAIL_ERROR:
|
2005-10-28 18:38:50 +01:00
|
|
|
if (!Yap_growtrail(new_trail_size(), FALSE)) {
|
2004-10-27 16:56:34 +01:00
|
|
|
Yap_Error(OUT_OF_TRAIL_ERROR, TermNil, "YAP could not grow trail in recorda/3");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
goto recover_record;
|
|
|
|
case OUT_OF_HEAP_ERROR:
|
|
|
|
if (!Yap_growheap(FALSE, Yap_Error_Size, NULL)) {
|
|
|
|
Yap_Error(OUT_OF_HEAP_ERROR, Yap_Error_Term, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
goto recover_record;
|
|
|
|
case OUT_OF_AUXSPACE_ERROR:
|
2004-12-05 05:01:45 +00:00
|
|
|
if (!Yap_ExpandPreAllocCodeSpace(Yap_Error_Size, NULL)) {
|
2004-10-27 16:56:34 +01:00
|
|
|
Yap_Error(OUT_OF_AUXSPACE_ERROR, Yap_Error_Term, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
goto recover_record;
|
|
|
|
default:
|
|
|
|
Yap_Error(Yap_Error_TYPE, Yap_Error_Term, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
recover_record:
|
|
|
|
Yap_Error_Size = 0;
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#ifdef SUPPORT_HASH_TABLES
|
|
|
|
/* related property and hint on number of entries */
|
|
|
|
static void create_hash_table(DBProp p, Int hint) {
|
|
|
|
int off = sizeof(CELL)*4, out;
|
|
|
|
Int size;
|
|
|
|
|
|
|
|
if (hint < p->NOfEntries)
|
|
|
|
hint = p->NOfEntries;
|
|
|
|
while (off) {
|
2005-02-21 16:50:21 +00:00
|
|
|
Int limit = 1L << (off);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (inp >= limit) {
|
|
|
|
out += off;
|
|
|
|
inp >>= off;
|
|
|
|
}
|
|
|
|
off >>= 1;
|
|
|
|
}
|
2005-02-21 16:50:21 +00:00
|
|
|
if ((size = 1L << out) < hint)
|
2001-04-09 20:54:03 +01:00
|
|
|
hint <<= 1;
|
|
|
|
/* clean up the table */
|
|
|
|
pt = tbl = (hash_db_entry *)AllocDBSpace(hint*sizeof(hash_db_entry));
|
|
|
|
for (i=0; i< hint; i++) {
|
|
|
|
pt->key = NULL;
|
|
|
|
pt++;
|
|
|
|
}
|
|
|
|
/* next insert the entries */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void insert_in_table() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_from_table() {
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IDB_LINK_TABLE
|
|
|
|
inline static CELL *cpcells(CELL *to, CELL *from, Int n)
|
|
|
|
{
|
|
|
|
#if HAVE_MEMMOVE
|
2001-04-25 14:27:14 +01:00
|
|
|
memmove((void *)to, (void *)from, (size_t)(n*sizeof(CELL)));
|
|
|
|
return(to+n);
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
while (n-- >= 0) {
|
|
|
|
*to++ = *from++;
|
|
|
|
}
|
|
|
|
return(to);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static void linkblk(link_entry *r, CELL *c, CELL offs)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
CELL p;
|
|
|
|
|
|
|
|
while ((p = (CELL)*r) != 0) {
|
|
|
|
Term t = c[p];
|
|
|
|
r++;
|
2003-08-27 14:37:10 +01:00
|
|
|
c[p] = AdjustIDBPtr(t, offs);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IDB_USE_MBIT
|
|
|
|
inline static CELL *cpcells(register CELL *to, register CELL *from, Int n)
|
|
|
|
{
|
|
|
|
CELL *last = to + n;
|
|
|
|
register CELL off = ((CELL)to)-MBIT;
|
|
|
|
while (to <= last) {
|
|
|
|
register d0 = *from++;
|
|
|
|
if (MARKED(d0))
|
|
|
|
*to++ = AdjustIDBPtr(d0, off);
|
|
|
|
else
|
|
|
|
*to++ = d0;
|
|
|
|
}
|
|
|
|
return(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
static CELL *linkcells(register CELL *to, Int n)
|
|
|
|
{
|
|
|
|
CELL *last = to + n;
|
|
|
|
register CELL off = ((CELL)to)-MBIT;
|
|
|
|
while(to <= last) {
|
|
|
|
register d0 = *to++;
|
|
|
|
if (MARKED(d0))
|
|
|
|
to[-1] = AdjustIDBPtr(d0, off);
|
|
|
|
}
|
|
|
|
return(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static Int cmpclls(CELL *a,CELL *b,Int n)
|
|
|
|
{
|
2002-01-30 00:26:43 +00:00
|
|
|
while (n-- > 0) {
|
|
|
|
if(*a++ != *b++) return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
#if !THREADS
|
|
|
|
int Yap_DBTrailOverflow()
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
#ifdef IDB_USE_MBIT
|
|
|
|
return(FALSE);
|
|
|
|
#endif
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
return((CELL *)s_dbg->lr > (CELL *)s_dbg->tofref - 2048);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
}
|
2004-02-17 19:00:12 +00:00
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* get DB entry for ap/arity; */
|
|
|
|
static Prop
|
2004-02-12 12:37:12 +00:00
|
|
|
FindDBPropHavingLock(AtomEntry *ae, int CodeDB, unsigned int arity, Term dbmod)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
Prop p0;
|
|
|
|
DBProp p;
|
|
|
|
|
2001-10-30 16:42:05 +00:00
|
|
|
p = RepDBProp(p0 = ae->PropsOfAE);
|
2001-04-09 20:54:03 +01:00
|
|
|
while (p0 && (((p->KindOfPE & ~0x1) != (CodeDB|DBProperty)) ||
|
|
|
|
(p->ArityOfDB != arity) ||
|
2001-11-15 00:01:43 +00:00
|
|
|
((CodeDB & MkCode) && p->ModuleOfDB && p->ModuleOfDB != dbmod))) {
|
2001-04-09 20:54:03 +01:00
|
|
|
p = RepDBProp(p0 = p->NextOfPE);
|
|
|
|
}
|
|
|
|
return (p0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* get DB entry for ap/arity; */
|
|
|
|
static Prop
|
2004-02-12 12:37:12 +00:00
|
|
|
FindDBProp(AtomEntry *ae, int CodeDB, unsigned int arity, Term dbmod)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
Prop out;
|
|
|
|
|
|
|
|
READ_LOCK(ae->ARWLock);
|
2001-11-15 00:01:43 +00:00
|
|
|
out = FindDBPropHavingLock(ae, CodeDB, arity, dbmod);
|
2001-04-09 20:54:03 +01:00
|
|
|
READ_UNLOCK(ae->ARWLock);
|
|
|
|
return(out);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* These two functions allow us a fast lookup method in the data base */
|
|
|
|
/* PutMasks builds the mask and hash for a single argument */
|
|
|
|
inline static CELL
|
|
|
|
CalcKey(Term tw)
|
|
|
|
{
|
|
|
|
/* The first argument is known to be instantiated */
|
|
|
|
if (IsApplTerm(tw)) {
|
|
|
|
Functor f = FunctorOfTerm(tw);
|
|
|
|
if (IsExtensionFunctor(f)) {
|
|
|
|
if (f == FunctorDBRef) {
|
|
|
|
return(FunctorHash(tw)); /* Ref */
|
|
|
|
} /* if (f == FunctorLongInt || f == FunctorDouble) */
|
|
|
|
return(NumberHash(RepAppl(tw)[1]));
|
|
|
|
}
|
|
|
|
return(FunctorHash(f));
|
|
|
|
} else if (IsAtomOrIntTerm(tw)) {
|
|
|
|
if (IsAtomTerm(tw)) {
|
|
|
|
return(AtomHash(tw));
|
|
|
|
}
|
|
|
|
return(NumberHash(tw));
|
|
|
|
}
|
|
|
|
return(FunctorHash(FunctorList));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* EvalMasks builds the mask and hash for up to three arguments of a term */
|
2002-11-11 17:38:10 +00:00
|
|
|
static CELL
|
2001-04-09 20:54:03 +01:00
|
|
|
EvalMasks(register Term tm, CELL *keyp)
|
|
|
|
{
|
|
|
|
|
2001-12-17 18:31:11 +00:00
|
|
|
if (IsVarTerm(tm)) {
|
|
|
|
*keyp = 0L;
|
|
|
|
return(0L);
|
|
|
|
} else if (IsApplTerm(tm)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
Functor fun = FunctorOfTerm(tm);
|
|
|
|
|
|
|
|
if (IsExtensionFunctor(fun)) {
|
|
|
|
if (fun == FunctorDBRef) {
|
|
|
|
*keyp = FunctorHash(tm); /* Ref */
|
|
|
|
} else /* if (f == FunctorLongInt || f == FunctorDouble) */ {
|
|
|
|
*keyp = NumberHash(RepAppl(tm)[1]);
|
|
|
|
}
|
|
|
|
return(FourHashFieldMask);
|
|
|
|
} else {
|
|
|
|
unsigned int arity;
|
|
|
|
|
|
|
|
arity = ArityOfFunctor(fun);
|
|
|
|
#ifdef SFUNC
|
|
|
|
if (arity == SFArity) { /* do not even try to calculate masks */
|
|
|
|
*keyp = key;
|
|
|
|
return(FourHashFieldMask);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
switch (arity) {
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
Term tw = ArgOfTerm(1, tm);
|
|
|
|
|
|
|
|
if (IsNonVarTerm(tw)) {
|
|
|
|
*keyp = (FunctorHash(fun) & DualHashFieldMask) | (CalcKey(tw) << TWO_FIELDS_SHIFT);
|
|
|
|
return(FourHashFieldMask);
|
|
|
|
} else {
|
|
|
|
*keyp = (FunctorHash(fun) & DualHashFieldMask);
|
|
|
|
return(DualHashFieldMask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
Term tw1, tw2;
|
|
|
|
CELL key, mask;
|
|
|
|
|
|
|
|
key = FunctorHash(fun) & DualHashFieldMask;
|
|
|
|
mask = DualHashFieldMask;
|
|
|
|
|
|
|
|
tw1 = ArgOfTerm(1, tm);
|
|
|
|
if (IsNonVarTerm(tw1)) {
|
|
|
|
key |= ((CalcKey(tw1) & HashFieldMask) << TWO_FIELDS_SHIFT);
|
|
|
|
mask |= (HashFieldMask << TWO_FIELDS_SHIFT);
|
|
|
|
}
|
|
|
|
tw2 = ArgOfTerm(2, tm);
|
|
|
|
if (IsNonVarTerm(tw2)) {
|
|
|
|
*keyp = key | (CalcKey(tw2) << THREE_FIELDS_SHIFT);
|
|
|
|
return(mask | (HashFieldMask << THREE_FIELDS_SHIFT));
|
|
|
|
} else {
|
|
|
|
*keyp = key;
|
|
|
|
return(mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
Term tw1, tw2, tw3;
|
|
|
|
CELL key, mask;
|
|
|
|
|
|
|
|
key = FunctorHash(fun) & HashFieldMask;
|
|
|
|
mask = HashFieldMask;
|
|
|
|
|
|
|
|
tw1 = ArgOfTerm(1, tm);
|
|
|
|
if (IsNonVarTerm(tw1)) {
|
|
|
|
key |= (CalcKey(tw1) & HashFieldMask) << ONE_FIELD_SHIFT;
|
|
|
|
mask |= HashFieldMask << ONE_FIELD_SHIFT;
|
|
|
|
}
|
|
|
|
tw2 = ArgOfTerm(2, tm);
|
|
|
|
if (IsNonVarTerm(tw2)) {
|
|
|
|
key |= (CalcKey(tw2) & HashFieldMask) << TWO_FIELDS_SHIFT;
|
|
|
|
mask |= HashFieldMask << TWO_FIELDS_SHIFT;
|
|
|
|
}
|
|
|
|
tw3 = ArgOfTerm(3, tm);
|
|
|
|
if (IsNonVarTerm(tw3)) {
|
|
|
|
*keyp = key | (CalcKey(tw3) << THREE_FIELDS_SHIFT);
|
|
|
|
return(mask | (HashFieldMask << THREE_FIELDS_SHIFT));
|
|
|
|
} else {
|
|
|
|
*keyp = key;
|
|
|
|
return(mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
CELL key = (FunctorHash(FunctorList) & DualHashFieldMask);
|
|
|
|
CELL mask = DualHashFieldMask;
|
|
|
|
Term th = HeadOfTerm(tm), tt;
|
|
|
|
|
|
|
|
if (IsNonVarTerm(th)) {
|
|
|
|
mask |= (HashFieldMask << TWO_FIELDS_SHIFT);
|
|
|
|
key |= (CalcKey(th) << TWO_FIELDS_SHIFT);
|
|
|
|
}
|
|
|
|
tt = TailOfTerm(tm);
|
|
|
|
if (IsNonVarTerm(tt)) {
|
|
|
|
*keyp = key | (CalcKey(tt) << THREE_FIELDS_SHIFT);
|
|
|
|
return( mask|(HashFieldMask << THREE_FIELDS_SHIFT));
|
|
|
|
}
|
|
|
|
*keyp = key;
|
|
|
|
return(mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
CELL
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_EvalMasks(register Term tm, CELL *keyp)
|
2002-11-11 17:38:10 +00:00
|
|
|
{
|
|
|
|
return EvalMasks(tm, keyp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* Called to inform that a new pointer to a data base entry has been added */
|
|
|
|
#define MarkThisRef(Ref) ((Ref)->NOfRefsTo ++ )
|
|
|
|
|
|
|
|
/* From a term, builds its representation in the data base */
|
|
|
|
|
|
|
|
/* otherwise, we just need to restore variables*/
|
|
|
|
typedef struct {
|
|
|
|
CELL *addr;
|
|
|
|
} visitel;
|
2003-08-27 14:37:10 +01:00
|
|
|
#define DB_UNWIND_CUNIF() \
|
2001-04-09 20:54:03 +01:00
|
|
|
while (visited < (visitel *)AuxSp) { \
|
|
|
|
RESET_VARIABLE(visited->addr); \
|
|
|
|
visited ++; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no checking for overflow while building DB terms yet */
|
2004-08-11 17:14:55 +01:00
|
|
|
#define CheckDBOverflow(X) if (CodeMax+X >= (CELL *)visited-1024) { \
|
2001-04-09 20:54:03 +01:00
|
|
|
goto error; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no checking for overflow while building DB terms yet */
|
|
|
|
#define CheckVisitOverflow() if ((CELL *)to_visit+1024 >= ASP) { \
|
|
|
|
goto error2; \
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static CELL *
|
|
|
|
copy_long_int(CELL *st, CELL *pt)
|
|
|
|
{
|
|
|
|
/* first thing, store a link to the list before we move on */
|
|
|
|
st[0] = (CELL)FunctorLongInt;
|
|
|
|
st[1] = pt[1];
|
2004-09-16 18:29:08 +01:00
|
|
|
#if GC_NO_TAGS
|
|
|
|
st[2] = 2*sizeof(CELL)+EndSpecials;
|
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
st[2] = ((2*sizeof(CELL)+EndSpecials)|MBIT);
|
2004-09-16 18:29:08 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
/* now reserve space */
|
|
|
|
return st+3;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CELL *
|
|
|
|
copy_double(CELL *st, CELL *pt)
|
|
|
|
{
|
|
|
|
/* first thing, store a link to the list before we move on */
|
|
|
|
st[0] = (CELL)FunctorDouble;
|
|
|
|
st[1] = pt[1];
|
|
|
|
#if SIZEOF_DOUBLE == 2*SIZEOF_LONG_INT
|
|
|
|
st[2] = pt[2];
|
2004-09-16 18:29:08 +01:00
|
|
|
#if GC_NO_TAGS
|
|
|
|
st[3] = 3*sizeof(CELL)+EndSpecials;
|
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
st[3] = ((3*sizeof(CELL)+EndSpecials)|MBIT);
|
2004-09-16 18:29:08 +01:00
|
|
|
#endif /* GC_NO_TAGS */
|
2003-08-27 14:37:10 +01:00
|
|
|
#else
|
2004-09-16 18:29:08 +01:00
|
|
|
#if GC_NO_TAGS
|
|
|
|
st[2] = 2*sizeof(CELL)+EndSpecials;
|
2004-11-19 17:14:15 +00:00
|
|
|
#else
|
|
|
|
st[2] = ((2*sizeof(CELL)+EndSpecials)|MBIT);
|
2004-09-16 18:29:08 +01:00
|
|
|
#endif /* GC_NO_TAGS */
|
2003-08-27 14:37:10 +01:00
|
|
|
#endif
|
|
|
|
/* now reserve space */
|
|
|
|
return st+(2+SIZEOF_DOUBLE/SIZEOF_LONG_INT);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_GMP
|
|
|
|
static CELL *
|
|
|
|
copy_big_int(CELL *st, CELL *pt)
|
|
|
|
{
|
|
|
|
Int sz =
|
|
|
|
sizeof(MP_INT)+
|
|
|
|
(((MP_INT *)(pt+1))->_mp_alloc*sizeof(mp_limb_t));
|
|
|
|
|
|
|
|
/* first functor */
|
|
|
|
st[0] = (CELL)FunctorBigInt;
|
|
|
|
/* then the actual number */
|
|
|
|
memcpy((void *)(st+1), (void *)(pt+1), sz);
|
|
|
|
st = st+1+sz/CellSize;
|
|
|
|
/* then the tail for gc */
|
2004-09-16 18:29:08 +01:00
|
|
|
#if GC_NO_TAGS
|
|
|
|
st[0] = sz+CellSize+EndSpecials;
|
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
st[0] = (sz+CellSize+EndSpecials)|MBIT;
|
2004-09-16 18:29:08 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
return st+1;
|
|
|
|
}
|
|
|
|
#endif /* BIG_INT */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-10-31 12:09:49 +00:00
|
|
|
#define DB_MARKED(d0) ((CELL *)(d0) < CodeMax && (CELL *)(d0) >= tbase)
|
|
|
|
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* This routine creates a complex term in the heap. */
|
|
|
|
static CELL *MkDBTerm(register CELL *pt0, register CELL *pt0_end,
|
|
|
|
register CELL *StoPoint,
|
|
|
|
CELL *CodeMax, CELL *tbase,
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
CELL *attachmentsp,
|
|
|
|
#endif
|
2004-02-17 19:00:12 +00:00
|
|
|
int *vars_foundp,
|
|
|
|
struct db_globs *dbg)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
|
2004-01-23 02:23:51 +00:00
|
|
|
#if THREADS
|
|
|
|
#undef Yap_REGS
|
|
|
|
register REGSTORE *regp = Yap_regp;
|
|
|
|
#define Yap_REGS (*regp)
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
register visitel *visited = (visitel *)AuxSp;
|
|
|
|
/* store this in H */
|
|
|
|
register CELL **to_visit = (CELL **)H;
|
|
|
|
CELL **to_visit_base = to_visit;
|
|
|
|
/* where we are going to add a new pair */
|
|
|
|
int vars_found = 0;
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
Term ConstraintsTerm = TermNil;
|
2001-12-27 22:38:41 +00:00
|
|
|
CELL *origH = H;
|
2001-12-17 18:31:11 +00:00
|
|
|
#endif
|
2004-04-22 21:07:07 +01:00
|
|
|
CELL *CodeMaxBase = CodeMax;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
loop:
|
|
|
|
while (pt0 <= pt0_end) {
|
|
|
|
|
|
|
|
CELL *ptd0 = pt0;
|
|
|
|
CELL d0 = *ptd0;
|
|
|
|
restart:
|
|
|
|
if (IsVarTerm(d0))
|
|
|
|
goto deref_var;
|
|
|
|
|
|
|
|
if (IsApplTerm(d0)) {
|
|
|
|
register Functor f;
|
|
|
|
register CELL *ap2;
|
|
|
|
|
|
|
|
/* we will need to link afterwards */
|
|
|
|
ap2 = RepAppl(d0);
|
|
|
|
#ifdef RATIONAL_TREES
|
2003-08-27 14:37:10 +01:00
|
|
|
if (ap2 >= tbase && ap2 < StoPoint) {
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall((CELL)(StoPoint)-(CELL)(tbase));
|
2001-04-09 20:54:03 +01:00
|
|
|
*StoPoint++ = d0;
|
|
|
|
++pt0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall((CELL)(StoPoint)-(CELL)(tbase));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
f = (Functor)(*ap2);
|
|
|
|
if (IsExtensionFunctor(f)) {
|
|
|
|
switch((CELL)f) {
|
|
|
|
case (CELL)FunctorDBRef:
|
|
|
|
{
|
|
|
|
DBRef dbentry;
|
|
|
|
/* store now the correct entry */
|
|
|
|
dbentry = DBRefOfTerm(d0);
|
|
|
|
*StoPoint++ = d0;
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
dbg->lr--;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2004-09-27 21:45:04 +01:00
|
|
|
if (dbentry->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)dbentry;
|
|
|
|
|
|
|
|
cl->ClRefCount++;
|
|
|
|
} else {
|
|
|
|
dbentry->NOfRefsTo++;
|
2003-11-26 18:36:35 +00:00
|
|
|
}
|
2004-02-17 19:00:12 +00:00
|
|
|
*--dbg->tofref = dbentry;
|
|
|
|
db_check_trail(dbg->lr);
|
2001-04-09 20:54:03 +01:00
|
|
|
/* just continue the loop */
|
|
|
|
++ pt0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case (CELL)FunctorLongInt:
|
|
|
|
#ifdef IDB_USE_MBIT
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(CodeMax)|MBIT;
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(CodeMax);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2004-08-11 17:14:55 +01:00
|
|
|
CheckDBOverflow(3);
|
2003-08-27 14:37:10 +01:00
|
|
|
CodeMax = copy_long_int(CodeMax, ap2);
|
|
|
|
++pt0;
|
|
|
|
continue;
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef USE_GMP
|
|
|
|
case (CELL)FunctorBigInt:
|
2004-08-11 17:14:55 +01:00
|
|
|
CheckDBOverflow(3);
|
2003-08-27 14:37:10 +01:00
|
|
|
/* first thing, store a link to the list before we move on */
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef IDB_USE_MBIT
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(CodeMax)|MBIT;
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(CodeMax);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
CodeMax = copy_big_int(CodeMax, ap2);
|
|
|
|
++pt0;
|
|
|
|
continue;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
case (CELL)FunctorDouble:
|
|
|
|
{
|
|
|
|
CELL *st = CodeMax;
|
|
|
|
|
2004-08-11 17:14:55 +01:00
|
|
|
CheckDBOverflow(4);
|
2001-04-09 20:54:03 +01:00
|
|
|
/* first thing, store a link to the list before we move on */
|
|
|
|
#ifdef IDB_USE_MBIT
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(st)|MBIT;
|
2001-04-25 14:27:14 +01:00
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(st);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
CodeMax = copy_double(CodeMax, ap2);
|
2001-04-09 20:54:03 +01:00
|
|
|
++pt0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* first thing, store a link to the list before we move on */
|
|
|
|
#ifdef IDB_USE_MBIT
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(CodeMax)|MBIT;
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsAppl(CodeMax);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
/* next, postpone analysis to the rest of the current list */
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
to_visit[0] = pt0+1;
|
|
|
|
to_visit[1] = pt0_end;
|
|
|
|
to_visit[2] = StoPoint;
|
|
|
|
to_visit[3] = (CELL *)*pt0;
|
|
|
|
to_visit += 4;
|
|
|
|
*pt0 = StoPoint[-1];
|
|
|
|
#else
|
|
|
|
if (pt0 < pt0_end) {
|
|
|
|
to_visit[0] = pt0+1;
|
|
|
|
to_visit[1] = pt0_end;
|
|
|
|
to_visit[2] = StoPoint;
|
|
|
|
to_visit += 3;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
CheckVisitOverflow();
|
|
|
|
d0 = ArityOfFunctor(f);
|
|
|
|
pt0 = ap2+1;
|
|
|
|
pt0_end = ap2 + d0;
|
2004-12-28 22:20:37 +00:00
|
|
|
CheckDBOverflow(d0+1);
|
2001-04-09 20:54:03 +01:00
|
|
|
/* prepare for our new compound term */
|
|
|
|
/* first the functor */
|
|
|
|
*CodeMax++ = (CELL)f;
|
|
|
|
/* we'll be working here */
|
|
|
|
StoPoint = CodeMax;
|
|
|
|
/* now reserve space */
|
|
|
|
CodeMax += d0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (IsPairTerm(d0)) {
|
|
|
|
/* we will need to link afterwards */
|
|
|
|
#ifdef RATIONAL_TREES
|
2003-08-27 14:37:10 +01:00
|
|
|
CELL *ap2 = RepPair(d0);
|
|
|
|
if (ap2 >= tbase && ap2 < StoPoint) {
|
2001-04-09 20:54:03 +01:00
|
|
|
*StoPoint++ = d0;
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall((CELL)(StoPoint)-(CELL)(tbase));
|
2001-04-09 20:54:03 +01:00
|
|
|
++pt0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall((CELL)(StoPoint)-(CELL)(tbase));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
#ifdef IDB_USE_MBIT
|
|
|
|
*StoPoint++ =
|
2003-08-27 14:37:10 +01:00
|
|
|
AbsPair(CodeMax)|MBIT;
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint++ = AbsPair(CodeMax);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
/* next, postpone analysis to the rest of the current list */
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
to_visit[0] = pt0+1;
|
|
|
|
to_visit[1] = pt0_end;
|
|
|
|
to_visit[2] = StoPoint;
|
|
|
|
to_visit[3] = (CELL *)*pt0;
|
|
|
|
to_visit += 4;
|
|
|
|
*pt0 = StoPoint[-1];
|
|
|
|
#else
|
|
|
|
if (pt0 < pt0_end) {
|
|
|
|
to_visit[0] = pt0+1;
|
|
|
|
to_visit[1] = pt0_end;
|
|
|
|
to_visit[2] = StoPoint;
|
|
|
|
to_visit += 3;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
CheckVisitOverflow();
|
|
|
|
/* new list */
|
|
|
|
/* we are working at CodeMax */
|
|
|
|
StoPoint = CodeMax;
|
|
|
|
/* set ptr to new term being analysed */
|
|
|
|
pt0 = RepPair(d0);
|
|
|
|
pt0_end = RepPair(d0) + 1;
|
|
|
|
/* reserve space for our new list */
|
|
|
|
CodeMax += 2;
|
2004-08-11 17:14:55 +01:00
|
|
|
CheckDBOverflow(2);
|
2001-04-09 20:54:03 +01:00
|
|
|
continue;
|
|
|
|
} else if (IsAtomOrIntTerm(d0)) {
|
|
|
|
*StoPoint++ = d0;
|
|
|
|
++pt0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the code to dereference a variable */
|
|
|
|
deref_var:
|
2003-10-31 12:09:49 +00:00
|
|
|
if (!DB_MARKED(d0)) {
|
2001-12-17 18:31:11 +00:00
|
|
|
if (
|
2001-04-09 20:54:03 +01:00
|
|
|
#if SBA
|
2001-12-17 18:31:11 +00:00
|
|
|
d0 != 0
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2001-12-17 18:31:11 +00:00
|
|
|
d0 != (CELL)ptd0
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2001-12-17 18:31:11 +00:00
|
|
|
) {
|
|
|
|
ptd0 = (Term *) d0;
|
|
|
|
d0 = *ptd0;
|
|
|
|
goto restart; /* continue dereferencing */
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2001-12-17 18:31:11 +00:00
|
|
|
/* else just drop to found_var */
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
/* else just drop to found_var */
|
|
|
|
{
|
|
|
|
CELL displacement = (CELL)(StoPoint)-(CELL)(tbase);
|
|
|
|
|
|
|
|
pt0++;
|
|
|
|
/* first time we found this variable! */
|
2003-10-31 12:09:49 +00:00
|
|
|
if (!DB_MARKED(d0)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* store previous value */
|
|
|
|
visited --;
|
|
|
|
visited->addr = ptd0;
|
2004-08-11 17:14:55 +01:00
|
|
|
CheckDBOverflow(1);
|
2001-04-09 20:54:03 +01:00
|
|
|
/* variables need to be offset at read time */
|
2003-10-31 12:09:49 +00:00
|
|
|
*ptd0 = (CELL)StoPoint;
|
2001-04-09 20:54:03 +01:00
|
|
|
#if SBA
|
2001-12-17 18:31:11 +00:00
|
|
|
/* the copy we keep will be an empty variable */
|
2001-04-09 20:54:03 +01:00
|
|
|
*StoPoint++ = 0;
|
|
|
|
#else
|
|
|
|
#ifdef IDB_USE_MBIT
|
|
|
|
/* say we've seen the variable, and make it point to its
|
|
|
|
offset */
|
|
|
|
/* the copy we keep will be the current displacement */
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint = ((CELL)StoPoint | MBIT);
|
|
|
|
StoPoint++;
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
/* the copy we keep will be the current displacement */
|
2003-08-27 14:37:10 +01:00
|
|
|
*StoPoint = (CELL)StoPoint;
|
|
|
|
StoPoint++;
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall(displacement);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* indicate we found variables */
|
|
|
|
vars_found++;
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
2003-08-27 14:37:10 +01:00
|
|
|
if (SafeIsAttachedTerm((CELL)ptd0)) {
|
2001-12-17 18:31:11 +00:00
|
|
|
Term t[4];
|
|
|
|
int sz = to_visit-to_visit_base;
|
|
|
|
|
|
|
|
H = (CELL *)to_visit;
|
2004-05-13 21:54:58 +01:00
|
|
|
/* store the constraint away for: we need a back pointer to
|
|
|
|
the variable, the constraint in some cannonical form, what type
|
|
|
|
of constraint, and a list pointer */
|
2001-12-17 18:31:11 +00:00
|
|
|
t[0] = (CELL)ptd0;
|
|
|
|
t[1] = attas[ExtFromCell(ptd0)].to_term_op(ptd0);
|
|
|
|
t[2] = MkIntegerTerm(ExtFromCell(ptd0));
|
2004-05-13 21:54:58 +01:00
|
|
|
t[3] = ConstraintsTerm;
|
|
|
|
ConstraintsTerm = Yap_MkApplTerm(FunctorClist, 4, t);
|
2002-05-15 04:41:19 +01:00
|
|
|
if (H+sz >= ASP) {
|
|
|
|
goto error2;
|
|
|
|
}
|
|
|
|
memcpy((void *)H, (void *)(to_visit_base), sz*sizeof(CELL *));
|
2001-12-17 18:31:11 +00:00
|
|
|
to_visit_base = (CELL **)H;
|
|
|
|
to_visit = to_visit_base+sz;
|
|
|
|
}
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
/* references need to be offset at read time */
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall(displacement);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
/* store the offset */
|
|
|
|
#ifdef IDB_USE_MBIT
|
2003-10-31 12:09:49 +00:00
|
|
|
*StoPoint = d0 | MBIT;
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2003-10-31 12:09:49 +00:00
|
|
|
*StoPoint = d0;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
StoPoint++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do we still have compound terms to visit */
|
2001-12-17 18:31:11 +00:00
|
|
|
if (to_visit > to_visit_base) {
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
to_visit -= 4;
|
|
|
|
pt0 = to_visit[0];
|
|
|
|
pt0_end = to_visit[1];
|
|
|
|
StoPoint = to_visit[2];
|
|
|
|
pt0[-1] = (CELL)to_visit[3];
|
|
|
|
#else
|
|
|
|
to_visit -= 3;
|
|
|
|
pt0 = to_visit[0];
|
|
|
|
pt0_end = to_visit[1];
|
2004-08-11 17:14:55 +01:00
|
|
|
CheckDBOverflow(1);
|
2001-04-09 20:54:03 +01:00
|
|
|
StoPoint = to_visit[2];
|
|
|
|
#endif
|
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
/* we still may have constraints to do */
|
2004-05-13 21:54:58 +01:00
|
|
|
if (ConstraintsTerm != TermNil &&
|
2005-10-28 18:38:50 +01:00
|
|
|
!IN_BETWEEN(tbase,RepAppl(ConstraintsTerm),CodeMax)) {
|
2004-05-13 21:54:58 +01:00
|
|
|
*attachmentsp = (CELL)(CodeMax+1);
|
2001-12-17 18:31:11 +00:00
|
|
|
pt0 = RepAppl(ConstraintsTerm)+1;
|
|
|
|
pt0_end = RepAppl(ConstraintsTerm)+4;
|
|
|
|
StoPoint = CodeMax;
|
2004-05-13 21:54:58 +01:00
|
|
|
*StoPoint++ = RepAppl(ConstraintsTerm)[0];
|
|
|
|
ConstraintsTerm = AbsAppl(CodeMax);
|
2004-08-11 17:14:55 +01:00
|
|
|
CheckDBOverflow(1);
|
2004-05-13 21:54:58 +01:00
|
|
|
CodeMax += 5;
|
2001-12-17 18:31:11 +00:00
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
/* we're done */
|
|
|
|
*vars_foundp = vars_found;
|
2003-08-27 14:37:10 +01:00
|
|
|
DB_UNWIND_CUNIF();
|
2001-12-27 22:38:41 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
H = origH;
|
|
|
|
#endif
|
2005-10-28 18:38:50 +01:00
|
|
|
return CodeMax;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
error:
|
2004-10-27 16:56:34 +01:00
|
|
|
Yap_Error_TYPE = OUT_OF_AUXSPACE_ERROR;
|
2004-04-22 21:07:07 +01:00
|
|
|
Yap_Error_Size = 1024+((char *)AuxSp-(char *)CodeMaxBase);
|
2001-04-09 20:54:03 +01:00
|
|
|
*vars_foundp = vars_found;
|
|
|
|
#ifdef RATIONAL_TREES
|
2001-12-17 18:31:11 +00:00
|
|
|
while (to_visit > to_visit_base) {
|
2001-04-09 20:54:03 +01:00
|
|
|
to_visit -= 4;
|
|
|
|
pt0 = to_visit[0];
|
|
|
|
pt0_end = to_visit[1];
|
|
|
|
StoPoint = to_visit[2];
|
|
|
|
pt0[-1] = (CELL)to_visit[3];
|
|
|
|
}
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
DB_UNWIND_CUNIF();
|
2001-12-27 22:38:41 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
H = origH;
|
|
|
|
#endif
|
2005-10-28 18:38:50 +01:00
|
|
|
return NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
error2:
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = OUT_OF_STACK_ERROR;
|
2001-04-09 20:54:03 +01:00
|
|
|
*vars_foundp = vars_found;
|
|
|
|
#ifdef RATIONAL_TREES
|
2001-12-17 18:31:11 +00:00
|
|
|
while (to_visit > to_visit_base) {
|
2001-04-09 20:54:03 +01:00
|
|
|
to_visit -= 4;
|
|
|
|
pt0 = to_visit[0];
|
|
|
|
pt0_end = to_visit[1];
|
|
|
|
StoPoint = to_visit[2];
|
|
|
|
pt0[-1] = (CELL)to_visit[3];
|
|
|
|
}
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
DB_UNWIND_CUNIF();
|
2001-12-27 22:38:41 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
H = origH;
|
|
|
|
#endif
|
2005-10-28 18:38:50 +01:00
|
|
|
return NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
error_tr_overflow:
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = OUT_OF_TRAIL_ERROR;
|
2001-04-09 20:54:03 +01:00
|
|
|
*vars_foundp = vars_found;
|
|
|
|
#ifdef RATIONAL_TREES
|
2001-12-17 18:31:11 +00:00
|
|
|
while (to_visit > to_visit_base) {
|
2001-04-09 20:54:03 +01:00
|
|
|
to_visit -= 4;
|
|
|
|
pt0 = to_visit[0];
|
|
|
|
pt0_end = to_visit[1];
|
|
|
|
StoPoint = to_visit[2];
|
|
|
|
pt0[-1] = (CELL)to_visit[3];
|
|
|
|
}
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
DB_UNWIND_CUNIF();
|
2001-12-27 22:38:41 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
H = origH;
|
|
|
|
#endif
|
2005-10-28 18:38:50 +01:00
|
|
|
return NULL;
|
2004-01-23 02:23:51 +00:00
|
|
|
#if THREADS
|
|
|
|
#undef Yap_REGS
|
|
|
|
#define Yap_REGS (*Yap_regp)
|
|
|
|
#endif /* THREADS */
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef SFUNC
|
|
|
|
/*
|
|
|
|
* The sparse terms existing in the structure are to be included now. This
|
|
|
|
* means simple copy for constant terms but, some care about variables If
|
|
|
|
* they have appeared before, we will know by their position number
|
|
|
|
*/
|
|
|
|
static void
|
2004-02-17 19:00:12 +00:00
|
|
|
sf_include(SFKeep *sfp, struct db_globs *dbg)
|
2001-04-09 20:54:03 +01:00
|
|
|
SFKeep *sfp;
|
|
|
|
{
|
|
|
|
Term Tm = sfp->SName;
|
|
|
|
CELL *tp = ArgsOfSFTerm(Tm);
|
|
|
|
Register Term *StoPoint = ntp;
|
|
|
|
CELL *displacement = CodeAbs;
|
|
|
|
CELL arg_no;
|
|
|
|
Term tvalue;
|
|
|
|
int j = 3;
|
|
|
|
|
|
|
|
if (sfp->SFather != NIL)
|
|
|
|
*(sfp->SFather) = AbsAppl(displacement);
|
|
|
|
*StoPoint++ = FunctorOfTerm(Tm);
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall(displacement + 1);
|
2001-04-09 20:54:03 +01:00
|
|
|
*StoPoint++ = (Term) (displacement + 1);
|
|
|
|
while (*tp) {
|
|
|
|
arg_no = *tp++;
|
|
|
|
tvalue = Derefa(tp++);
|
|
|
|
if (IsVarTerm(tvalue)) {
|
|
|
|
if (((VarKeep *) tvalue)->NOfVars != 0) {
|
|
|
|
*StoPoint++ = arg_no;
|
2004-10-26 21:16:18 +01:00
|
|
|
db_check_trail(dbg->lr+1);
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = ToSmall(displacement + j);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (((VarKeep *) tvalue)->New == 0)
|
|
|
|
*StoPoint++ = ((VarKeep *) tvalue)->New = Unsigned(displacement + j);
|
|
|
|
else
|
|
|
|
*StoPoint++ = ((VarKeep *) tvalue)->New;
|
|
|
|
j += 2;
|
|
|
|
}
|
|
|
|
} else if (IsAtomicTerm(tvalue)) {
|
|
|
|
*StoPoint++ = arg_no;
|
|
|
|
*StoPoint++ = tvalue;
|
|
|
|
j += 2;
|
|
|
|
} else {
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = TYPE_ERROR_DBTERM;
|
|
|
|
Yap_Error_Term = d0;
|
|
|
|
Yap_ErrorMessage = "wrong term in SF";
|
2001-04-09 20:54:03 +01:00
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*StoPoint++ = 0;
|
|
|
|
ntp = StoPoint;
|
|
|
|
CodeAbs = displacement + j;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is used to check if one of the terms in the idb is the
|
|
|
|
* constant to_compare
|
|
|
|
*/
|
|
|
|
inline static DBRef
|
|
|
|
check_if_cons(DBRef p, Term to_compare)
|
|
|
|
{
|
2003-02-12 13:20:52 +00:00
|
|
|
while (p != NIL
|
2001-04-09 20:54:03 +01:00
|
|
|
&& (p->Flags & (DBCode | ErasedMask | DBVar | DBNoVars | DBComplex)
|
2003-08-27 14:37:10 +01:00
|
|
|
|| p->DBT.Entry != Unsigned(to_compare)))
|
2003-02-12 13:20:52 +00:00
|
|
|
p = NextDBRef(p);
|
|
|
|
return (p);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is used to check if one of the terms in the idb is a prolog
|
|
|
|
* variable
|
|
|
|
*/
|
|
|
|
static DBRef
|
|
|
|
check_if_var(DBRef p)
|
|
|
|
{
|
|
|
|
while (p != NIL &&
|
|
|
|
p->Flags & (DBCode | ErasedMask | DBAtomic | DBNoVars | DBComplex ))
|
|
|
|
p = NextDBRef(p);
|
|
|
|
return (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is used to check if a Prolog complex term with variables
|
|
|
|
* already exists in the idb for that key. The comparison is alike ==, but
|
|
|
|
* only the relative binding of variables, not their position is used. The
|
|
|
|
* comparison is done using the function cmpclls only. The function could
|
|
|
|
* only fail if a functor was matched to a Prolog term, but then, it should
|
|
|
|
* have failed before because the structure of term would have been very
|
|
|
|
* different
|
|
|
|
*/
|
|
|
|
static DBRef
|
|
|
|
check_if_wvars(DBRef p, unsigned int NOfCells, CELL *BTptr)
|
|
|
|
{
|
|
|
|
CELL *memptr;
|
|
|
|
|
|
|
|
do {
|
|
|
|
while (p != NIL &&
|
|
|
|
p->Flags & (DBCode | ErasedMask | DBAtomic | DBNoVars | DBVar))
|
|
|
|
p = NextDBRef(p);
|
|
|
|
if (p == NIL)
|
|
|
|
return (p);
|
2003-08-27 14:37:10 +01:00
|
|
|
memptr = CellPtr(&(p->DBT.Contents));
|
|
|
|
if (NOfCells == p->DBT.NOfCells
|
2001-04-09 20:54:03 +01:00
|
|
|
&& cmpclls(memptr, BTptr, NOfCells))
|
|
|
|
return (p);
|
|
|
|
else
|
|
|
|
p = NextDBRef(p);
|
|
|
|
} while (TRUE);
|
|
|
|
return (NIL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2003-11-12 12:33:31 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static int
|
|
|
|
scheckcells(int NOfCells, register CELL *m1, register CELL *m2, link_entry *lp, register CELL bp)
|
|
|
|
{
|
2002-09-18 22:28:19 +01:00
|
|
|
CELL base = Unsigned(m1);
|
2001-04-09 20:54:03 +01:00
|
|
|
link_entry *lp1;
|
|
|
|
|
2002-01-30 00:26:43 +00:00
|
|
|
while (NOfCells-- > 0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
Register CELL r1, r2;
|
|
|
|
|
|
|
|
r1 = *m1++;
|
|
|
|
r2 = *m2++;
|
|
|
|
if (r1 == r2)
|
|
|
|
continue;
|
|
|
|
else if (r2 + bp == r1) {
|
|
|
|
/* link pointers may not have been generated in the */
|
|
|
|
/* same order */
|
|
|
|
/* make sure r1 is really an offset. */
|
|
|
|
lp1 = lp;
|
|
|
|
r1 = m1 - (CELL *)base;
|
|
|
|
while (*lp1 != r1 && *lp1)
|
|
|
|
lp1++;
|
|
|
|
if (!(*lp1))
|
|
|
|
return (FALSE);
|
|
|
|
/* keep the old link pointer for future search. */
|
|
|
|
/* vsc: this looks like a bug!!!! */
|
|
|
|
/* *lp1 = *lp++; */
|
|
|
|
} else {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the cousin of the previous, but with things a bit more sophisticated.
|
|
|
|
* mtchcells, if an error was an found, needs to test ........
|
|
|
|
*/
|
|
|
|
static DBRef
|
2004-02-17 19:00:12 +00:00
|
|
|
check_if_nvars(DBRef p, unsigned int NOfCells, CELL *BTptr, struct db_globs *dbg)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
CELL *memptr;
|
|
|
|
|
|
|
|
do {
|
|
|
|
while (p != NIL &&
|
|
|
|
p->Flags & (DBCode | ErasedMask | DBAtomic | DBComplex | DBVar))
|
|
|
|
p = NextDBRef(p);
|
|
|
|
if (p == NIL)
|
|
|
|
return (p);
|
2003-08-27 14:37:10 +01:00
|
|
|
memptr = CellPtr(p->DBT.Contents);
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
if (scheckcells(NOfCells, memptr, BTptr, dbg->LinkAr, Unsigned(p->DBT.Contents-1)))
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
if (NOfCells == *memptr++
|
|
|
|
&& cmpclls(memptr, BTptr, NOfCells))
|
|
|
|
#endif
|
|
|
|
return (p);
|
|
|
|
else
|
|
|
|
p = NextDBRef(p);
|
|
|
|
} while (TRUE);
|
|
|
|
return (NIL);
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static DBRef
|
|
|
|
generate_dberror_msg(int errnumb, UInt sz, char *msg)
|
|
|
|
{
|
|
|
|
Yap_Error_Size = sz;
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = errnumb;
|
|
|
|
Yap_Error_Term = TermNil;
|
|
|
|
Yap_ErrorMessage = msg;
|
2003-08-27 14:37:10 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBRef
|
|
|
|
CreateDBWithDBRef(Term Tm, DBProp p)
|
|
|
|
{
|
|
|
|
DBRef pp, dbr = DBRefOfTerm(Tm);
|
|
|
|
DBTerm *ppt;
|
|
|
|
|
|
|
|
if (p == NULL) {
|
|
|
|
ppt = (DBTerm *)AllocDBSpace(sizeof(DBTerm)+2*sizeof(CELL));
|
|
|
|
if (ppt == NULL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
return generate_dberror_msg(OUT_OF_HEAP_ERROR, TermNil, "could not allocate space");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
pp = (DBRef)ppt;
|
|
|
|
} else {
|
|
|
|
pp = AllocDBSpace(DBLength(2*sizeof(DBRef)));
|
|
|
|
if (pp == NULL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
return generate_dberror_msg(OUT_OF_HEAP_ERROR, 0, "could not allocate space");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
pp->id = FunctorDBRef;
|
|
|
|
pp->Flags = DBNoVars|DBComplex|DBWithRefs;
|
|
|
|
INIT_LOCK(pp->lock);
|
|
|
|
INIT_DBREF_COUNT(pp);
|
|
|
|
ppt = &(pp->DBT);
|
|
|
|
}
|
2003-12-27 00:38:53 +00:00
|
|
|
if (dbr->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)dbr;
|
|
|
|
cl->ClRefCount++;
|
|
|
|
} else {
|
|
|
|
dbr->NOfRefsTo++;
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->Entry = Tm;
|
|
|
|
ppt->NOfCells = 0;
|
|
|
|
ppt->Contents[0] = (CELL)NULL;
|
|
|
|
ppt->Contents[1] = (CELL)dbr;
|
|
|
|
ppt->DBRefs = (DBRef *)(ppt->Contents+2);
|
|
|
|
#ifdef COROUTINING
|
|
|
|
ppt->attachments = 0L;
|
|
|
|
#endif
|
|
|
|
return pp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBTerm *
|
2003-11-12 12:33:31 +00:00
|
|
|
CreateDBTermForAtom(Term Tm, UInt extra_size) {
|
|
|
|
DBTerm *ppt;
|
|
|
|
ADDR ptr;
|
2003-08-27 14:37:10 +01:00
|
|
|
|
2003-11-12 12:33:31 +00:00
|
|
|
ptr = (ADDR)AllocDBSpace(extra_size+sizeof(DBTerm));
|
|
|
|
if (ptr == NULL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
return (DBTerm *)generate_dberror_msg(OUT_OF_HEAP_ERROR, 0, "could not allocate space");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
ppt = (DBTerm *)(ptr+extra_size);
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->NOfCells = 0;
|
|
|
|
ppt->DBRefs = NULL;
|
|
|
|
#ifdef COROUTINING
|
|
|
|
ppt->attachments = 0;
|
|
|
|
#endif
|
|
|
|
ppt->DBRefs = NULL;
|
2003-11-12 12:33:31 +00:00
|
|
|
ppt->Entry = Tm;
|
|
|
|
return ppt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBTerm *
|
|
|
|
CreateDBTermForVar(UInt extra_size)
|
|
|
|
{
|
|
|
|
DBTerm *ppt;
|
|
|
|
ADDR ptr;
|
|
|
|
|
|
|
|
ptr = (ADDR)AllocDBSpace(extra_size+sizeof(DBTerm));
|
|
|
|
if (ptr == NULL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
return (DBTerm *)generate_dberror_msg(OUT_OF_HEAP_ERROR, 0, "could not allocate space");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
ppt = (DBTerm *)(ptr+extra_size);
|
|
|
|
ppt->NOfCells = 0;
|
|
|
|
ppt->DBRefs = NULL;
|
|
|
|
#ifdef COROUTINING
|
|
|
|
ppt->attachments = 0;
|
|
|
|
#endif
|
|
|
|
ppt->DBRefs = NULL;
|
|
|
|
ppt->Entry = (CELL)(&(ppt->Entry));
|
2003-08-27 14:37:10 +01:00
|
|
|
return ppt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBRef
|
2004-02-17 19:00:12 +00:00
|
|
|
CreateDBRefForAtom(Term Tm, DBProp p, int InFlag, struct db_globs *dbg) {
|
2003-08-27 14:37:10 +01:00
|
|
|
Register DBRef pp;
|
|
|
|
SMALLUNSGN flag;
|
|
|
|
|
|
|
|
flag = DBAtomic;
|
2004-02-17 19:00:12 +00:00
|
|
|
if (InFlag & MkIfNot && (dbg->found_one = check_if_cons(p->First, Tm)))
|
|
|
|
return dbg->found_one;
|
2003-08-27 14:37:10 +01:00
|
|
|
pp = AllocDBSpace(DBLength(NIL));
|
|
|
|
if (pp == NIL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
return generate_dberror_msg(OUT_OF_HEAP_ERROR, 0, "could not allocate space");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
pp->id = FunctorDBRef;
|
|
|
|
INIT_LOCK(pp->lock);
|
|
|
|
INIT_DBREF_COUNT(pp);
|
|
|
|
pp->Flags = flag;
|
|
|
|
pp->Code = NULL;
|
2003-11-12 12:33:31 +00:00
|
|
|
pp->DBT.Entry = Tm;
|
2003-08-27 14:37:10 +01:00
|
|
|
pp->DBT.DBRefs = NULL;
|
|
|
|
pp->DBT.NOfCells = 0;
|
|
|
|
#ifdef COROUTINING
|
|
|
|
pp->DBT.attachments = 0;
|
|
|
|
#endif
|
|
|
|
return(pp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBRef
|
2004-02-17 19:00:12 +00:00
|
|
|
CreateDBRefForVar(Term Tm, DBProp p, int InFlag, struct db_globs *dbg) {
|
2003-08-27 14:37:10 +01:00
|
|
|
Register DBRef pp;
|
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
if (InFlag & MkIfNot && (dbg->found_one = check_if_var(p->First)))
|
|
|
|
return dbg->found_one;
|
2003-08-27 14:37:10 +01:00
|
|
|
pp = AllocDBSpace(DBLength(NULL));
|
|
|
|
if (pp == NULL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
return generate_dberror_msg(OUT_OF_HEAP_ERROR, 0, "could not allocate space");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
pp->id = FunctorDBRef;
|
|
|
|
pp->Flags = DBVar;
|
|
|
|
pp->DBT.Entry = (CELL) Tm;
|
|
|
|
pp->Code = NULL;
|
|
|
|
pp->DBT.NOfCells = 0;
|
|
|
|
pp->DBT.DBRefs = NULL;
|
|
|
|
#ifdef COROUTINING
|
|
|
|
pp->DBT.attachments = 0;
|
|
|
|
#endif
|
|
|
|
INIT_LOCK(pp->lock);
|
|
|
|
INIT_DBREF_COUNT(pp);
|
|
|
|
return(pp);
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static DBRef
|
2004-02-17 19:00:12 +00:00
|
|
|
CreateDBStruct(Term Tm, DBProp p, int InFlag, int *pstat, UInt extra_size, struct db_globs *dbg)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
Register Term tt, *nar = NIL;
|
|
|
|
SMALLUNSGN flag;
|
|
|
|
#ifdef IDB_LINK_TABLE
|
|
|
|
int NOfLinks = 0;
|
|
|
|
#endif
|
|
|
|
/* place DBRefs in ConsultStack */
|
2003-12-01 17:27:42 +00:00
|
|
|
DBRef *TmpRefBase = (DBRef *)Yap_TrailTop;
|
2001-04-09 20:54:03 +01:00
|
|
|
CELL *CodeAbs; /* how much code did we find */
|
|
|
|
int vars_found;
|
|
|
|
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-11-12 12:33:31 +00:00
|
|
|
if (p == NULL) {
|
|
|
|
if (IsVarTerm(Tm)) {
|
|
|
|
#ifdef COROUTINING
|
|
|
|
if (!SafeIsAttachedTerm(Tm)) {
|
|
|
|
#endif
|
|
|
|
DBRef out = (DBRef)CreateDBTermForVar(extra_size);
|
|
|
|
*pstat = TRUE;
|
|
|
|
return out;
|
|
|
|
#ifdef COROUTINING
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else if (IsAtomOrIntTerm(Tm)) {
|
|
|
|
DBRef out = (DBRef)CreateDBTermForAtom(Tm, extra_size);
|
|
|
|
*pstat = FALSE;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (IsVarTerm(Tm)
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
2003-08-27 14:37:10 +01:00
|
|
|
&& !SafeIsAttachedTerm(Tm)
|
2001-12-17 18:31:11 +00:00
|
|
|
#endif
|
|
|
|
) {
|
2003-11-12 12:33:31 +00:00
|
|
|
*pstat = TRUE;
|
2004-02-17 19:00:12 +00:00
|
|
|
return CreateDBRefForVar(Tm, p, InFlag, dbg);
|
2003-11-12 12:33:31 +00:00
|
|
|
} else if (IsAtomOrIntTerm(Tm)) {
|
2004-02-17 19:00:12 +00:00
|
|
|
return CreateDBRefForAtom(Tm, p, InFlag, dbg);
|
2003-11-12 12:33:31 +00:00
|
|
|
}
|
|
|
|
}
|
2004-12-07 16:54:58 +00:00
|
|
|
/* next, let's process a compound term */
|
2003-11-12 12:33:31 +00:00
|
|
|
{
|
2003-08-27 14:37:10 +01:00
|
|
|
DBTerm *ppt, *ppt0;
|
|
|
|
DBRef pp, pp0;
|
|
|
|
Term *ntp0, *ntp;
|
|
|
|
unsigned int NOfCells = 0;
|
|
|
|
#ifdef COROUTINING
|
|
|
|
CELL attachments = 0;
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
dbg->tofref = TmpRefBase;
|
2003-08-27 14:37:10 +01:00
|
|
|
|
|
|
|
if (p == NULL) {
|
2003-11-12 12:33:31 +00:00
|
|
|
ADDR ptr = Yap_PreAllocCodeSpace();
|
|
|
|
ppt0 = (DBTerm *)(ptr+extra_size);
|
2003-08-27 14:37:10 +01:00
|
|
|
pp0 = (DBRef)ppt0;
|
|
|
|
} else {
|
|
|
|
pp0 = (DBRef)Yap_PreAllocCodeSpace();
|
|
|
|
ppt0 = &(pp0->DBT);
|
|
|
|
}
|
2004-12-07 16:54:58 +00:00
|
|
|
if ((ADDR)ppt0 >= (ADDR)AuxSp-1024) {
|
|
|
|
Yap_Error_Size = (UInt)(extra_size+sizeof(ppt0));
|
|
|
|
Yap_Error_TYPE = OUT_OF_AUXSPACE_ERROR;
|
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
ntp0 = ppt0->Contents;
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
dbg->lr = dbg->LinkAr = (link_entry *)TR;
|
2001-12-17 18:31:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef COROUTINING
|
|
|
|
/* attachment */
|
|
|
|
if (IsVarTerm(Tm)) {
|
2004-05-13 21:54:58 +01:00
|
|
|
tt = (CELL)(ppt0->Contents);
|
2001-12-17 18:31:11 +00:00
|
|
|
ntp = MkDBTerm(VarOfTerm(Tm), VarOfTerm(Tm), ntp0, ntp0+1, ntp0-1,
|
|
|
|
&attachments,
|
2004-02-17 19:00:12 +00:00
|
|
|
&vars_found,
|
|
|
|
dbg);
|
2002-10-21 23:14:29 +01:00
|
|
|
if (ntp == NULL) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2002-10-21 23:14:29 +01:00
|
|
|
return(NULL);
|
|
|
|
}
|
2001-12-17 18:31:11 +00:00
|
|
|
} else
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
if (IsPairTerm(Tm)) {
|
|
|
|
/* avoid null pointers!! */
|
2003-08-27 14:37:10 +01:00
|
|
|
tt = AbsPair(ppt0->Contents);
|
2001-12-17 18:31:11 +00:00
|
|
|
ntp = MkDBTerm(RepPair(Tm), RepPair(Tm)+1, ntp0, ntp0+2, ntp0-1,
|
|
|
|
#ifdef COROUTINING
|
|
|
|
&attachments,
|
|
|
|
#endif
|
2004-02-17 19:00:12 +00:00
|
|
|
&vars_found, dbg);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (ntp == NULL) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
else {
|
2001-04-09 20:54:03 +01:00
|
|
|
unsigned int arity;
|
|
|
|
Functor fun;
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
tt = AbsAppl(ppt0->Contents);
|
2001-04-09 20:54:03 +01:00
|
|
|
/* we need to store the functor manually */
|
2003-08-27 14:37:10 +01:00
|
|
|
fun = FunctorOfTerm(Tm);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (IsExtensionFunctor(fun)) {
|
|
|
|
switch((CELL)fun) {
|
|
|
|
case (CELL)FunctorDouble:
|
2003-08-27 14:37:10 +01:00
|
|
|
ntp = copy_double(ntp0, RepAppl(Tm));
|
2001-04-09 20:54:03 +01:00
|
|
|
break;
|
|
|
|
case (CELL)FunctorDBRef:
|
2003-08-27 14:37:10 +01:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
|
|
|
return CreateDBWithDBRef(Tm, p);
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef USE_GMP
|
|
|
|
case (CELL)FunctorBigInt:
|
2003-08-27 14:37:10 +01:00
|
|
|
ntp = copy_big_int(ntp0, RepAppl(Tm));
|
2001-04-25 14:27:14 +01:00
|
|
|
break;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
default: /* LongInt */
|
2003-08-27 14:37:10 +01:00
|
|
|
ntp = copy_long_int(ntp0, RepAppl(Tm));
|
2001-04-09 20:54:03 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
*ntp0 = (CELL)fun;
|
2001-04-09 20:54:03 +01:00
|
|
|
arity = ArityOfFunctor(fun);
|
|
|
|
ntp = MkDBTerm(RepAppl(Tm)+1,
|
2001-12-17 18:31:11 +00:00
|
|
|
RepAppl(Tm)+arity,
|
|
|
|
ntp0+1, ntp0+1+arity, ntp0-1,
|
|
|
|
#ifdef COROUTINING
|
|
|
|
&attachments,
|
|
|
|
#endif
|
2004-02-17 19:00:12 +00:00
|
|
|
&vars_found, dbg);
|
2002-10-21 23:14:29 +01:00
|
|
|
if (ntp == NULL) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(NULL);
|
2002-10-21 23:14:29 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CodeAbs = (CELL *)((CELL)ntp-(CELL)ntp0);
|
2003-11-29 23:41:28 +00:00
|
|
|
if (Yap_Error_TYPE) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2001-04-09 20:54:03 +01:00
|
|
|
return (NULL); /* Error Situation */
|
2002-10-21 23:14:29 +01:00
|
|
|
}
|
2001-04-25 14:27:14 +01:00
|
|
|
NOfCells = ntp - ntp0; /* End Of Code Info */
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
*dbg->lr++ = 0;
|
|
|
|
NOfLinks = (dbg->lr - dbg->LinkAr);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
if (vars_found || InFlag & InQueue) {
|
2004-02-17 19:00:12 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/*
|
|
|
|
* Take into account the fact that one needs an entry
|
|
|
|
* for the number of links
|
|
|
|
*/
|
|
|
|
flag = DBComplex;
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
CodeAbs += CellPtr(dbg->lr) - CellPtr(dbg->LinkAr);
|
2001-04-09 20:54:03 +01:00
|
|
|
if ((CELL *)((char *)ntp0+(CELL)CodeAbs) > AuxSp) {
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = (UInt)DBLength(CodeAbs);
|
2004-10-27 16:56:34 +01:00
|
|
|
Yap_Error_TYPE = OUT_OF_AUXSPACE_ERROR;
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
#endif
|
2004-02-17 19:00:12 +00:00
|
|
|
if ((InFlag & MkIfNot) && (dbg->found_one = check_if_wvars(p->First, NOfCells, ntp0))) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2004-02-17 19:00:12 +00:00
|
|
|
return dbg->found_one;
|
2002-10-21 23:14:29 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
|
|
|
flag = DBNoVars;
|
2004-02-17 19:00:12 +00:00
|
|
|
if ((InFlag & MkIfNot) && (dbg->found_one = check_if_nvars(p->First, NOfCells, ntp0, dbg))) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2004-02-17 19:00:12 +00:00
|
|
|
return dbg->found_one;
|
2002-10-21 23:14:29 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-02-17 19:00:12 +00:00
|
|
|
if (dbg->tofref != TmpRefBase) {
|
|
|
|
CodeAbs += (TmpRefBase - dbg->tofref) + 1;
|
2001-04-09 20:54:03 +01:00
|
|
|
if ((CELL *)((char *)ntp0+(CELL)CodeAbs) > AuxSp) {
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = (UInt)DBLength(CodeAbs);
|
2004-10-27 16:56:34 +01:00
|
|
|
Yap_Error_TYPE = OUT_OF_AUXSPACE_ERROR;
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2004-10-27 16:56:34 +01:00
|
|
|
return NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
flag |= DBWithRefs;
|
|
|
|
}
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2001-12-18 16:17:26 +00:00
|
|
|
#if SIZEOF_LINK_ENTRY==2
|
2001-04-09 20:54:03 +01:00
|
|
|
if (Unsigned(CodeAbs) >= 0x40000) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2003-11-29 23:41:28 +00:00
|
|
|
return generate_dberror_msg(SYSTEM_ERROR, 0, "trying to store term larger than 256KB");
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2001-12-18 16:17:26 +00:00
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
if (p == NULL) {
|
2003-11-12 12:33:31 +00:00
|
|
|
ADDR ptr = Yap_AllocCodeSpace((CELL)CodeAbs+extra_size+sizeof(DBTerm));
|
|
|
|
ppt = (DBTerm *)(ptr+extra_size);
|
2004-01-29 13:37:10 +00:00
|
|
|
if (ptr == NULL) {
|
2003-08-27 14:37:10 +01:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2003-11-29 23:41:28 +00:00
|
|
|
return generate_dberror_msg(OUT_OF_HEAP_ERROR, (UInt)DBLength(CodeAbs), "heap crashed against stacks");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
pp = (DBRef)ppt;
|
|
|
|
} else {
|
|
|
|
pp = AllocDBSpace(DBLength(CodeAbs));
|
|
|
|
if (pp == NULL) {
|
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2003-11-29 23:41:28 +00:00
|
|
|
return generate_dberror_msg(OUT_OF_HEAP_ERROR, (UInt)DBLength(CodeAbs), "heap crashed against stacks");
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
pp->id = FunctorDBRef;
|
|
|
|
pp->Flags = flag;
|
|
|
|
INIT_LOCK(pp->lock);
|
|
|
|
INIT_DBREF_COUNT(pp);
|
|
|
|
ppt = &(pp->DBT);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
if (flag & DBComplex) {
|
|
|
|
#ifdef IDB_LINK_TABLE
|
|
|
|
link_entry *woar;
|
|
|
|
#endif /* IDB_LINK_TABLE */
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->NOfCells = NOfCells;
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->attachments = attachments;
|
2001-12-17 18:31:11 +00:00
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
if (pp0 != pp) {
|
2003-08-27 14:37:10 +01:00
|
|
|
nar = ppt->Contents;
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef IDB_LINK_TABLE
|
|
|
|
nar = (Term *) cpcells(CellPtr(nar), ntp0, Unsigned(NOfCells));
|
|
|
|
#endif
|
|
|
|
#ifdef IDB_USE_MBIT
|
|
|
|
memcpy((void *)nar, (const void *)ntp0,
|
|
|
|
(size_t)((NOfCells+1)*sizeof(CELL)));
|
|
|
|
nar += NOfCells+1;
|
|
|
|
#endif
|
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
nar = ppt->Contents + Unsigned(NOfCells);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2001-11-29 20:29:52 +00:00
|
|
|
woar = (link_entry *)nar;
|
2004-02-17 19:00:12 +00:00
|
|
|
memcpy((void *)woar,(const void *)dbg->LinkAr,(size_t)(NOfLinks*sizeof(link_entry)));
|
2001-04-09 20:54:03 +01:00
|
|
|
woar += NOfLinks;
|
|
|
|
#ifdef ALIGN_LONGS
|
|
|
|
#if SIZEOF_INT_P==8
|
|
|
|
while ((Unsigned(woar) & 7) != 0)
|
|
|
|
woar++;
|
|
|
|
#else
|
|
|
|
if ((Unsigned(woar) & 3) != 0)
|
|
|
|
woar++;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
nar = (Term *) (woar);
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
*pstat = TRUE;
|
2001-04-09 20:54:03 +01:00
|
|
|
} else if (flag & DBNoVars) {
|
|
|
|
if (pp0 != pp) {
|
2003-08-27 14:37:10 +01:00
|
|
|
nar = (Term *) cpcells(CellPtr(ppt->Contents), ntp0, Unsigned(NOfCells));
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-09-03 04:11:09 +01:00
|
|
|
nar = ppt->Contents + Unsigned(NOfCells);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
#ifdef IDB_USE_MBIT
|
|
|
|
/* we still need to link */
|
|
|
|
nar = (Term *) linkcells(ntp0, NOfCells);
|
|
|
|
#endif
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->NOfCells = NOfCells;
|
|
|
|
}
|
|
|
|
if (ppt != ppt0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-02-17 19:00:12 +00:00
|
|
|
linkblk(dbg->LinkAr, CellPtr(ppt->Contents-1), (CELL)ppt-(CELL)ppt0);
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->Entry = AdjustIDBPtr(tt,(CELL)ppt-(CELL)ppt0);
|
2003-09-15 02:25:29 +01:00
|
|
|
#ifdef COROUTINING
|
2004-11-23 21:16:21 +00:00
|
|
|
if (attachments)
|
|
|
|
ppt->attachments = AdjustIDBPtr(attachments,(CELL)ppt-(CELL)ppt0);
|
|
|
|
else
|
|
|
|
ppt->attachments = 0L;
|
2003-09-15 02:25:29 +01:00
|
|
|
#endif
|
2004-11-23 21:16:21 +00:00
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->Entry = tt;
|
2004-11-23 21:16:21 +00:00
|
|
|
#ifdef COROUTINING
|
|
|
|
ppt->attachments = attachments;
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
if (flag & DBWithRefs) {
|
|
|
|
DBRef *ptr = TmpRefBase, *rfnar = (DBRef *)nar;
|
|
|
|
|
|
|
|
*rfnar++ = NULL;
|
2004-02-17 19:00:12 +00:00
|
|
|
while (ptr != dbg->tofref)
|
2001-04-09 20:54:03 +01:00
|
|
|
*rfnar++ = *--ptr;
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->DBRefs = rfnar;
|
2003-01-21 23:27:02 +00:00
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
ppt->DBRefs = NULL;
|
2003-01-21 23:27:02 +00:00
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ReleasePreAllocCodeSpace((ADDR)pp0);
|
2003-08-27 14:37:10 +01:00
|
|
|
return pp;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBRef
|
|
|
|
record(int Flag, Term key, Term t_data, Term t_code)
|
|
|
|
{
|
|
|
|
Register Term twork = key;
|
|
|
|
Register DBProp p;
|
|
|
|
Register DBRef x;
|
2003-08-27 14:37:10 +01:00
|
|
|
int needs_vars;
|
2004-02-17 19:00:12 +00:00
|
|
|
struct db_globs dbg;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
s_dbg = &dbg;
|
|
|
|
dbg.found_one = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef SFUNC
|
|
|
|
FathersPlace = NIL;
|
|
|
|
#endif
|
|
|
|
if (EndOfPAEntr(p = FetchDBPropFromKey(twork, Flag & MkCode, TRUE, "record/3"))) {
|
|
|
|
return(NULL);
|
|
|
|
}
|
2004-02-17 19:00:12 +00:00
|
|
|
if ((x = CreateDBStruct(t_data, p, Flag, &needs_vars, 0, &dbg)) == NULL) {
|
2001-04-09 20:54:03 +01:00
|
|
|
return (NULL);
|
|
|
|
}
|
2004-02-17 19:00:12 +00:00
|
|
|
if ((Flag & MkIfNot) && dbg.found_one)
|
2001-04-09 20:54:03 +01:00
|
|
|
return (NULL);
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(x);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (x->Flags & (DBNoVars|DBComplex))
|
|
|
|
x->Mask = EvalMasks(t_data, &x->Key);
|
|
|
|
else
|
|
|
|
x->Mask = x->Key = 0;
|
|
|
|
if (Flag & MkCode)
|
|
|
|
x->Flags |= DBCode;
|
|
|
|
else
|
|
|
|
x->Flags |= DBNoCode;
|
|
|
|
x->Parent = p;
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
x->Flags |= DBClMask;
|
|
|
|
x->ref_count = 1;
|
|
|
|
#else
|
|
|
|
x->Flags |= (InUseMask | DBClMask);
|
|
|
|
#endif
|
|
|
|
x->NOfRefsTo = 0;
|
|
|
|
WRITE_LOCK(p->DBRWLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
if (p->F0 == NULL) {
|
|
|
|
p->F0 = p->L0 = x;
|
|
|
|
x->p = x->n = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
if (Flag & MkFirst) {
|
|
|
|
x->n = p->F0;
|
|
|
|
p->F0->p = x;
|
|
|
|
p->F0 = x;
|
|
|
|
x->p = NULL;
|
2003-01-21 16:14:52 +00:00
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
x->p = p->L0;
|
|
|
|
p->L0->n = x;
|
|
|
|
p->L0 = x;
|
|
|
|
x->n = NULL;
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
if (p->First == NIL) {
|
|
|
|
p->First = p->Last = x;
|
|
|
|
x->Prev = x->Next = NIL;
|
|
|
|
} else if (Flag & MkFirst) {
|
|
|
|
x->Prev = NIL;
|
|
|
|
(p->First)->Prev = x;
|
|
|
|
x->Next = p->First;
|
|
|
|
p->First = x;
|
|
|
|
} else {
|
|
|
|
x->Next = NIL;
|
|
|
|
(p->Last)->Next = x;
|
|
|
|
x->Prev = p->Last;
|
|
|
|
p->Last = x;
|
|
|
|
}
|
2003-02-12 14:02:42 +00:00
|
|
|
if (Flag & MkCode) {
|
2003-02-12 13:20:52 +00:00
|
|
|
x->Code = (yamop *) IntegerOfTerm(t_code);
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
|
|
|
WRITE_UNLOCK(p->DBRWLock);
|
|
|
|
return (x);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add a new entry next to an old one */
|
|
|
|
static DBRef
|
|
|
|
record_at(int Flag, DBRef r0, Term t_data, Term t_code)
|
|
|
|
{
|
|
|
|
Register DBProp p;
|
|
|
|
Register DBRef x;
|
2003-08-27 14:37:10 +01:00
|
|
|
int needs_vars;
|
2004-02-17 19:00:12 +00:00
|
|
|
struct db_globs dbg;
|
2003-01-21 16:14:52 +00:00
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
s_dbg = &dbg;
|
2003-01-21 16:14:52 +00:00
|
|
|
#ifdef SFUNC
|
|
|
|
FathersPlace = NIL;
|
|
|
|
#endif
|
|
|
|
p = r0->Parent;
|
2004-02-17 19:00:12 +00:00
|
|
|
if ((x = CreateDBStruct(t_data, p, Flag, &needs_vars, 0, &dbg)) == NULL) {
|
2003-01-21 16:14:52 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
TRAIL_REF(x);
|
|
|
|
if (x->Flags & (DBNoVars|DBComplex))
|
|
|
|
x->Mask = EvalMasks(t_data, &x->Key);
|
|
|
|
else
|
|
|
|
x->Mask = x->Key = 0;
|
|
|
|
if (Flag & MkCode)
|
|
|
|
x->Flags |= DBCode;
|
|
|
|
else
|
|
|
|
x->Flags |= DBNoCode;
|
|
|
|
x->Parent = p;
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
x->Flags |= DBClMask;
|
|
|
|
x->ref_count = 1;
|
|
|
|
#else
|
|
|
|
x->Flags |= (InUseMask | DBClMask);
|
|
|
|
#endif
|
|
|
|
x->NOfRefsTo = 0;
|
|
|
|
WRITE_LOCK(p->DBRWLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
if (Flag & MkFirst) {
|
|
|
|
x->n = r0;
|
|
|
|
x->p = r0->p;
|
|
|
|
if (p->F0 == r0) {
|
|
|
|
p->F0 = x;
|
|
|
|
} else {
|
|
|
|
r0->p->n = x;
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
r0->p = x;
|
2003-01-21 16:14:52 +00:00
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
x->p = r0;
|
|
|
|
x->n = r0->n;
|
|
|
|
if (p->L0 == r0) {
|
|
|
|
p->L0 = x;
|
2003-01-21 16:14:52 +00:00
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
r0->n->p = x;
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
r0->n = x;
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
|
|
|
if (Flag & MkFirst) {
|
|
|
|
x->Prev = r0->Prev;
|
|
|
|
x->Next = r0;
|
|
|
|
if (p->First == r0) {
|
|
|
|
p->First = x;
|
|
|
|
} else {
|
|
|
|
r0->Prev->Next = x;
|
|
|
|
}
|
|
|
|
r0->Prev = x;
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
2003-01-21 16:14:52 +00:00
|
|
|
x->Next = r0->Next;
|
|
|
|
x->Prev = r0;
|
|
|
|
if (p->Last == r0) {
|
|
|
|
p->Last = x;
|
|
|
|
} else {
|
|
|
|
r0->Next->Prev = x;
|
|
|
|
}
|
|
|
|
r0->Next = x;
|
|
|
|
}
|
|
|
|
if (Flag & WithRef) {
|
2003-02-12 13:20:52 +00:00
|
|
|
x->Code = (yamop *) IntegerOfTerm(t_code);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
WRITE_UNLOCK(p->DBRWLock);
|
|
|
|
return (x);
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
|
|
|
|
static LogUpdClause *
|
2005-04-10 05:01:15 +01:00
|
|
|
new_lu_db_entry(Term t, PredEntry *pe)
|
2003-08-27 14:37:10 +01:00
|
|
|
{
|
|
|
|
DBTerm *x;
|
|
|
|
LogUpdClause *cl;
|
2005-04-10 05:01:15 +01:00
|
|
|
yamop *ipc;
|
2003-08-27 14:37:10 +01:00
|
|
|
int needs_vars = FALSE;
|
2004-02-17 19:00:12 +00:00
|
|
|
struct db_globs dbg;
|
2003-08-27 14:37:10 +01:00
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
s_dbg = &dbg;
|
2003-11-12 12:33:31 +00:00
|
|
|
ipc = NEXTOP(((LogUpdClause *)NULL)->ClCode,e);
|
2004-02-17 19:00:12 +00:00
|
|
|
if ((x = (DBTerm *)CreateDBStruct(t, NULL, 0, &needs_vars, (UInt)ipc, &dbg)) == NULL) {
|
2003-08-27 14:37:10 +01:00
|
|
|
return NULL; /* crash */
|
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
cl = (LogUpdClause *)((ADDR)x-(UInt)ipc);
|
2003-08-27 14:37:10 +01:00
|
|
|
ipc = cl->ClCode;
|
|
|
|
cl->Id = FunctorDBRef;
|
|
|
|
cl->ClFlags = LogUpdMask;
|
|
|
|
cl->ClSource = x;
|
|
|
|
cl->ClRefCount = 0;
|
|
|
|
cl->ClPred = pe;
|
|
|
|
cl->ClExt = NULL;
|
|
|
|
cl->ClPrev = cl->ClNext = NULL;
|
2004-03-06 00:31:48 +00:00
|
|
|
cl->ClSize = ((CODEADDR)&(x->Contents)-(CODEADDR)cl)+x->NOfCells*sizeof(CELL);
|
2003-08-27 14:37:10 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
INIT_LOCK(cl->ClLock);
|
|
|
|
INIT_CLREF_COUNT(cl);
|
|
|
|
#endif
|
|
|
|
if (needs_vars)
|
|
|
|
ipc->opc = Yap_opcode(_copy_idb_term);
|
|
|
|
else
|
|
|
|
ipc->opc = Yap_opcode(_unify_idb_term);
|
2005-04-10 05:01:15 +01:00
|
|
|
|
|
|
|
return cl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-01 14:53:46 +01:00
|
|
|
LogUpdClause *
|
|
|
|
Yap_new_ludbe(Term t, PredEntry *pe, UInt nargs)
|
|
|
|
{
|
|
|
|
LogUpdClause *x;
|
|
|
|
|
|
|
|
Yap_Error_Size = 0;
|
|
|
|
while ((x = new_lu_db_entry(t, pe)) == NULL) {
|
|
|
|
if (Yap_Error_TYPE == YAP_NO_ERROR) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
XREGS[nargs+1] = t;
|
|
|
|
if (recover_from_record_error(nargs+1)) {
|
|
|
|
t = Deref(XREGS[nargs+1]);
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2005-04-10 05:01:15 +01:00
|
|
|
static LogUpdClause *
|
|
|
|
record_lu(PredEntry *pe, Term t, int position)
|
|
|
|
{
|
|
|
|
LogUpdClause *cl;
|
|
|
|
|
|
|
|
if ((cl = new_lu_db_entry(t, pe)) == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-12-18 16:38:40 +00:00
|
|
|
WRITE_LOCK(pe->PRWLock);
|
2004-02-11 16:18:16 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2004-02-11 13:33:19 +00:00
|
|
|
WPP = pe;
|
2004-02-11 16:18:16 +00:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
Yap_add_logupd_clause(pe, cl, (position == MkFirst ? 2 : 0));
|
2004-02-11 16:18:16 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2004-02-11 13:33:19 +00:00
|
|
|
WPP = NULL;
|
2004-02-11 16:18:16 +00:00
|
|
|
#endif
|
2003-12-01 17:27:42 +00:00
|
|
|
WRITE_UNLOCK(pe->PRWLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
return cl;
|
|
|
|
}
|
|
|
|
|
2005-04-10 05:01:15 +01:00
|
|
|
static LogUpdClause *
|
|
|
|
record_lu_at(int position, LogUpdClause *ocl, Term t)
|
|
|
|
{
|
|
|
|
LogUpdClause *cl;
|
|
|
|
PredEntry *pe;
|
|
|
|
|
|
|
|
LOCK(ocl->ClLock);
|
|
|
|
pe = ocl->ClPred;
|
|
|
|
if ((cl = new_lu_db_entry(t,pe)) == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
WRITE_LOCK(pe->PRWLock);
|
2005-04-28 20:47:56 +01:00
|
|
|
if(pe->cs.p_code.NOfClauses > 1)
|
|
|
|
Yap_RemoveIndexation(pe);
|
2005-04-10 05:01:15 +01:00
|
|
|
if (position == MkFirst) {
|
|
|
|
/* add before current clause */
|
|
|
|
cl->ClNext = ocl;
|
|
|
|
if (ocl->ClCode == pe->cs.p_code.FirstClause) {
|
|
|
|
cl->ClPrev = NULL;
|
|
|
|
pe->cs.p_code.FirstClause = cl->ClCode;
|
|
|
|
} else {
|
|
|
|
cl->ClPrev = ocl->ClPrev;
|
|
|
|
ocl->ClPrev->ClNext = cl;
|
|
|
|
}
|
|
|
|
ocl->ClPrev = cl;
|
|
|
|
} else {
|
|
|
|
/* add after current clause */
|
|
|
|
cl->ClPrev = ocl;
|
|
|
|
if (ocl->ClCode == pe->cs.p_code.LastClause) {
|
|
|
|
cl->ClNext = NULL;
|
|
|
|
pe->cs.p_code.LastClause = cl->ClCode;
|
|
|
|
} else {
|
|
|
|
cl->ClNext = ocl->ClNext;
|
|
|
|
ocl->ClNext->ClPrev = cl;
|
|
|
|
}
|
|
|
|
ocl->ClNext = cl;
|
|
|
|
}
|
|
|
|
pe->cs.p_code.NOfClauses++;
|
|
|
|
WRITE_UNLOCK(pe->PRWLock);
|
|
|
|
UNLOCK(ocl->ClLock);
|
|
|
|
return cl;
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* recorda(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
|
|
|
p_rcda(void)
|
|
|
|
{
|
|
|
|
/* Idiotic xlc's cpp does not work with ARG1 within MkDBRefTerm */
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2);
|
2003-08-27 14:37:10 +01:00
|
|
|
PredEntry *pe = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
|
|
|
return (FALSE);
|
2003-08-27 14:37:10 +01:00
|
|
|
pe = find_lu_entry(t1);
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2003-08-27 14:37:10 +01:00
|
|
|
if (pe) {
|
2003-12-01 17:27:42 +00:00
|
|
|
LogUpdClause *cl;
|
|
|
|
cl = record_lu(pe, t2, MkFirst);
|
2003-08-27 14:37:10 +01:00
|
|
|
if (cl != NULL) {
|
2003-11-12 12:33:31 +00:00
|
|
|
TRAIL_CLREF(cl);
|
2003-12-27 00:38:53 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
INC_CLREF_COUNT(cl);
|
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
cl->ClFlags |= InUseMask;
|
2003-12-27 00:38:53 +00:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
TRef = MkDBRefTerm((DBRef)cl);
|
|
|
|
} else {
|
|
|
|
TRef = TermNil;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
TRef = MkDBRefTerm(record(MkFirst, t1, t2, Unsigned(0)));
|
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(3)) {
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* '$recordap'(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
|
|
|
p_rcdap(void)
|
|
|
|
{
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2);
|
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
2003-01-21 23:27:02 +00:00
|
|
|
return FALSE;
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2001-04-09 20:54:03 +01:00
|
|
|
TRef = MkDBRefTerm(record(MkFirst | MkCode, t1, t2, Unsigned(0)));
|
2004-10-27 16:56:34 +01:00
|
|
|
|
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(3)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2003-01-21 23:27:02 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2005-04-10 05:01:15 +01:00
|
|
|
/* recorda_at(+DBRef,+Term,-Ref) */
|
2003-01-21 16:14:52 +00:00
|
|
|
static Int
|
|
|
|
p_rcda_at(void)
|
|
|
|
{
|
|
|
|
/* Idiotic xlc's cpp does not work with ARG1 within MkDBRefTerm */
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2);
|
2005-04-10 05:01:15 +01:00
|
|
|
DBRef dbr;
|
2003-01-21 16:14:52 +00:00
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
|
|
|
return (FALSE);
|
|
|
|
if (IsVarTerm(t1)) {
|
|
|
|
Yap_Error(INSTANTIATION_ERROR, t1, "recorda_at/3");
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
if (!IsDBRefTerm(t1)) {
|
|
|
|
Yap_Error(TYPE_ERROR_DBREF, t1, "recorda_at/3");
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2005-04-10 05:01:15 +01:00
|
|
|
dbr = DBRefOfTerm(t1);
|
|
|
|
if (dbr->Flags & ErasedMask) {
|
|
|
|
/* doesn't make sense */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (dbr->Flags & LogUpdMask) {
|
|
|
|
TRef = MkDBRefTerm((DBRef)record_lu_at(MkFirst, (LogUpdClause *)dbr, t2));
|
|
|
|
} else {
|
|
|
|
TRef = MkDBRefTerm(record_at(MkFirst, DBRefOfTerm(t1), t2, Unsigned(0)));
|
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(3)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* recordz(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
|
|
|
p_rcdz(void)
|
|
|
|
{
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2);
|
2003-08-27 14:37:10 +01:00
|
|
|
PredEntry *pe;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
|
|
|
return (FALSE);
|
2003-08-27 14:37:10 +01:00
|
|
|
pe = find_lu_entry(t1);
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2003-08-27 14:37:10 +01:00
|
|
|
if (pe) {
|
|
|
|
LogUpdClause *cl = record_lu(pe, t2, MkLast);
|
|
|
|
if (cl != NULL) {
|
2003-11-12 12:33:31 +00:00
|
|
|
TRAIL_CLREF(cl);
|
2003-12-27 00:38:53 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
INC_CLREF_COUNT(cl);
|
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
cl->ClFlags |= InUseMask;
|
2003-12-27 00:38:53 +00:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
TRef = MkDBRefTerm((DBRef)cl);
|
|
|
|
} else {
|
|
|
|
TRef = TermNil;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
TRef = MkDBRefTerm(record(MkLast, t1, t2, Unsigned(0)));
|
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(3)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2004-10-06 17:55:48 +01:00
|
|
|
/* recordz(+Functor,+Term,-Ref) */
|
|
|
|
Int
|
|
|
|
Yap_Recordz(Atom at, Term t2)
|
|
|
|
{
|
|
|
|
PredEntry *pe;
|
|
|
|
|
|
|
|
pe = find_lu_entry(MkAtomTerm(at));
|
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2004-10-06 17:55:48 +01:00
|
|
|
if (pe) {
|
|
|
|
record_lu(pe, t2, MkLast);
|
|
|
|
} else {
|
|
|
|
record(MkLast, MkAtomTerm(at), t2, Unsigned(0));
|
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
ARG1 = t2;
|
|
|
|
if (recover_from_record_error(1)) {
|
|
|
|
t2 = ARG1;
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-10-06 17:55:48 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return TRUE;
|
2004-10-06 17:55:48 +01:00
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* '$recordzp'(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
|
|
|
p_rcdzp(void)
|
|
|
|
{
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2);
|
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
|
|
|
return (FALSE);
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2001-04-09 20:54:03 +01:00
|
|
|
TRef = MkDBRefTerm(record(MkLast | MkCode, t1, t2, Unsigned(0)));
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(3)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2003-01-21 16:14:52 +00:00
|
|
|
/* recordz_at(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
|
|
|
p_rcdz_at(void)
|
|
|
|
{
|
|
|
|
/* Idiotic xlc's cpp does not work with ARG1 within MkDBRefTerm */
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2);
|
2005-04-10 05:01:15 +01:00
|
|
|
DBRef dbr;
|
2003-01-21 16:14:52 +00:00
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
|
|
|
return (FALSE);
|
|
|
|
if (IsVarTerm(t1)) {
|
|
|
|
Yap_Error(INSTANTIATION_ERROR, t1, "recordz_at/3");
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
if (!IsDBRefTerm(t1)) {
|
|
|
|
Yap_Error(TYPE_ERROR_DBREF, t1, "recordz_at/3");
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2005-04-10 05:01:15 +01:00
|
|
|
dbr = DBRefOfTerm(t1);
|
|
|
|
if (dbr->Flags & ErasedMask) {
|
|
|
|
/* doesn't make sense */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (dbr->Flags & LogUpdMask) {
|
|
|
|
TRef = MkDBRefTerm((DBRef)record_lu_at(MkLast, (LogUpdClause *)dbr, t2));
|
|
|
|
} else {
|
|
|
|
TRef = MkDBRefTerm(record_at(MkLast, dbr, t2, Unsigned(0)));
|
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(3)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2003-01-21 16:14:52 +00:00
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* '$record_stat_source'(+Functor,+Term) */
|
|
|
|
static Int
|
|
|
|
p_rcdstatp(void)
|
|
|
|
{
|
|
|
|
Term t1 = Deref(ARG1), t2 = Deref(ARG2), t3 = Deref(ARG3);
|
|
|
|
int mk_first;
|
|
|
|
Term TRef;
|
|
|
|
|
|
|
|
if (IsVarTerm(t3) || !IsIntTerm(t3))
|
|
|
|
return (FALSE);
|
|
|
|
if (IsVarTerm(t3) || !IsIntTerm(t3))
|
|
|
|
return (FALSE);
|
|
|
|
mk_first = ((IntOfTerm(t3) % 4) == 2);
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2001-04-09 20:54:03 +01:00
|
|
|
if (mk_first)
|
|
|
|
TRef = MkDBRefTerm(record(MkFirst | MkCode, t1, t2, MkIntTerm(0)));
|
|
|
|
else
|
|
|
|
TRef = MkDBRefTerm(record(MkLast | MkCode, t1, t2, MkIntTerm(0)));
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(4)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
t3 = Deref(ARG3);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG4, TRef);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* '$recordap'(+Functor,+Term,-Ref,+CRef) */
|
|
|
|
static Int
|
|
|
|
p_drcdap(void)
|
|
|
|
{
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2), t4 = Deref(ARG4);
|
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
|
|
|
return (FALSE);
|
|
|
|
if (IsVarTerm(t4) || !IsIntegerTerm(t4))
|
|
|
|
return (FALSE);
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2004-10-27 16:56:34 +01:00
|
|
|
restart_record:
|
2001-04-09 20:54:03 +01:00
|
|
|
TRef = MkDBRefTerm(record(MkFirst | MkCode | WithRef,
|
|
|
|
t1, t2, t4));
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(4)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
t4 = Deref(ARG4);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* '$recordzp'(+Functor,+Term,-Ref,+CRef) */
|
|
|
|
static Int
|
|
|
|
p_drcdzp(void)
|
|
|
|
{
|
|
|
|
Term TRef, t1 = Deref(ARG1), t2 = Deref(ARG2), t4 = Deref(ARG4);
|
|
|
|
|
|
|
|
if (!IsVarTerm(Deref(ARG3)))
|
|
|
|
return (FALSE);
|
|
|
|
if (IsVarTerm(t4) || !IsIntegerTerm(t4))
|
|
|
|
return (FALSE);
|
|
|
|
restart_record:
|
2003-05-19 14:04:09 +01:00
|
|
|
Yap_Error_Size = 0;
|
2001-04-09 20:54:03 +01:00
|
|
|
TRef = MkDBRefTerm(record(MkLast | MkCode | WithRef,
|
|
|
|
t1, t2, t4));
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE != YAP_NO_ERROR) {
|
|
|
|
if (recover_from_record_error(4)) {
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
t2 = Deref(ARG2);
|
|
|
|
t4 = Deref(ARG4);
|
|
|
|
goto restart_record;
|
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2004-01-23 02:23:51 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2004-10-27 16:56:34 +01:00
|
|
|
return Yap_unify(ARG3, TRef);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2003-11-12 12:33:31 +00:00
|
|
|
static Int
|
|
|
|
p_still_variant(void)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2003-11-12 12:33:31 +00:00
|
|
|
CELL *old_h = B->cp_h;
|
|
|
|
tr_fr_ptr old_tr = B->cp_tr;
|
|
|
|
Term t1 = Deref(ARG1), t2 = Deref(ARG2);
|
|
|
|
DBTerm *dbt;
|
|
|
|
DBRef dbr;
|
|
|
|
|
|
|
|
if (IsVarTerm(t1) || !IsDBRefTerm(t1)) {
|
2004-02-13 18:39:29 +00:00
|
|
|
return (FALSE);
|
2003-11-12 12:33:31 +00:00
|
|
|
/* limited sanity checking */
|
|
|
|
if (dbr->id != FunctorDBRef) {
|
|
|
|
return FALSE;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
} else {
|
|
|
|
dbr = DBRefOfTerm(t1);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
/* ok, we assume there was a choicepoint before we copied the term */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-07-28 23:09:02 +01:00
|
|
|
/* skip binding for argument variable */
|
|
|
|
old_tr++;
|
2003-11-12 12:33:31 +00:00
|
|
|
if (dbr->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)dbr;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-07-28 23:09:02 +01:00
|
|
|
if (old_tr == TR-1) {
|
|
|
|
if (TrailTerm(old_tr) != CLREF_TO_TRENTRY(cl))
|
|
|
|
return FALSE;
|
|
|
|
} else if (old_tr != TR)
|
2003-11-12 12:33:31 +00:00
|
|
|
return FALSE;
|
|
|
|
if (Yap_op_from_opcode(cl->ClCode->opc) == _unify_idb_term) {
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
dbt = cl->ClSource;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
} else {
|
2004-07-28 23:09:02 +01:00
|
|
|
if (old_tr == TR-1) {
|
|
|
|
if (TrailTerm(old_tr) != REF_TO_TRENTRY(dbr))
|
|
|
|
return FALSE;
|
|
|
|
} else if (old_tr != TR)
|
2003-11-12 12:33:31 +00:00
|
|
|
return FALSE;
|
|
|
|
if (dbr->Flags & (DBNoVars|DBAtomic))
|
|
|
|
return TRUE;
|
|
|
|
if (dbr->Flags & DBVar)
|
|
|
|
return IsVarTerm(t2);
|
|
|
|
dbt = &(dbr->DBT);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
#ifdef IDB_LINK_TABLE
|
2004-07-28 23:09:02 +01:00
|
|
|
/*
|
|
|
|
we checked the trail, so we are sure only variables in the new term
|
|
|
|
were bound
|
|
|
|
*/
|
2003-11-12 12:33:31 +00:00
|
|
|
{
|
|
|
|
link_entry *lp = (link_entry *)(dbt->Contents+dbt->NOfCells);
|
|
|
|
link_entry link;
|
|
|
|
|
|
|
|
while ((link = *lp++)) {
|
|
|
|
Term t2 = Deref(old_h[link-1]);
|
2004-09-18 15:03:42 +01:00
|
|
|
if (IsUnboundVar(dbt->Contents+(link-1))) {
|
2003-11-12 12:33:31 +00:00
|
|
|
if (IsVarTerm(t2)) {
|
|
|
|
Yap_unify(t2,MkAtomTerm(AtomFoundVar));
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else /* IDB_LINK_TABLE */
|
|
|
|
not IMPLEMENTED;
|
|
|
|
#endif
|
|
|
|
return TRUE;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2003-11-12 12:33:31 +00:00
|
|
|
|
2001-12-17 18:31:11 +00:00
|
|
|
#ifdef COROUTINING
|
2004-09-17 20:34:53 +01:00
|
|
|
static int
|
2001-12-17 18:31:11 +00:00
|
|
|
copy_attachments(CELL *ts)
|
|
|
|
{
|
2004-12-16 05:57:32 +00:00
|
|
|
Term orig = Yap_ReadTimedVar(DelayedVars);
|
|
|
|
Term orig2 = Yap_ReadTimedVar(AttsMutableList);
|
2004-09-27 21:45:04 +01:00
|
|
|
|
2004-12-16 05:57:32 +00:00
|
|
|
while (TRUE) {
|
2002-05-15 04:57:09 +01:00
|
|
|
/* store away in case there is an overflow */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (attas[IntegerOfTerm(ts[2])].term_to_op(ts[1], ts[0]) == FALSE) {
|
|
|
|
/* oops, we did not have enough space to copy the elements */
|
|
|
|
/* reset queue of woken up goals */
|
2004-12-16 05:57:32 +00:00
|
|
|
Yap_UpdateTimedVar(DelayedVars, orig);
|
|
|
|
Yap_UpdateTimedVar(AttsMutableList, orig2);
|
2004-09-17 20:34:53 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (ts[3] == TermNil) return TRUE;
|
|
|
|
ts = RepAppl(ts[3])+1;
|
2001-12-17 18:31:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static Term
|
|
|
|
GetDBLUKey(PredEntry *ap)
|
|
|
|
{
|
|
|
|
READ_LOCK(ap->PRWLock);
|
|
|
|
if (ap->PredFlags & NumberDBPredFlag) {
|
|
|
|
Int id = ap->src.IndxId;
|
|
|
|
READ_UNLOCK(ap->PRWLock);
|
|
|
|
return MkIntegerTerm(id);
|
2005-04-10 05:31:12 +01:00
|
|
|
} else if (ap->PredFlags & AtomDBPredFlag ||
|
|
|
|
(ap->ModuleOfPred != IDB_MODULE && ap->ArityOfPE == 0)) {
|
2003-08-27 14:37:10 +01:00
|
|
|
Atom at = (Atom)ap->FunctorOfPred;
|
|
|
|
READ_UNLOCK(ap->PRWLock);
|
|
|
|
return MkAtomTerm(at);
|
|
|
|
} else {
|
|
|
|
Functor f = ap->FunctorOfPred;
|
|
|
|
READ_UNLOCK(ap->PRWLock);
|
|
|
|
return Yap_MkNewApplTerm(f,ArityOfFunctor(f));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-10 00:32:22 +00:00
|
|
|
static int
|
|
|
|
UnifyDBKey(DBRef DBSP, PropFlags flags, Term t)
|
2002-12-10 00:22:01 +00:00
|
|
|
{
|
|
|
|
DBProp p = DBSP->Parent;
|
|
|
|
Term t1, tf;
|
|
|
|
|
|
|
|
READ_LOCK(p->DBRWLock);
|
|
|
|
/* get the key */
|
|
|
|
if (p->ArityOfDB == 0) {
|
|
|
|
t1 = MkAtomTerm((Atom)(p->FunctorOfDB));
|
|
|
|
} else {
|
|
|
|
t1 = Yap_MkNewApplTerm(p->FunctorOfDB,p->ArityOfDB);
|
|
|
|
}
|
2002-12-13 20:00:41 +00:00
|
|
|
if ((p->KindOfPE & CodeDBBit) && (flags & CodeDBBit)) {
|
2002-12-10 00:22:01 +00:00
|
|
|
Term t[2];
|
2004-02-12 12:37:12 +00:00
|
|
|
if (p->ModuleOfDB)
|
|
|
|
t[0] = p->ModuleOfDB;
|
|
|
|
else
|
|
|
|
t[0] = TermProlog;
|
2002-12-13 20:00:41 +00:00
|
|
|
t[1] = t1;
|
2002-12-10 00:22:01 +00:00
|
|
|
tf = Yap_MkApplTerm(FunctorModule, 2, t);
|
2002-12-10 00:32:22 +00:00
|
|
|
} else if (!(flags & CodeDBBit)) {
|
2002-12-10 00:22:01 +00:00
|
|
|
tf = t1;
|
2002-12-10 00:32:22 +00:00
|
|
|
} else {
|
|
|
|
return FALSE;
|
2002-12-10 00:22:01 +00:00
|
|
|
}
|
|
|
|
READ_UNLOCK(p->DBRWLock);
|
2002-12-10 00:32:22 +00:00
|
|
|
return(Yap_unify(tf,t));
|
2002-12-10 00:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-13 20:00:41 +00:00
|
|
|
static int
|
|
|
|
UnifyDBNumber(DBRef DBSP, Term t)
|
|
|
|
{
|
|
|
|
DBProp p = DBSP->Parent;
|
|
|
|
DBRef ref;
|
|
|
|
Int i = 1;
|
|
|
|
|
|
|
|
READ_LOCK(p->DBRWLock);
|
|
|
|
ref = p->First;
|
|
|
|
while (ref != NIL) {
|
|
|
|
if (ref == DBSP) break;
|
|
|
|
if (!DEAD_REF(ref)) i++;
|
|
|
|
ref = ref->Next;
|
|
|
|
}
|
|
|
|
if (ref == NIL)
|
|
|
|
return FALSE;
|
|
|
|
READ_UNLOCK(p->DBRWLock);
|
|
|
|
return(Yap_unify(MkIntegerTerm(i),t));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static Term
|
2003-08-27 14:37:10 +01:00
|
|
|
GetDBTerm(DBTerm *DBSP)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2003-08-27 14:37:10 +01:00
|
|
|
Term t = DBSP->Entry;
|
|
|
|
|
2004-05-13 21:54:58 +01:00
|
|
|
if (IsVarTerm(t)
|
|
|
|
#if COROUTINING
|
|
|
|
&& !DBSP->attachments
|
|
|
|
#endif
|
|
|
|
) {
|
2003-08-27 14:37:10 +01:00
|
|
|
return MkVarTerm();
|
|
|
|
} else if (IsAtomOrIntTerm(t)) {
|
|
|
|
return t;
|
|
|
|
} else {
|
2001-04-09 20:54:03 +01:00
|
|
|
CELL *HOld = H;
|
|
|
|
CELL *HeapPtr;
|
|
|
|
CELL *pt;
|
|
|
|
CELL NOf;
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
if (!(NOf = DBSP->NOfCells)) {
|
|
|
|
return t;
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
pt = CellPtr(DBSP->Contents);
|
2004-09-16 18:29:08 +01:00
|
|
|
if (H+NOf > ASP-CalculateStackGap()/sizeof(CELL)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
if (Yap_PrologMode & InErrorMode) {
|
2002-01-03 16:27:00 +00:00
|
|
|
if (H+NOf > ASP)
|
2002-11-18 18:18:05 +00:00
|
|
|
fprintf(Yap_stderr, "\n\n [ FATAL ERROR: No Stack for Error Handling ]\n");
|
|
|
|
Yap_exit( 1);
|
2002-01-03 16:27:00 +00:00
|
|
|
} else {
|
2004-09-17 20:34:53 +01:00
|
|
|
Yap_Error_TYPE = OUT_OF_STACK_ERROR;
|
2004-02-12 17:09:17 +00:00
|
|
|
Yap_Error_Size = NOf*sizeof(CELL);
|
2004-09-16 18:29:08 +01:00
|
|
|
return (Term)0;
|
2002-01-03 16:27:00 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
HeapPtr = cpcells(HOld, pt, NOf);
|
|
|
|
pt += HeapPtr - HOld;
|
|
|
|
H = HeapPtr;
|
|
|
|
#ifdef IDB_LINK_TABLE
|
|
|
|
{
|
|
|
|
link_entry *lp = (link_entry *)pt;
|
2003-08-27 14:37:10 +01:00
|
|
|
linkblk(lp, HOld-1, (CELL)HOld-(CELL)(DBSP->Contents));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2001-12-17 18:31:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef COROUTINING
|
|
|
|
if (DBSP->attachments != 0L) {
|
2004-09-17 20:34:53 +01:00
|
|
|
if (!copy_attachments((CELL *)AdjustIDBPtr(DBSP->attachments,(CELL)HOld-(CELL)(DBSP->Contents)))) {
|
2004-12-16 05:57:32 +00:00
|
|
|
H = HOld;
|
|
|
|
Yap_Error_TYPE = OUT_OF_ATTVARS_ERROR;
|
|
|
|
Yap_Error_Size = 0;
|
|
|
|
return (Term)0;
|
2004-09-17 20:34:53 +01:00
|
|
|
}
|
2001-12-17 18:31:11 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
return AdjustIDBPtr(t,Unsigned(HOld)-(CELL)(DBSP->Contents));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Term
|
|
|
|
GetDBTermFromDBEntry(DBRef DBSP)
|
|
|
|
{
|
|
|
|
if (DBSP->Flags & (DBNoVars | DBAtomic))
|
|
|
|
return DBSP->DBT.Entry;
|
|
|
|
return GetDBTerm(&(DBSP->DBT));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_int_keys(void) {
|
2002-11-18 18:18:05 +00:00
|
|
|
INT_KEYS = (Prop *)Yap_AllocCodeSpace(sizeof(Prop)*INT_KEYS_SIZE);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (INT_KEYS != NULL) {
|
|
|
|
UInt i = 0;
|
|
|
|
Prop *p = INT_KEYS;
|
|
|
|
for (i = 0; i < INT_KEYS_SIZE; i++) {
|
|
|
|
p[0] = NIL;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static void
|
|
|
|
init_int_lu_keys(void) {
|
|
|
|
INT_LU_KEYS = (Prop *)Yap_AllocCodeSpace(sizeof(Prop)*INT_KEYS_SIZE);
|
|
|
|
if (INT_LU_KEYS != NULL) {
|
|
|
|
UInt i = 0;
|
|
|
|
Prop *p = INT_LU_KEYS;
|
|
|
|
for (i = 0; i < INT_KEYS_SIZE; i++) {
|
|
|
|
p[0] = NULL;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static int
|
|
|
|
resize_int_keys(UInt new_size) {
|
|
|
|
Prop *new;
|
|
|
|
UInt i;
|
|
|
|
|
|
|
|
YAPEnterCriticalSection();
|
|
|
|
if (INT_KEYS == NULL) {
|
|
|
|
INT_KEYS_SIZE = new_size;
|
|
|
|
YAPLeaveCriticalSection();
|
|
|
|
return(TRUE);
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
new = (Prop *)Yap_AllocCodeSpace(sizeof(Prop)*new_size);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (new == NULL) {
|
|
|
|
YAPLeaveCriticalSection();
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = OUT_OF_HEAP_ERROR;
|
|
|
|
Yap_Error_Term = TermNil;
|
|
|
|
Yap_ErrorMessage = "could not allocate space";
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
for (i = 0; i < new_size; i++) {
|
|
|
|
new[i] = NIL;
|
|
|
|
}
|
|
|
|
for (i = 0; i < INT_KEYS_SIZE; i++) {
|
|
|
|
if (INT_KEYS[i] != NIL) {
|
|
|
|
Prop p0 = INT_KEYS[i];
|
|
|
|
while (p0 != NIL) {
|
|
|
|
DBProp p = RepDBProp(p0);
|
|
|
|
CELL key = (CELL)(p->FunctorOfDB);
|
|
|
|
UInt hash_key = (CELL)key % new_size;
|
|
|
|
p0 = p->NextOfPE;
|
|
|
|
p->NextOfPE = new[hash_key];
|
|
|
|
new[hash_key] = AbsDBProp(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_FreeCodeSpace((char *)INT_KEYS);
|
2001-04-09 20:54:03 +01:00
|
|
|
INT_KEYS = new;
|
|
|
|
INT_KEYS_SIZE = new_size;
|
|
|
|
INT_KEYS_TIMESTAMP++;
|
|
|
|
if (INT_KEYS_TIMESTAMP == MAX_ABS_INT)
|
|
|
|
INT_KEYS_TIMESTAMP = 0;
|
|
|
|
YAPLeaveCriticalSection();
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static PredEntry *
|
|
|
|
find_lu_int_key(Int key)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
UInt hash_key = (CELL)key % INT_KEYS_SIZE;
|
|
|
|
Prop p0;
|
2003-08-27 14:37:10 +01:00
|
|
|
|
|
|
|
if (INT_LU_KEYS != NULL) {
|
|
|
|
p0 = INT_LU_KEYS[hash_key];
|
|
|
|
while (p0) {
|
|
|
|
PredEntry *pe = RepPredProp(p0);
|
|
|
|
if (pe->src.IndxId == key) {
|
|
|
|
return pe;
|
|
|
|
}
|
|
|
|
p0 = pe->NextOfPE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (UPDATE_MODE == UPDATE_MODE_LOGICAL &&
|
|
|
|
find_int_key(key) == NULL) {
|
|
|
|
return new_lu_int_key(key);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static DBProp
|
|
|
|
find_int_key(Int key)
|
|
|
|
{
|
|
|
|
UInt hash_key = (CELL)key % INT_KEYS_SIZE;
|
|
|
|
Prop p0;
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
if (INT_KEYS == NULL) {
|
2003-08-27 14:37:10 +01:00
|
|
|
return NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
p0 = INT_KEYS[hash_key];
|
2003-08-27 14:37:10 +01:00
|
|
|
while (p0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
DBProp p = RepDBProp(p0);
|
2003-08-27 14:37:10 +01:00
|
|
|
if (p->FunctorOfDB == (Functor)key) return(p);
|
2001-04-09 20:54:03 +01:00
|
|
|
p0 = p->NextOfPE;
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PredEntry *
|
|
|
|
new_lu_int_key(Int key)
|
|
|
|
{
|
|
|
|
UInt hash_key = (CELL)key % INT_KEYS_SIZE;
|
|
|
|
PredEntry *p;
|
|
|
|
Prop p0;
|
2003-12-01 17:27:42 +00:00
|
|
|
Functor fe;
|
2003-08-27 14:37:10 +01:00
|
|
|
|
|
|
|
if (INT_LU_KEYS == NULL) {
|
|
|
|
init_int_lu_keys();
|
|
|
|
if (INT_LU_KEYS == NULL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = OUT_OF_HEAP_ERROR;
|
|
|
|
Yap_Error_Term = TermNil;
|
|
|
|
Yap_ErrorMessage = "could not allocate space";
|
2003-08-27 14:37:10 +01:00
|
|
|
return NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2003-12-01 17:27:42 +00:00
|
|
|
fe = Yap_MkFunctor(Yap_FullLookupAtom("$integer"),3);
|
|
|
|
WRITE_LOCK(fe->FRWLock);
|
2004-02-12 12:37:12 +00:00
|
|
|
p0 = Yap_NewPredPropByFunctor(fe,IDB_MODULE);
|
2003-08-27 14:37:10 +01:00
|
|
|
p = RepPredProp(p0);
|
|
|
|
p->NextOfPE = INT_LU_KEYS[hash_key];
|
|
|
|
p->src.IndxId = key;
|
|
|
|
p->PredFlags |= LogUpdatePredFlag|NumberDBPredFlag;
|
|
|
|
p->ArityOfPE = 3;
|
|
|
|
p->OpcodeOfPred = Yap_opcode(_op_fail);
|
|
|
|
p->cs.p_code.TrueCodeOfPred = p->CodeOfPred = FAILCODE;
|
|
|
|
INT_LU_KEYS[hash_key] = p0;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PredEntry *
|
|
|
|
new_lu_entry(Term t)
|
|
|
|
{
|
|
|
|
Prop p0;
|
|
|
|
PredEntry *pe;
|
|
|
|
|
|
|
|
if (IsApplTerm(t)) {
|
|
|
|
Functor f = FunctorOfTerm(t);
|
|
|
|
|
2003-12-01 17:27:42 +00:00
|
|
|
WRITE_LOCK(f->FRWLock);
|
2004-02-12 12:37:12 +00:00
|
|
|
p0 = Yap_NewPredPropByFunctor(f,IDB_MODULE);
|
2003-08-27 14:37:10 +01:00
|
|
|
} else if (IsAtomTerm(t)) {
|
2003-12-01 17:27:42 +00:00
|
|
|
Atom at = AtomOfTerm(t);
|
|
|
|
|
|
|
|
WRITE_LOCK(RepAtom(at)->ARWLock);
|
2004-02-12 12:37:12 +00:00
|
|
|
p0 = Yap_NewPredPropByAtom(at,IDB_MODULE);
|
2003-08-27 14:37:10 +01:00
|
|
|
} else {
|
2003-12-18 17:23:22 +00:00
|
|
|
WRITE_LOCK(FunctorList->FRWLock);
|
2004-02-12 12:37:12 +00:00
|
|
|
p0 = Yap_NewPredPropByFunctor(FunctorList,IDB_MODULE);
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
pe = RepPredProp(p0);
|
|
|
|
pe->PredFlags |= LogUpdatePredFlag;
|
|
|
|
if (IsAtomTerm(t)) {
|
|
|
|
pe->PredFlags |= AtomDBPredFlag;
|
|
|
|
}
|
|
|
|
pe->ArityOfPE = 3;
|
|
|
|
pe->OpcodeOfPred = Yap_opcode(_op_fail);
|
|
|
|
pe->cs.p_code.TrueCodeOfPred = pe->CodeOfPred = FAILCODE;
|
|
|
|
return pe;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBProp
|
|
|
|
find_entry(Term t)
|
|
|
|
{
|
|
|
|
Atom at;
|
|
|
|
UInt arity;
|
|
|
|
|
|
|
|
if (IsVarTerm(t)) {
|
|
|
|
return(RepDBProp(NIL));
|
|
|
|
} else if (IsAtomTerm(t)) {
|
|
|
|
at = AtomOfTerm(t);
|
|
|
|
arity = 0;
|
|
|
|
|
|
|
|
} else if (IsIntegerTerm(t)) {
|
|
|
|
return find_int_key(IntegerOfTerm(t));
|
|
|
|
} else if (IsApplTerm(t)) {
|
|
|
|
Functor f = FunctorOfTerm(t);
|
|
|
|
|
|
|
|
at = NameOfFunctor(f);
|
|
|
|
arity = ArityOfFunctor(f);
|
|
|
|
} else {
|
|
|
|
at = AtomDot;
|
|
|
|
arity = 2;
|
|
|
|
}
|
|
|
|
return RepDBProp(FindDBProp(RepAtom(at), 0, arity, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
static PredEntry *
|
|
|
|
find_lu_entry(Term t)
|
|
|
|
{
|
|
|
|
Prop p;
|
|
|
|
|
|
|
|
if (IsVarTerm(t)) {
|
|
|
|
Yap_Error(INSTANTIATION_ERROR, t, "while accessing database key");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (IsIntegerTerm(t)) {
|
|
|
|
return find_lu_int_key(IntegerOfTerm(t));
|
|
|
|
} else if (IsApplTerm(t)) {
|
|
|
|
Functor f = FunctorOfTerm(t);
|
|
|
|
|
|
|
|
if (IsExtensionFunctor(f)) {
|
|
|
|
Yap_Error(TYPE_ERROR_KEY, t, "while accessing database key");
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-02-12 12:37:12 +00:00
|
|
|
p = Yap_GetPredPropByFuncInThisModule(FunctorOfTerm(t),IDB_MODULE);
|
2003-08-27 14:37:10 +01:00
|
|
|
} else if (IsAtomTerm(t)) {
|
2004-02-12 12:37:12 +00:00
|
|
|
p = Yap_GetPredPropByAtomInThisModule(AtomOfTerm(t),IDB_MODULE);
|
2003-08-27 14:37:10 +01:00
|
|
|
} else {
|
2004-02-12 12:37:12 +00:00
|
|
|
p = Yap_GetPredPropByFuncInThisModule(FunctorList,IDB_MODULE);
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
if (p == NIL) {
|
|
|
|
if (UPDATE_MODE == UPDATE_MODE_LOGICAL && !find_entry(t)) {
|
|
|
|
return new_lu_entry(t);
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return RepPredProp(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static DBProp
|
|
|
|
FetchIntDBPropFromKey(Int key, int flag, int new, char *error_mssg)
|
|
|
|
{
|
|
|
|
Functor fun = (Functor)key;
|
|
|
|
UInt hash_key = (CELL)key % INT_KEYS_SIZE;
|
|
|
|
Prop p0;
|
|
|
|
|
|
|
|
if (INT_KEYS == NULL) {
|
|
|
|
init_int_keys();
|
|
|
|
if (INT_KEYS == NULL) {
|
2003-11-29 23:41:28 +00:00
|
|
|
Yap_Error_TYPE = OUT_OF_HEAP_ERROR;
|
|
|
|
Yap_Error_Term = TermNil;
|
|
|
|
Yap_ErrorMessage = "could not allocate space";
|
2003-08-27 14:37:10 +01:00
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p0 = INT_KEYS[hash_key];
|
|
|
|
while (p0 != NIL) {
|
|
|
|
DBProp p = RepDBProp(p0);
|
|
|
|
if (p->FunctorOfDB == fun) return(p);
|
|
|
|
p0 = p->NextOfPE;
|
|
|
|
}
|
|
|
|
/* p is NULL, meaning we did not find the functor */
|
|
|
|
if (new) {
|
|
|
|
DBProp p;
|
|
|
|
/* create a new DBProp */
|
|
|
|
p = (DBProp) Yap_AllocAtomSpace(sizeof(*p));
|
|
|
|
p->KindOfPE = DBProperty|flag;
|
|
|
|
p->F0 = p->L0 = NULL;
|
|
|
|
p->ArityOfDB = 0;
|
|
|
|
p->First = p->Last = NULL;
|
|
|
|
p->ModuleOfDB = 0;
|
|
|
|
p->FunctorOfDB = fun;
|
|
|
|
p->NextOfPE = INT_KEYS[hash_key];
|
|
|
|
INIT_RWLOCK(p->DBRWLock);
|
|
|
|
INT_KEYS[hash_key] = AbsDBProp(p);
|
|
|
|
return(p);
|
|
|
|
} else {
|
|
|
|
return(RepDBProp(NULL));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static DBProp
|
|
|
|
FetchDBPropFromKey(Term twork, int flag, int new, char *error_mssg)
|
|
|
|
{
|
|
|
|
Atom At;
|
|
|
|
Int arity;
|
2004-02-12 12:37:12 +00:00
|
|
|
Term dbmod;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
if (flag & MkCode) {
|
|
|
|
if (IsVarTerm(twork)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, twork, error_mssg);
|
2003-08-27 14:37:10 +01:00
|
|
|
return RepDBProp(NULL);
|
2001-11-15 00:01:43 +00:00
|
|
|
}
|
|
|
|
if (!IsApplTerm(twork)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(SYSTEM_ERROR, twork, "missing module");
|
2003-08-27 14:37:10 +01:00
|
|
|
return RepDBProp(NULL);
|
2001-11-15 00:01:43 +00:00
|
|
|
} else {
|
|
|
|
Functor f = FunctorOfTerm(twork);
|
|
|
|
if (f != FunctorModule) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(SYSTEM_ERROR, twork, "missing module");
|
2003-08-27 14:37:10 +01:00
|
|
|
return RepDBProp(NULL);
|
2001-11-15 00:01:43 +00:00
|
|
|
}
|
2004-02-12 12:37:12 +00:00
|
|
|
dbmod = ArgOfTerm(1, twork);
|
|
|
|
if (IsVarTerm(dbmod)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, twork, "var in module");
|
2001-11-15 00:01:43 +00:00
|
|
|
return(RepDBProp(NIL));
|
|
|
|
}
|
2004-02-12 12:37:12 +00:00
|
|
|
if (!IsAtomTerm(dbmod)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_ATOM, twork, "not atom in module");
|
2001-11-15 00:01:43 +00:00
|
|
|
return(RepDBProp(NIL));
|
|
|
|
}
|
|
|
|
twork = ArgOfTerm(2, twork);
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
} else {
|
2001-11-15 00:01:43 +00:00
|
|
|
dbmod = 0;
|
2003-08-27 14:37:10 +01:00
|
|
|
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
if (IsVarTerm(twork)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, twork, error_mssg);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(RepDBProp(NIL));
|
|
|
|
} else if (IsAtomTerm(twork)) {
|
|
|
|
arity = 0, At = AtomOfTerm(twork);
|
|
|
|
} else if (IsIntegerTerm(twork)) {
|
|
|
|
return(FetchIntDBPropFromKey(IntegerOfTerm(twork), flag, new, error_mssg));
|
|
|
|
} else if (IsApplTerm(twork)) {
|
|
|
|
Register Functor f = FunctorOfTerm(twork);
|
|
|
|
if (IsExtensionFunctor(f)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_KEY, twork, error_mssg);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(RepDBProp(NIL));
|
|
|
|
}
|
|
|
|
At = NameOfFunctor(f);
|
|
|
|
arity = ArityOfFunctor(f);
|
|
|
|
} else if (IsPairTerm(twork)) {
|
|
|
|
At = AtomDot;
|
|
|
|
arity = 2;
|
|
|
|
} else {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_KEY, twork,error_mssg);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(RepDBProp(NIL));
|
|
|
|
}
|
|
|
|
if (new) {
|
|
|
|
DBProp p;
|
|
|
|
AtomEntry *ae = RepAtom(At);
|
|
|
|
|
|
|
|
WRITE_LOCK(ae->ARWLock);
|
2001-11-15 00:01:43 +00:00
|
|
|
if (EndOfPAEntr(p = RepDBProp(FindDBPropHavingLock(ae, flag, arity, dbmod)))) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* create a new DBProp */
|
|
|
|
int OLD_UPDATE_MODE = UPDATE_MODE;
|
|
|
|
if (flag & MkCode) {
|
2001-11-15 00:01:43 +00:00
|
|
|
PredEntry *pp;
|
2002-11-18 18:18:05 +00:00
|
|
|
pp = RepPredProp(Yap_GetPredPropHavingLock(At, arity, dbmod));
|
2001-11-15 00:01:43 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
if (!EndOfPAEntr(pp)) {
|
|
|
|
READ_LOCK(pp->PRWLock);
|
|
|
|
if(pp->PredFlags & LogUpdatePredFlag)
|
|
|
|
UPDATE_MODE = UPDATE_MODE_LOGICAL;
|
|
|
|
READ_UNLOCK(pp->PRWLock);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
p = (DBProp) Yap_AllocAtomSpace(sizeof(*p));
|
|
|
|
p->KindOfPE = DBProperty|flag;
|
|
|
|
p->F0 = p->L0 = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
UPDATE_MODE = OLD_UPDATE_MODE;
|
|
|
|
p->ArityOfDB = arity;
|
|
|
|
p->First = p->Last = NIL;
|
2001-11-15 00:01:43 +00:00
|
|
|
p->ModuleOfDB = dbmod;
|
2001-04-09 20:54:03 +01:00
|
|
|
/* This is NOT standard but is QUITE convenient */
|
|
|
|
INIT_RWLOCK(p->DBRWLock);
|
|
|
|
if (arity == 0)
|
|
|
|
p->FunctorOfDB = (Functor) At;
|
|
|
|
else
|
2002-11-18 18:18:05 +00:00
|
|
|
p->FunctorOfDB = Yap_UnlockedMkFunctor(ae,arity);
|
2001-10-30 16:42:05 +00:00
|
|
|
p->NextOfPE = ae->PropsOfAE;
|
|
|
|
ae->PropsOfAE = AbsDBProp(p);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
WRITE_UNLOCK(ae->ARWLock);
|
|
|
|
return(p);
|
|
|
|
} else
|
2001-11-15 00:01:43 +00:00
|
|
|
return(RepDBProp(FindDBProp(RepAtom(At), flag, arity, dbmod)));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2002-12-13 20:00:41 +00:00
|
|
|
|
2005-03-09 06:35:52 +00:00
|
|
|
static Int
|
|
|
|
lu_nth_recorded(PredEntry *pe, Int Count)
|
2002-12-13 20:00:41 +00:00
|
|
|
{
|
2005-03-09 06:35:52 +00:00
|
|
|
LogUpdClause *cl;
|
|
|
|
|
|
|
|
XREGS[2] = MkVarTerm();
|
|
|
|
cl = Yap_NthClause(pe, Count);
|
|
|
|
if (cl == NULL)
|
|
|
|
return FALSE;
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
LOCK(cl->ClLock);
|
|
|
|
TRAIL_CLREF(cl); /* So that fail will erase it */
|
|
|
|
INC_CLREF_COUNT(cl);
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
#else
|
|
|
|
if (!(cl->ClFlags & InUseMask)) {
|
|
|
|
cl->ClFlags |= InUseMask;
|
|
|
|
TRAIL_CLREF(cl); /* So that fail will erase it */
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return Yap_unify(MkDBRefTerm((DBRef)cl),ARG3);
|
2002-12-13 20:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Finds a term recorded under the key ARG1 */
|
|
|
|
static Int
|
|
|
|
nth_recorded(DBProp AtProp, Int Count)
|
|
|
|
{
|
|
|
|
Register DBRef ref;
|
|
|
|
|
|
|
|
READ_LOCK(AtProp->DBRWLock);
|
2005-03-09 06:35:52 +00:00
|
|
|
ref = AtProp->First;
|
|
|
|
Count--;
|
|
|
|
while (ref != NULL
|
|
|
|
&& DEAD_REF(ref))
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
if (ref == NULL) {
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
while (Count) {
|
2002-12-13 20:00:41 +00:00
|
|
|
Count--;
|
2005-03-09 06:35:52 +00:00
|
|
|
ref = NextDBRef(ref);
|
2002-12-13 20:00:41 +00:00
|
|
|
while (ref != NULL
|
|
|
|
&& DEAD_REF(ref))
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
if (ref == NULL) {
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
LOCK(ref->lock);
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
|
|
|
INC_DBREF_COUNT(ref);
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
#else
|
|
|
|
if (!(ref->Flags & InUseMask)) {
|
|
|
|
ref->Flags |= InUseMask;
|
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
|
|
|
}
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
#endif
|
|
|
|
return Yap_unify(MkDBRefTerm(ref),ARG3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_nth_instance(void)
|
|
|
|
{
|
|
|
|
DBProp AtProp;
|
|
|
|
Term TCount;
|
|
|
|
Int Count;
|
2005-03-09 06:35:52 +00:00
|
|
|
PredEntry *pe;
|
2002-12-13 20:00:41 +00:00
|
|
|
Term t3 = Deref(ARG3);
|
|
|
|
|
|
|
|
if (!IsVarTerm(t3)) {
|
|
|
|
if (!IsDBRefTerm(t3)) {
|
|
|
|
Yap_Error(TYPE_ERROR_DBREF,t3,"nth_instance/3");
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
DBRef ref = DBRefOfTerm(t3);
|
2005-03-09 06:35:52 +00:00
|
|
|
if (ref->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)ref;
|
|
|
|
PredEntry *pe;
|
|
|
|
LogUpdClause *ocl;
|
|
|
|
UInt pred_arity, icl = 0;
|
|
|
|
Functor pred_f;
|
|
|
|
Term tpred;
|
|
|
|
Term pred_module;
|
|
|
|
|
|
|
|
LOCK(cl->ClLock);
|
|
|
|
if (cl->ClFlags & ErasedMask) {
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
pe = cl->ClPred;
|
|
|
|
READ_LOCK(pe->PRWLock);
|
|
|
|
ocl = ClauseCodeToLogUpdClause(pe->cs.p_code.FirstClause);
|
|
|
|
pred_module = pe->ModuleOfPred;
|
|
|
|
if (pred_module != IDB_MODULE) {
|
|
|
|
pred_f = pe->FunctorOfPred;
|
|
|
|
pred_arity = pe->ArityOfPE;
|
|
|
|
} else {
|
|
|
|
if (pe->PredFlags & NumberDBPredFlag) {
|
|
|
|
pred_f = (Functor)MkIntegerTerm(pe->src.IndxId);
|
|
|
|
pred_arity = 0;
|
|
|
|
} else {
|
|
|
|
pred_f = pe->FunctorOfPred;
|
|
|
|
if (pe->PredFlags & AtomDBPredFlag) {
|
|
|
|
pred_arity = 0;
|
|
|
|
} else {
|
|
|
|
pred_arity = ArityOfFunctor(pred_f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
icl++;
|
|
|
|
if (cl == ocl) break;
|
|
|
|
ocl = ocl->ClNext;
|
|
|
|
} while (ocl != NULL);
|
|
|
|
READ_UNLOCK(pe->PRWLock);
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
if (ocl == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (!Yap_unify(ARG2,MkIntegerTerm(icl))) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (pred_arity) {
|
|
|
|
tpred = Yap_MkNewApplTerm(pred_f,pred_arity);
|
|
|
|
} else {
|
|
|
|
tpred = MkAtomTerm((Atom)pred_f);
|
|
|
|
}
|
|
|
|
if (pred_module == IDB_MODULE) {
|
|
|
|
return Yap_unify(ARG1,tpred);
|
|
|
|
} else {
|
|
|
|
Term ttpred, ts[2];
|
|
|
|
ts[0] = pred_module;
|
|
|
|
ts[1] = tpred;
|
|
|
|
ttpred = Yap_MkApplTerm(FunctorModule,pred_arity,ts);
|
|
|
|
return Yap_unify(ARG1,ttpred);
|
|
|
|
}
|
2002-12-13 20:00:41 +00:00
|
|
|
} else {
|
2005-03-09 06:35:52 +00:00
|
|
|
LOCK(ref->lock);
|
|
|
|
if (ref == NULL
|
|
|
|
|| DEAD_REF(ref)
|
|
|
|
|| !UnifyDBKey(ref,0,ARG1)
|
|
|
|
|| !UnifyDBNumber(ref,ARG2)) {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-12-13 20:00:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TCount = Deref(ARG2);
|
|
|
|
if (IsVarTerm(TCount)) {
|
|
|
|
Yap_Error(INSTANTIATION_ERROR, TCount, "nth_instance/3");
|
2005-03-09 06:35:52 +00:00
|
|
|
return FALSE;
|
2002-12-13 20:00:41 +00:00
|
|
|
}
|
|
|
|
if (!IsIntegerTerm(TCount)) {
|
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, TCount, "nth_instance/3");
|
2005-03-09 06:35:52 +00:00
|
|
|
return FALSE;
|
2002-12-13 20:00:41 +00:00
|
|
|
}
|
|
|
|
Count = IntegerOfTerm(TCount);
|
|
|
|
if (Count <= 0) {
|
|
|
|
if (Count)
|
|
|
|
Yap_Error(DOMAIN_ERROR_NOT_LESS_THAN_ZERO, TCount, "nth_instance/3");
|
|
|
|
else
|
|
|
|
Yap_Error(DOMAIN_ERROR_NOT_ZERO, TCount, "nth_instance/3");
|
2005-03-09 06:35:52 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if ((pe = find_lu_entry(Deref(ARG1))) != NULL) {
|
|
|
|
return lu_nth_recorded(pe,Count);
|
|
|
|
}
|
|
|
|
if (EndOfPAEntr(AtProp = FetchDBPropFromKey(Deref(ARG1), 0, FALSE, "nth_instance/3"))) {
|
|
|
|
return FALSE;
|
2002-12-13 20:00:41 +00:00
|
|
|
}
|
|
|
|
return nth_recorded(AtProp,Count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_nth_instancep(void)
|
|
|
|
{
|
|
|
|
DBProp AtProp;
|
|
|
|
Term TCount;
|
|
|
|
Int Count;
|
|
|
|
Term t3 = Deref(ARG3);
|
|
|
|
|
|
|
|
if (!IsVarTerm(t3)) {
|
|
|
|
if (!IsDBRefTerm(t3)) {
|
|
|
|
Yap_Error(TYPE_ERROR_DBREF,t3,"nth_instance/3");
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
DBRef ref = DBRefOfTerm(t3);
|
|
|
|
LOCK(ref->lock);
|
|
|
|
if (ref == NULL
|
|
|
|
|| DEAD_REF(ref)
|
|
|
|
|| !UnifyDBKey(ref,CodeDBBit,ARG1)
|
|
|
|
|| !UnifyDBNumber(ref,ARG2)) {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
return(FALSE);
|
|
|
|
} else {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (EndOfPAEntr(AtProp = FetchDBPropFromKey(Deref(ARG1), MkCode, FALSE, "nth_instance/3"))) {
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
TCount = Deref(ARG2);
|
|
|
|
if (IsVarTerm(TCount)) {
|
|
|
|
Yap_Error(INSTANTIATION_ERROR, TCount, "recorded_at/4");
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
if (!IsIntegerTerm(TCount)) {
|
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, TCount, "recorded_at/4");
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
Count = IntegerOfTerm(TCount);
|
|
|
|
if (Count <= 0) {
|
|
|
|
if (Count)
|
|
|
|
Yap_Error(DOMAIN_ERROR_NOT_LESS_THAN_ZERO, TCount, "recorded_at/4");
|
|
|
|
else
|
|
|
|
Yap_Error(DOMAIN_ERROR_NOT_ZERO, TCount, "recorded_at/4");
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return nth_recorded(AtProp,Count);
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static Int
|
|
|
|
p_db_key(void)
|
|
|
|
{
|
|
|
|
Register Term twork = Deref(ARG1); /* fetch the key */
|
|
|
|
DBProp AtProp;
|
|
|
|
|
|
|
|
if (EndOfPAEntr(AtProp = FetchDBPropFromKey(twork, 0, TRUE, "db_key/3"))) {
|
|
|
|
/* should never happen */
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG2,MkIntegerTerm((Int)AtProp)));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Finds a term recorded under the key ARG1 */
|
|
|
|
static Int
|
2002-12-10 00:22:01 +00:00
|
|
|
i_recorded(DBProp AtProp, Term t3)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
Term TermDB, TRef;
|
|
|
|
Register DBRef ref;
|
|
|
|
Term twork;
|
|
|
|
|
|
|
|
READ_LOCK(AtProp->DBRWLock);
|
|
|
|
ref = AtProp->First;
|
|
|
|
while (ref != NULL
|
|
|
|
&& DEAD_REF(ref))
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
if (ref == NULL) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
twork = Deref(ARG2); /* now working with ARG2 */
|
|
|
|
if (IsVarTerm(twork)) {
|
|
|
|
EXTRA_CBACK_ARG(3,2) = MkIntegerTerm(0);
|
|
|
|
EXTRA_CBACK_ARG(3,3) = MkIntegerTerm(0);
|
|
|
|
B->cp_h = H;
|
2003-08-27 14:37:10 +01:00
|
|
|
while ((TermDB = GetDBTermFromDBEntry(ref)) == (CELL)0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make sure the garbage collector sees what we want it to see! */
|
|
|
|
EXTRA_CBACK_ARG(3,1) = (CELL)ref;
|
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 3, ENV, CP)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-10-10 06:58:49 +01:00
|
|
|
}
|
2004-09-17 20:34:53 +01:00
|
|
|
Yap_Error_Size = 0;
|
2001-04-09 20:54:03 +01:00
|
|
|
twork = Deref(ARG2);
|
|
|
|
t3 = Deref(ARG3);
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
if (!Yap_unify(twork, TermDB)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
} else if (IsAtomOrIntTerm(twork)) {
|
|
|
|
EXTRA_CBACK_ARG(3,2) = MkIntegerTerm(0);
|
|
|
|
EXTRA_CBACK_ARG(3,3) = MkIntegerTerm((Int)twork);
|
|
|
|
B->cp_h = H;
|
|
|
|
READ_LOCK(AtProp->DBRWLock);
|
|
|
|
do {
|
2003-08-27 14:37:10 +01:00
|
|
|
if (((twork == ref->DBT.Entry) || IsVarTerm(ref->DBT.Entry)) &&
|
2001-04-09 20:54:03 +01:00
|
|
|
!DEAD_REF(ref))
|
|
|
|
break;
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
if (ref == NIL) {
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
} while (TRUE);
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
} else {
|
|
|
|
CELL key;
|
|
|
|
CELL mask = EvalMasks(twork, &key);
|
|
|
|
|
|
|
|
B->cp_h = H;
|
|
|
|
READ_LOCK(AtProp->DBRWLock);
|
|
|
|
do {
|
|
|
|
while ((mask & ref->Key) != (key & ref->Mask) && !DEAD_REF(ref)) {
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
if (ref == NULL) {
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
if ((TermDB = GetDBTermFromDBEntry(ref)) != (CELL)0) {
|
2002-11-18 18:18:05 +00:00
|
|
|
if (Yap_unify(TermDB, ARG2)) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* success */
|
|
|
|
EXTRA_CBACK_ARG(3,2) = MkIntegerTerm(((Int)mask));
|
|
|
|
EXTRA_CBACK_ARG(3,3) = MkIntegerTerm(((Int)key));
|
|
|
|
B->cp_h = H;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
while ((ref = NextDBRef(ref)) != NULL
|
|
|
|
&& DEAD_REF(ref));
|
|
|
|
if (ref == NULL) {
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* make sure the garbage collector sees what we want it to see! */
|
|
|
|
EXTRA_CBACK_ARG(3,1) = (CELL)ref;
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
EXTRA_CBACK_ARG(3,2) = MkIntegerTerm(((Int)mask));
|
|
|
|
EXTRA_CBACK_ARG(3,3) = MkIntegerTerm(((Int)key));
|
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 3, ENV, CP)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2002-10-10 06:58:49 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
READ_LOCK(AtProp->DBRWLock);
|
|
|
|
}
|
|
|
|
} while (TRUE);
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
}
|
|
|
|
EXTRA_CBACK_ARG(3,1) = (CELL)ref;
|
|
|
|
/* This should be after any non-tagged terms, because the routines in grow.c
|
|
|
|
go from upper to lower addresses */
|
|
|
|
TRef = MkDBRefTerm(ref);
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
LOCK(ref->lock);
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
2001-04-09 20:54:03 +01:00
|
|
|
INC_DBREF_COUNT(ref);
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
#else
|
|
|
|
if (!(ref->Flags & InUseMask)) {
|
|
|
|
ref->Flags |= InUseMask;
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
2002-11-18 18:18:05 +00:00
|
|
|
return (Yap_unify(ARG3, TRef));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
c_recorded(int flags)
|
|
|
|
{
|
|
|
|
Term TermDB, TRef;
|
|
|
|
Register DBRef ref, ref0;
|
|
|
|
CELL *PreviousHeap = H;
|
|
|
|
CELL mask, key;
|
|
|
|
Term t1;
|
|
|
|
|
|
|
|
t1 = EXTRA_CBACK_ARG(3,1);
|
|
|
|
ref0 = (DBRef)t1;
|
|
|
|
READ_LOCK(ref0->Parent->DBRWLock);
|
|
|
|
ref = NextDBRef(ref0);
|
|
|
|
if (ref == NIL) {
|
|
|
|
if (ref0->Flags & ErasedMask) {
|
2003-01-21 16:14:52 +00:00
|
|
|
ref = ref0;
|
|
|
|
while ((ref = ref->n) != NULL) {
|
|
|
|
if (!(ref->Flags & ErasedMask))
|
|
|
|
break;
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
/* we have used the DB entry, so we can remove it now, although
|
|
|
|
first we have to make sure noone is pointing to it */
|
2003-01-21 16:14:52 +00:00
|
|
|
if (ref == NULL) {
|
2001-04-09 20:54:03 +01:00
|
|
|
READ_UNLOCK(ref0->Parent->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
READ_UNLOCK(ref0->Parent->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
Term ttmp = EXTRA_CBACK_ARG(3,2);
|
|
|
|
if (IsLongIntTerm(ttmp))
|
|
|
|
mask = (CELL)LongIntOfTerm(ttmp);
|
|
|
|
else
|
|
|
|
mask = (CELL)IntOfTerm(ttmp);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Term ttmp = EXTRA_CBACK_ARG(3,3);
|
|
|
|
if (IsLongIntTerm(ttmp))
|
|
|
|
key = (CELL)LongIntOfTerm(ttmp);
|
|
|
|
else
|
|
|
|
key = (CELL)IntOfTerm(ttmp);
|
|
|
|
}
|
|
|
|
while (ref != NIL
|
|
|
|
&& DEAD_REF(ref))
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
if (ref == NIL) {
|
|
|
|
READ_UNLOCK(ref0->Parent->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
if (mask == 0 && key == 0) { /* ARG2 is a variable */
|
2003-08-27 14:37:10 +01:00
|
|
|
while ((TermDB = GetDBTermFromDBEntry(ref)) == (CELL)0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make sure the garbage collector sees what we want it to see! */
|
|
|
|
EXTRA_CBACK_ARG(3,1) = (CELL)ref;
|
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 3, ENV, CP)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2002-10-10 06:58:49 +01:00
|
|
|
}
|
2004-09-17 20:34:53 +01:00
|
|
|
Yap_Error_Size = 0;
|
2001-04-09 20:54:03 +01:00
|
|
|
PreviousHeap = H;
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_unify(ARG2, TermDB);
|
2001-04-09 20:54:03 +01:00
|
|
|
} else if (mask == 0) { /* ARG2 is a constant */
|
|
|
|
do {
|
2003-08-27 14:37:10 +01:00
|
|
|
if (((key == Unsigned(ref->DBT.Entry)) || (ref->Flags & DBVar)) &&
|
2001-04-09 20:54:03 +01:00
|
|
|
!DEAD_REF(ref))
|
|
|
|
break;
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
} while (ref != NIL);
|
|
|
|
if (ref == NIL) {
|
|
|
|
READ_UNLOCK(ref0->Parent->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
do { /* ARG2 is a structure */
|
|
|
|
H = PreviousHeap;
|
|
|
|
while ((mask & ref->Key) != (key & ref->Mask)) {
|
|
|
|
while ((ref = NextDBRef(ref)) != NIL
|
|
|
|
&& DEAD_REF(ref));
|
|
|
|
if (ref == NIL) {
|
|
|
|
READ_UNLOCK(ref0->Parent->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
while ((TermDB = GetDBTermFromDBEntry(ref)) == (CELL)0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make sure the garbage collector sees what we want it to see! */
|
|
|
|
EXTRA_CBACK_ARG(3,1) = (CELL)ref;
|
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 3, ENV, CP)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2002-10-10 06:58:49 +01:00
|
|
|
}
|
2004-09-17 20:34:53 +01:00
|
|
|
Yap_Error_Size = 0;
|
2001-04-09 20:54:03 +01:00
|
|
|
PreviousHeap = H;
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
if (Yap_unify(ARG2, TermDB))
|
2001-04-09 20:54:03 +01:00
|
|
|
break;
|
|
|
|
while ((ref = NextDBRef(ref)) != NIL
|
|
|
|
&& DEAD_REF(ref));
|
|
|
|
if (ref == NIL) {
|
|
|
|
READ_UNLOCK(ref0->Parent->DBRWLock);
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
} while (1);
|
|
|
|
READ_UNLOCK(ref0->Parent->DBRWLock);
|
|
|
|
TRef = MkDBRefTerm(ref);
|
|
|
|
EXTRA_CBACK_ARG(3,1) = (CELL)ref;
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
LOCK(ref->lock);
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
2001-04-09 20:54:03 +01:00
|
|
|
INC_DBREF_COUNT(ref);
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
#else
|
|
|
|
if (!(ref->Flags & InUseMask)) {
|
|
|
|
ref->Flags |= InUseMask;
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
2002-11-18 18:18:05 +00:00
|
|
|
return (Yap_unify(ARG3, TRef));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The arguments for this 4 functions are the flags for terms which should be
|
|
|
|
* skipped
|
|
|
|
*/
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static Int
|
|
|
|
lu_recorded(PredEntry *pe) {
|
2003-09-24 15:51:42 +01:00
|
|
|
op_numbers opc = Yap_op_from_opcode(P->opc);
|
2004-02-26 13:37:24 +00:00
|
|
|
|
2003-09-24 15:51:42 +01:00
|
|
|
if (opc == _procceed) {
|
2003-08-27 14:37:10 +01:00
|
|
|
P = pe->CodeOfPred;
|
|
|
|
} else {
|
|
|
|
CP = P;
|
|
|
|
P = pe->CodeOfPred;
|
|
|
|
ENV = YENV;
|
|
|
|
YENV = ASP;
|
|
|
|
YENV[E_CB] = (CELL) B;
|
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
if (pe->PredFlags & ProfiledPredFlag) {
|
|
|
|
LOCK(pe->StatisticsForPred.lock);
|
|
|
|
pe->StatisticsForPred.NOfEntries++;
|
|
|
|
UNLOCK(pe->StatisticsForPred.lock);
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* recorded(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
2003-08-27 14:37:10 +01:00
|
|
|
in_rded_with_key(void)
|
|
|
|
{
|
|
|
|
DBProp AtProp = (DBProp)IntegerOfTerm(Deref(ARG1));
|
|
|
|
|
|
|
|
return (i_recorded(AtProp,Deref(ARG3)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* recorded(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
|
|
|
p_recorded(void)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
DBProp AtProp;
|
|
|
|
Register Term twork = Deref(ARG1); /* initially working with
|
|
|
|
* ARG1 */
|
2002-12-10 00:22:01 +00:00
|
|
|
Term t3 = Deref(ARG3);
|
2003-08-27 14:37:10 +01:00
|
|
|
PredEntry *pe;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2002-12-10 00:22:01 +00:00
|
|
|
if (!IsVarTerm(t3)) {
|
2004-02-09 14:19:05 +00:00
|
|
|
DBRef ref = DBRefOfTerm(t3);
|
2002-12-10 00:22:01 +00:00
|
|
|
if (!IsDBRefTerm(t3)) {
|
2004-02-13 18:39:29 +00:00
|
|
|
return FALSE;
|
2004-02-09 14:19:05 +00:00
|
|
|
} else {
|
|
|
|
ref = DBRefOfTerm(t3);
|
|
|
|
}
|
|
|
|
ref = DBRefOfTerm(t3);
|
|
|
|
if (ref == NULL) return FALSE;
|
|
|
|
if (DEAD_REF(ref)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (ref->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)ref;
|
2005-04-10 05:31:12 +01:00
|
|
|
PredEntry *ap = cl->ClPred;
|
|
|
|
op_numbers opc = Yap_op_from_opcode(P->opc);
|
|
|
|
|
|
|
|
if (!Yap_unify(GetDBLUKey(ap), ARG1))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (opc == _procceed) {
|
|
|
|
P = cl->ClCode;
|
2004-09-17 21:47:35 +01:00
|
|
|
} else {
|
2005-04-10 05:31:12 +01:00
|
|
|
CP = P;
|
|
|
|
P = cl->ClCode;
|
|
|
|
ENV = YENV;
|
|
|
|
YENV = ASP;
|
|
|
|
YENV[E_CB] = (CELL) B;
|
2002-12-10 00:22:01 +00:00
|
|
|
}
|
2005-04-10 05:31:12 +01:00
|
|
|
return TRUE;
|
2004-02-09 14:19:05 +00:00
|
|
|
} else {
|
2004-09-17 21:47:35 +01:00
|
|
|
Term TermDB;
|
|
|
|
while ((TermDB = GetDBTermFromDBEntry(ref)) == (CELL)0) {
|
|
|
|
/* oops, we are in trouble, not enough stack space */
|
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 3, ENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!Yap_unify(ARG2,TermDB)
|
|
|
|
|| !UnifyDBKey(ref,0,ARG1)) {
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-12-10 00:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
if ((pe = find_lu_entry(twork)) != NULL) {
|
|
|
|
return lu_recorded(pe);
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
if (EndOfPAEntr(AtProp = FetchDBPropFromKey(twork, 0, FALSE, "recorded/3"))) {
|
2003-08-27 14:37:10 +01:00
|
|
|
return FALSE;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
ARG1 = MkIntegerTerm((Int)AtProp);
|
|
|
|
P = PredRecordedWithKey->CodeOfPred;
|
2002-12-10 00:22:01 +00:00
|
|
|
return (i_recorded(AtProp, t3));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
co_rded(void)
|
|
|
|
{
|
|
|
|
return (c_recorded(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* '$recordedp'(+Functor,+Term,-Ref) */
|
|
|
|
static Int
|
|
|
|
in_rdedp(void)
|
|
|
|
{
|
|
|
|
DBProp AtProp;
|
|
|
|
register choiceptr b0=B;
|
|
|
|
Register Term twork = Deref(ARG1); /* initially working with
|
|
|
|
* ARG1 */
|
|
|
|
|
2002-12-10 00:22:01 +00:00
|
|
|
Term t3 = Deref(ARG3);
|
|
|
|
if (!IsVarTerm(t3)) {
|
|
|
|
if (!IsDBRefTerm(t3)) {
|
|
|
|
cut_fail();
|
|
|
|
} else {
|
|
|
|
DBRef ref = DBRefOfTerm(t3);
|
|
|
|
LOCK(ref->lock);
|
|
|
|
if (ref == NULL
|
|
|
|
|| DEAD_REF(ref)
|
2003-08-27 14:37:10 +01:00
|
|
|
|| !Yap_unify(ARG2,GetDBTermFromDBEntry(ref))
|
2002-12-10 00:32:22 +00:00
|
|
|
|| !UnifyDBKey(ref,CodeDBBit,ARG1)) {
|
2002-12-10 00:22:01 +00:00
|
|
|
UNLOCK(ref->lock);
|
|
|
|
cut_fail();
|
|
|
|
} else {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
cut_succeed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
if (EndOfPAEntr(AtProp = FetchDBPropFromKey(twork, MkCode, FALSE, "recorded/3"))) {
|
|
|
|
if (b0 == B)
|
|
|
|
cut_fail();
|
|
|
|
else
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2002-12-10 00:22:01 +00:00
|
|
|
return (i_recorded(AtProp,t3));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Int
|
|
|
|
co_rdedp(void)
|
|
|
|
{
|
|
|
|
return (c_recorded(MkCode));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* '$some_recordedp'(Functor) */
|
|
|
|
static Int
|
|
|
|
p_somercdedp(void)
|
|
|
|
{
|
|
|
|
Register DBRef ref;
|
|
|
|
DBProp AtProp;
|
|
|
|
Register Term twork = Deref(ARG1); /* initially working with
|
|
|
|
* ARG1 */
|
|
|
|
if (EndOfPAEntr(AtProp = FetchDBPropFromKey(twork, MkCode, FALSE, "some_recorded/3"))) {
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
READ_LOCK(AtProp->DBRWLock);
|
|
|
|
ref = FrstDBRef(AtProp);
|
|
|
|
while (ref != NIL && (ref->Flags & (DBNoCode | ErasedMask)))
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
if (ref == NIL)
|
|
|
|
return (FALSE);
|
|
|
|
else
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finds the first instance recorded under key ARG1 */
|
|
|
|
static Int
|
|
|
|
p_first_instance(void)
|
|
|
|
{
|
|
|
|
Term TRef;
|
|
|
|
Register DBRef ref;
|
|
|
|
DBProp AtProp;
|
|
|
|
Register Term twork = Deref(ARG1); /* initially working with
|
|
|
|
* ARG1 */
|
|
|
|
Term TermDB;
|
|
|
|
|
|
|
|
ARG3 = Deref(ARG3);
|
|
|
|
if (!IsVarTerm(ARG3)) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
if (EndOfPAEntr(AtProp = FetchDBPropFromKey(twork, 0, FALSE, "first_instance/3"))) {
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
READ_LOCK(AtProp->DBRWLock);
|
|
|
|
ref = AtProp->First;
|
|
|
|
while (ref != NIL
|
|
|
|
&& (ref->Flags & (DBCode | ErasedMask)))
|
|
|
|
ref = NextDBRef(ref);
|
|
|
|
READ_UNLOCK(AtProp->DBRWLock);
|
|
|
|
if (ref == NIL) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
TRef = MkDBRefTerm(ref);
|
|
|
|
/* we have a pointer to the term available */
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
LOCK(ref->lock);
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
2001-04-09 20:54:03 +01:00
|
|
|
INC_DBREF_COUNT(ref);
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
#else
|
|
|
|
if (!(ref->Flags & InUseMask)) {
|
|
|
|
ref->Flags |= InUseMask;
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
while ((TermDB = GetDBTermFromDBEntry(ref)) == (CELL)0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 3, ENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2002-10-10 06:58:49 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
if (IsVarTerm(TermDB)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_unify(TermDB, ARG2);
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG2, TermDB));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG3, TRef));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2003-10-28 01:16:03 +00:00
|
|
|
static UInt
|
|
|
|
index_sz(LogUpdIndex *x)
|
|
|
|
{
|
2004-03-05 15:26:33 +00:00
|
|
|
UInt sz = x->ClSize;
|
2003-10-28 01:16:03 +00:00
|
|
|
x = x->ChildIndex;
|
|
|
|
while (x != NULL) {
|
|
|
|
sz += index_sz(x);
|
|
|
|
x = x->SiblingIndex;
|
|
|
|
}
|
|
|
|
return sz;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
lu_statistics(PredEntry *pe)
|
|
|
|
{
|
|
|
|
UInt sz = 0, cls = 0, isz = 0;
|
|
|
|
|
|
|
|
/* count number of clauses and size */
|
|
|
|
LogUpdClause *x;
|
|
|
|
|
|
|
|
if (pe->cs.p_code.FirstClause == NULL) {
|
|
|
|
cls = 0;
|
|
|
|
sz = 0;
|
|
|
|
} else {
|
|
|
|
x = ClauseCodeToLogUpdClause(pe->cs.p_code.FirstClause);
|
|
|
|
while (x != NULL) {
|
|
|
|
cls++;
|
2004-03-05 15:26:33 +00:00
|
|
|
sz += x->ClSize;
|
2003-10-28 01:16:03 +00:00
|
|
|
x = x->ClNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pe->PredFlags & IndexedPredFlag) {
|
|
|
|
isz = index_sz(ClauseCodeToLogUpdIndex(pe->cs.p_code.TrueCodeOfPred));
|
|
|
|
} else {
|
|
|
|
isz = 0;
|
|
|
|
}
|
|
|
|
return
|
|
|
|
Yap_unify(ARG2,MkIntegerTerm(cls)) &&
|
|
|
|
Yap_unify(ARG3,MkIntegerTerm(sz)) &&
|
|
|
|
Yap_unify(ARG4,MkIntegerTerm(isz));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-10 14:36:22 +00:00
|
|
|
static Int
|
|
|
|
p_key_statistics(void)
|
|
|
|
{
|
|
|
|
Register DBProp p;
|
|
|
|
Register DBRef x;
|
|
|
|
UInt sz = 0, cls = 0;
|
2003-10-28 01:16:03 +00:00
|
|
|
Term twork = Deref(ARG1);
|
|
|
|
PredEntry *pe;
|
|
|
|
|
|
|
|
if ((pe = find_lu_entry(twork)) != NULL) {
|
|
|
|
return lu_statistics(pe);
|
|
|
|
}
|
|
|
|
if (EndOfPAEntr(p = FetchDBPropFromKey(twork, 0, TRUE, "key_statistics/3"))) {
|
2002-12-10 14:36:22 +00:00
|
|
|
/* This is not a key property */
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
/* count number of clauses and size */
|
|
|
|
x = p->First;
|
|
|
|
while (x != NULL) {
|
|
|
|
cls++;
|
2004-03-05 15:26:33 +00:00
|
|
|
sz += sizeof(DBStruct)+sizeof(CELL)*x->DBT.NOfCells;
|
2003-11-12 12:33:31 +00:00
|
|
|
if (x->Code) {
|
|
|
|
DynamicClause *cl = ClauseCodeToDynamicClause(x->Code);
|
2004-03-05 15:26:33 +00:00
|
|
|
sz += cl->ClSize;
|
2003-11-12 12:33:31 +00:00
|
|
|
}
|
2002-12-10 14:36:22 +00:00
|
|
|
x = NextDBRef(x);
|
|
|
|
}
|
2003-10-28 01:16:03 +00:00
|
|
|
return
|
|
|
|
Yap_unify(ARG2,MkIntegerTerm(cls)) &&
|
|
|
|
Yap_unify(ARG3,MkIntegerTerm(sz)) &&
|
|
|
|
Yap_unify(ARG4,MkIntTerm(0));
|
2002-12-10 14:36:22 +00:00
|
|
|
}
|
|
|
|
|
2003-11-12 12:33:31 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static Int
|
|
|
|
p_total_erased(void)
|
|
|
|
{
|
|
|
|
UInt sz = 0, cls = 0;
|
|
|
|
UInt isz = 0, icls = 0;
|
|
|
|
LogUpdClause *cl = DBErasedList;
|
|
|
|
LogUpdIndex *icl = DBErasedIList;
|
|
|
|
|
|
|
|
/* only for log upds */
|
|
|
|
while (cl) {
|
|
|
|
cls++;
|
2004-03-05 15:26:33 +00:00
|
|
|
sz += cl->ClSize;
|
2003-11-12 12:33:31 +00:00
|
|
|
cl = cl->ClNext;
|
|
|
|
}
|
|
|
|
while (icl) {
|
|
|
|
icls++;
|
2004-03-05 15:26:33 +00:00
|
|
|
isz += icl->ClSize;
|
2003-11-12 12:33:31 +00:00
|
|
|
icl = icl->SiblingIndex;
|
|
|
|
}
|
|
|
|
return
|
|
|
|
Yap_unify(ARG1,MkIntegerTerm(cls)) &&
|
|
|
|
Yap_unify(ARG2,MkIntegerTerm(sz)) &&
|
|
|
|
Yap_unify(ARG3,MkIntegerTerm(icls)) &&
|
|
|
|
Yap_unify(ARG4,MkIntegerTerm(isz));
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_key_erased_statistics(void)
|
|
|
|
{
|
|
|
|
UInt sz = 0, cls = 0;
|
|
|
|
UInt isz = 0, icls = 0;
|
|
|
|
Term twork = Deref(ARG1);
|
|
|
|
PredEntry *pe;
|
|
|
|
LogUpdClause *cl = DBErasedList;
|
|
|
|
LogUpdIndex *icl = DBErasedIList;
|
|
|
|
|
|
|
|
/* only for log upds */
|
|
|
|
if ((pe = find_lu_entry(twork)) == NULL)
|
|
|
|
return FALSE;
|
|
|
|
while (cl) {
|
|
|
|
if (cl->ClPred == pe) {
|
|
|
|
cls++;
|
2004-03-05 15:26:33 +00:00
|
|
|
sz += cl->ClSize;
|
2003-11-12 12:33:31 +00:00
|
|
|
}
|
|
|
|
cl = cl->ClNext;
|
|
|
|
}
|
|
|
|
while (icl) {
|
|
|
|
LogUpdIndex *c = icl;
|
|
|
|
|
|
|
|
while (!c->ClFlags & SwitchRootMask)
|
|
|
|
c = c->u.ParentIndex;
|
|
|
|
if (pe == c->u.pred) {
|
|
|
|
icls++;
|
2004-03-05 15:26:33 +00:00
|
|
|
isz += c->ClSize;
|
2003-11-12 12:33:31 +00:00
|
|
|
}
|
|
|
|
icl = icl->SiblingIndex;
|
|
|
|
}
|
|
|
|
return
|
|
|
|
Yap_unify(ARG2,MkIntegerTerm(cls)) &&
|
|
|
|
Yap_unify(ARG3,MkIntegerTerm(sz)) &&
|
|
|
|
Yap_unify(ARG4,MkIntegerTerm(icls)) &&
|
|
|
|
Yap_unify(ARG5,MkIntegerTerm(isz));
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_heap_space_info(void)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
Yap_unify(ARG1,MkIntegerTerm(HeapUsed)) &&
|
2004-09-03 04:11:09 +01:00
|
|
|
Yap_unify(ARG2,MkIntegerTerm(HeapMax-HeapUsed)) &&
|
|
|
|
Yap_unify(ARG3,MkIntegerTerm(Yap_expand_clauses_sz));
|
2003-11-12 12:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2002-12-10 14:36:22 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/*
|
|
|
|
* This is called when we are erasing a data base clause, because we may have
|
|
|
|
* pending references
|
|
|
|
*/
|
|
|
|
static void
|
2003-08-27 14:37:10 +01:00
|
|
|
ErasePendingRefs(DBTerm *entryref)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2003-08-27 14:37:10 +01:00
|
|
|
DBRef *cp;
|
2001-04-09 20:54:03 +01:00
|
|
|
DBRef ref;
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
cp = entryref->DBRefs;
|
|
|
|
if (entryref->DBRefs == NULL)
|
2001-04-09 20:54:03 +01:00
|
|
|
return;
|
2003-08-27 14:37:10 +01:00
|
|
|
while ((ref = *--cp) != NULL) {
|
2001-04-09 20:54:03 +01:00
|
|
|
if ((ref->Flags & DBClMask) && (--(ref->NOfRefsTo) == 0)
|
|
|
|
&& (ref->Flags & ErasedMask))
|
|
|
|
ErDBE(ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
RemoveDBEntry(DBRef entryref)
|
|
|
|
{
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
ErasePendingRefs(&(entryref->DBT));
|
|
|
|
/* We may be backtracking back to a deleted entry. If we just remove
|
|
|
|
the space then the info on the entry may be corrupt. */
|
|
|
|
if ((B->cp_ap == RETRY_C_RECORDED_K_CODE
|
|
|
|
|| B->cp_ap == RETRY_C_RECORDEDP_CODE) &&
|
|
|
|
EXTRA_CBACK_ARG(3,1) == (CELL)entryref) {
|
|
|
|
/* make it clear the entry has been released */
|
2001-04-09 20:54:03 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2003-08-27 14:37:10 +01:00
|
|
|
DEC_DBREF_COUNT(entryref);
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2003-08-27 14:37:10 +01:00
|
|
|
entryref->Flags &= ~InUseMask;
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
DBErasedMarker->Next = NULL;
|
|
|
|
DBErasedMarker->Parent = entryref->Parent;
|
|
|
|
DBErasedMarker->n = entryref->n;
|
|
|
|
EXTRA_CBACK_ARG(3,1) = (CELL)DBErasedMarker;
|
|
|
|
}
|
|
|
|
if (entryref->p != NULL)
|
|
|
|
entryref->p->n = entryref->n;
|
|
|
|
else
|
|
|
|
entryref->Parent->F0 = entryref->n;
|
|
|
|
if (entryref->n != NULL)
|
|
|
|
entryref->n->p = entryref->p;
|
|
|
|
else
|
|
|
|
entryref->Parent->L0 = entryref->p;
|
|
|
|
FreeDBSpace((char *) entryref);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clean_lu_index(DBRef index) {
|
2003-08-27 14:37:10 +01:00
|
|
|
DBRef *te = (DBRef *)(index->DBT.Contents);
|
2001-04-09 20:54:03 +01:00
|
|
|
DBRef ref;
|
|
|
|
|
|
|
|
LOCK(index->lock);
|
|
|
|
if (DBREF_IN_USE(index)) {
|
|
|
|
index->Flags |= ErasedMask;
|
|
|
|
UNLOCK(index->lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
while ((ref = *te++) != NULL) {
|
|
|
|
LOCK(ref->lock);
|
|
|
|
/* note that the first element of the conditional generates a
|
|
|
|
side-effect, and should never be swapped around with the other */
|
|
|
|
if ( --(ref->NOfRefsTo) == 0 && (ref->Flags & ErasedMask)) {
|
|
|
|
if (!DBREF_IN_USE(ref)) {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
RemoveDBEntry(ref);
|
2001-07-05 17:14:15 +01:00
|
|
|
} else {
|
2001-04-09 20:54:03 +01:00
|
|
|
UNLOCK(ref->lock);
|
2001-07-05 17:14:15 +01:00
|
|
|
}
|
|
|
|
} else {
|
2001-04-09 20:54:03 +01:00
|
|
|
UNLOCK(ref->lock);
|
2001-07-05 17:14:15 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
UNLOCK(index->lock);
|
|
|
|
/* can I get rid of this index? */
|
|
|
|
FreeDBSpace((char *)index);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static yamop *
|
|
|
|
find_next_clause(DBRef ref0)
|
|
|
|
{
|
|
|
|
Register DBRef ref;
|
|
|
|
yamop *newp;
|
|
|
|
|
|
|
|
/* fetch ref0 from the instruction we just started executing */
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (!(ref0->Flags & ErasedMask)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(SYSTEM_ERROR, TermNil, "find_next_clause (dead clause %x)", ref0);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(NIL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* search for an newer entry that is to the left and points to code */
|
2003-01-21 16:14:52 +00:00
|
|
|
ref = ref0;
|
|
|
|
while ((ref = ref->n) != NULL) {
|
|
|
|
if (!(ref->Flags & ErasedMask))
|
|
|
|
break;
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
/* no extra alternatives to try, let us leave gracefully */
|
2003-01-21 16:14:52 +00:00
|
|
|
if (ref == NULL) {
|
|
|
|
return(NULL);
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
|
|
|
/* OK, we found a clause we can jump to, do a bit of hanky pancking with
|
|
|
|
the choice-point, so that it believes we are actually working from that
|
|
|
|
clause */
|
2003-02-12 13:20:52 +00:00
|
|
|
newp = ref->Code;
|
2001-04-09 20:54:03 +01:00
|
|
|
/* and next let's tell the world this clause is being used, just
|
|
|
|
like if we were executing a standard retry_and_mark */
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
{
|
2003-04-30 18:46:05 +01:00
|
|
|
DynamicClause *cl = ClauseCodeToDynamicClause(newp);
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
LOCK(cl->ClLock);
|
2001-10-30 22:13:18 +00:00
|
|
|
TRAIL_CLREF(cl);
|
2003-12-18 17:23:22 +00:00
|
|
|
INC_CLREF_COUNT(cl);
|
2001-04-09 20:54:03 +01:00
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (!DynamicFlags(newp) & InUseMask) {
|
|
|
|
DynamicFlags(newp) |= InUseMask;
|
2003-04-30 18:46:05 +01:00
|
|
|
TRAIL_CLREF(ClauseCodeToDynamicClause(newp));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return(newp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This procedure is called when a clause is officialy deleted. Its job
|
|
|
|
is to find out where the code can go next, if it can go anywhere */
|
|
|
|
static Int
|
2002-12-27 16:53:09 +00:00
|
|
|
p_jump_to_next_dynamic_clause(void)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2002-12-27 16:53:09 +00:00
|
|
|
DBRef ref = (DBRef)(((yamop *)((CODEADDR)P-(CELL)NEXTOP((yamop *)NULL,sla)))->u.sla.bmap);
|
2001-04-09 20:54:03 +01:00
|
|
|
yamop *newp = find_next_clause(ref);
|
|
|
|
|
2002-12-27 16:53:09 +00:00
|
|
|
if (newp == NULL) {
|
2001-04-09 20:54:03 +01:00
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
/* the next alternative to try must be obtained from this clause */
|
|
|
|
B->cp_ap = newp;
|
|
|
|
/* and next, enter the clause */
|
|
|
|
P = NEXTOP(newp,ld);
|
|
|
|
/* and return like if nothing had happened. */
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-08-27 14:37:10 +01:00
|
|
|
complete_lu_erase(LogUpdClause *clau)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2003-11-18 19:24:46 +00:00
|
|
|
DBRef *cp;
|
|
|
|
if (clau->ClSource)
|
|
|
|
cp = clau->ClSource->DBRefs;
|
|
|
|
else
|
|
|
|
cp = NULL;
|
2003-11-12 12:33:31 +00:00
|
|
|
if (CL_IN_USE(clau)) {
|
2003-04-30 18:46:05 +01:00
|
|
|
return;
|
2003-11-12 12:33:31 +00:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
if (clau->ClFlags & LogUpdRuleMask &&
|
|
|
|
clau->ClExt->u.EC.ClRefs > 0) {
|
|
|
|
return;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-11-12 12:33:31 +00:00
|
|
|
#ifdef DEBUG
|
2004-02-21 20:25:45 +00:00
|
|
|
#ifndef THREADS
|
2003-11-12 12:33:31 +00:00
|
|
|
if (clau->ClNext)
|
|
|
|
clau->ClNext->ClPrev = clau->ClPrev;
|
|
|
|
if (clau->ClPrev) {
|
|
|
|
clau->ClPrev->ClNext = clau->ClNext;
|
|
|
|
} else {
|
|
|
|
DBErasedList = clau->ClNext;
|
|
|
|
}
|
2004-02-21 20:25:45 +00:00
|
|
|
#endif
|
2003-11-12 12:33:31 +00:00
|
|
|
#endif
|
|
|
|
if (cp != NULL) {
|
|
|
|
DBRef ref;
|
|
|
|
while ((ref = *--cp) != NIL) {
|
|
|
|
if (ref->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)ref;
|
|
|
|
LOCK(cl->ClLock);
|
|
|
|
cl->ClRefCount--;
|
|
|
|
if (cl->ClFlags & ErasedMask &&
|
|
|
|
!(cl->ClFlags & InUseMask) &&
|
|
|
|
!(cl->ClRefCount)) {
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
EraseLogUpdCl(cl);
|
|
|
|
} else {
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOCK(ref->lock);
|
|
|
|
ref->NOfRefsTo--;
|
|
|
|
if (ref->Flags & ErasedMask &&
|
|
|
|
!(ref->Flags & InUseMask) &&
|
|
|
|
ref->NOfRefsTo) {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
ErDBE(ref);
|
|
|
|
} else {
|
|
|
|
UNLOCK(ref->lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
Yap_FreeCodeSpace((char *)clau);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
EraseLogUpdCl(LogUpdClause *clau)
|
|
|
|
{
|
2004-02-19 19:24:46 +00:00
|
|
|
PredEntry *ap;
|
2004-06-23 18:24:20 +01:00
|
|
|
|
2004-02-19 19:24:46 +00:00
|
|
|
ap = clau->ClPred;
|
2004-02-20 18:56:07 +00:00
|
|
|
LOCK(clau->ClLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
/* no need to erase what has been erased */
|
|
|
|
if (!(clau->ClFlags & ErasedMask)) {
|
2004-06-29 20:04:46 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
int i_locked = FALSE;
|
|
|
|
|
|
|
|
if (WPP != ap) {
|
|
|
|
WRITE_LOCK(ap->PRWLock);
|
|
|
|
if (WPP == NULL) {
|
|
|
|
i_locked = TRUE;
|
|
|
|
WPP = ap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
/* get ourselves out of the list */
|
|
|
|
if (clau->ClNext != NULL) {
|
2004-02-20 02:28:19 +00:00
|
|
|
LOCK(clau->ClNext->ClLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
clau->ClNext->ClPrev = clau->ClPrev;
|
2004-02-20 02:28:19 +00:00
|
|
|
UNLOCK(clau->ClNext->ClLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
if (clau->ClPrev != NULL) {
|
2004-02-20 02:28:19 +00:00
|
|
|
LOCK(clau->ClPrev->ClLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
clau->ClPrev->ClNext = clau->ClNext;
|
2004-02-20 02:28:19 +00:00
|
|
|
UNLOCK(clau->ClPrev->ClLock);
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2004-02-20 18:56:07 +00:00
|
|
|
UNLOCK(clau->ClLock);
|
2005-06-01 14:53:46 +01:00
|
|
|
if (ap) {
|
|
|
|
if (clau->ClCode == ap->cs.p_code.FirstClause) {
|
|
|
|
if (clau->ClNext == NULL) {
|
|
|
|
ap->cs.p_code.FirstClause = NULL;
|
|
|
|
} else {
|
|
|
|
ap->cs.p_code.FirstClause = clau->ClNext->ClCode;
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2005-06-01 14:53:46 +01:00
|
|
|
if (clau->ClCode == ap->cs.p_code.LastClause) {
|
|
|
|
if (clau->ClPrev == NULL) {
|
|
|
|
ap->cs.p_code.LastClause = NULL;
|
|
|
|
} else {
|
|
|
|
ap->cs.p_code.LastClause = clau->ClPrev->ClCode;
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2005-06-01 14:53:46 +01:00
|
|
|
ap->cs.p_code.NOfClauses--;
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2004-02-20 15:00:51 +00:00
|
|
|
clau->ClFlags |= ErasedMask;
|
2003-11-12 12:33:31 +00:00
|
|
|
#ifdef DEBUG
|
2004-02-21 20:25:45 +00:00
|
|
|
#ifndef THREADS
|
2003-11-12 12:33:31 +00:00
|
|
|
{
|
|
|
|
LogUpdClause *er_head = DBErasedList;
|
|
|
|
if (er_head == NULL) {
|
|
|
|
clau->ClPrev = clau->ClNext = NULL;
|
|
|
|
} else {
|
|
|
|
clau->ClNext = er_head;
|
|
|
|
er_head->ClPrev = clau;
|
|
|
|
clau->ClPrev = NULL;
|
|
|
|
}
|
|
|
|
DBErasedList = clau;
|
|
|
|
}
|
2004-02-21 20:25:45 +00:00
|
|
|
#endif
|
2003-11-12 12:33:31 +00:00
|
|
|
#endif
|
2003-11-12 13:31:28 +00:00
|
|
|
/* we are holding a reference to the clause */
|
|
|
|
clau->ClRefCount++;
|
2005-06-01 14:53:46 +01:00
|
|
|
if (ap) {
|
|
|
|
UNLOCK(clau->ClLock);
|
|
|
|
Yap_RemoveClauseFromIndex(ap, clau->ClCode);
|
|
|
|
/* release the extra reference */
|
|
|
|
LOCK(clau->ClLock);
|
|
|
|
}
|
2003-11-12 13:31:28 +00:00
|
|
|
clau->ClRefCount--;
|
2004-02-20 18:56:07 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2004-06-23 18:24:20 +01:00
|
|
|
if (WPP != ap || i_locked) {
|
|
|
|
if (i_locked) WPP= NULL;
|
2004-02-20 18:56:07 +00:00
|
|
|
WRITE_UNLOCK(ap->PRWLock);
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-29 20:04:46 +01:00
|
|
|
}
|
|
|
|
UNLOCK(clau->ClLock);
|
|
|
|
complete_lu_erase(clau);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-04-30 18:46:05 +01:00
|
|
|
MyEraseClause(DynamicClause *clau)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
DBRef ref;
|
|
|
|
SMALLUNSGN clmask;
|
|
|
|
|
|
|
|
if (CL_IN_USE(clau))
|
|
|
|
return;
|
|
|
|
clmask = clau->ClFlags;
|
|
|
|
/*
|
|
|
|
I don't need to lock the clause at this point because
|
|
|
|
I am the last one using it anyway.
|
|
|
|
*/
|
2002-12-27 16:53:09 +00:00
|
|
|
ref = (DBRef) NEXTOP(clau->ClCode,ld)->u.sla.bmap;
|
2001-04-09 20:54:03 +01:00
|
|
|
/* don't do nothing if the reference is still in use */
|
|
|
|
if (DBREF_IN_USE(ref))
|
|
|
|
return;
|
|
|
|
if ( P == clau->ClCode ) {
|
2002-05-14 19:24:34 +01:00
|
|
|
yamop *np = RTRYCODE;
|
2001-04-09 20:54:03 +01:00
|
|
|
/* make it the next alternative */
|
2002-12-27 16:53:09 +00:00
|
|
|
np->u.ld.d = find_next_clause((DBRef)(NEXTOP(P,ld)->u.sla.bmap));
|
2001-04-09 20:54:03 +01:00
|
|
|
if (np->u.ld.d == NULL)
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
else {
|
|
|
|
/* with same arity as before */
|
|
|
|
np->u.ld.s = P->u.ld.s;
|
|
|
|
np->u.ld.p = P->u.ld.p;
|
|
|
|
/* go ahead and try this code */
|
|
|
|
P = np;
|
|
|
|
}
|
|
|
|
} else {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_FreeCodeSpace((char *)clau);
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
if (ref->NOfRefsTo)
|
2002-11-18 18:18:05 +00:00
|
|
|
fprintf(Yap_stderr, "Error: references to dynamic clause\n");
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
RemoveDBEntry(ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This predicate is supposed to be called with a
|
|
|
|
lock on the current predicate
|
|
|
|
*/
|
|
|
|
void
|
2003-04-30 18:46:05 +01:00
|
|
|
Yap_ErLogUpdCl(LogUpdClause *clau)
|
|
|
|
{
|
|
|
|
EraseLogUpdCl(clau);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This predicate is supposed to be called with a
|
|
|
|
lock on the current predicate
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Yap_ErCl(DynamicClause *clau)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
MyEraseClause(clau);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-04-30 18:46:05 +01:00
|
|
|
PrepareToEraseLogUpdClause(LogUpdClause *clau, DBRef dbr)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
yamop *code_p = clau->ClCode;
|
2004-06-23 18:24:20 +01:00
|
|
|
PredEntry *p = clau->ClPred;
|
2002-12-27 16:53:09 +00:00
|
|
|
yamop *cl = code_p;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-04-30 18:46:05 +01:00
|
|
|
if (clau->ClFlags & ErasedMask)
|
|
|
|
return;
|
|
|
|
clau->ClFlags |= ErasedMask;
|
2004-02-11 16:18:16 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2004-02-11 13:33:19 +00:00
|
|
|
if (WPP != p) {
|
|
|
|
WRITE_LOCK(p->PRWLock);
|
|
|
|
}
|
2004-02-11 16:18:16 +00:00
|
|
|
#endif
|
2002-12-27 16:53:09 +00:00
|
|
|
if (p->cs.p_code.FirstClause != cl) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* we are not the first clause... */
|
2003-02-12 13:20:52 +00:00
|
|
|
yamop *prev_code_p = (yamop *)(dbr->Prev->Code);
|
2001-04-09 20:54:03 +01:00
|
|
|
prev_code_p->u.ld.d = code_p->u.ld.d;
|
|
|
|
/* are we the last? */
|
2002-12-27 16:53:09 +00:00
|
|
|
if (p->cs.p_code.LastClause == cl)
|
|
|
|
p->cs.p_code.LastClause = prev_code_p;
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
|
|
|
/* we are the first clause, what about the last ? */
|
2002-12-27 16:53:09 +00:00
|
|
|
if (p->cs.p_code.LastClause == p->cs.p_code.FirstClause) {
|
|
|
|
p->cs.p_code.LastClause = p->cs.p_code.FirstClause = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
2002-12-27 16:53:09 +00:00
|
|
|
p->cs.p_code.FirstClause = code_p->u.ld.d;
|
|
|
|
p->cs.p_code.FirstClause->opc =
|
2005-06-01 15:02:52 +01:00
|
|
|
Yap_opcode(_try_me);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
2003-02-12 13:20:52 +00:00
|
|
|
dbr->Code = NULL; /* unlink the two now */
|
2001-04-09 20:54:03 +01:00
|
|
|
if (p->PredFlags & IndexedPredFlag) {
|
2003-08-27 14:37:10 +01:00
|
|
|
p->cs.p_code.NOfClauses--;
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_RemoveIndexation(p);
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
2003-04-30 18:46:05 +01:00
|
|
|
EraseLogUpdCl(clau);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2002-12-27 16:53:09 +00:00
|
|
|
if (p->cs.p_code.FirstClause == p->cs.p_code.LastClause) {
|
|
|
|
if (p->cs.p_code.FirstClause != NULL) {
|
|
|
|
code_p = p->cs.p_code.FirstClause;
|
|
|
|
code_p->u.ld.d = p->cs.p_code.FirstClause;
|
|
|
|
p->cs.p_code.TrueCodeOfPred = NEXTOP(code_p, ld);
|
2001-04-09 20:54:03 +01:00
|
|
|
if (p->PredFlags & SpiedPredFlag) {
|
2002-11-18 18:18:05 +00:00
|
|
|
p->OpcodeOfPred = Yap_opcode(_spy_pred);
|
2002-12-27 16:53:09 +00:00
|
|
|
p->CodeOfPred = (yamop *)(&(p->OpcodeOfPred));
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
2002-12-27 16:53:09 +00:00
|
|
|
p->CodeOfPred = p->cs.p_code.TrueCodeOfPred;
|
|
|
|
p->OpcodeOfPred = p->cs.p_code.TrueCodeOfPred->opc;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
} else {
|
2002-10-14 17:25:38 +01:00
|
|
|
p->OpcodeOfPred = FAIL_OPCODE;
|
2002-12-27 16:53:09 +00:00
|
|
|
p->cs.p_code.TrueCodeOfPred = p->CodeOfPred = (yamop *)(&(p->OpcodeOfPred));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (p->PredFlags & SpiedPredFlag) {
|
2002-11-18 18:18:05 +00:00
|
|
|
p->OpcodeOfPred = Yap_opcode(_spy_pred);
|
2002-12-27 16:53:09 +00:00
|
|
|
p->CodeOfPred = (yamop *)(&(p->OpcodeOfPred));
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
|
|
|
p->OpcodeOfPred = INDEX_OPCODE;
|
2002-12-27 16:53:09 +00:00
|
|
|
p->CodeOfPred = (yamop *)(&(p->OpcodeOfPred));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
2004-02-11 16:18:16 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2004-02-11 13:33:19 +00:00
|
|
|
if (WPP != p) {
|
|
|
|
WRITE_UNLOCK(p->PRWLock);
|
|
|
|
}
|
2004-02-11 16:18:16 +00:00
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-04-30 18:46:05 +01:00
|
|
|
PrepareToEraseClause(DynamicClause *clau, DBRef dbr)
|
2003-01-21 23:27:02 +00:00
|
|
|
{
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
static void
|
2001-04-09 20:54:03 +01:00
|
|
|
ErDBE(DBRef entryref)
|
|
|
|
{
|
|
|
|
|
2003-02-12 13:20:52 +00:00
|
|
|
if ((entryref->Flags & DBCode) && entryref->Code) {
|
2003-04-30 18:46:05 +01:00
|
|
|
if (entryref->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *clau = ClauseCodeToLogUpdClause(entryref->Code);
|
|
|
|
LOCK(clau->ClLock);
|
|
|
|
if (CL_IN_USE(clau) || entryref->NOfRefsTo != 0) {
|
|
|
|
PrepareToEraseLogUpdClause(clau, entryref);
|
|
|
|
UNLOCK(clau->ClLock);
|
|
|
|
} else {
|
|
|
|
if (!(clau->ClFlags & ErasedMask))
|
|
|
|
PrepareToEraseLogUpdClause(clau, entryref);
|
|
|
|
UNLOCK(clau->ClLock);
|
|
|
|
/* the clause must have left the chain */
|
|
|
|
EraseLogUpdCl(clau);
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
} else {
|
2003-04-30 18:46:05 +01:00
|
|
|
DynamicClause *clau = ClauseCodeToDynamicClause(entryref->Code);
|
|
|
|
LOCK(clau->ClLock);
|
|
|
|
if (CL_IN_USE(clau) || entryref->NOfRefsTo != 0) {
|
2001-04-09 20:54:03 +01:00
|
|
|
PrepareToEraseClause(clau, entryref);
|
2003-04-30 18:46:05 +01:00
|
|
|
UNLOCK(clau->ClLock);
|
|
|
|
} else {
|
|
|
|
if (!(clau->ClFlags & ErasedMask))
|
|
|
|
PrepareToEraseClause(clau, entryref);
|
|
|
|
UNLOCK(clau->ClLock);
|
|
|
|
/* the clause must have left the chain */
|
|
|
|
MyEraseClause(clau);
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
} else if (!(DBREF_IN_USE(entryref))) {
|
|
|
|
if (entryref->NOfRefsTo == 0)
|
|
|
|
RemoveDBEntry(entryref);
|
|
|
|
else if (!(entryref->Flags & ErasedMask)) {
|
|
|
|
/* oops, I cannot remove it, but I at least have to tell
|
|
|
|
the world what's going on */
|
|
|
|
entryref->Flags |= ErasedMask;
|
|
|
|
entryref->Next = entryref->Prev = NIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
void
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_ErDBE(DBRef entryref)
|
2002-11-11 17:38:10 +00:00
|
|
|
{
|
|
|
|
ErDBE(entryref);
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static void
|
|
|
|
EraseEntry(DBRef entryref)
|
|
|
|
{
|
|
|
|
DBProp p;
|
|
|
|
|
|
|
|
if (entryref->Flags & ErasedMask)
|
|
|
|
return;
|
2003-08-27 14:37:10 +01:00
|
|
|
if (entryref->Flags & LogUpdMask &&
|
|
|
|
!(entryref->Flags & DBClMask)) {
|
|
|
|
EraseLogUpdCl((LogUpdClause *)entryref);
|
|
|
|
return;
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
entryref->Flags |= ErasedMask;
|
|
|
|
/* update FirstNEr */
|
|
|
|
p = entryref->Parent;
|
|
|
|
if (p->KindOfPE & LogUpdDBBit) {
|
|
|
|
LogUpdDBProp lup = (LogUpdDBProp)p;
|
|
|
|
lup->NOfEntries--;
|
|
|
|
if (lup->Index != NULL) {
|
|
|
|
clean_lu_index(lup->Index);
|
|
|
|
lup->Index = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* exit the db chain */
|
|
|
|
if (entryref->Next != NIL) {
|
|
|
|
entryref->Next->Prev = entryref->Prev;
|
|
|
|
} else {
|
|
|
|
p->Last = entryref->Prev;
|
|
|
|
}
|
|
|
|
if (entryref->Prev != NIL)
|
|
|
|
entryref->Prev->Next = entryref->Next;
|
|
|
|
else
|
|
|
|
p->First = entryref->Next;
|
|
|
|
/* make sure we know the entry has been removed from the list */
|
|
|
|
entryref->Next = NIL;
|
|
|
|
if (!DBREF_IN_USE(entryref)) {
|
|
|
|
ErDBE(entryref);
|
2003-02-12 13:20:52 +00:00
|
|
|
} else if ((entryref->Flags & DBCode) && entryref->Code) {
|
2003-04-30 18:46:05 +01:00
|
|
|
if (p->KindOfPE & LogUpdDBBit) {
|
|
|
|
PrepareToEraseLogUpdClause(ClauseCodeToLogUpdClause(entryref->Code), entryref);
|
|
|
|
} else {
|
|
|
|
PrepareToEraseClause(ClauseCodeToDynamicClause(entryref->Code), entryref);
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* erase(+Ref) */
|
|
|
|
static Int
|
|
|
|
p_erase(void)
|
|
|
|
{
|
|
|
|
Term t1 = Deref(ARG1);
|
|
|
|
|
|
|
|
if (IsVarTerm(t1)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, t1, "erase");
|
2001-04-09 20:54:03 +01:00
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
if (!IsDBRefTerm(t1)) {
|
2004-02-13 18:39:29 +00:00
|
|
|
Yap_Error(TYPE_ERROR_DBREF, t1, "erase");
|
|
|
|
return (FALSE);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
EraseEntry(DBRefOfTerm(t1));
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
2003-11-26 18:36:35 +00:00
|
|
|
static Int
|
|
|
|
p_erase_clause(void)
|
|
|
|
{
|
|
|
|
Term t1 = Deref(ARG1);
|
|
|
|
DBRef entryref;
|
|
|
|
|
|
|
|
if (IsVarTerm(t1)) {
|
|
|
|
Yap_Error(INSTANTIATION_ERROR, t1, "erase");
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
if (!IsDBRefTerm(t1)) {
|
2004-09-27 21:45:04 +01:00
|
|
|
if (IsApplTerm(t1)) {
|
|
|
|
if (FunctorOfTerm(t1) == FunctorStaticClause) {
|
|
|
|
Yap_EraseStaticClause(Yap_ClauseFromTerm(t1), Deref(ARG2));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
if (FunctorOfTerm(t1) == FunctorMegaClause) {
|
|
|
|
Yap_EraseMegaClause(Yap_MegaClauseFromTerm(t1), Yap_MegaClausePredicateFromTerm(t1));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2004-02-13 18:39:29 +00:00
|
|
|
Yap_Error(TYPE_ERROR_DBREF, t1, "erase");
|
|
|
|
return (FALSE);
|
2004-02-09 14:19:05 +00:00
|
|
|
} else {
|
|
|
|
entryref = DBRefOfTerm(t1);
|
2003-11-26 18:36:35 +00:00
|
|
|
}
|
2004-02-09 14:19:05 +00:00
|
|
|
EraseEntry(entryref);
|
2003-11-26 18:36:35 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* eraseall(+Key) */
|
|
|
|
static Int
|
|
|
|
p_eraseall(void)
|
|
|
|
{
|
|
|
|
Register Term twork = Deref(ARG1);
|
|
|
|
Register DBRef entryref;
|
|
|
|
DBProp p;
|
2003-08-27 14:37:10 +01:00
|
|
|
PredEntry *pe;
|
|
|
|
|
|
|
|
if ((pe = find_lu_entry(twork)) != NULL) {
|
|
|
|
LogUpdClause *cl;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
if (!pe->cs.p_code.NOfClauses)
|
|
|
|
return TRUE;
|
2003-10-14 19:37:56 +01:00
|
|
|
if (pe->PredFlags & IndexedPredFlag)
|
|
|
|
Yap_RemoveIndexation(pe);
|
2003-08-27 14:37:10 +01:00
|
|
|
cl = ClauseCodeToLogUpdClause(pe->cs.p_code.FirstClause);
|
|
|
|
do {
|
|
|
|
LogUpdClause *ncl = cl->ClNext;
|
|
|
|
Yap_ErLogUpdCl(cl);
|
|
|
|
cl = ncl;
|
|
|
|
} while (cl != NULL);
|
2003-11-12 12:33:31 +00:00
|
|
|
return TRUE;
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
if (EndOfPAEntr(p = FetchDBPropFromKey(twork, 0, FALSE, "eraseall/3"))) {
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
WRITE_LOCK(p->DBRWLock);
|
|
|
|
if (p->KindOfPE & LogUpdDBBit) {
|
|
|
|
LogUpdDBProp lup = (LogUpdDBProp)p;
|
|
|
|
lup->NOfEntries = 0;
|
|
|
|
if (lup->Index != NULL) {
|
|
|
|
clean_lu_index(lup->Index);
|
|
|
|
lup->Index = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
entryref = FrstDBRef(p);
|
|
|
|
do {
|
|
|
|
DBRef next_entryref;
|
|
|
|
|
|
|
|
while (entryref != NIL &&
|
|
|
|
(entryref->Flags & (DBCode | ErasedMask)))
|
|
|
|
entryref = NextDBRef(entryref);
|
|
|
|
if (entryref == NIL)
|
|
|
|
break;
|
|
|
|
next_entryref = NextDBRef(entryref);
|
|
|
|
/* exit the db chain */
|
|
|
|
if (entryref->Next != NIL) {
|
|
|
|
entryref->Next->Prev = entryref->Prev;
|
|
|
|
} else {
|
|
|
|
p->Last = entryref->Prev;
|
|
|
|
}
|
|
|
|
if (entryref->Prev != NIL)
|
|
|
|
entryref->Prev->Next = entryref->Next;
|
|
|
|
else
|
|
|
|
p->First = entryref->Next;
|
|
|
|
/* make sure we know the entry has been removed from the list */
|
|
|
|
entryref->Next = entryref->Prev = NIL;
|
|
|
|
if (!DBREF_IN_USE(entryref))
|
|
|
|
ErDBE(entryref);
|
|
|
|
else {
|
|
|
|
entryref->Flags |= ErasedMask;
|
|
|
|
}
|
|
|
|
entryref = next_entryref;
|
|
|
|
} while (entryref != NIL);
|
|
|
|
WRITE_UNLOCK(p->DBRWLock);
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* erased(+Ref) */
|
|
|
|
static Int
|
|
|
|
p_erased(void)
|
|
|
|
{
|
|
|
|
Term t = Deref(ARG1);
|
|
|
|
|
|
|
|
if (IsVarTerm(t)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, t, "erased");
|
2001-04-09 20:54:03 +01:00
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
if (!IsDBRefTerm(t)) {
|
2004-02-13 18:39:29 +00:00
|
|
|
Yap_Error(TYPE_ERROR_DBREF, t, "erased");
|
|
|
|
return (FALSE);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
return (DBRefOfTerm(t)->Flags & ErasedMask);
|
|
|
|
}
|
|
|
|
|
2003-11-24 00:00:43 +00:00
|
|
|
static Int
|
|
|
|
static_instance(StaticClause *cl)
|
|
|
|
{
|
|
|
|
if (cl->ClFlags & ErasedMask) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (cl->ClFlags & FactMask) {
|
|
|
|
PredEntry *ap = cl->usc.ClPred;
|
|
|
|
if (ap->ArityOfPE == 0) {
|
|
|
|
return Yap_unify(ARG2,MkAtomTerm((Atom)ap->FunctorOfPred));
|
|
|
|
} else {
|
|
|
|
Functor f = ap->FunctorOfPred;
|
|
|
|
UInt arity = ArityOfFunctor(ap->FunctorOfPred), i;
|
|
|
|
Term t2 = Deref(ARG2);
|
|
|
|
CELL *ptr;
|
|
|
|
|
|
|
|
if (IsVarTerm(t2)) {
|
|
|
|
Yap_unify(ARG2, (t2 = Yap_MkNewApplTerm(f,arity)));
|
|
|
|
} else if (!IsApplTerm(t2) || FunctorOfTerm(t2) != f) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
ptr = RepAppl(t2)+1;
|
|
|
|
for (i=0; i<arity; i++) {
|
|
|
|
XREGS[i+1] = ptr[i];
|
|
|
|
}
|
|
|
|
CP = P;
|
|
|
|
YENV = ASP;
|
|
|
|
YENV[E_CB] = (CELL) B;
|
|
|
|
P = cl->ClCode;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Term TermDB;
|
|
|
|
|
|
|
|
while ((TermDB = GetDBTerm(cl->usc.ClSource)) == 0L) {
|
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 2, ENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2003-11-24 00:00:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return Yap_unify(ARG2, TermDB);
|
|
|
|
}
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-09-27 21:45:04 +01:00
|
|
|
static Int
|
|
|
|
mega_instance(yamop *code, PredEntry *ap)
|
|
|
|
{
|
|
|
|
if (ap->ArityOfPE == 0) {
|
|
|
|
return Yap_unify(ARG2,MkAtomTerm((Atom)ap->FunctorOfPred));
|
|
|
|
} else {
|
|
|
|
Functor f = ap->FunctorOfPred;
|
|
|
|
UInt arity = ArityOfFunctor(ap->FunctorOfPred), i;
|
|
|
|
Term t2 = Deref(ARG2);
|
|
|
|
CELL *ptr;
|
|
|
|
|
|
|
|
if (IsVarTerm(t2)) {
|
2004-10-06 22:15:49 +01:00
|
|
|
t2 = Yap_MkNewApplTerm(f,arity);
|
|
|
|
Yap_unify(ARG2, t2);
|
2004-09-27 21:45:04 +01:00
|
|
|
} else if (!IsApplTerm(t2) || FunctorOfTerm(t2) != f) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
ptr = RepAppl(t2)+1;
|
|
|
|
for (i=0; i<arity; i++) {
|
|
|
|
XREGS[i+1] = ptr[i];
|
|
|
|
}
|
|
|
|
CP = P;
|
|
|
|
YENV = ASP;
|
|
|
|
YENV[E_CB] = (CELL) B;
|
|
|
|
P = code;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* instance(+Ref,?Term) */
|
|
|
|
static Int
|
|
|
|
p_instance(void)
|
|
|
|
{
|
|
|
|
Term t1 = Deref(ARG1);
|
2002-06-04 01:46:32 +01:00
|
|
|
DBRef dbr;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-10-14 21:48:57 +01:00
|
|
|
if (IsVarTerm(t1) || !IsDBRefTerm(t1)) {
|
2004-09-27 21:45:04 +01:00
|
|
|
if (IsApplTerm(t1)) {
|
|
|
|
if (FunctorOfTerm(t1) == FunctorStaticClause) {
|
|
|
|
return static_instance(Yap_ClauseFromTerm(t1));
|
|
|
|
}
|
|
|
|
if (FunctorOfTerm(t1) == FunctorMegaClause) {
|
|
|
|
return mega_instance(Yap_MegaClauseFromTerm(t1),Yap_MegaClausePredicateFromTerm(t1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
2003-10-14 21:48:57 +01:00
|
|
|
} else {
|
|
|
|
dbr = DBRefOfTerm(t1);
|
|
|
|
}
|
2004-09-27 21:45:04 +01:00
|
|
|
if (dbr->Flags & LogUpdMask) {
|
2003-08-27 14:37:10 +01:00
|
|
|
op_numbers opc;
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)dbr;
|
|
|
|
|
|
|
|
if (cl->ClFlags & ErasedMask) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-11-18 19:24:46 +00:00
|
|
|
if (cl->ClSource == NULL) {
|
|
|
|
PredEntry *ap = cl->ClPred;
|
|
|
|
if (ap->ArityOfPE == 0) {
|
|
|
|
return Yap_unify(ARG2,MkAtomTerm((Atom)ap->FunctorOfPred));
|
|
|
|
} else {
|
|
|
|
Functor f = ap->FunctorOfPred;
|
|
|
|
UInt arity = ArityOfFunctor(ap->FunctorOfPred), i;
|
|
|
|
Term t2 = Deref(ARG2);
|
|
|
|
CELL *ptr;
|
|
|
|
|
|
|
|
if (IsVarTerm(t2)) {
|
|
|
|
Yap_unify(ARG2, (t2 = Yap_MkNewApplTerm(f,arity)));
|
|
|
|
} else if (!IsApplTerm(t2) || FunctorOfTerm(t2) != f) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
ptr = RepAppl(t2)+1;
|
|
|
|
for (i=0; i<arity; i++) {
|
|
|
|
XREGS[i+1] = ptr[i];
|
|
|
|
}
|
|
|
|
CP = P;
|
|
|
|
YENV = ASP;
|
|
|
|
YENV[E_CB] = (CELL) B;
|
|
|
|
P = cl->ClCode;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
opc = Yap_op_from_opcode(cl->ClCode->opc);
|
|
|
|
if (opc == _unify_idb_term) {
|
|
|
|
return Yap_unify(ARG2, cl->ClSource->Entry);
|
2003-11-18 19:24:46 +00:00
|
|
|
} else {
|
2003-11-24 00:00:43 +00:00
|
|
|
Term TermDB;
|
2003-10-17 03:11:21 +01:00
|
|
|
while ((TermDB = GetDBTerm(cl->ClSource)) == 0L) {
|
2003-08-27 14:37:10 +01:00
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 2, ENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return Yap_unify(ARG2, TermDB);
|
|
|
|
}
|
|
|
|
} else {
|
2003-11-24 00:00:43 +00:00
|
|
|
Term TermDB;
|
2003-10-17 03:11:21 +01:00
|
|
|
while ((TermDB = GetDBTermFromDBEntry(dbr)) == 0L) {
|
2003-08-27 14:37:10 +01:00
|
|
|
/* oops, we are in trouble, not enough stack space */
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 2, ENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return(FALSE);
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
|
|
|
t1 = Deref(ARG1);
|
2002-10-10 06:58:49 +01:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
return Yap_unify(ARG2, TermDB);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-01 14:53:46 +01:00
|
|
|
Term
|
|
|
|
Yap_LUInstance(LogUpdClause *cl, UInt arity)
|
|
|
|
{
|
|
|
|
Term TermDB;
|
|
|
|
op_numbers opc = Yap_op_from_opcode(cl->ClCode->opc);
|
|
|
|
|
|
|
|
LOCK(cl->ClLock);
|
|
|
|
if (opc == _unify_idb_term) {
|
|
|
|
TermDB = cl->ClSource->Entry;
|
|
|
|
} else {
|
|
|
|
while ((TermDB = GetDBTerm(cl->ClSource)) == 0L) {
|
|
|
|
/* oops, we are in trouble, not enough stack space */
|
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
LOCK(cl->ClLock);
|
|
|
|
} else {
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, arity, ENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
LOCK(cl->ClLock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
cl->ClRefCount++;
|
|
|
|
TRAIL_CLREF(cl); /* So that fail will erase it */
|
|
|
|
#else
|
|
|
|
if (!(cl->ClFlags & InUseMask)) {
|
|
|
|
cl->ClFlags |= InUseMask;
|
|
|
|
TRAIL_CLREF(cl);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
UNLOCK(cl->ClLock);
|
|
|
|
return TermDB;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-14 21:32:08 +01:00
|
|
|
/* instance(+Ref,?Term) */
|
|
|
|
static Int
|
|
|
|
p_instance_module(void)
|
|
|
|
{
|
|
|
|
Term t1 = Deref(ARG1);
|
|
|
|
DBRef dbr;
|
|
|
|
|
2003-12-18 16:38:40 +00:00
|
|
|
if (IsVarTerm(t1)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (IsDBRefTerm(t1)) {
|
|
|
|
dbr = DBRefOfTerm(t1);
|
|
|
|
} else {
|
2004-02-13 18:39:29 +00:00
|
|
|
return FALSE;
|
2003-10-14 21:48:57 +01:00
|
|
|
}
|
2003-10-14 21:32:08 +01:00
|
|
|
if (dbr->Flags & LogUpdMask) {
|
|
|
|
LogUpdClause *cl = (LogUpdClause *)dbr;
|
|
|
|
|
|
|
|
if (cl->ClFlags & ErasedMask) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2004-02-12 12:37:12 +00:00
|
|
|
if (cl->ClPred->ModuleOfPred)
|
|
|
|
return Yap_unify(ARG2, cl->ClPred->ModuleOfPred);
|
|
|
|
else
|
|
|
|
return Yap_unify(ARG2, TermProlog);
|
2003-10-14 21:32:08 +01:00
|
|
|
} else {
|
2004-02-12 12:37:12 +00:00
|
|
|
return Yap_unify(ARG2, dbr->Parent->ModuleOfDB);
|
2003-10-14 21:32:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
inline static int
|
|
|
|
NotActiveDB(DBRef my_dbref)
|
|
|
|
{
|
|
|
|
while (my_dbref && (my_dbref->Flags & (DBCode | ErasedMask)))
|
|
|
|
my_dbref = my_dbref->Next;
|
|
|
|
return (my_dbref == NIL);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static DBEntry *
|
|
|
|
NextDBProp(PropEntry *pp)
|
|
|
|
{
|
|
|
|
while (!EndOfPAEntr(pp) && (((pp->KindOfPE & ~ 0x1) != DBProperty) ||
|
|
|
|
NotActiveDB(((DBProp) pp)->First)))
|
|
|
|
pp = RepProp(pp->NextOfPE);
|
|
|
|
return ((DBEntry *)pp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
init_current_key(void)
|
|
|
|
{ /* current_key(+Atom,?key) */
|
|
|
|
Int i = 0;
|
|
|
|
DBEntry *pp;
|
|
|
|
Atom a;
|
|
|
|
Term t1 = ARG1;
|
|
|
|
|
|
|
|
t1 = Deref(ARG1);
|
|
|
|
if (!IsVarTerm(t1)) {
|
|
|
|
if (IsAtomTerm(t1))
|
|
|
|
a = AtomOfTerm(t1);
|
|
|
|
else {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* ask for the first hash line */
|
|
|
|
while (TRUE) {
|
|
|
|
READ_LOCK(HashChain[i].AERWLock);
|
|
|
|
a = HashChain[i].Entry;
|
|
|
|
if (a != NIL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
READ_UNLOCK(HashChain[i].AERWLock);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
READ_UNLOCK(HashChain[i].AERWLock);
|
|
|
|
}
|
|
|
|
READ_LOCK(RepAtom(a)->ARWLock);
|
2001-10-30 16:42:05 +00:00
|
|
|
pp = NextDBProp(RepProp(RepAtom(a)->PropsOfAE));
|
2001-04-09 20:54:03 +01:00
|
|
|
READ_UNLOCK(RepAtom(a)->ARWLock);
|
|
|
|
EXTRA_CBACK_ARG(2,3) = MkAtomTerm(a);
|
|
|
|
EXTRA_CBACK_ARG(2,2) = MkIntTerm(i);
|
|
|
|
EXTRA_CBACK_ARG(2,1) = MkIntegerTerm((Int)pp);
|
|
|
|
return (cont_current_key());
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
cont_current_key(void)
|
|
|
|
{
|
|
|
|
unsigned int arity;
|
|
|
|
Functor functor;
|
|
|
|
Term term, AtT;
|
|
|
|
Atom a;
|
|
|
|
Int i = IntegerOfTerm(EXTRA_CBACK_ARG(2,2));
|
|
|
|
Term first = Deref(ARG1);
|
|
|
|
DBEntry *pp = (DBEntry *) IntegerOfTerm(EXTRA_CBACK_ARG(2,1));
|
|
|
|
|
|
|
|
if (IsIntTerm(term = EXTRA_CBACK_ARG(2,3)))
|
|
|
|
return(cont_current_key_integer());
|
|
|
|
a = AtomOfTerm(term);
|
|
|
|
if (EndOfPAEntr(pp) && IsAtomTerm(first)) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
while (EndOfPAEntr(pp)) {
|
|
|
|
UInt j;
|
|
|
|
|
|
|
|
if ((a = RepAtom(a)->NextOfAE) == NIL) {
|
|
|
|
i++;
|
2003-10-28 01:16:03 +00:00
|
|
|
while (i < AtomHashTableSize) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* protect current hash table line, notice that the current
|
|
|
|
LOCK/UNLOCK algorithm assumes new entries are added to
|
|
|
|
the *front* of the list, otherwise I should have locked
|
|
|
|
earlier.
|
|
|
|
*/
|
|
|
|
READ_LOCK(HashChain[i].AERWLock);
|
|
|
|
a = HashChain[i].Entry;
|
|
|
|
if (a != NIL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* move to next entry */
|
|
|
|
READ_UNLOCK(HashChain[i].AERWLock);
|
|
|
|
i++;
|
|
|
|
}
|
2003-10-28 01:16:03 +00:00
|
|
|
if (i == AtomHashTableSize) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* we have left the atom hash table */
|
2003-08-27 14:37:10 +01:00
|
|
|
/* we don't have a lock over the hash table any longer */
|
2001-04-09 20:54:03 +01:00
|
|
|
if (IsAtomTerm(first)) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
j = 0;
|
|
|
|
if (INT_KEYS == NULL) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
for(j = 0; j < INT_KEYS_SIZE; j++) {
|
|
|
|
if (INT_KEYS[j] != NIL) {
|
|
|
|
DBProp pptr = RepDBProp(INT_KEYS[j]);
|
|
|
|
EXTRA_CBACK_ARG(2,1) = MkIntegerTerm((Int)(pptr->NextOfPE));
|
|
|
|
EXTRA_CBACK_ARG(2,2) = MkIntegerTerm(j+1);
|
|
|
|
EXTRA_CBACK_ARG(2,3) = MkIntTerm(INT_KEYS_TIMESTAMP);
|
|
|
|
term = MkIntegerTerm((Int)(pptr->FunctorOfDB));
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(term,ARG1) && Yap_unify(term,ARG2));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (j == INT_KEYS_SIZE) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
return(cont_current_key_integer());
|
|
|
|
} else {
|
|
|
|
/* release our lock over the hash table */
|
|
|
|
READ_UNLOCK(HashChain[i].AERWLock);
|
|
|
|
EXTRA_CBACK_ARG(2,2) = MkIntTerm(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
READ_LOCK(RepAtom(a)->ARWLock);
|
2001-10-30 16:42:05 +00:00
|
|
|
if (!EndOfPAEntr(pp = NextDBProp(RepProp(RepAtom(a)->PropsOfAE))))
|
2001-04-09 20:54:03 +01:00
|
|
|
EXTRA_CBACK_ARG(2,3) = (CELL) MkAtomTerm(a);
|
|
|
|
READ_UNLOCK(RepAtom(a)->ARWLock);
|
|
|
|
}
|
|
|
|
READ_LOCK(RepAtom(a)->ARWLock);
|
|
|
|
EXTRA_CBACK_ARG(2,1) = MkIntegerTerm((Int)NextDBProp(RepProp(pp->NextOfPE)));
|
|
|
|
READ_UNLOCK(RepAtom(a)->ARWLock);
|
|
|
|
arity = (unsigned int)(pp->ArityOfDB);
|
|
|
|
if (arity == 0) {
|
|
|
|
term = AtT = MkAtomTerm(a);
|
|
|
|
} else {
|
|
|
|
unsigned int j;
|
|
|
|
CELL *p = H;
|
|
|
|
|
|
|
|
for (j = 0; j < arity; j++) {
|
|
|
|
p[j] = MkVarTerm();
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
functor = Yap_MkFunctor(a, arity);
|
|
|
|
term = Yap_MkApplTerm(functor, arity, p);
|
2001-04-09 20:54:03 +01:00
|
|
|
AtT = MkAtomTerm(a);
|
|
|
|
}
|
2002-11-18 18:18:05 +00:00
|
|
|
return (Yap_unify_constant(ARG1, AtT) && Yap_unify(ARG2, term));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
cont_current_key_integer(void)
|
|
|
|
{
|
|
|
|
Term term;
|
|
|
|
UInt i = IntOfTerm(EXTRA_CBACK_ARG(2,2));
|
|
|
|
Prop pp = (Prop)IntegerOfTerm(EXTRA_CBACK_ARG(2,1));
|
|
|
|
UInt tstamp = (UInt)IntOfTerm(EXTRA_CBACK_ARG(2,3));
|
|
|
|
DBProp pptr;
|
|
|
|
|
|
|
|
if (tstamp != INT_KEYS_TIMESTAMP) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
while (pp == NIL) {
|
|
|
|
for(;i < INT_KEYS_SIZE; i++) {
|
|
|
|
if (INT_KEYS[i] != NIL) {
|
|
|
|
EXTRA_CBACK_ARG(2,2) = MkIntTerm(i+1);
|
|
|
|
pp = INT_KEYS[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == INT_KEYS_SIZE) {
|
|
|
|
cut_fail();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pptr = RepDBProp(pp);
|
|
|
|
EXTRA_CBACK_ARG(2,1) = MkIntegerTerm((Int)(pptr->NextOfPE));
|
|
|
|
term = MkIntegerTerm((Int)(pptr->FunctorOfDB));
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(term,ARG1) && Yap_unify(term,ARG2));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
Term
|
2003-10-17 03:11:21 +01:00
|
|
|
Yap_FetchTermFromDB(DBTerm *ref)
|
2002-11-11 17:38:10 +00:00
|
|
|
{
|
2003-10-17 03:11:21 +01:00
|
|
|
return GetDBTerm(ref);
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static DBTerm *
|
|
|
|
StoreTermInDB(Term t, int nargs)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2003-08-27 14:37:10 +01:00
|
|
|
DBTerm *x;
|
|
|
|
int needs_vars;
|
2004-02-17 19:00:12 +00:00
|
|
|
struct db_globs dbg;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
s_dbg = &dbg;
|
2003-09-15 20:06:55 +01:00
|
|
|
Yap_Error_Size = 0;
|
2003-08-27 14:37:10 +01:00
|
|
|
while ((x = (DBTerm *)CreateDBStruct(t, (DBProp)NULL,
|
2004-02-17 19:00:12 +00:00
|
|
|
InQueue, &needs_vars, 0, &dbg)) == NULL) {
|
2004-10-27 16:56:34 +01:00
|
|
|
if (Yap_Error_TYPE == YAP_NO_ERROR) {
|
2001-04-09 20:54:03 +01:00
|
|
|
break;
|
2004-10-27 16:56:34 +01:00
|
|
|
} else {
|
2003-08-27 14:37:10 +01:00
|
|
|
XREGS[nargs+1] = t;
|
2004-10-27 16:56:34 +01:00
|
|
|
if (recover_from_record_error(nargs+1)) {
|
2003-08-27 14:37:10 +01:00
|
|
|
t = Deref(XREGS[nargs+1]);
|
2004-06-29 20:04:46 +01:00
|
|
|
} else {
|
2004-02-05 16:57:02 +00:00
|
|
|
return FALSE;
|
2002-02-26 15:51:54 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return(x);
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
DBTerm *
|
|
|
|
Yap_StoreTermInDB(Term t, int nargs) {
|
|
|
|
return StoreTermInDB(t, nargs);
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
|
|
|
|
2003-11-18 19:24:46 +00:00
|
|
|
DBTerm *
|
|
|
|
Yap_StoreTermInDBPlusExtraSpace(Term t, UInt extra_size) {
|
|
|
|
int needs_vars;
|
2004-02-17 19:00:12 +00:00
|
|
|
struct db_globs dbg;
|
2003-11-18 19:24:46 +00:00
|
|
|
|
2004-02-17 19:00:12 +00:00
|
|
|
s_dbg = &dbg;
|
2003-11-18 19:24:46 +00:00
|
|
|
return (DBTerm *)CreateDBStruct(t, (DBProp)NULL,
|
2004-02-17 19:00:12 +00:00
|
|
|
InQueue, &needs_vars, extra_size, &dbg);
|
2003-11-18 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static Int
|
|
|
|
p_init_queue(void)
|
|
|
|
{
|
|
|
|
db_queue *dbq;
|
|
|
|
Term t;
|
|
|
|
|
2003-02-24 11:01:01 +00:00
|
|
|
while ((dbq = (db_queue *)AllocDBSpace(sizeof(db_queue))) == NULL) {
|
2004-01-23 02:23:51 +00:00
|
|
|
if (!Yap_growheap(FALSE, sizeof(db_queue), NULL)) {
|
2004-02-14 00:41:12 +00:00
|
|
|
Yap_Error(OUT_OF_HEAP_ERROR, TermNil, "in findall");
|
2003-02-24 11:01:01 +00:00
|
|
|
return(FALSE);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
2003-02-24 11:01:01 +00:00
|
|
|
}
|
|
|
|
dbq->id = FunctorDBRef;
|
|
|
|
dbq->Flags = DBClMask;
|
|
|
|
dbq->FirstInQueue = dbq->LastInQueue = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
INIT_RWLOCK(dbq->QRWLock);
|
2004-06-05 04:37:01 +01:00
|
|
|
t = MkIntegerTerm((Int)dbq);
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG1, t));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2001-06-08 20:10:43 +01:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
static Int
|
|
|
|
p_enqueue(void)
|
|
|
|
{
|
|
|
|
Term Father = Deref(ARG1);
|
2005-01-05 04:32:18 +00:00
|
|
|
Term t;
|
2003-08-27 14:37:10 +01:00
|
|
|
QueueEntry *x;
|
2001-04-09 20:54:03 +01:00
|
|
|
db_queue *father_key;
|
|
|
|
|
|
|
|
if (IsVarTerm(Father)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, Father, "enqueue");
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
2004-06-05 04:37:01 +01:00
|
|
|
} else if (!IsIntegerTerm(Father)) {
|
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, Father, "enqueue");
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
|
|
|
} else
|
2004-06-05 04:37:01 +01:00
|
|
|
father_key = (db_queue *)IntegerOfTerm(Father);
|
2004-02-14 00:41:12 +00:00
|
|
|
while ((x = (QueueEntry *)AllocDBSpace(sizeof(QueueEntry))) == NULL) {
|
|
|
|
if (!Yap_growheap(FALSE, sizeof(QueueEntry), NULL)) {
|
|
|
|
Yap_Error(OUT_OF_HEAP_ERROR, TermNil, "in findall");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
}
|
2005-01-05 04:32:18 +00:00
|
|
|
t = Deref(ARG1);
|
2003-08-27 14:37:10 +01:00
|
|
|
x->DBT = StoreTermInDB(Deref(ARG2), 2);
|
2005-01-05 04:32:18 +00:00
|
|
|
if (x->DBT == NULL) {
|
2003-08-27 14:37:10 +01:00
|
|
|
return FALSE;
|
2005-01-05 04:32:18 +00:00
|
|
|
}
|
2003-08-27 14:37:10 +01:00
|
|
|
x->next = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
WRITE_LOCK(father_key->QRWLock);
|
2001-06-22 18:53:36 +01:00
|
|
|
if (father_key->LastInQueue != NULL)
|
2003-08-27 14:37:10 +01:00
|
|
|
father_key->LastInQueue->next = x;
|
2001-04-09 20:54:03 +01:00
|
|
|
father_key->LastInQueue = x;
|
2001-06-22 18:53:36 +01:00
|
|
|
if (father_key->FirstInQueue == NULL) {
|
2001-04-09 20:54:03 +01:00
|
|
|
father_key->FirstInQueue = x;
|
2001-06-22 18:53:36 +01:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
WRITE_UNLOCK(father_key->QRWLock);
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* when reading an entry in the data base we are making it accessible from
|
|
|
|
the outside. If the entry was removed, and this was the last pointer, the
|
|
|
|
target entry would be immediately removed, leading to dangling pointers.
|
|
|
|
We avoid this problem by making every entry accessible.
|
|
|
|
|
|
|
|
Note that this could not happen with recorded, because the original db
|
|
|
|
entry itself is still accessible from a trail entry, so we could not remove
|
|
|
|
the target entry,
|
|
|
|
*/
|
|
|
|
static void
|
2003-08-27 14:37:10 +01:00
|
|
|
keepdbrefs(DBTerm *entryref)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
DBRef *cp;
|
|
|
|
DBRef ref;
|
|
|
|
|
2003-02-12 13:20:52 +00:00
|
|
|
cp = entryref->DBRefs;
|
2003-08-27 14:37:10 +01:00
|
|
|
if (cp == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
while ((ref = *--cp) != NIL) {
|
2003-12-27 00:38:53 +00:00
|
|
|
if (!(ref->Flags & LogUpdMask)) {
|
|
|
|
LOCK(ref->lock);
|
|
|
|
if(!(ref->Flags & InUseMask)) {
|
|
|
|
ref->Flags |= InUseMask;
|
|
|
|
TRAIL_REF(ref); /* So that fail will erase it */
|
|
|
|
}
|
|
|
|
UNLOCK(ref->lock);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_dequeue(void)
|
|
|
|
{
|
|
|
|
db_queue *father_key;
|
2003-08-27 14:37:10 +01:00
|
|
|
QueueEntry *cur_instance;
|
2001-04-09 20:54:03 +01:00
|
|
|
Term Father = Deref(ARG1);
|
|
|
|
|
|
|
|
if (IsVarTerm(Father)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, Father, "dequeue");
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
2004-06-05 04:37:01 +01:00
|
|
|
} else if (!IsIntegerTerm(Father)) {
|
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, Father, "dequeue");
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
|
|
|
} else
|
2004-06-05 04:37:01 +01:00
|
|
|
father_key = (db_queue *)IntegerOfTerm(Father);
|
2001-04-09 20:54:03 +01:00
|
|
|
WRITE_LOCK(father_key->QRWLock);
|
2001-06-22 18:53:36 +01:00
|
|
|
if ((cur_instance = father_key->FirstInQueue) == NULL) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* an empty queue automatically goes away */
|
|
|
|
WRITE_UNLOCK(father_key->QRWLock);
|
2003-02-24 11:01:01 +00:00
|
|
|
FreeDBSpace((char *)father_key);
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
|
|
|
} else {
|
|
|
|
Term TDB;
|
|
|
|
if (cur_instance == father_key->LastInQueue)
|
2003-08-27 14:37:10 +01:00
|
|
|
father_key->FirstInQueue = father_key->LastInQueue = NULL;
|
2001-04-09 20:54:03 +01:00
|
|
|
else
|
2003-08-27 14:37:10 +01:00
|
|
|
father_key->FirstInQueue = cur_instance->next;
|
2001-04-09 20:54:03 +01:00
|
|
|
WRITE_UNLOCK(father_key->QRWLock);
|
2003-10-17 03:11:21 +01:00
|
|
|
while ((TDB = GetDBTerm(cur_instance->DBT)) == 0L) {
|
2004-09-17 20:34:53 +01:00
|
|
|
if (Yap_Error_TYPE == OUT_OF_ATTVARS_ERROR) {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_growglobal(NULL)) {
|
|
|
|
Yap_Error(OUT_OF_ATTVARS_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Yap_Error_TYPE = YAP_NO_ERROR;
|
|
|
|
if (!Yap_gcl(Yap_Error_Size, 2, YENV, P)) {
|
|
|
|
Yap_Error(OUT_OF_STACK_ERROR, TermNil, Yap_ErrorMessage);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-10-17 03:11:21 +01:00
|
|
|
}
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
/* release space for cur_instance */
|
2003-08-27 14:37:10 +01:00
|
|
|
keepdbrefs(cur_instance->DBT);
|
|
|
|
ErasePendingRefs(cur_instance->DBT);
|
|
|
|
FreeDBSpace((char *) cur_instance->DBT);
|
2001-04-09 20:54:03 +01:00
|
|
|
FreeDBSpace((char *) cur_instance);
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG2, TDB));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-08 20:10:43 +01:00
|
|
|
static Int
|
|
|
|
p_clean_queues(void)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2001-06-08 20:10:43 +01:00
|
|
|
return(TRUE);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set the logical updates flag */
|
|
|
|
static Int
|
|
|
|
p_slu(void)
|
|
|
|
{
|
|
|
|
Term t = Deref(ARG1);
|
|
|
|
if (IsVarTerm(t)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR, t, "switch_logical_updates/1");
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
if (!IsIntTerm(t)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t, "switch_logical_updates/1");
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
UPDATE_MODE = IntOfTerm(t);
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check current status for logical updates */
|
|
|
|
static Int
|
|
|
|
p_lu(void)
|
|
|
|
{
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG1,MkIntTerm(UPDATE_MODE)));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* get a hold over the index table for logical update predicates */
|
|
|
|
static Int
|
|
|
|
p_hold_index(void)
|
|
|
|
{
|
2003-08-27 14:37:10 +01:00
|
|
|
Yap_Error(SYSTEM_ERROR, TermNil, "hold_index in debugger");
|
|
|
|
return FALSE;
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_fetch_reference_from_index(void)
|
|
|
|
{
|
|
|
|
Term t1 = Deref(ARG1), t2 = Deref(ARG2);
|
|
|
|
DBRef table, el;
|
|
|
|
Int pos;
|
|
|
|
|
|
|
|
if (IsVarTerm(t1) || !IsDBRefTerm(t1))
|
|
|
|
return(FALSE);
|
|
|
|
table = DBRefOfTerm(t1);
|
|
|
|
|
|
|
|
if (IsVarTerm(t2) || !IsIntTerm(t2))
|
|
|
|
return(FALSE);
|
|
|
|
pos = IntOfTerm(t2);
|
2003-08-27 14:37:10 +01:00
|
|
|
el = (DBRef)(table->DBT.Contents[pos]);
|
2001-04-09 20:54:03 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
LOCK(el->lock);
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(el); /* So that fail will erase it */
|
2001-04-09 20:54:03 +01:00
|
|
|
INC_DBREF_COUNT(el);
|
|
|
|
UNLOCK(el->lock);
|
|
|
|
#else
|
|
|
|
if (!(el->Flags & InUseMask)) {
|
|
|
|
el->Flags |= InUseMask;
|
2001-06-08 15:52:54 +01:00
|
|
|
TRAIL_REF(el);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG3, MkDBRefTerm(el)));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_resize_int_keys(void)
|
|
|
|
{
|
|
|
|
Term t1 = Deref(ARG1);
|
|
|
|
if (IsVarTerm(t1)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_unify(ARG1,MkIntegerTerm((Int)INT_KEYS_SIZE)));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
if (!IsIntegerTerm(t1)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_INTEGER, t1, "yap_flag(resize_db_int_keys,T)");
|
2001-04-09 20:54:03 +01:00
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
return(resize_int_keys(IntegerOfTerm(t1)));
|
|
|
|
}
|
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
static void
|
|
|
|
ReleaseTermFromDB(DBTerm *ref)
|
|
|
|
{
|
|
|
|
keepdbrefs(ref);
|
|
|
|
FreeDBSpace((char *)ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Yap_ReleaseTermFromDB(DBTerm *ref)
|
|
|
|
{
|
|
|
|
ReleaseTermFromDB(ref);
|
|
|
|
}
|
|
|
|
|
2004-02-11 16:09:15 +00:00
|
|
|
static Int
|
|
|
|
p_install_thread_local(void)
|
|
|
|
{ /* '$is_dynamic'(+P) */
|
2004-02-11 16:18:16 +00:00
|
|
|
#if THREADS
|
2004-02-11 16:09:15 +00:00
|
|
|
PredEntry *pe;
|
|
|
|
Term t = Deref(ARG1);
|
2004-02-12 12:37:12 +00:00
|
|
|
Term mod = Deref(ARG2);
|
2004-02-11 16:09:15 +00:00
|
|
|
|
|
|
|
if (IsVarTerm(t)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
if (mod == IDB_MODULE) {
|
|
|
|
pe = find_lu_entry(t);
|
|
|
|
if (!pe->cs.p_code.NOfClauses) {
|
|
|
|
if (IsIntegerTerm(t))
|
|
|
|
pe->PredFlags |= LogUpdatePredFlag|NumberDBPredFlag;
|
|
|
|
else if (IsAtomTerm(t))
|
|
|
|
pe->PredFlags |= LogUpdatePredFlag|AtomDBPredFlag;
|
|
|
|
else
|
|
|
|
pe->PredFlags |= LogUpdatePredFlag;
|
|
|
|
}
|
|
|
|
} else if (IsAtomTerm(t)) {
|
|
|
|
Atom at = AtomOfTerm(t);
|
|
|
|
pe = RepPredProp(PredPropByAtom(at, mod));
|
|
|
|
} else if (IsApplTerm(t)) {
|
|
|
|
Functor fun = FunctorOfTerm(t);
|
|
|
|
pe = RepPredProp(PredPropByFunc(fun, mod));
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
WRITE_LOCK(pe->PRWLock);
|
|
|
|
if (pe->PredFlags & (UserCPredFlag|HiddenPredFlag|CArgsPredFlag|SyncPredFlag|TestPredFlag|AsmPredFlag|StandardPredFlag|CPredFlag|SafePredFlag|IndexedPredFlag|BinaryTestPredFlag) ||
|
|
|
|
pe->cs.p_code.NOfClauses) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
pe->PredFlags |= ThreadLocalPredFlag;
|
|
|
|
pe->OpcodeOfPred = Yap_opcode(_thread_local);
|
|
|
|
pe->CodeOfPred = (yamop *)&pe->OpcodeOfPred;
|
|
|
|
WRITE_UNLOCK(pe->PRWLock);
|
2004-02-11 16:18:16 +00:00
|
|
|
#endif
|
2004-02-11 16:09:15 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
void
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_InitDBPreds(void)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2003-08-27 14:37:10 +01:00
|
|
|
Yap_InitCPred("recorded", 3, p_recorded, SyncPredFlag);
|
|
|
|
Yap_InitCPred("recorda", 3, p_rcda, SyncPredFlag);
|
|
|
|
Yap_InitCPred("recordz", 3, p_rcdz, SyncPredFlag);
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPred("$still_variant", 2, p_still_variant, SyncPredFlag|HiddenPredFlag);
|
2003-01-21 16:14:52 +00:00
|
|
|
Yap_InitCPred("recorda_at", 3, p_rcda_at, SyncPredFlag);
|
|
|
|
Yap_InitCPred("recordz_at", 3, p_rcdz_at, SyncPredFlag);
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPred("$recordap", 3, p_rcdap, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$recordzp", 3, p_rcdzp, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$recordap", 4, p_drcdap, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$recordzp", 4, p_drcdzp, SyncPredFlag|HiddenPredFlag);
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_InitCPred("erase", 1, p_erase, SafePredFlag|SyncPredFlag);
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPred("$erase_clause", 2, p_erase_clause, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_InitCPred("erased", 1, p_erased, TestPredFlag | SafePredFlag|SyncPredFlag);
|
|
|
|
Yap_InitCPred("instance", 2, p_instance, SyncPredFlag);
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPred("$instance_module", 2, p_instance_module, SyncPredFlag|HiddenPredFlag);
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_InitCPred("eraseall", 1, p_eraseall, SafePredFlag|SyncPredFlag);
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPred("$record_stat_source", 4, p_rcdstatp, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$some_recordedp", 1, p_somercdedp, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$first_instance", 3, p_first_instance, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$init_db_queue", 1, p_init_queue, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$db_key", 2, p_db_key, HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$db_enqueue", 2, p_enqueue, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$db_dequeue", 2, p_dequeue, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$db_clean_queues", 1, p_clean_queues, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$switch_log_upd", 1, p_slu, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$log_upd", 1, p_lu, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$hold_index", 3, p_hold_index, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$fetch_reference_from_index", 3, p_fetch_reference_from_index, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$resize_int_keys", 1, p_resize_int_keys, SafePredFlag|SyncPredFlag|HiddenPredFlag);
|
2003-10-28 01:16:03 +00:00
|
|
|
Yap_InitCPred("key_statistics", 4, p_key_statistics, SyncPredFlag);
|
2003-11-12 12:33:31 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
Yap_InitCPred("total_erased", 4, p_total_erased, SyncPredFlag);
|
|
|
|
Yap_InitCPred("key_erased_statistics", 5, p_key_erased_statistics, SyncPredFlag);
|
2004-09-03 04:11:09 +01:00
|
|
|
Yap_InitCPred("heap_space_info", 3, p_heap_space_info, SyncPredFlag);
|
2003-11-12 12:33:31 +00:00
|
|
|
#endif
|
2005-05-25 19:58:38 +01:00
|
|
|
Yap_InitCPred("$nth_instance", 3, p_nth_instance, SyncPredFlag);
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPred("$nth_instancep", 3, p_nth_instancep, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$jump_to_next_dynamic_clause", 0, p_jump_to_next_dynamic_clause, SyncPredFlag|HiddenPredFlag);
|
|
|
|
Yap_InitCPred("$install_thread_local", 2, p_install_thread_local, SafePredFlag|HiddenPredFlag);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_InitBackDB(void)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPredBack("$recorded_with_key", 3, 3, in_rded_with_key, co_rded, SyncPredFlag|HiddenPredFlag);
|
2003-08-27 14:37:10 +01:00
|
|
|
RETRY_C_RECORDED_K_CODE = NEXTOP(PredRecordedWithKey->cs.p_code.FirstClause,lds);
|
2004-11-18 22:32:40 +00:00
|
|
|
Yap_InitCPredBack("$recordedp", 3, 3, in_rdedp, co_rdedp, SyncPredFlag|HiddenPredFlag);
|
2003-08-27 14:37:10 +01:00
|
|
|
RETRY_C_RECORDEDP_CODE = NEXTOP(RepPredProp(PredPropByFunc(Yap_MkFunctor(Yap_LookupAtom("$recordedp"), 3),0))->cs.p_code.FirstClause,lds);
|
2003-10-28 01:16:03 +00:00
|
|
|
Yap_InitCPredBack("$current_immediate_key", 2, 4, init_current_key, cont_current_key,
|
2004-11-18 22:32:40 +00:00
|
|
|
SyncPredFlag|HiddenPredFlag);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|