2011-03-24 10:25:02 +00:00
|
|
|
// Stuff that must be considered local to a thread or worker
|
|
|
|
START_WORKER_LOCAL
|
|
|
|
|
|
|
|
// Streams
|
2011-05-25 16:40:36 +01:00
|
|
|
int c_input_stream =0
|
|
|
|
int c_output_stream =1
|
|
|
|
int c_error_stream =2
|
2011-05-11 18:22:58 +01:00
|
|
|
|
|
|
|
// Restore info
|
2011-05-25 16:40:36 +01:00
|
|
|
CELL* OldASP =NULL
|
|
|
|
CELL* OldLCL0 =NULL
|
|
|
|
tr_fr_ptr OldTR =NULL
|
|
|
|
CELL* OldGlobalBase =NULL
|
|
|
|
CELL* OldH =NULL
|
|
|
|
CELL* OldH0 =NULL
|
|
|
|
ADDR OldTrailBase =NULL
|
|
|
|
ADDR OldTrailTop =NULL
|
|
|
|
ADDR OldHeapBase =NULL
|
|
|
|
ADDR OldHeapTop =NULL
|
|
|
|
Int ClDiff =0L
|
|
|
|
Int GDiff =0L
|
|
|
|
Int HDiff =0L
|
|
|
|
Int GDiff0 =0L
|
|
|
|
CELL* GSplit =NULL
|
|
|
|
Int LDiff =0L
|
|
|
|
Int TrDiff =0L
|
|
|
|
Int XDiff =0L
|
|
|
|
Int DelayDiff =0L
|
|
|
|
Int BaseDiff =0L
|
2011-05-11 18:22:58 +01:00
|
|
|
|
|
|
|
// Reduction counters
|
2011-05-25 16:40:36 +01:00
|
|
|
YAP_ULONG_LONG ReductionsCounter =0L
|
|
|
|
YAP_ULONG_LONG PredEntriesCounter =0L
|
|
|
|
YAP_ULONG_LONG RetriesCounter =0L
|
|
|
|
int ReductionsCounterOn =0L
|
|
|
|
int PredEntriesCounterOn =0L
|
|
|
|
int RetriesCounterOn =0L
|
2011-03-24 10:25:02 +00:00
|
|
|
|
|
|
|
// support for consulting files
|
|
|
|
/* current consult stack */
|
2011-05-25 16:40:36 +01:00
|
|
|
union CONSULT_OBJ* ConsultSp =NULL
|
2011-03-24 10:25:02 +00:00
|
|
|
/* current maximum number of cells in consult stack */
|
2011-05-25 16:40:36 +01:00
|
|
|
UInt ConsultCapacity void
|
2011-03-24 10:25:02 +00:00
|
|
|
/* top of consult stack */
|
2011-05-25 16:40:36 +01:00
|
|
|
union CONSULT_OBJ* ConsultBase =NULL
|
2011-03-24 10:25:02 +00:00
|
|
|
/* low-water mark for consult */
|
2011-05-25 16:40:36 +01:00
|
|
|
union CONSULT_OBJ* ConsultLow =NULL
|
2011-03-24 10:25:02 +00:00
|
|
|
|
|
|
|
//global variables
|
2011-05-25 16:40:36 +01:00
|
|
|
Term GlobalArena =0L TermToGlobalOrAtomAdjust
|
|
|
|
UInt GlobalArenaOverflows =0L
|
|
|
|
Int ArenaOverflows =0L
|
|
|
|
Int DepthArenas =0
|
|
|
|
|
|
|
|
int ArithError =FALSE
|
|
|
|
struct pred_entry* LastAssertedPred =NULL
|
|
|
|
int DebugOn =FALSE
|
|
|
|
char* ScannerStack =NULL
|
|
|
|
struct scanner_extra_alloc* ScannerExtraBlocks =NULL
|
|
|
|
struct DB_TERM* BallTerm =NULL RestoreBallTerm(wid)
|
|
|
|
UInt ActiveSignals =0L
|
|
|
|
UInt IPredArity =0L
|
|
|
|
yamop* ProfEnd =NULL
|
|
|
|
int UncaughtThrow =FALSE
|
|
|
|
int DoingUndefp =FALSE
|
|
|
|
Int StartLine =0L
|
|
|
|
scratch_block ScratchPad InitScratchPad(wid)
|
2011-03-24 10:25:02 +00:00
|
|
|
#ifdef COROUTINING
|
2011-05-25 16:40:36 +01:00
|
|
|
Term WokenGoals =0L TermToGlobalAdjust
|
|
|
|
Term AttsMutableList =0L TermToGlobalAdjust
|
2011-03-24 10:25:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// gc_stuff
|
2011-05-25 16:40:36 +01:00
|
|
|
Term GcGeneration =0L TermToGlobalAdjust
|
|
|
|
Term GcPhase =0L TermToGlobalAdjust
|
|
|
|
UInt GcCurrentPhase =0L
|
|
|
|
UInt GcCalls =0L
|
|
|
|
Int TotGcTime =0L
|
|
|
|
YAP_ULONG_LONG TotGcRecovered =0L
|
|
|
|
Int LastGcTime =0L
|
|
|
|
Int LastSSTime =0L
|
2011-03-24 10:25:02 +00:00
|
|
|
|
2011-05-05 17:41:05 +01:00
|
|
|
/* in a single gc */
|
2011-05-25 16:40:36 +01:00
|
|
|
Int total_marked =0L
|
|
|
|
Int total_oldies =0L
|
|
|
|
struct choicept* current_B =NULL
|
|
|
|
CELL* prev_HB =NULL
|
|
|
|
CELL* HGEN =NULL
|
|
|
|
CELL** iptop =NULL
|
2011-05-11 18:22:58 +01:00
|
|
|
|
2011-05-05 17:41:05 +01:00
|
|
|
#if defined(GC_NO_TAGS)
|
2011-05-25 16:40:36 +01:00
|
|
|
char* bp =NULL
|
2011-03-24 10:25:02 +00:00
|
|
|
#endif
|
2011-05-25 16:40:36 +01:00
|
|
|
tr_fr_ptr sTR =NULL
|
|
|
|
tr_fr_ptr sTR0 =NULL
|
|
|
|
tr_fr_ptr new_TR =NULL
|
|
|
|
struct gc_mark_continuation* cont_top0 =NULL
|
|
|
|
struct gc_mark_continuation* cont_top =NULL
|
|
|
|
int discard_trail_entries =0
|
|
|
|
gc_ma_hash_entry gc_ma_hash_table[GC_MAVARS_HASH_SIZE] void
|
|
|
|
gc_ma_hash_entry* gc_ma_h_top =NULL
|
|
|
|
gc_ma_hash_entry* gc_ma_h_list =NULL
|
|
|
|
UInt gc_timestamp =0L
|
|
|
|
ADDR db_vec =NULL
|
|
|
|
ADDR db_vec0 =NULL
|
|
|
|
struct RB_red_blk_node* db_root =NULL
|
|
|
|
struct RB_red_blk_node* db_nil =NULL
|
|
|
|
|
|
|
|
sigjmp_buf gc_restore void
|
|
|
|
struct array_entry* DynamicArrays =NULL PtoArrayEAdjust
|
|
|
|
struct static_array_entry* StaticArrays =NULL PtoArraySAdjust
|
|
|
|
struct global_entry* GlobalVariables =NULL PtoGlobalEAdjust
|
|
|
|
int AllowRestart =FALSE
|
|
|
|
|
2011-05-11 18:22:58 +01:00
|
|
|
// Thread Local Area for Fast Storage of Intermediate Compiled Code
|
2011-05-25 16:40:36 +01:00
|
|
|
struct mem_blk* CMemFirstBlock =NULL
|
|
|
|
UInt CMemFirstBlockSz =0L
|
2011-05-11 18:22:58 +01:00
|
|
|
|
|
|
|
// Thread Local Area for Labels
|
2011-05-25 16:40:36 +01:00
|
|
|
Int* LabelFirstArray =NULL
|
|
|
|
UInt LabelFirstArraySz =0L
|
2011-03-24 10:25:02 +00:00
|
|
|
|
|
|
|
// Thread Local Area for SWI-Prolog emulation routines.
|
2011-05-25 16:40:36 +01:00
|
|
|
struct PL_local_data* PL_local_data_p =Yap_InitThreadIO(wid)
|
2011-03-24 10:25:02 +00:00
|
|
|
|
|
|
|
#ifdef THREADS
|
2011-05-25 16:40:36 +01:00
|
|
|
struct thandle ThreadHandle InitThreadHandle(wid)
|
2011-05-09 19:55:06 +01:00
|
|
|
#endif /* THREADS */
|
2011-03-24 10:25:02 +00:00
|
|
|
|
2011-05-09 19:36:51 +01:00
|
|
|
#if defined(YAPOR) || defined(TABLING)
|
2011-05-25 16:40:36 +01:00
|
|
|
struct local_optyap_data optyap_data Yap_init_local_optyap_data(wid)
|
2011-05-09 19:36:51 +01:00
|
|
|
#endif /* YAPOR || TABLING */
|
|
|
|
|
2011-05-25 16:40:36 +01:00
|
|
|
int InterruptsDisabled =FALSE
|
2011-05-09 20:19:49 +01:00
|
|
|
|
2011-05-25 16:40:36 +01:00
|
|
|
struct open_query_struct* execution =NULL
|
2011-05-11 18:22:58 +01:00
|
|
|
|
|
|
|
#if LOW_LEVEL_TRACER
|
2011-05-25 16:40:36 +01:00
|
|
|
Int total_choicepoints =0
|
2011-05-11 18:22:58 +01:00
|
|
|
#endif
|
|
|
|
|
2011-05-25 16:40:36 +01:00
|
|
|
int consult_level =0
|
2011-05-11 18:22:58 +01:00
|
|
|
|
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
2011-05-25 16:40:36 +01:00
|
|
|
lockvar SignalLock MkLock
|
2011-05-11 18:22:58 +01:00
|
|
|
#endif
|
2011-05-09 20:19:49 +01:00
|
|
|
|
2011-05-23 16:19:47 +01:00
|
|
|
// Variables related to memory allocation
|
2011-05-26 15:02:00 +01:00
|
|
|
ADDR LocalBase void
|
|
|
|
ADDR GlobalBase void
|
|
|
|
ADDR TrailBase void
|
|
|
|
ADDR TrailTop void
|
|
|
|
char* ErrorMessage void
|
|
|
|
Term Error_Term void
|
2011-05-23 16:19:47 +01:00
|
|
|
#ifdef THREADS
|
2011-05-26 15:02:00 +01:00
|
|
|
Term Error_TYPE void
|
2011-05-23 16:19:47 +01:00
|
|
|
#else
|
2011-05-26 15:02:00 +01:00
|
|
|
yap_error_number Error_TYPE void
|
2011-05-23 16:19:47 +01:00
|
|
|
#endif
|
2011-05-26 15:02:00 +01:00
|
|
|
UInt Error_Size void
|
2011-05-25 16:40:36 +01:00
|
|
|
char ErrorSay[MAX_ERROR_MSG_SIZE] void
|
|
|
|
jmp_buf IOBotch void
|
2011-05-26 15:02:00 +01:00
|
|
|
TokEntry* tokptr void
|
|
|
|
TokEntry* toktide void
|
|
|
|
VarEntry* VarTable void
|
|
|
|
VarEntry* AnonVarTable void
|
2011-06-12 17:23:10 +01:00
|
|
|
Term Comments void
|
|
|
|
CELL* CommentsTail void
|
|
|
|
CELL* CommentsNextChar void
|
|
|
|
wchar_t* CommentsBuff void
|
|
|
|
size_t CommentsBuffPos void
|
|
|
|
size_t CommentsBuffLim void
|
2011-05-25 16:40:36 +01:00
|
|
|
sigjmp_buf RestartEnv void
|
|
|
|
char FileNameBuf[YAP_FILENAME_MAX] void
|
|
|
|
char FileNameBuf2[YAP_FILENAME_MAX] void
|
|
|
|
|
|
|
|
// Prolog State
|
|
|
|
|
|
|
|
Int PrologMode =BootMode
|
|
|
|
int CritLocks =0
|
|
|
|
|
|
|
|
//analyst.c
|
|
|
|
/* used to find out how many instructions of each kind are executed */
|
|
|
|
#ifdef ANALYST
|
|
|
|
YAP_ULONG_LONG opcount[_std_top+1] void
|
|
|
|
YAP_ULONG_LONG 2opcount[_std_top+1][_std_top+1] void
|
|
|
|
#endif /* ANALYST */
|
2011-05-23 16:19:47 +01:00
|
|
|
|
2011-05-25 16:40:36 +01:00
|
|
|
//dbase.c
|
|
|
|
struct db_globs* s_dbg void
|
|
|
|
|
|
|
|
//eval.c
|
|
|
|
yap_error_number matherror =YAP_NO_ERROR
|
|
|
|
|
|
|
|
//grow.c
|
|
|
|
int heap_overflows =0
|
|
|
|
Int total_heap_overflow_time =0
|
|
|
|
int stack_overflows =0
|
|
|
|
Int total_stack_overflow_time =0
|
|
|
|
int delay_overflows =0
|
|
|
|
Int total_delay_overflow_time =0
|
|
|
|
int trail_overflows =0
|
|
|
|
Int total_trail_overflow_time =0
|
|
|
|
int atom_table_overflows =0
|
|
|
|
Int total_atom_table_overflow_time =0
|
|
|
|
|
|
|
|
//load_dyld
|
|
|
|
#ifdef LOAD_DYLD
|
2011-08-16 14:34:44 +01:00
|
|
|
int dl_errno =0
|
2011-05-25 16:40:36 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//tracer.c
|
|
|
|
#ifdef LOW_LEVEL_TRACER
|
|
|
|
int do_trace_primitives =TRUE
|
|
|
|
#endif
|
|
|
|
|
2011-08-16 14:34:44 +01:00
|
|
|
//quick loader
|
|
|
|
struct export_atom_hash_entry_struct **ExportAtomHashChain =NULL
|
|
|
|
UInt ExportAtomHashTableSize =0
|
|
|
|
UInt ExportAtomHashTableNum =0
|
|
|
|
struct export_functor_hash_entry_struct **ExportFunctorHashChain =NULL
|
|
|
|
UInt ExportFunctorHashTableSize =0
|
|
|
|
UInt ExportFunctorHashTableNum =0
|
2011-05-25 16:40:36 +01:00
|
|
|
|
2011-08-16 14:34:44 +01:00
|
|
|
END_WORKER_LOCAL
|