2001-04-09 20:54:03 +01:00
|
|
|
/*************************************************************************
|
2015-01-20 03:00:42 +00: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: absmi.c *
|
|
|
|
* Last rev: *
|
|
|
|
* mods: *
|
|
|
|
* comments: Portable abstract machine interpreter includes *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
#ifndef ABSMI_H
|
|
|
|
|
|
|
|
#define ABSMI_H 1
|
|
|
|
|
2009-04-07 23:55:16 +01:00
|
|
|
#if NATIVE_EXECUTION
|
|
|
|
/* just a stub */
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define EXEC_NATIVE(X)
|
|
|
|
#define MAX_INVOCATION 1024
|
|
|
|
#define Yapc_Compile(P) 0
|
2009-04-07 23:55:16 +01:00
|
|
|
#endif
|
|
|
|
|
2015-02-06 18:11:52 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define register
|
|
|
|
#endif
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Macros for register manipulation *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
/*
|
|
|
|
* Machine and compiler dependent definitions
|
|
|
|
*/
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
|
|
|
#ifdef hppa
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_P 1
|
|
|
|
#define SHADOW_Y 1
|
|
|
|
#define SHADOW_REGS 1
|
|
|
|
#define USE_PREFETCH 1
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __alpha
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_P 1
|
|
|
|
#define SHADOW_Y 1
|
|
|
|
#define SHADOW_REGS 1
|
|
|
|
#define USE_PREFETCH 1
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
2005-12-23 00:20:14 +00:00
|
|
|
#if defined(_POWER) || defined(__POWERPC__)
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_P 1
|
|
|
|
#define SHADOW_REGS 1
|
|
|
|
#define USE_PREFETCH 1
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef i386
|
2016-03-29 02:02:43 +01:00
|
|
|
#define Y_IN_MEM 1
|
|
|
|
#define S_IN_MEM 1
|
|
|
|
#define TR_IN_MEM 1
|
|
|
|
#define HAVE_FEW_REGS 1
|
|
|
|
#define LIMITED_PREFETCH 1
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef BP_FREE
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Use bp as PREG for X86 machines *
|
|
|
|
***************************************************************/
|
2008-03-25 22:03:14 +00:00
|
|
|
#if defined(IN_ABSMI_C)
|
2016-03-29 02:02:43 +01:00
|
|
|
register struct yami *P1REG asm("bp"); /* can't use yamop before Yap.h */
|
2004-10-28 21:12:23 +01:00
|
|
|
#define PREG P1REG
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
#define NEEDS_TO_SET_PC 1
|
|
|
|
#endif /* BP_FREE */
|
|
|
|
#endif /* i386 */
|
|
|
|
|
2010-04-16 12:12:23 +01:00
|
|
|
#ifdef sparc
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_P 1
|
2010-04-16 12:12:23 +01:00
|
|
|
#ifdef BP_FREE
|
|
|
|
#undef BP_FREE
|
|
|
|
#endif
|
2016-03-29 02:02:43 +01:00
|
|
|
#define S_IN_MEM 1
|
|
|
|
#define Y_IN_MEM 1
|
|
|
|
#define TR_IN_MEM 1
|
2010-04-16 12:12:23 +01:00
|
|
|
#endif /* sparc_ */
|
|
|
|
|
2006-02-01 13:28:57 +00:00
|
|
|
#ifdef __x86_64__
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_P 1
|
2010-01-27 11:00:25 +00:00
|
|
|
#ifdef BP_FREE
|
|
|
|
#undef BP_FREE
|
|
|
|
#endif
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_S 1
|
2010-01-27 11:00:25 +00:00
|
|
|
//#define SHADOW_Y 1
|
2016-03-29 02:02:43 +01:00
|
|
|
#define S_IN_MEM 1
|
|
|
|
#define Y_IN_MEM 1
|
|
|
|
#define TR_IN_MEM 1
|
|
|
|
#define LIMITED_PREFETCH 1
|
2006-02-01 13:28:57 +00:00
|
|
|
#endif /* __x86_64__ */
|
|
|
|
|
2016-10-20 04:44:59 +01:00
|
|
|
#if defined(__arm__) || defined(__thumb__) || defined(mips) || \
|
|
|
|
defined(__mips64) || defined(__aarch64__)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define Y_IN_MEM 1
|
|
|
|
#define S_IN_MEM 1
|
|
|
|
#define TR_IN_MEM 1
|
|
|
|
#define HAVE_FEW_REGS 1
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#else /* other compilers */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define S_IN_MEM 1
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* This works for xlc under AIX 3.2.5 */
|
|
|
|
#ifdef _IBMR2
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_P 1
|
|
|
|
#define SHADOW_REGS 1
|
|
|
|
#define SHADOW_S 1
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef i386
|
2016-03-29 02:02:43 +01:00
|
|
|
#define Y_IN_MEM 1
|
|
|
|
#define S_IN_MEM 1
|
|
|
|
#define TR_IN_MEM 1
|
|
|
|
#define HAVE_FEW_REGS 1
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _HPUX_SOURCE
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SHADOW_P 1
|
|
|
|
#define SHADOW_Y 1
|
|
|
|
#define SHADOW_S 1
|
|
|
|
#define SHADOW_CP 1
|
|
|
|
#define SHADOW_HB 1
|
|
|
|
#define USE_PREFETCH 1
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
|
|
|
#include "Yap.h"
|
|
|
|
#include "clause.h"
|
2017-02-20 15:28:46 +00:00
|
|
|
#include "YapEval.h"
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2015-02-18 10:03:57 +00:00
|
|
|
#if YAP_JIT
|
|
|
|
#include "amijit.h"
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef YAPOR
|
|
|
|
#include "or.macros.h"
|
2016-03-29 02:02:43 +01:00
|
|
|
#endif /* YAPOR */
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef USE_SYSTEM_MALLOC
|
2009-10-23 14:22:17 +01:00
|
|
|
#include "YapHeap.h"
|
2004-02-05 16:57:02 +00:00
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef TABLING
|
|
|
|
#include "tab.macros.h"
|
|
|
|
#endif /* TABLING */
|
|
|
|
#ifdef LOW_LEVEL_TRACER
|
|
|
|
#include "tracer.h"
|
|
|
|
#endif
|
2015-06-19 01:30:13 +01:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
/**********************************************************************
|
|
|
|
* *
|
|
|
|
* Debugging Auxiliary variables *
|
|
|
|
* *
|
|
|
|
**********************************************************************/
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if PUSH_REGS
|
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Trick to copy REGS into absmi local environment *
|
|
|
|
***************************************************************/
|
2016-03-29 02:02:43 +01:00
|
|
|
INLINE_ONLY inline EXTERN void init_absmi_regs(REGSTORE *absmi_regs);
|
2012-06-29 22:44:08 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
/* regp is a global variable */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
INLINE_ONLY inline EXTERN void init_absmi_regs(REGSTORE *absmi_regs) {
|
2011-03-07 16:02:55 +00:00
|
|
|
CACHE_REGS
|
2016-03-29 02:02:43 +01:00
|
|
|
memcpy(absmi_regs, Yap_regp, sizeof(REGSTORE));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
INLINE_ONLY inline EXTERN void restore_absmi_regs(REGSTORE *old_regs);
|
2012-06-29 22:44:08 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
INLINE_ONLY inline EXTERN void restore_absmi_regs(REGSTORE *old_regs) {
|
2011-03-07 16:02:55 +00:00
|
|
|
CACHE_REGS
|
2016-03-29 02:02:43 +01:00
|
|
|
memcpy(old_regs, Yap_regp, sizeof(REGSTORE));
|
2004-01-23 02:23:51 +00:00
|
|
|
#ifdef THREADS
|
2004-02-06 17:22:24 +00:00
|
|
|
pthread_setspecific(Yap_yaamregs_key, (void *)old_regs);
|
2011-05-09 19:55:06 +01:00
|
|
|
LOCAL_ThreadHandle.current_yaam_regs = old_regs;
|
2004-01-23 02:23:51 +00:00
|
|
|
#else
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_regp = old_regs;
|
2004-01-23 02:23:51 +00:00
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
#endif /* PUSH_REGS */
|
|
|
|
|
|
|
|
/*****************************************************************
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
Machine Dependent stuff
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
#ifdef LONG_LIVED_REGISTERS
|
|
|
|
|
|
|
|
#define BEGP(TMP)
|
|
|
|
|
|
|
|
#define ENDP(TMP)
|
|
|
|
|
|
|
|
#define BEGD(TMP)
|
|
|
|
|
|
|
|
#define ENDD(TMP)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BEGP(TMP) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
register CELL *TMP
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ENDP(TMP) }
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BEGD(TMP) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
register CELL TMP
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ENDD(TMP) }
|
|
|
|
|
|
|
|
#endif /* LONG_LIVED_REGISTERS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BEGCHO(TMP) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
register choiceptr TMP
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ENDCHO(TMP) }
|
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* YREG is usually, but not always, a register. This affects *
|
|
|
|
* choicepoints *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#if Y_IN_MEM
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_Y(A) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
register CELL *S_YREG = ((CELL *)(A))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ENDCACHE_Y() \
|
|
|
|
YREG = S_YREG; \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define B_YREG ((choiceptr)(S_YREG))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define S_YREG (YREG)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
#define B_YREG ((choiceptr)(YREG))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_Y(A) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
YREG = ((CELL *)(A))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ENDCACHE_Y() }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if Y_IN_MEM
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_Y_AS_ENV(A) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
register CELL *ENV_YREG = (A)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2012-08-14 05:35:37 +01:00
|
|
|
#define FETCH_Y_FROM_ENV(A) ENV_YREG = (A)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define WRITEBACK_Y_AS_ENV() YREG = ENV_YREG
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ENDCACHE_Y_AS_ENV() }
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define saveregs_and_ycache() \
|
|
|
|
YREG = ENV_YREG; \
|
|
|
|
saveregs()
|
2003-10-28 01:16:03 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define setregs_and_ycache() \
|
|
|
|
ENV_YREG = YREG; \
|
|
|
|
setregs()
|
2003-10-28 01:16:03 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
|
2005-10-28 18:38:50 +01:00
|
|
|
#define ENV_YREG (YREG)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define WRITEBACK_Y_AS_ENV()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_Y_AS_ENV(A) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
YREG = (A)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2012-08-14 05:35:37 +01:00
|
|
|
#define FETCH_Y_FROM_ENV(A) (A)
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#define ENDCACHE_Y_AS_ENV() }
|
|
|
|
|
2003-10-28 01:16:03 +00:00
|
|
|
#define saveregs_and_ycache() saveregs()
|
|
|
|
|
|
|
|
#define setregs_and_ycache() setregs()
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if S_IN_MEM
|
|
|
|
|
|
|
|
#define CACHE_A1()
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define CACHED_A1() ARG1
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifndef _NATIVE
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_A1() (SREG = (CELL *)ARG1)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#define CACHED_A1() ((CELL)SREG)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_A1() ((*_SREG) = (CELL *)ARG1)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#define CACHED_A1() ((CELL)(*_SREG))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* _NATIVE */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#endif /* S_IN_MEM */
|
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* TR is usually, but not always, a register. This affects *
|
|
|
|
* backtracking *
|
|
|
|
***************************************************************/
|
|
|
|
|
|
|
|
#ifdef _NATIVE
|
|
|
|
|
|
|
|
#define CACHE_TR(A) register tr_fr_ptr S_TR = (A)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define RESTORE_TR() TR = S_TR
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#define ENDCACHE_TR()
|
|
|
|
|
|
|
|
#else
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_TR(A) \
|
|
|
|
{ \
|
2016-10-20 04:44:59 +01:00
|
|
|
register tr_fr_ptr S_TR = (A)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define RESTORE_TR() TR = S_TR
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ENDCACHE_TR() }
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* S is usually, but not always, a register (X86 machines). *
|
|
|
|
* This affects unification instructions *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#if S_IN_MEM
|
|
|
|
|
|
|
|
/* jump through hoops because idiotic gcc will go and read S from
|
|
|
|
memory every time it uses S :-( */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CACHE_S() \
|
|
|
|
{ \
|
|
|
|
register CELL *S_SREG;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ENDCACHE_S() }
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#define READ_IN_S() S_SREG = SREG
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define READ_IN_S() S_SREG = *_SREG
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/* do nothing if you are on a decent machine */
|
|
|
|
|
|
|
|
#define CACHE_S() {
|
|
|
|
|
|
|
|
#define ENDCACHE_S() }
|
|
|
|
|
|
|
|
#define READ_IN_S()
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define S_SREG SREG
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#define WRITEBACK_S(X) SREG = (X)
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define WRITEBACK_S(X) *_SREG = (X)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/*****************************************************************
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
End of Machine Dependent stuff
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/*****************************************************************
|
|
|
|
|
|
|
|
Prefetch is a technique to obtain the place to jump to before actually
|
|
|
|
executing instructions. It can speed up some machines, by having the
|
|
|
|
next opcode in place before it is actually required for jumping.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
2015-02-06 18:11:52 +00:00
|
|
|
#if __YAP_TRACED
|
|
|
|
|
|
|
|
#define DO_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define DO_PREFETCH_W(TYPE)
|
|
|
|
|
|
|
|
#elif USE_THREADED_CODE
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
|
|
|
#if YAP_JIT
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define DO_PREFETCH(TYPE) \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
to_go = (void *)OpAddress[Yap_op_from_opcode(NEXTOP(PREG, TYPE)->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]; \
|
|
|
|
else \
|
|
|
|
to_go = (void *)(NEXTOP(PREG, TYPE)->opc);
|
|
|
|
|
|
|
|
#define DO_PREFETCH_W(TYPE) \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
to_go = \
|
|
|
|
(void *)OpAddress[Yap_op_from_opcode(NEXTOP(PREG, TYPE)->y_u.o.opcw) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]; \
|
|
|
|
else \
|
|
|
|
to_go = (void *)(NEXTOP(PREG, TYPE)->y_u.o.opcw);
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#else /* YAP_JIT */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define DO_PREFETCH(TYPE) to_go = (void *)(NEXTOP(PREG, TYPE)->opc)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define DO_PREFETCH_W(TYPE) to_go = (void *)(NEXTOP(PREG, TYPE)->y_u.o.opcw)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_JIT */
|
|
|
|
|
|
|
|
#else /* _NATIVE */
|
|
|
|
|
|
|
|
#define DO_PREFETCH(TYPE)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define DO_PREFETCH_W(TYPE)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* _NATIVE */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#if LIMITED_PREFETCH || USE_PREFETCH
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ALWAYS_START_PREFETCH(TYPE) \
|
|
|
|
{ \
|
|
|
|
register void *to_go; \
|
2016-10-20 04:44:59 +01:00
|
|
|
DO_PREFETCH(TYPE)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#if YAP_JIT
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ALWAYS_LOOKAHEAD(WHAT) \
|
|
|
|
{ \
|
|
|
|
register void *to_go; \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
to_go = (void *)OpAddress[Yap_op_from_opcode(WHAT) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]; \
|
|
|
|
else \
|
|
|
|
to_go = (void *)(WHAT);
|
2015-01-20 03:00:42 +00:00
|
|
|
#else /* YAP_JIT */
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ALWAYS_LOOKAHEAD(WHAT) \
|
|
|
|
{ \
|
|
|
|
register void *to_go = (void *)(WHAT);
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_JIT */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ALWAYS_START_PREFETCH_W(TYPE) \
|
|
|
|
{ \
|
|
|
|
register void *to_go; \
|
2016-10-20 04:44:59 +01:00
|
|
|
DO_PREFETCH_W(TYPE)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH(TYPE) {
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH_W(TYPE) {
|
|
|
|
|
|
|
|
#define ALWAYS_LOOKAHEAD(WHERE) {
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* LIMITED_PREFETCH||USE_PREFETCH */
|
|
|
|
|
|
|
|
#else /* _NATIVE */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#if LIMITED_PREFETCH || USE_PREFETCH
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define ALWAYS_LOOKAHEAD(WHAT)
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH_W(TYPE)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH_W(TYPE)
|
|
|
|
|
|
|
|
#define ALWAYS_LOOKAHEAD(WHERE)
|
|
|
|
|
|
|
|
#endif /* LIMITED_PREFETCH||USE_PREFETCH */
|
|
|
|
|
|
|
|
#endif /* _NATIVE */
|
|
|
|
|
|
|
|
#ifndef _NATIVE
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef USE_PREFETCH
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define START_PREFETCH(TYPE) ALWAYS_START_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define START_PREFETCH_W(TYPE) ALWAYS_START_PREFETCH_W(TYPE)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define INIT_PREFETCH() \
|
|
|
|
{ \
|
|
|
|
register void *to_go;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PREFETCH_OP(X) \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
to_go = (void *)OpAddress[Yap_op_from_opcode((X)->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]; \
|
|
|
|
else \
|
2015-01-20 03:00:42 +00:00
|
|
|
to_go = (void *)((X)->opc);
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define START_PREFETCH(TYPE) {
|
|
|
|
|
|
|
|
#define START_PREFETCH_W(TYPE) {
|
|
|
|
|
|
|
|
#define INIT_PREFETCH() {
|
|
|
|
|
|
|
|
#define PREFETCH_OP(X)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#endif /* USE_PREFETCH */
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#else /* _NATIVE */
|
|
|
|
|
|
|
|
#ifdef USE_PREFETCH
|
|
|
|
|
|
|
|
#define START_PREFETCH(TYPE) ALWAYS_START_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define START_PREFETCH_W(TYPE) ALWAYS_START_PREFETCH_W(TYPE)
|
|
|
|
|
|
|
|
#define INIT_PREFETCH()
|
|
|
|
|
|
|
|
#define PREFETCH_OP(X)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define START_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define START_PREFETCH_W(TYPE)
|
|
|
|
|
|
|
|
#define INIT_PREFETCH()
|
|
|
|
|
|
|
|
#define PREFETCH_OP(X)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#endif /* USE_PREFETCH */
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#endif /* _NATIVE */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else /* USE_THREADED_CODE */
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#define ALWAYS_START_PREFETCH(TYPE) {
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH_W(TYPE) {
|
|
|
|
|
|
|
|
#define ALWAYS_LOOKAHEAD(WHERE) {
|
|
|
|
|
|
|
|
#define START_PREFETCH(TYPE) {
|
|
|
|
|
|
|
|
#define START_PREFETCH_W(TYPE) {
|
|
|
|
|
|
|
|
#define INIT_PREFETCH() {
|
|
|
|
|
|
|
|
#define PREFETCH_OP(X)
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define ALWAYS_START_PREFETCH_W(TYPE)
|
|
|
|
|
|
|
|
#define ALWAYS_LOOKAHEAD(WHERE)
|
|
|
|
|
|
|
|
#define START_PREFETCH(TYPE)
|
|
|
|
|
|
|
|
#define START_PREFETCH_W(TYPE)
|
|
|
|
|
|
|
|
#define INIT_PREFETCH()
|
|
|
|
|
|
|
|
#define PREFETCH_OP(X)
|
|
|
|
|
|
|
|
#endif /* _NATIVE */
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif /* USE_THREADED_CODE */
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#define ALWAYS_END_PREFETCH() }
|
|
|
|
|
|
|
|
#define ALWAYS_END_PREFETCH_W() }
|
|
|
|
|
|
|
|
#define END_PREFETCH() }
|
|
|
|
|
|
|
|
#define END_PREFETCH_W() }
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define ALWAYS_END_PREFETCH()
|
|
|
|
|
|
|
|
#define ALWAYS_END_PREFETCH_W()
|
|
|
|
|
|
|
|
#define END_PREFETCH()
|
|
|
|
|
2015-02-06 18:11:52 +00:00
|
|
|
#define END_PREFETCH_W()
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#endif /* _NATIVE */
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/*****************************************************************
|
|
|
|
|
|
|
|
How to jump to the next abstract machine instruction
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
2015-02-06 18:11:52 +00:00
|
|
|
#if __YAP_TRACED
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMP(Lab) \
|
|
|
|
{ \
|
|
|
|
opcode = Yap_op_from_opcode(goto * Lab); \
|
|
|
|
goto op_switch; \
|
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMPNext(Lab) \
|
|
|
|
{ \
|
|
|
|
opcode = Yap_op_from_opcode(PREG->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement; \
|
|
|
|
goto op_switch; \
|
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMPNextW(Lab) \
|
|
|
|
{ \
|
|
|
|
opcode = Yap_op_from_opcode(PREG->opcw) + \
|
|
|
|
ExpEnv.config_struc.current_displacement; \
|
|
|
|
goto op_switch; \
|
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
|
|
|
#elif USE_THREADED_CODE
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
|
|
|
#define JMP(Lab) goto *Lab;
|
|
|
|
|
|
|
|
#if YAP_JIT
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMPNext() \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
JMP((void *)OpAddress[Yap_op_from_opcode(PREG->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]); \
|
|
|
|
JMP((void *)(PREG->opc));
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMPNextW() \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
JMP((void *)OpAddress[Yap_op_from_opcode(PREG->y_u.o.opcw) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]); \
|
|
|
|
JMP((void *)(PREG->y_u.o.opcw));
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#else /* YAP_JIT */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMPNext() JMP((void *)(PREG->opc));
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMPNextW() JMP((void *)(PREG->y_u.o.opcw));
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#endif /* YAP_JIT */
|
|
|
|
|
|
|
|
#else /* _NATIVE */
|
|
|
|
|
|
|
|
#if YAP_STAT_PREDS
|
|
|
|
|
|
|
|
#if YAP_DBG_PREDS
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SUCCESSBACK() \
|
|
|
|
{ \
|
|
|
|
if (Yap_op_from_opcode((*_PREG)->opc) == _jit_handler) { \
|
|
|
|
if ((*_PREG)->y_u.jhc.jh->caa.naddress != -1 && \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress] && \
|
|
|
|
NativeArea->area.ok[(*_PREG)->y_u.jhc.jh->caa.naddress]) { \
|
|
|
|
void *(*callee)(yamop **, yamop **, CELL **, void *[], void *[]); \
|
|
|
|
void *go; \
|
|
|
|
callee = (void *(*)(yamop **, yamop **, CELL **, void *[], void *[])) \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress]; \
|
|
|
|
go = (*callee)(&(*_PREG), &(*_CPREG), &(*_SREG), external_labels, \
|
|
|
|
OpAddress); \
|
|
|
|
return go; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_success != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_success != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_success); \
|
|
|
|
} \
|
|
|
|
HEADPREG->y_u.jhc.jh->jitman.torecomp = ExpEnv.config_struc.torecompile; \
|
|
|
|
NativeArea->success[HEADPREG->y_u.jhc.jh->caa.naddress] += 1; \
|
|
|
|
(ExpEnv.config_struc.torecompile) \
|
|
|
|
? (ExpEnv.config_struc.current_displacement = \
|
|
|
|
ExpEnv.config_struc.TOTAL_OF_OPCODES) \
|
|
|
|
: (ExpEnv.config_struc.current_displacement = 0); \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]); \
|
|
|
|
return ((void *)((*_PREG)->opc)); \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BACK() \
|
|
|
|
{ \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_fail != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_fail != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_fail); \
|
|
|
|
} \
|
|
|
|
return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc)]); \
|
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else /* YAP_DBG_PREDS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SUCCESSBACK() \
|
|
|
|
{ \
|
|
|
|
if (Yap_op_from_opcode((*_PREG)->opc) == _jit_handler) { \
|
|
|
|
if ((*_PREG)->y_u.jhc.jh->caa.naddress != -1 && \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress] && \
|
|
|
|
NativeArea->area.ok[(*_PREG)->y_u.jhc.jh->caa.naddress]) { \
|
|
|
|
void *(*callee)(yamop **, yamop **, CELL **, void *[], void *[]); \
|
|
|
|
void *go; \
|
|
|
|
callee = (void *(*)(yamop **, yamop **, CELL **, void *[], void *[])) \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress]; \
|
|
|
|
go = (*callee)(&(*_PREG), &(*_CPREG), &(*_SREG), external_labels, \
|
|
|
|
OpAddress); \
|
|
|
|
return go; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
HEADPREG->y_u.jhc.jh->jitman.torecomp = ExpEnv.config_struc.torecompile; \
|
|
|
|
NativeArea->success[HEADPREG->y_u.jhc.jh->caa.naddress] += 1; \
|
|
|
|
(ExpEnv.config_struc.torecompile) \
|
|
|
|
? (ExpEnv.config_struc.current_displacement = \
|
|
|
|
ExpEnv.config_struc.TOTAL_OF_OPCODES) \
|
|
|
|
: (ExpEnv.config_struc.current_displacement = 0); \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]); \
|
|
|
|
return ((void *)((*_PREG)->opc)); \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BACK() \
|
|
|
|
{ return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc)]); }
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_DBG_PREDS */
|
|
|
|
|
|
|
|
#else /* YAP_STAT_PREDS */
|
|
|
|
|
|
|
|
#if YAP_DBG_PREDS
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SUCCESSBACK() \
|
|
|
|
{ \
|
|
|
|
if (Yap_op_from_opcode((*_PREG)->opc) == _jit_handler) { \
|
|
|
|
if ((*_PREG)->y_u.jhc.jh->caa.naddress != -1 && \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress] && \
|
|
|
|
NativeArea->area.ok[(*_PREG)->y_u.jhc.jh->caa.naddress]) { \
|
|
|
|
void *(*callee)(yamop **, yamop **, CELL **, void *[], void *[]); \
|
|
|
|
void *go; \
|
|
|
|
callee = (void *(*)(yamop **, yamop **, CELL **, void *[], void *[])) \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress]; \
|
|
|
|
go = (*callee)(&(*_PREG), &(*_CPREG), &(*_SREG), external_labels, \
|
|
|
|
OpAddress); \
|
|
|
|
return go; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_success != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_success != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_success); \
|
|
|
|
} \
|
|
|
|
HEADPREG->y_u.jhc.jh->jitman.torecomp = ExpEnv.config_struc.torecompile; \
|
|
|
|
(ExpEnv.config_struc.torecompile) \
|
|
|
|
? (ExpEnv.config_struc.current_displacement = \
|
|
|
|
ExpEnv.config_struc.TOTAL_OF_OPCODES) \
|
|
|
|
: (ExpEnv.config_struc.current_displacement = 0); \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]); \
|
|
|
|
return ((void *)((*_PREG)->opc)); \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BACK() \
|
|
|
|
{ \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_fail != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_fail != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.nativerun_exit_by_fail); \
|
|
|
|
} \
|
|
|
|
return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc)]); \
|
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else /* YAP_DBG_PREDS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SUCCESSBACK() \
|
|
|
|
{ \
|
|
|
|
if (Yap_op_from_opcode((*_PREG)->opc) == _jit_handler) { \
|
|
|
|
if ((*_PREG)->y_u.jhc.jh->caa.naddress != -1 && \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress] && \
|
|
|
|
NativeArea->area.ok[(*_PREG)->y_u.jhc.jh->caa.naddress]) { \
|
|
|
|
void *(*callee)(yamop **, yamop **, CELL **, void *[], void *[]); \
|
|
|
|
void *go; \
|
|
|
|
callee = (void *(*)(yamop **, yamop **, CELL **, void *[], void *[])) \
|
|
|
|
NativeArea->area.p[(*_PREG)->y_u.jhc.jh->caa.naddress]; \
|
|
|
|
go = (*callee)(&(*_PREG), &(*_CPREG), &(*_SREG), external_labels, \
|
|
|
|
OpAddress); \
|
|
|
|
return go; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
HEADPREG->y_u.jhc.jh->jitman.torecomp = ExpEnv.config_struc.torecompile; \
|
|
|
|
(ExpEnv.config_struc.torecompile) \
|
|
|
|
? (ExpEnv.config_struc.current_displacement = \
|
|
|
|
ExpEnv.config_struc.TOTAL_OF_OPCODES) \
|
|
|
|
: (ExpEnv.config_struc.current_displacement = 0); \
|
|
|
|
if (ExpEnv.config_struc.current_displacement) \
|
|
|
|
return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc) + \
|
|
|
|
ExpEnv.config_struc.current_displacement]); \
|
|
|
|
return ((void *)((*_PREG)->opc)); \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BACK() \
|
|
|
|
{ return ((void *)OpAddress[Yap_op_from_opcode((*_PREG)->opc)]); }
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_DBG_PREDS */
|
|
|
|
|
|
|
|
#endif /* YAP_STAT_PREDS */
|
|
|
|
|
|
|
|
#define JMP(Lab)
|
|
|
|
|
|
|
|
#define JMPNext()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define JMPNextW()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* _NATIVE */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2011-10-02 23:55:22 +01:00
|
|
|
#if USE_THREADED_CODE && (LIMITED_PREFETCH || USE_PREFETCH)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ALWAYS_GONext() JMP(to_go)
|
|
|
|
|
|
|
|
#define ALWAYS_GONextW() JMP(to_go)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define ALWAYS_GONext() JMPNext()
|
|
|
|
|
|
|
|
#define ALWAYS_GONextW() JMPNextW()
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef USE_PREFETCH
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define GONext() ALWAYS_GONext()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define GONextW() ALWAYS_GONextW()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define GONext() JMPNext()
|
|
|
|
|
|
|
|
#define GONextW() JMPNextW()
|
|
|
|
|
|
|
|
#endif /* USE_PREFETCH */
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#if YAP_DBG_PREDS
|
|
|
|
|
|
|
|
#if YAP_JIT
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define Op(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
(ExpEnv.config_struc.current_displacement) \
|
|
|
|
? print_instruction(PREG, ON_PROFILED_INTERPRETER) \
|
|
|
|
: print_instruction(PREG, ON_INTERPRETER); \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH(Type)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpW(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
(ExpEnv.config_struc.current_displacement) \
|
|
|
|
? print_instruction(PREG, ON_PROFILED_INTERPRETER) \
|
|
|
|
: print_instruction(PREG, ON_INTERPRETER); \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH_W(Type)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BOp(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
(ExpEnv.config_struc.current_displacement) \
|
|
|
|
? print_instruction(PREG, ON_PROFILED_INTERPRETER) \
|
|
|
|
: print_instruction(PREG, ON_INTERPRETER);
|
|
|
|
|
|
|
|
#define PBOp(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
(ExpEnv.config_struc.current_displacement) \
|
|
|
|
? print_instruction(PREG, ON_PROFILED_INTERPRETER) \
|
|
|
|
: print_instruction(PREG, ON_INTERPRETER); \
|
2016-10-20 04:44:59 +01:00
|
|
|
INIT_PREFETCH()
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpRW(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
(ExpEnv.config_struc.current_displacement) \
|
|
|
|
? print_instruction(PREG, ON_PROFILED_INTERPRETER) \
|
|
|
|
: print_instruction(PREG, ON_INTERPRETER);
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#else /* YAP_JIT */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define Op(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
print_instruction(PREG, ON_INTERPRETER); \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH(Type)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpW(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
print_instruction(PREG, ON_INTERPRETER); \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH_W(Type)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BOp(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
print_instruction(PREG, ON_INTERPRETER);
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PBOp(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
print_instruction(PREG, ON_INTERPRETER); \
|
2016-10-20 04:44:59 +01:00
|
|
|
INIT_PREFETCH()
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpRW(Label, Type) \
|
|
|
|
_##Label : { \
|
|
|
|
print_instruction(PREG, ON_INTERPRETER);
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#endif /* YAP_JIT */
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else /* YAP_DBG_PREDS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define Op(Label, Type) \
|
|
|
|
_##Label : { \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH(Type)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpW(Label, Type) \
|
|
|
|
_##Label : { \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH_W(Type)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BOp(Label, Type) _##Label : {
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PBOp(Label, Type) \
|
|
|
|
_##Label : { \
|
2016-10-20 04:44:59 +01:00
|
|
|
INIT_PREFETCH()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpRW(Label, Type) _##Label : {
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#endif /* YAP_DBG_PREDS */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else /* do not use threaded code */
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define JMPNext() goto nextop
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define JMPNextW() goto nextop_write
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define GONext() JMPNext()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#define GONextW() JMPNextW()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define ALWAYS_GONext() GONext()
|
|
|
|
|
|
|
|
#define ALWAYS_GONextW() GONextW()
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define Op(Label, Type) \
|
|
|
|
case _##Label: { \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH(Type)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpW(Label, Type) \
|
|
|
|
case _##Label: { \
|
2016-10-20 04:44:59 +01:00
|
|
|
START_PREFETCH_W(Type)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define BOp(Label, Type) case _##Label: {
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PBOp(Label, Type) \
|
|
|
|
case _##Label: { \
|
2016-10-20 04:44:59 +01:00
|
|
|
INIT_PREFETCH()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define OpRW(Label, Type) case _##Label: {
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ENDOp() \
|
|
|
|
END_PREFETCH() \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ENDOpW() \
|
|
|
|
END_PREFETCH_W() \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2006-01-17 14:10:42 +00:00
|
|
|
#define ENDOpRW() }
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2006-01-17 14:10:42 +00:00
|
|
|
#define ENDBOp() }
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ENDPBOp() \
|
|
|
|
END_PREFETCH() \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* *
|
|
|
|
* PC manipulation *
|
|
|
|
* *
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* How to set up and move a PC in a nice and disciplined way
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
*/
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
typedef CELL label;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* move PC */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define ADJ(P, x) (P) + ADJUST(sizeof(x))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Lookup PredEntry Structure
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
*/
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define pred_entry(X) \
|
|
|
|
((PredEntry *)(Unsigned(X) - (CELL)(&(((PredEntry *)NULL)->StateOfPred))))
|
|
|
|
#define pred_entry_from_code(X) \
|
|
|
|
((PredEntry *)(Unsigned(X) - (CELL)(&(((PredEntry *)NULL)->CodeOfPred))))
|
|
|
|
#define PredFromDefCode(X) \
|
|
|
|
((PredEntry *)(Unsigned(X) - (CELL)(&(((PredEntry *)NULL)->OpcodeOfPred))))
|
|
|
|
#define PredFromExpandCode(X) \
|
|
|
|
((PredEntry *)(Unsigned(X) - \
|
|
|
|
(CELL)(&(((PredEntry *)NULL)->cs.p_code.ExpandCode))))
|
|
|
|
#define PredCode(X) pred_entry(X)->CodeOfPred
|
|
|
|
#define PredOpCode(X) pred_entry(X)->OpcodeOfPred
|
|
|
|
#define TruePredCode(X) pred_entry(X)->TrueCodeOfPred
|
|
|
|
#define PredFunctor(X) pred_entry(X)->FunctorOfPred
|
|
|
|
#define PredArity(X) pred_entry(X)->ArityOfPE
|
|
|
|
|
|
|
|
#define FlagOff(Mask, w) !(Mask & w)
|
|
|
|
#define FlagOn(Mask, w) (Mask & w)
|
|
|
|
#define ResetFlag(Mask, w) w &= ~Mask
|
|
|
|
#define SetFlag(Mask, w) w |= Mask
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* *
|
|
|
|
* X register access *
|
|
|
|
* *
|
|
|
|
**********************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#if PRECOMPUTE_REGADDRESS
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define XREG(I) (*(CELL *)(I))
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define XREG(I) XREGS[I]
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2004-01-23 02:23:51 +00:00
|
|
|
#endif /* PRECOMPUTE_REGADDRESS */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2005-12-23 00:20:14 +00:00
|
|
|
/* The Unification Stack is the Auxiliary stack */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define SP0 ((CELL *)AuxTop)
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SP AuxSp
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* *
|
|
|
|
* RWREG Manipulatio *
|
|
|
|
* *
|
|
|
|
**********************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define READ_MODE 1
|
|
|
|
#define WRITE_MODE 0
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* *
|
|
|
|
*Setting Temporary Copies of Often Used WAM registers for efficiency *
|
|
|
|
* *
|
|
|
|
**********************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#ifdef SHADOW_P
|
|
|
|
#define NEEDS_TO_SET_PC 1
|
|
|
|
#endif
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
/*
|
|
|
|
* First, the PC
|
|
|
|
*/
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef NEEDS_TO_SET_PC
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
2016-03-29 02:02:43 +01:00
|
|
|
#define set_pc() PREG = P
|
2015-01-20 03:00:42 +00:00
|
|
|
#define save_pc() P = PREG
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define set_pc() (*_PREG) = P
|
2015-01-20 03:00:42 +00:00
|
|
|
#define save_pc() P = (*_PREG)
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define set_pc()
|
|
|
|
#define save_pc()
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PREG (P)
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
/*
|
2001-04-09 20:54:03 +01:00
|
|
|
* Next, Y
|
|
|
|
*/
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef SHADOW_Y
|
2016-03-29 02:02:43 +01:00
|
|
|
#define set_y() YREG = YENV
|
|
|
|
#define save_y() YENV = YREG
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define set_y()
|
|
|
|
#define save_y()
|
2016-03-29 02:02:43 +01:00
|
|
|
#define YREG YENV
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
/*
|
2001-04-09 20:54:03 +01:00
|
|
|
* Next, CP
|
|
|
|
*/
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef SHADOW_CP
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
2016-03-29 02:02:43 +01:00
|
|
|
#define set_cp() CPREG = CP
|
2015-01-20 03:00:42 +00:00
|
|
|
#define save_cp() CP = CPREG
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define set_cp() (*_CPREG) = CP
|
2015-01-20 03:00:42 +00:00
|
|
|
#define save_cp() CP = (*_CPREG)
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define set_cp()
|
|
|
|
#define save_cp()
|
2016-03-29 02:02:43 +01:00
|
|
|
#define CPREG CP
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Say which registers must be saved at register entry and register
|
|
|
|
* exit */
|
2016-03-29 02:02:43 +01:00
|
|
|
#define setregs() \
|
|
|
|
set_hb(); \
|
|
|
|
set_cp(); \
|
|
|
|
set_pc(); \
|
2015-01-20 03:00:42 +00:00
|
|
|
set_y()
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define saveregs() \
|
|
|
|
save_hb(); \
|
|
|
|
save_cp(); \
|
|
|
|
save_pc(); \
|
2015-01-20 03:00:42 +00:00
|
|
|
save_y()
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2007-03-30 17:47:22 +01:00
|
|
|
#if BP_FREE
|
2016-03-29 02:02:43 +01:00
|
|
|
/* if we are using BP as a local register, we must save it whenever we leave
|
|
|
|
* absmi.c */
|
|
|
|
#define always_save_pc() save_pc()
|
|
|
|
#define always_set_pc() set_pc()
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define always_save_pc()
|
|
|
|
#define always_set_pc()
|
|
|
|
#endif /* BP_FREE */
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
|
|
|
|
Macros to check the limits of stacks
|
|
|
|
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
#if HAVE_SIGSEGV
|
|
|
|
/* for the moment I don't know how to handle trail overflows
|
2015-01-20 03:00:42 +00:00
|
|
|
in a pure Windows environment
|
2001-04-09 20:54:03 +01:00
|
|
|
*/
|
2016-03-29 02:02:43 +01:00
|
|
|
#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(THREADS) && \
|
|
|
|
!defined(YAPOR) && !defined(USE_SYSTEM_MALLOC) && !USE_DL_MALLOC
|
2001-04-09 20:54:03 +01:00
|
|
|
#define OS_HANDLES_TR_OVERFLOW 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef OS_HANDLES_TR_OVERFLOW
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2003-08-27 14:37:10 +01:00
|
|
|
#define check_trail(x)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2007-10-17 10:18:27 +01:00
|
|
|
#define check_trail_in_indexing(x)
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifdef _NATIVE
|
|
|
|
|
|
|
|
#if YAP_DBG_PREDS
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_trail(x) \
|
|
|
|
if (__builtin_expect((Unsigned(CurrentTrailTop) < Unsigned(x)), 0)) { \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.native_treat_trail != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.native_treat_trail != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.native_treat_trail); \
|
|
|
|
} \
|
|
|
|
return external_labels[9]; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else /* YAP_DBG_PREDS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_trail(x) \
|
|
|
|
if (__builtin_expect((Unsigned(CurrentTrailTop) < Unsigned(x)), 0)) { \
|
|
|
|
return external_labels[9]; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_DBG_PREDS */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_trail_in_indexing(x) \
|
|
|
|
if (__builtin_expect((Unsigned(CurrentTrailTop) < Unsigned(x)), 0)) \
|
|
|
|
goto notrailleft_from_index
|
2007-10-17 10:18:27 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#if YAP_DBG_PREDS
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_trail(x) \
|
|
|
|
if (__builtin_expect((Unsigned(CurrentTrailTop) < Unsigned(x)), 0)) { \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_trail != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_trail != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_trail); \
|
|
|
|
} \
|
|
|
|
goto notrailleft; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else /* YAP_DBG_PREDS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_trail(x) \
|
|
|
|
if (__builtin_expect((Unsigned(CurrentTrailTop) < Unsigned(x)), 0)) { \
|
|
|
|
goto notrailleft; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_DBG_PREDS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_trail_in_indexing(x) \
|
|
|
|
if (__builtin_expect((Unsigned(CurrentTrailTop) < Unsigned(x)), 0)) \
|
|
|
|
goto notrailleft_from_index
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#endif /* _NATIVE */
|
|
|
|
|
|
|
|
#endif /* OS_HANDLES_TR_OVERFLOW */
|
|
|
|
|
|
|
|
#if YAP_DBG_PREDS
|
|
|
|
#if (defined(YAPOR_SBA) && defined(YAPOR)) || defined(TABLING)
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_stack(Label, GLOB) \
|
|
|
|
if (__builtin_expect( \
|
|
|
|
((Int)(Unsigned(YOUNGEST_CP((choiceptr)ENV_YREG, B_FZ)) - \
|
|
|
|
Unsigned(YOUNGEST_H(H_FZ, GLOB))) < CreepFlag), \
|
|
|
|
0)) { \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_heap != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_heap != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_heap); \
|
|
|
|
} \
|
|
|
|
goto Label; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_stack(Label, GLOB) \
|
|
|
|
if (__builtin_expect( \
|
|
|
|
((Int)(Unsigned(ENV_YREG) - Unsigned(GLOB)) < CreepFlag), 0)) { \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_heap != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_heap != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_treat_heap); \
|
|
|
|
} \
|
|
|
|
goto Label; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#endif /* YAPOR_SBA && YAPOR */
|
2016-03-29 02:02:43 +01:00
|
|
|
#else /* YAP_DBG_PREDS */
|
2011-03-30 15:32:59 +01:00
|
|
|
#if (defined(YAPOR_SBA) && defined(YAPOR)) || defined(TABLING)
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_stack(Label, GLOB) \
|
|
|
|
if (__builtin_expect( \
|
|
|
|
((Int)(Unsigned(YOUNGEST_CP((choiceptr)ENV_YREG, B_FZ)) - \
|
|
|
|
Unsigned(YOUNGEST_H(H_FZ, GLOB))) < CreepFlag), \
|
|
|
|
0)) { \
|
|
|
|
goto Label; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_stack(Label, GLOB) \
|
|
|
|
if (__builtin_expect( \
|
|
|
|
((Int)(Unsigned(ENV_YREG) - Unsigned(GLOB)) < CreepFlag), 0)) { \
|
|
|
|
goto Label; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2011-03-30 15:32:59 +01:00
|
|
|
#endif /* YAPOR_SBA && YAPOR */
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_DBG_PREDS */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Macros for choice point manipulation *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Store variable number of arguments in a choice point *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
/***
|
2015-01-20 03:00:42 +00:00
|
|
|
pt1 points at the new choice point,
|
|
|
|
pt0 points at XREGS[i]
|
|
|
|
d0 is a counter
|
|
|
|
The macro just pushes the arguments one by one to the local stack.
|
2001-04-09 20:54:03 +01:00
|
|
|
***/
|
2016-03-29 02:02:43 +01:00
|
|
|
#define store_args(arity) \
|
|
|
|
BEGP(pt0); \
|
|
|
|
pt0 = XREGS + (arity); \
|
|
|
|
while (pt0 > XREGS) { \
|
|
|
|
register CELL x = pt0[0]; \
|
|
|
|
S_YREG = S_YREG - 1; \
|
|
|
|
--pt0; \
|
|
|
|
(S_YREG)[0] = x; \
|
|
|
|
} \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDP(pt0)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define store_at_least_one_arg(arity) \
|
|
|
|
BEGP(pt0); \
|
|
|
|
pt0 = XREGS + (arity); \
|
|
|
|
do { \
|
|
|
|
CELL x = pt0[0]; \
|
|
|
|
S_YREG = (S_YREG)-1; \
|
|
|
|
--pt0; \
|
|
|
|
(S_YREG)[0] = x; \
|
|
|
|
} while (pt0 > XREGS); \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDP(pt0)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2011-10-02 20:18:09 +01:00
|
|
|
#if LOW_LEVEL_TRACER && 0
|
2011-05-04 10:11:41 +01:00
|
|
|
#define COUNT_CPS() LOCAL_total_choicepoints++
|
2011-02-08 21:02:10 +00:00
|
|
|
#else
|
|
|
|
#define COUNT_CPS()
|
|
|
|
#endif
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Do the bulk of work in creating a choice-point *
|
|
|
|
* AP: alternative pointer *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
/*
|
|
|
|
* The macro just sets pt1 to point to the base of the choicepoint
|
|
|
|
* and then fills in all the necessary fields
|
|
|
|
*/
|
|
|
|
#ifdef DEPTH_LIMIT
|
|
|
|
#define store_yaam_reg_cpdepth(CPTR) (CPTR)->cp_depth = DEPTH
|
|
|
|
#else
|
|
|
|
#define store_yaam_reg_cpdepth(CPTR)
|
|
|
|
#endif
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
2016-03-29 02:02:43 +01:00
|
|
|
#define store_yaam_regs(AP, I) \
|
|
|
|
{ /* Jump to CP_BASE */ \
|
|
|
|
COUNT_CPS(); \
|
|
|
|
S_YREG = (CELL *)((choiceptr)((S_YREG) - (I)) - 1); \
|
|
|
|
/* Save Information */ \
|
|
|
|
HBREG = HR; \
|
|
|
|
B_YREG->cp_tr = TR; \
|
|
|
|
B_YREG->cp_h = HR; \
|
|
|
|
B_YREG->cp_b = B; \
|
|
|
|
store_yaam_reg_cpdepth(B_YREG); \
|
|
|
|
B_YREG->cp_cp = CPREG; \
|
|
|
|
B_YREG->cp_ap = AP; \
|
|
|
|
B_YREG->cp_env = ENV; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#else /* _NATIVE */
|
2016-03-29 02:02:43 +01:00
|
|
|
#define store_yaam_regs(AP, I) \
|
|
|
|
{ /* Jump to CP_BASE */ \
|
|
|
|
COUNT_CPS(); \
|
|
|
|
S_YREG = (CELL *)((choiceptr)((S_YREG) - (I)) - 1); \
|
|
|
|
/* Save Information */ \
|
|
|
|
HBREG = HR; \
|
|
|
|
B_YREG->cp_tr = TR; \
|
|
|
|
B_YREG->cp_h = HR; \
|
|
|
|
B_YREG->cp_b = B; \
|
|
|
|
store_yaam_reg_cpdepth(B_YREG); \
|
|
|
|
B_YREG->cp_cp = (*_CPREG); \
|
|
|
|
B_YREG->cp_ap = AP; \
|
|
|
|
B_YREG->cp_env = ENV; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define store_yaam_regs_for_either(AP, d0) \
|
|
|
|
COUNT_CPS(); \
|
|
|
|
pt1--; /* Jump to CP_BASE */ \
|
|
|
|
/* Save Information */ \
|
|
|
|
HBREG = HR; \
|
|
|
|
pt1->cp_tr = TR; \
|
|
|
|
pt1->cp_h = HR; \
|
|
|
|
pt1->cp_b = B; \
|
|
|
|
store_yaam_reg_cpdepth(pt1); \
|
|
|
|
pt1->cp_cp = d0; \
|
|
|
|
pt1->cp_ap = AP; \
|
2015-01-20 03:00:42 +00:00
|
|
|
pt1->cp_env = ENV;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Place B as the new place to cut to *
|
|
|
|
***************************************************************/
|
2016-03-29 02:02:43 +01:00
|
|
|
#define set_cut(E, B) (E)[E_CB] = (CELL)(B)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Restore WAM registers from a choice point *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#ifdef DEPTH_LIMIT
|
|
|
|
#define restore_yaam_reg_cpdepth(CPTR) DEPTH = (CPTR)->cp_depth
|
|
|
|
#else
|
|
|
|
#define restore_yaam_reg_cpdepth(CPTR)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef YAPOR
|
2016-03-29 02:02:43 +01:00
|
|
|
#define YAPOR_update_alternative(CUR_ALT, NEW_ALT) \
|
|
|
|
if (SCH_top_shared_cp(B)) { \
|
|
|
|
SCH_new_alternative(CUR_ALT, NEW_ALT); \
|
2015-01-20 03:00:42 +00:00
|
|
|
} else
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define YAPOR_update_alternative(CUR_ALT, NEW_ALT)
|
|
|
|
#endif /* YAPOR */
|
|
|
|
|
2001-07-04 17:48:54 +01:00
|
|
|
#if defined(FROZEN_STACKS) && !defined(BFZ_TRAIL_SCHEME)
|
2016-03-29 02:02:43 +01:00
|
|
|
#define SET_BB(V) BBREG = (V)
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define SET_BB(V)
|
2003-11-05 18:55:03 +00:00
|
|
|
#endif /* FROZEN_STACKS && !BFZ_TRAIL_SCHEME */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-07-04 17:48:54 +01:00
|
|
|
#ifdef FROZEN_STACKS
|
2011-03-30 15:32:59 +01:00
|
|
|
#ifdef YAPOR_SBA
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PROTECT_FROZEN_H(CPTR) \
|
|
|
|
((Unsigned((Int)((CPTR)->cp_h) - (Int)(H_FZ)) < \
|
|
|
|
Unsigned((Int)(B_FZ) - (Int)(H_FZ))) \
|
|
|
|
? (CPTR)->cp_h \
|
|
|
|
: H_FZ)
|
|
|
|
#define PROTECT_FROZEN_B(CPTR) \
|
|
|
|
((Unsigned((Int)(CPTR) - (Int)(H_FZ)) < Unsigned((Int)(B_FZ) - (Int)(H_FZ))) \
|
|
|
|
? (CPTR) \
|
|
|
|
: B_FZ)
|
2015-01-20 03:00:42 +00:00
|
|
|
/*
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PROTECT_FROZEN_H(CPTR) ((CPTR)->cp_h > H_FZ && (CPTR)->cp_h < (CELL
|
|
|
|
*)B_FZ ? (CPTR)->cp_h : H_FZ )
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PROTECT_FROZEN_B(CPTR) ((CPTR) < B_FZ && (CPTR) > (choiceptr)H_FZ ?
|
|
|
|
(CPTR) : B_FZ )
|
2015-01-20 03:00:42 +00:00
|
|
|
*/
|
2003-11-05 18:55:03 +00:00
|
|
|
#else /* TABLING */
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PROTECT_FROZEN_B(CPTR) (YOUNGER_CP(CPTR, B_FZ) ? CPTR : B_FZ)
|
|
|
|
#define PROTECT_FROZEN_H(CPTR) (((CPTR)->cp_h > H_FZ) ? (CPTR)->cp_h : H_FZ)
|
2011-03-30 15:32:59 +01:00
|
|
|
#endif /* YAPOR_SBA */
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PROTECT_FROZEN_B(CPTR) (CPTR)
|
|
|
|
#define PROTECT_FROZEN_H(CPTR) (CPTR)->cp_h
|
2003-11-05 18:55:03 +00:00
|
|
|
#endif /* FROZEN_STACKS */
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
2016-03-29 02:02:43 +01:00
|
|
|
#define restore_yaam_regs(AP) \
|
|
|
|
{ \
|
|
|
|
register CELL *x1 = B_YREG->cp_env; \
|
|
|
|
register yamop *x2; \
|
|
|
|
HR = HBREG = PROTECT_FROZEN_H(B_YREG); \
|
|
|
|
restore_yaam_reg_cpdepth(B_YREG); \
|
|
|
|
CPREG = B_YREG->cp_cp; \
|
|
|
|
/* AP may depend on H */ \
|
|
|
|
x2 = (yamop *)AP; \
|
|
|
|
ENV = x1; \
|
|
|
|
YAPOR_update_alternative(PREG, x2) B_YREG->cp_ap = x2; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define restore_yaam_regs(AP) \
|
|
|
|
{ \
|
|
|
|
register CELL *x1 = B_YREG->cp_env; \
|
|
|
|
register yamop *x2; \
|
|
|
|
H = HBREG = PROTECT_FROZEN_H(B_YREG); \
|
|
|
|
restore_yaam_reg_cpdepth(B_YREG); \
|
|
|
|
(*_CPREG) = B_YREG->cp_cp; \
|
|
|
|
/* AP may depend on H */ \
|
|
|
|
x2 = (yamop *)AP; \
|
|
|
|
ENV = x1; \
|
|
|
|
YAPOR_update_alternative((*_PREG), x2) B_YREG->cp_ap = x2; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Restore variable number of arguments from a choice point *
|
|
|
|
***************************************************************/
|
2016-03-29 02:02:43 +01:00
|
|
|
#define restore_args(Nargs) \
|
|
|
|
BEGD(d0); \
|
|
|
|
d0 = Nargs; \
|
|
|
|
BEGP(pt0); \
|
|
|
|
BEGP(pt1); \
|
|
|
|
pt1 = (CELL *)(B_YREG + 1) + d0; \
|
|
|
|
pt0 = XREGS + 1 + d0; \
|
|
|
|
while (pt0 > XREGS + 1) { \
|
|
|
|
register CELL x = pt1[-1]; \
|
|
|
|
--pt0; \
|
|
|
|
--pt1; \
|
|
|
|
*pt0 = x; \
|
|
|
|
} \
|
|
|
|
ENDP(pt1); \
|
|
|
|
ENDP(pt0); \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDD(d0)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define restore_at_least_one_arg(Nargs) \
|
|
|
|
BEGD(d0); \
|
|
|
|
d0 = Nargs; \
|
|
|
|
BEGP(pt0); \
|
|
|
|
BEGP(pt1); \
|
|
|
|
pt1 = (CELL *)(B_YREG + 1) + d0; \
|
|
|
|
pt0 = XREGS + 1 + d0; \
|
|
|
|
do { \
|
|
|
|
register CELL x = pt1[-1]; \
|
|
|
|
--pt0; \
|
|
|
|
--pt1; \
|
|
|
|
*pt0 = x; \
|
|
|
|
} while (pt0 > XREGS + 1); \
|
|
|
|
ENDP(pt1); \
|
|
|
|
ENDP(pt0); \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDD(d0)
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/***************************************************************
|
2015-01-20 03:00:42 +00:00
|
|
|
* Execute trust to release YAAM registers and pop choice point *
|
|
|
|
***************************************************************/
|
2001-04-09 20:54:03 +01:00
|
|
|
#ifdef DEPTH_LIMIT
|
|
|
|
#define pop_yaam_reg_cpdepth(CPTR) DEPTH = (CPTR)->cp_depth
|
|
|
|
#else
|
|
|
|
#define pop_yaam_reg_cpdepth(CPTR)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TABLING
|
2009-07-31 14:31:17 +01:00
|
|
|
#define TABLING_close_alt(CPTR) (CPTR)->cp_ap = NULL
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define TABLING_close_alt(CPTR)
|
|
|
|
#endif /* TABLING */
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
2016-03-29 02:02:43 +01:00
|
|
|
#define pop_yaam_regs() \
|
|
|
|
{ \
|
|
|
|
HR = PROTECT_FROZEN_H(B_YREG); \
|
|
|
|
B = B_YREG->cp_b; \
|
|
|
|
pop_yaam_reg_cpdepth(B_YREG); \
|
|
|
|
CPREG = B_YREG->cp_cp; \
|
|
|
|
ENV = B_YREG->cp_env; \
|
|
|
|
TABLING_close_alt(B_YREG); \
|
|
|
|
HBREG = PROTECT_FROZEN_H(B); \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define pop_yaam_regs() \
|
|
|
|
{ \
|
|
|
|
HR = PROTECT_FROZEN_H(B_YREG); \
|
|
|
|
B = B_YREG->cp_b; \
|
|
|
|
pop_yaam_reg_cpdepth(B_YREG); \
|
|
|
|
(*_CPREG) = B_YREG->cp_cp; \
|
|
|
|
ENV = B_YREG->cp_env; \
|
|
|
|
TABLING_close_alt(B_YREG); \
|
|
|
|
HBREG = PROTECT_FROZEN_H(B); \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define pop_args(NArgs) \
|
|
|
|
BEGD(d0); \
|
|
|
|
d0 = (NArgs); \
|
|
|
|
BEGP(pt0); \
|
|
|
|
BEGP(pt1); \
|
|
|
|
S_YREG = (CELL *)(B_YREG + 1); \
|
|
|
|
pt0 = XREGS + 1; \
|
|
|
|
pt1 = S_YREG; \
|
|
|
|
while (pt0 < XREGS + 1 + d0) { \
|
|
|
|
register CELL x = pt1[0]; \
|
|
|
|
pt1++; \
|
|
|
|
pt0++; \
|
|
|
|
pt0[-1] = x; \
|
|
|
|
} \
|
|
|
|
S_YREG = pt1; \
|
|
|
|
ENDP(pt1); \
|
|
|
|
ENDP(pt0); \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDD(d0);
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define pop_at_least_one_arg(NArgs) \
|
|
|
|
BEGD(d0); \
|
|
|
|
d0 = (NArgs); \
|
|
|
|
BEGP(pt0); \
|
|
|
|
BEGP(pt1); \
|
|
|
|
pt1 = (CELL *)(B_YREG + 1); \
|
|
|
|
pt0 = XREGS + 1; \
|
|
|
|
do { \
|
|
|
|
register CELL x = pt1[0]; \
|
|
|
|
pt1++; \
|
|
|
|
pt0++; \
|
|
|
|
pt0[-1] = x; \
|
|
|
|
} while (pt0 < XREGS + 1 + d0); \
|
|
|
|
S_YREG = pt1; \
|
|
|
|
ENDP(pt1); \
|
|
|
|
ENDP(pt0); \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDD(d0);
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* *
|
|
|
|
* failure and backtracking *
|
|
|
|
* *
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
/* Failure can be called from two routines.
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
* If from within the emulator, we should jump to the label fail.
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
* If from within the complex-term unification routine, we should jump
|
|
|
|
* to the label "cufail".
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
*/
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#ifndef _NATIVE
|
|
|
|
|
|
|
|
#if YAP_DBG_PREDS
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define FAIL() \
|
|
|
|
{ \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.interpreted_backtrack != 0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_backtrack != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.interpreted_backtrack); \
|
|
|
|
} \
|
|
|
|
goto fail; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define TRACED_FAIL() \
|
|
|
|
{ \
|
|
|
|
if ((char *)ExpEnv.debug_struc.pprint_me.profiled_interpreted_backtrack != \
|
|
|
|
0 && \
|
|
|
|
(char *)ExpEnv.debug_struc.pprint_me.profiled_interpreted_backtrack != \
|
|
|
|
(char *)0x1) { \
|
|
|
|
fprintf(stderr, "%s:%d\n", __FILE__, __LINE__); \
|
|
|
|
fprintf(stderr, "%s", (char *)ExpEnv.debug_struc.pprint_me \
|
|
|
|
.profiled_interpreted_backtrack); \
|
|
|
|
} \
|
|
|
|
goto traced_fail; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#else /* YAP_DBG_PREDS */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define FAIL() \
|
|
|
|
{ goto fail; }
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define TRACED_FAIL() \
|
|
|
|
{ goto traced_fail; }
|
2015-02-06 18:11:52 +00:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_DBG_PREDS */
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define FAIL() \
|
|
|
|
{ return external_labels[0]; }
|
2015-01-20 03:00:42 +00:00
|
|
|
|
|
|
|
#endif
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* *
|
|
|
|
* unification routines *
|
|
|
|
* *
|
|
|
|
**********************************************************************/
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define UnifyGlobalCells(a, b) \
|
|
|
|
if ((b) > (a)) { \
|
|
|
|
if (GlobalIsAttVar(b) && !GlobalIsAttVar(a)) { \
|
|
|
|
Bind_Global((a), (CELL)(b)); \
|
|
|
|
} else { \
|
|
|
|
Bind_Global((b), (CELL)(a)); \
|
|
|
|
} \
|
|
|
|
} else if ((b) < (a)) { \
|
|
|
|
if (GlobalIsAttVar(a) && !GlobalIsAttVar(b)) { \
|
|
|
|
Bind_Global((b), (CELL)(a)); \
|
|
|
|
} else { \
|
|
|
|
Bind_Global((a), (CELL)(b)); \
|
|
|
|
} \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2011-03-18 19:34:58 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define UnifyGlobalCellToCell(b, a) \
|
|
|
|
if ((a) < HR) { /* two globals */ \
|
|
|
|
UnifyGlobalCells(a, b); \
|
|
|
|
} else { \
|
|
|
|
Bind_Local((a), (CELL)(b)); \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define UnifyCells(a, b) \
|
|
|
|
if ((a) < HR) { /* at least one global */ \
|
|
|
|
if ((b) > HR) { \
|
|
|
|
Bind_Local((b), (CELL)(a)); \
|
|
|
|
} else { \
|
|
|
|
UnifyGlobalCells(a, b); \
|
|
|
|
} \
|
|
|
|
} else { \
|
|
|
|
if ((b) > (a)) { \
|
|
|
|
Bind_Local((a), (CELL)(b)); \
|
|
|
|
} else if ((a) > (b)) { \
|
|
|
|
if ((b) < HR) { \
|
|
|
|
Bind_Local((a), (CELL)(b)); \
|
|
|
|
} else { \
|
|
|
|
Bind_Local((b), (CELL)(a)); \
|
|
|
|
} \
|
|
|
|
} \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* unify two complex terms.
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
* I use two stacks: one keeps the visited terms, and the other keeps the
|
|
|
|
* terms to visit.
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
* The terms-to-visit stack is used to implement traditional
|
|
|
|
* recursion. The visited-terms-stack is used to link structures already
|
|
|
|
* visited and allows unification of infinite terms
|
2015-01-20 03:00:42 +00:00
|
|
|
*
|
2001-04-09 20:54:03 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define UNWIND_CUNIF() \
|
|
|
|
while (visited < AuxSp) { \
|
|
|
|
pt1 = (CELL *)visited[0]; \
|
|
|
|
*pt1 = visited[1]; \
|
|
|
|
visited += 2; \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
#define UNWIND_CUNIF()
|
|
|
|
#endif
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define UnifyBound_TEST_ATTACHED(f, d0, pt0, d1) \
|
|
|
|
if (IsExtensionFunctor(f)) { \
|
|
|
|
if (unify_extension(f, d0, RepAppl(d0), d1)) { \
|
|
|
|
GONext(); \
|
|
|
|
} else { \
|
|
|
|
FAIL(); \
|
|
|
|
} \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define UnifyBound(d0, d1) \
|
|
|
|
if (d0 == d1) { \
|
|
|
|
GONext(); \
|
|
|
|
} \
|
|
|
|
if (IsPairTerm(d0)) { \
|
|
|
|
register CELL *ipt0, *ipt1; \
|
|
|
|
if (!IsPairTerm(d1)) { \
|
|
|
|
FAIL(); \
|
|
|
|
} \
|
|
|
|
ipt0 = RepPair(d0); \
|
|
|
|
ipt1 = RepPair(d1); \
|
|
|
|
save_hb(); \
|
|
|
|
always_save_pc(); \
|
|
|
|
if (IUnify_complex(ipt0 - 1, ipt0 + 1, ipt1 - 1)) { \
|
|
|
|
always_set_pc(); \
|
|
|
|
GONext(); \
|
|
|
|
} else { \
|
|
|
|
FAIL(); \
|
|
|
|
} \
|
|
|
|
} else if (IsApplTerm(d0)) { \
|
|
|
|
register CELL *ipt0, *ipt1; \
|
|
|
|
register Functor f; \
|
|
|
|
if (!IsApplTerm(d1)) { \
|
|
|
|
FAIL(); \
|
|
|
|
} \
|
|
|
|
ipt0 = RepAppl(d0); \
|
|
|
|
ipt1 = RepAppl(d1); \
|
|
|
|
f = (Functor)*ipt0; \
|
|
|
|
if (f != (Functor)*ipt1) { \
|
|
|
|
FAIL(); \
|
|
|
|
} \
|
|
|
|
UnifyBound_TEST_ATTACHED(f, d0, ipt0, d1); \
|
|
|
|
d0 = ArityOfFunctor(f); \
|
|
|
|
always_save_pc(); \
|
|
|
|
save_hb(); \
|
|
|
|
if (IUnify_complex(ipt0, ipt0 + d0, ipt1)) { \
|
|
|
|
always_set_pc(); \
|
|
|
|
GONext(); \
|
|
|
|
} else { \
|
|
|
|
FAIL(); \
|
|
|
|
} \
|
|
|
|
} else { \
|
|
|
|
FAIL(); \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define traced_UnifyBound_TEST_ATTACHED(f, d0, pt0, d1) \
|
|
|
|
if (IsExtensionFunctor(f)) { \
|
|
|
|
if (unify_extension(f, d0, RepAppl(d0), d1)) { \
|
|
|
|
GONext(); \
|
|
|
|
} else { \
|
|
|
|
TRACED_FAIL(); \
|
|
|
|
} \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#define traced_UnifyBound(d0, d1) \
|
|
|
|
if (d0 == d1) { \
|
|
|
|
GONext(); \
|
|
|
|
} \
|
|
|
|
if (IsPairTerm(d0)) { \
|
|
|
|
register CELL *ipt0, *ipt1; \
|
|
|
|
if (!IsPairTerm(d1)) { \
|
|
|
|
TRACED_FAIL(); \
|
|
|
|
} \
|
|
|
|
ipt0 = RepPair(d0); \
|
|
|
|
ipt1 = RepPair(d1); \
|
|
|
|
save_hb(); \
|
|
|
|
always_save_pc(); \
|
|
|
|
if (IUnify_complex(ipt0 - 1, ipt0 + 1, ipt1 - 1)) { \
|
|
|
|
always_set_pc(); \
|
|
|
|
GONext(); \
|
|
|
|
} else { \
|
|
|
|
TRACED_FAIL(); \
|
|
|
|
} \
|
|
|
|
} else if (IsApplTerm(d0)) { \
|
|
|
|
register CELL *ipt0, *ipt1; \
|
|
|
|
register Functor f; \
|
|
|
|
if (!IsApplTerm(d1)) { \
|
|
|
|
TRACED_FAIL(); \
|
|
|
|
} \
|
|
|
|
ipt0 = RepAppl(d0); \
|
|
|
|
ipt1 = RepAppl(d1); \
|
|
|
|
f = (Functor)*ipt0; \
|
|
|
|
if (f != (Functor)*ipt1) { \
|
|
|
|
TRACED_FAIL(); \
|
|
|
|
} \
|
|
|
|
traced_UnifyBound_TEST_ATTACHED(f, d0, ipt0, d1); \
|
|
|
|
d0 = ArityOfFunctor(f); \
|
|
|
|
always_save_pc(); \
|
|
|
|
save_hb(); \
|
|
|
|
if (IUnify_complex(ipt0, ipt0 + d0, ipt1)) { \
|
|
|
|
always_set_pc(); \
|
|
|
|
GONext(); \
|
|
|
|
} else { \
|
|
|
|
TRACED_FAIL(); \
|
|
|
|
} \
|
|
|
|
} else { \
|
|
|
|
TRACED_FAIL(); \
|
|
|
|
}
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
/*
|
2001-04-09 20:54:03 +01:00
|
|
|
* Next, HB
|
|
|
|
*/
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef SHADOW_HB
|
2001-04-09 20:54:03 +01:00
|
|
|
#undef HBREG
|
2016-03-29 02:02:43 +01:00
|
|
|
#define set_hb() HBREG = HB
|
2015-01-20 03:00:42 +00:00
|
|
|
#define save_hb() HB = HBREG
|
2001-04-09 20:54:03 +01:00
|
|
|
#else
|
|
|
|
#define set_hb()
|
|
|
|
#define save_hb()
|
|
|
|
#endif
|
|
|
|
|
2009-05-23 00:35:24 +01:00
|
|
|
typedef struct unif_record {
|
|
|
|
CELL *ptr;
|
|
|
|
Term old;
|
|
|
|
} unif_record;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2009-05-23 00:35:24 +01:00
|
|
|
typedef struct v_record {
|
2009-05-22 21:21:14 +01:00
|
|
|
CELL *start0;
|
|
|
|
CELL *end0;
|
|
|
|
CELL *start1;
|
|
|
|
Term old;
|
2009-05-23 00:35:24 +01:00
|
|
|
} v_record;
|
2009-05-22 21:21:14 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
#if defined(IN_ABSMI_C) || defined(IN_UNIFY_C) || defined(IN_TRACED_ABSMI_C)
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
static int IUnify_complex(CELL *pt0, CELL *pt0_end, CELL *pt1) {
|
2011-03-07 16:02:55 +00:00
|
|
|
CACHE_REGS
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef THREADS
|
2004-02-05 16:57:02 +00:00
|
|
|
#undef Yap_REGS
|
2016-03-29 02:02:43 +01:00
|
|
|
register REGSTORE *regp = Yap_regp;
|
2004-02-05 16:57:02 +00:00
|
|
|
#define Yap_REGS (*regp)
|
2008-03-25 22:03:14 +00:00
|
|
|
#elif defined(SHADOW_REGS)
|
2002-11-11 17:38:10 +00:00
|
|
|
#if defined(B) || defined(TR)
|
2002-11-18 18:18:05 +00:00
|
|
|
register REGSTORE *regp = &Yap_REGS;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2002-11-18 18:18:05 +00:00
|
|
|
#define Yap_REGS (*regp)
|
2002-11-11 17:38:10 +00:00
|
|
|
#endif /* defined(B) || defined(TR) || defined(HB) */
|
|
|
|
#endif
|
|
|
|
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef SHADOW_HB
|
2002-11-11 17:38:10 +00:00
|
|
|
register CELL *HBREG = HB;
|
|
|
|
#endif /* SHADOW_HB */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
struct unif_record *unif = (struct unif_record *)AuxBase;
|
|
|
|
struct v_record *to_visit = (struct v_record *)AuxSp;
|
2009-05-23 00:35:24 +01:00
|
|
|
#define unif_base ((struct unif_record *)AuxBase)
|
|
|
|
#define to_visit_base ((struct v_record *)AuxSp)
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
loop:
|
2002-11-11 17:38:10 +00:00
|
|
|
while (pt0 < pt0_end) {
|
2016-03-29 02:02:43 +01:00
|
|
|
register CELL *ptd0 = pt0 + 1;
|
2002-11-11 17:38:10 +00:00
|
|
|
register CELL d0;
|
|
|
|
|
|
|
|
++pt1;
|
|
|
|
pt0 = ptd0;
|
|
|
|
d0 = *ptd0;
|
|
|
|
deref_head(d0, unify_comp_unk);
|
2016-03-29 02:02:43 +01:00
|
|
|
unify_comp_nvar : {
|
|
|
|
register CELL *ptd1 = pt1;
|
|
|
|
register CELL d1 = *ptd1;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
deref_head(d1, unify_comp_nvar_unk);
|
|
|
|
unify_comp_nvar_nvar:
|
|
|
|
if (d0 == d1)
|
|
|
|
continue;
|
|
|
|
if (IsPairTerm(d0)) {
|
|
|
|
if (!IsPairTerm(d1)) {
|
|
|
|
goto cufail;
|
|
|
|
}
|
|
|
|
/* now link the two structures so that no one else will */
|
|
|
|
/* come here */
|
|
|
|
/* store the terms to visit */
|
|
|
|
if (RATIONAL_TREES || pt0 < pt0_end) {
|
|
|
|
to_visit--;
|
2009-05-23 00:35:24 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
2016-03-29 02:02:43 +01:00
|
|
|
unif++;
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif
|
2016-03-29 02:02:43 +01:00
|
|
|
if ((void *)to_visit < (void *)unif) {
|
|
|
|
CELL **urec = (CELL **)unif;
|
|
|
|
to_visit = (struct v_record *)Yap_shift_visit((CELL **)to_visit,
|
|
|
|
&urec, NULL);
|
|
|
|
unif = (struct unif_record *)urec;
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
to_visit->start0 = pt0;
|
|
|
|
to_visit->end0 = pt0_end;
|
|
|
|
to_visit->start1 = pt1;
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
unif[-1].old = *pt0;
|
|
|
|
unif[-1].ptr = pt0;
|
|
|
|
*pt0 = d1;
|
|
|
|
#endif
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
pt0_end = (pt0 = RepPair(d0) - 1) + 2;
|
|
|
|
pt1 = RepPair(d1) - 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (IsApplTerm(d0)) {
|
|
|
|
register Functor f;
|
|
|
|
register CELL *ap2, *ap3;
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
if (!IsApplTerm(d1)) {
|
|
|
|
goto cufail;
|
|
|
|
}
|
|
|
|
/* store the terms to visit */
|
|
|
|
ap2 = RepAppl(d0);
|
|
|
|
ap3 = RepAppl(d1);
|
|
|
|
f = (Functor)(*ap2);
|
|
|
|
/* compare functors */
|
|
|
|
if (f != (Functor)*ap3)
|
|
|
|
goto cufail;
|
|
|
|
if (IsExtensionFunctor(f)) {
|
|
|
|
if (unify_extension(f, d0, ap2, d1))
|
|
|
|
continue;
|
|
|
|
goto cufail;
|
|
|
|
}
|
|
|
|
/* now link the two structures so that no one else will */
|
|
|
|
/* come here */
|
|
|
|
/* store the terms to visit */
|
|
|
|
if (RATIONAL_TREES || pt0 < pt0_end) {
|
|
|
|
to_visit--;
|
2009-05-23 00:35:24 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
2016-03-29 02:02:43 +01:00
|
|
|
unif++;
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif
|
2016-03-29 02:02:43 +01:00
|
|
|
if ((void *)to_visit < (void *)unif) {
|
|
|
|
CELL **urec = (CELL **)unif;
|
|
|
|
to_visit = (struct v_record *)Yap_shift_visit((CELL **)to_visit,
|
|
|
|
&urec, NULL);
|
|
|
|
unif = (struct unif_record *)urec;
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
to_visit->start0 = pt0;
|
|
|
|
to_visit->end0 = pt0_end;
|
|
|
|
to_visit->start1 = pt1;
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
unif[-1].old = *pt0;
|
|
|
|
unif[-1].ptr = pt0;
|
|
|
|
*pt0 = d1;
|
|
|
|
#endif
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
d0 = ArityOfFunctor(f);
|
|
|
|
pt0 = ap2;
|
|
|
|
pt0_end = ap2 + d0;
|
|
|
|
pt1 = ap3;
|
2011-03-18 19:34:58 +00:00
|
|
|
continue;
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
goto cufail;
|
|
|
|
|
|
|
|
derefa_body(d1, ptd1, unify_comp_nvar_unk, unify_comp_nvar_nvar);
|
|
|
|
/* d1 and pt2 have the unbound value, whereas d0 is bound */
|
|
|
|
Bind_Global(ptd1, d0);
|
|
|
|
continue;
|
|
|
|
}
|
2002-11-11 17:38:10 +00:00
|
|
|
|
|
|
|
derefa_body(d0, ptd0, unify_comp_unk, unify_comp_nvar);
|
|
|
|
/* first arg var */
|
|
|
|
{
|
|
|
|
register CELL d1;
|
|
|
|
register CELL *ptd1;
|
|
|
|
|
|
|
|
ptd1 = pt1;
|
|
|
|
d1 = ptd1[0];
|
|
|
|
/* pt2 is unbound */
|
|
|
|
deref_head(d1, unify_comp_var_unk);
|
|
|
|
unify_comp_var_nvar:
|
|
|
|
/* pt2 is unbound and d1 is bound */
|
2011-03-18 19:34:58 +00:00
|
|
|
Bind_Global(ptd0, d1);
|
|
|
|
continue;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
|
|
|
derefa_body(d1, ptd1, unify_comp_var_unk, unify_comp_var_nvar);
|
|
|
|
/* ptd0 and ptd1 are unbound */
|
|
|
|
UnifyGlobalCells(ptd0, ptd1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Do we still have compound terms to visit */
|
2004-02-05 16:57:02 +00:00
|
|
|
if (to_visit < to_visit_base) {
|
2009-05-22 21:21:14 +01:00
|
|
|
pt0 = to_visit->start0;
|
|
|
|
pt0_end = to_visit->end0;
|
|
|
|
pt1 = to_visit->start1;
|
2009-05-23 00:35:24 +01:00
|
|
|
to_visit++;
|
2002-11-11 17:38:10 +00:00
|
|
|
goto loop;
|
|
|
|
}
|
2009-05-23 00:35:24 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
/* restore bindigs */
|
|
|
|
while (unif-- != unif_base) {
|
|
|
|
CELL *pt0;
|
|
|
|
|
|
|
|
pt0 = unif->ptr;
|
|
|
|
*pt0 = unif->old;
|
|
|
|
}
|
|
|
|
#endif
|
2009-05-22 21:21:14 +01:00
|
|
|
return TRUE;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
cufail:
|
2002-11-11 17:38:10 +00:00
|
|
|
#ifdef RATIONAL_TREES
|
2009-05-23 00:35:24 +01:00
|
|
|
/* restore bindigs */
|
|
|
|
while (unif-- != unif_base) {
|
2002-11-11 17:38:10 +00:00
|
|
|
CELL *pt0;
|
2009-05-22 21:21:14 +01:00
|
|
|
|
2009-05-23 00:35:24 +01:00
|
|
|
pt0 = unif->ptr;
|
|
|
|
*pt0 = unif->old;
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-05-22 21:21:14 +01:00
|
|
|
return FALSE;
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef THREADS
|
2004-02-05 16:57:02 +00:00
|
|
|
#undef Yap_REGS
|
2015-02-06 18:11:52 +00:00
|
|
|
#define Yap_REGS (*Yap_regp)
|
2008-03-25 22:03:14 +00:00
|
|
|
#elif defined(SHADOW_REGS)
|
2002-11-11 17:38:10 +00:00
|
|
|
#if defined(B) || defined(TR)
|
2002-11-18 18:18:05 +00:00
|
|
|
#undef Yap_REGS
|
2002-11-11 17:38:10 +00:00
|
|
|
#endif /* defined(B) || defined(TR) */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-08-15 15:16:38 +01:00
|
|
|
/* don't pollute name space */
|
|
|
|
#undef to_visit_base
|
2009-05-23 00:35:24 +01:00
|
|
|
#undef unif_base
|
2005-08-15 15:16:38 +01:00
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
#endif
|
|
|
|
|
2016-10-20 04:44:59 +01:00
|
|
|
#if /* defined(IN_ABSMI_C) ||*/ defined( \
|
|
|
|
IN_INLINES_C) /*|| defined(IN_TRACED_ABSMI_C) */
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
static int iequ_complex(register CELL *pt0, register CELL *pt0_end,
|
|
|
|
register CELL *pt1) {
|
2015-01-20 03:00:42 +00:00
|
|
|
CACHE_REGS
|
2010-07-29 22:36:30 +01:00
|
|
|
#ifdef THREADS
|
|
|
|
#undef Yap_REGS
|
2016-03-29 02:02:43 +01:00
|
|
|
register REGSTORE *regp = Yap_regp;
|
2010-07-29 22:36:30 +01:00
|
|
|
#define Yap_REGS (*regp)
|
|
|
|
#elif defined(SHADOW_REGS)
|
|
|
|
#if defined(B) || defined(TR)
|
|
|
|
register REGSTORE *regp = &Yap_REGS;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2010-07-29 22:36:30 +01:00
|
|
|
#define Yap_REGS (*regp)
|
|
|
|
#endif /* defined(B) || defined(TR) || defined(HB) */
|
2002-11-11 17:38:10 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-29 22:36:30 +01:00
|
|
|
#ifdef SHADOW_HB
|
|
|
|
register CELL *HBREG = HB;
|
|
|
|
#endif /* SHADOW_HB */
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
struct unif_record *unif = (struct unif_record *)AuxBase;
|
|
|
|
struct v_record *to_visit = (struct v_record *)AuxSp;
|
2010-07-29 22:36:30 +01:00
|
|
|
#define unif_base ((struct unif_record *)AuxBase)
|
|
|
|
#define to_visit_base ((struct v_record *)AuxSp)
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
loop:
|
2002-11-11 17:38:10 +00:00
|
|
|
while (pt0 < pt0_end) {
|
2016-03-29 02:02:43 +01:00
|
|
|
register CELL *ptd0 = pt0 + 1;
|
2010-07-29 22:36:30 +01:00
|
|
|
register CELL d0;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
|
|
|
++pt1;
|
2010-07-29 22:36:30 +01:00
|
|
|
pt0 = ptd0;
|
|
|
|
d0 = *ptd0;
|
|
|
|
deref_head(d0, iequ_comp_unk);
|
2016-03-29 02:02:43 +01:00
|
|
|
iequ_comp_nvar : {
|
|
|
|
register CELL *ptd1 = pt1;
|
|
|
|
register CELL d1 = *ptd1;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
deref_head(d1, iequ_comp_nvar_unk);
|
|
|
|
iequ_comp_nvar_nvar:
|
|
|
|
if (d0 == d1)
|
|
|
|
continue;
|
|
|
|
if (IsPairTerm(d0)) {
|
|
|
|
if (!IsPairTerm(d1)) {
|
|
|
|
goto cufail;
|
|
|
|
}
|
|
|
|
/* now link the two structures so that no one else will */
|
|
|
|
/* come here */
|
|
|
|
/* store the terms to visit */
|
|
|
|
if (RATIONAL_TREES || pt0 < pt0_end) {
|
|
|
|
to_visit--;
|
2010-07-29 22:36:30 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
2016-03-29 02:02:43 +01:00
|
|
|
unif++;
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif
|
2016-03-29 02:02:43 +01:00
|
|
|
if ((void *)to_visit < (void *)unif) {
|
|
|
|
CELL **urec = (CELL **)unif;
|
|
|
|
to_visit = (struct v_record *)Yap_shift_visit((CELL **)to_visit,
|
|
|
|
&urec, NULL);
|
|
|
|
unif = (struct unif_record *)urec;
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
to_visit->start0 = pt0;
|
|
|
|
to_visit->end0 = pt0_end;
|
|
|
|
to_visit->start1 = pt1;
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
unif[-1].old = *pt0;
|
|
|
|
unif[-1].ptr = pt0;
|
|
|
|
*pt0 = d1;
|
|
|
|
#endif
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
pt0_end = (pt0 = RepPair(d0) - 1) + 2;
|
|
|
|
pt1 = RepPair(d1) - 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (IsApplTerm(d0)) {
|
|
|
|
register Functor f;
|
|
|
|
register CELL *ap2, *ap3;
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
if (!IsApplTerm(d1)) {
|
|
|
|
goto cufail;
|
|
|
|
}
|
|
|
|
/* store the terms to visit */
|
|
|
|
ap2 = RepAppl(d0);
|
|
|
|
ap3 = RepAppl(d1);
|
|
|
|
f = (Functor)(*ap2);
|
|
|
|
/* compare functors */
|
|
|
|
if (f != (Functor)*ap3)
|
|
|
|
goto cufail;
|
|
|
|
if (IsExtensionFunctor(f)) {
|
|
|
|
if (unify_extension(f, d0, ap2, d1))
|
|
|
|
continue;
|
|
|
|
goto cufail;
|
|
|
|
}
|
|
|
|
/* now link the two structures so that no one else will */
|
|
|
|
/* come here */
|
|
|
|
/* store the terms to visit */
|
|
|
|
if (RATIONAL_TREES || pt0 < pt0_end) {
|
|
|
|
to_visit--;
|
2010-07-29 22:36:30 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
2016-03-29 02:02:43 +01:00
|
|
|
unif++;
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif
|
2016-03-29 02:02:43 +01:00
|
|
|
if ((void *)to_visit < (void *)unif) {
|
|
|
|
CELL **urec = (CELL **)unif;
|
|
|
|
to_visit = (struct v_record *)Yap_shift_visit((CELL **)to_visit,
|
|
|
|
&urec, NULL);
|
|
|
|
unif = (struct unif_record *)urec;
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
to_visit->start0 = pt0;
|
|
|
|
to_visit->end0 = pt0_end;
|
|
|
|
to_visit->start1 = pt1;
|
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
unif[-1].old = *pt0;
|
|
|
|
unif[-1].ptr = pt0;
|
|
|
|
*pt0 = d1;
|
|
|
|
#endif
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
d0 = ArityOfFunctor(f);
|
|
|
|
pt0 = ap2;
|
|
|
|
pt0_end = ap2 + d0;
|
|
|
|
pt1 = ap3;
|
|
|
|
continue;
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
goto cufail;
|
|
|
|
|
|
|
|
derefa_body(d1, ptd1, iequ_comp_nvar_unk, iequ_comp_nvar_nvar);
|
|
|
|
/* d1 and pt2 have the unbound value, whereas d0 is bound */
|
|
|
|
goto cufail;
|
|
|
|
}
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2010-07-29 22:36:30 +01:00
|
|
|
derefa_body(d0, ptd0, iequ_comp_unk, iequ_comp_nvar);
|
|
|
|
/* first arg var */
|
2002-11-11 17:38:10 +00:00
|
|
|
{
|
|
|
|
register CELL d1;
|
|
|
|
register CELL *ptd1;
|
|
|
|
|
2010-07-29 22:36:30 +01:00
|
|
|
ptd1 = pt1;
|
|
|
|
d1 = ptd1[0];
|
2002-11-11 17:38:10 +00:00
|
|
|
/* pt2 is unbound */
|
2010-07-29 22:36:30 +01:00
|
|
|
deref_head(d1, iequ_comp_var_unk);
|
|
|
|
iequ_comp_var_nvar:
|
2002-11-11 17:38:10 +00:00
|
|
|
/* pt2 is unbound and d1 is bound */
|
2010-07-29 22:36:30 +01:00
|
|
|
goto cufail;
|
2002-11-11 17:38:10 +00:00
|
|
|
|
2010-07-29 22:36:30 +01:00
|
|
|
derefa_body(d1, ptd1, iequ_comp_var_unk, iequ_comp_var_nvar);
|
2002-11-11 17:38:10 +00:00
|
|
|
/* pt2 and pt3 are unbound */
|
|
|
|
if (ptd0 == ptd1)
|
2015-01-20 03:00:42 +00:00
|
|
|
continue;
|
2010-07-29 22:36:30 +01:00
|
|
|
goto cufail;
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Do we still have compound terms to visit */
|
2010-07-29 22:36:30 +01:00
|
|
|
if (to_visit < to_visit_base) {
|
|
|
|
pt0 = to_visit->start0;
|
|
|
|
pt0_end = to_visit->end0;
|
|
|
|
pt1 = to_visit->start1;
|
|
|
|
to_visit++;
|
2002-11-11 17:38:10 +00:00
|
|
|
goto loop;
|
|
|
|
}
|
2010-07-29 22:36:30 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
/* restore bindigs */
|
|
|
|
while (unif-- != unif_base) {
|
|
|
|
CELL *pt0;
|
|
|
|
|
|
|
|
pt0 = unif->ptr;
|
|
|
|
*pt0 = unif->old;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return TRUE;
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
cufail:
|
2010-07-29 22:36:30 +01:00
|
|
|
#ifdef RATIONAL_TREES
|
|
|
|
/* restore bindigs */
|
|
|
|
while (unif-- != unif_base) {
|
|
|
|
CELL *pt0;
|
|
|
|
|
|
|
|
pt0 = unif->ptr;
|
|
|
|
*pt0 = unif->old;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return FALSE;
|
|
|
|
#ifdef THREADS
|
|
|
|
#undef Yap_REGS
|
2015-02-06 18:11:52 +00:00
|
|
|
#define Yap_REGS (*Yap_regp)
|
2010-07-29 22:36:30 +01:00
|
|
|
#elif defined(SHADOW_REGS)
|
|
|
|
#if defined(B) || defined(TR)
|
|
|
|
#undef Yap_REGS
|
|
|
|
#endif /* defined(B) || defined(TR) */
|
|
|
|
#endif
|
2002-11-11 17:38:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2003-08-27 14:37:10 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
static inline wamreg Yap_regnotoreg(UInt regnbr) {
|
2003-08-27 14:37:10 +01:00
|
|
|
#if PRECOMPUTE_REGADDRESS
|
|
|
|
return (wamreg)(XREGS + regnbr);
|
|
|
|
#else
|
|
|
|
#if MSHIFTOFFS
|
|
|
|
return regnbr;
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
return CELLSIZE * regnbr;
|
2003-08-27 14:37:10 +01:00
|
|
|
#endif
|
|
|
|
#endif /* ALIGN_LONGS */
|
|
|
|
}
|
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
static inline UInt Yap_regtoregno(wamreg reg) {
|
2003-08-27 14:37:10 +01:00
|
|
|
#if PRECOMPUTE_REGADDRESS
|
2016-03-29 02:02:43 +01:00
|
|
|
return ((CELL *)reg) - XREGS;
|
2003-08-27 14:37:10 +01:00
|
|
|
#else
|
|
|
|
#if MSHIFTOFFS
|
|
|
|
return reg;
|
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
return reg / CELLSIZE;
|
2003-08-27 14:37:10 +01:00
|
|
|
#endif
|
|
|
|
#endif /* ALIGN_LONGS */
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEPTH_LIMIT
|
2016-03-29 02:02:43 +01:00
|
|
|
#define check_depth(DEPTH, ap) \
|
|
|
|
if ((DEPTH) <= MkIntTerm(1)) { /* I assume Module==0 is prolog */ \
|
|
|
|
if ((ap)->ModuleOfPred) { \
|
|
|
|
if ((DEPTH) == MkIntTerm(0)) { \
|
|
|
|
FAIL(); \
|
|
|
|
} else \
|
|
|
|
(DEPTH) = RESET_DEPTH(); \
|
|
|
|
} \
|
|
|
|
} else if ((ap)->ModuleOfPred) \
|
2015-01-20 03:00:42 +00:00
|
|
|
(DEPTH) -= MkIntConstant(2);
|
2003-08-27 14:37:10 +01:00
|
|
|
#else
|
2003-09-25 01:48:04 +01:00
|
|
|
#define check_depth(DEPTH, ap)
|
2003-08-27 14:37:10 +01:00
|
|
|
#endif
|
2004-02-05 16:57:02 +00:00
|
|
|
|
|
|
|
#if defined(THREADS) || defined(YAPOR)
|
|
|
|
#define copy_jmp_address(X) (PREG_ADDR = &(X))
|
|
|
|
#define copy_jmp_addressa(X) (PREG_ADDR = (yamop **)(X))
|
|
|
|
#else
|
2015-01-20 03:00:42 +00:00
|
|
|
#define copy_jmp_address(X)
|
|
|
|
#define copy_jmp_addressa(X)
|
2004-02-05 16:57:02 +00:00
|
|
|
#endif
|
2008-09-18 17:35:21 +01:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
static inline void prune(choiceptr cp USES_REGS) {
|
2011-07-13 17:36:26 +01:00
|
|
|
#ifdef YAPOR
|
2016-03-29 02:02:43 +01:00
|
|
|
CUT_prune_to(cp);
|
2011-07-13 17:36:26 +01:00
|
|
|
#endif /* YAPOR */
|
2016-03-29 02:02:43 +01:00
|
|
|
if (SHOULD_CUT_UP_TO(B, cp)) {
|
|
|
|
if (ASP > (CELL *)PROTECT_FROZEN_B(B))
|
|
|
|
ASP = (CELL *)PROTECT_FROZEN_B(B);
|
|
|
|
while (B->cp_b < cp) {
|
|
|
|
if (POP_CHOICE_POINT(B->cp_b)) {
|
|
|
|
POP_EXECUTE();
|
|
|
|
}
|
2017-02-20 15:28:46 +00:00
|
|
|
if (B->cp_b == NULL)
|
|
|
|
break;
|
2016-03-29 02:02:43 +01:00
|
|
|
B = B->cp_b;
|
|
|
|
}
|
|
|
|
if (POP_CHOICE_POINT(B->cp_b)) {
|
2015-01-20 03:00:42 +00:00
|
|
|
POP_EXECUTE();
|
|
|
|
}
|
2016-03-29 02:02:43 +01:00
|
|
|
/* cut ! */
|
2011-02-14 19:29:20 +00:00
|
|
|
#ifdef TABLING
|
2016-03-29 02:02:43 +01:00
|
|
|
abolish_incomplete_subgoals(B);
|
2011-02-14 19:29:20 +00:00
|
|
|
#endif /* TABLING */
|
2016-03-29 02:02:43 +01:00
|
|
|
HB = PROTECT_FROZEN_H(B->cp_b);
|
2011-02-14 19:29:20 +00:00
|
|
|
#include "trim_trail.h"
|
2016-03-29 02:02:43 +01:00
|
|
|
B = B->cp_b;
|
|
|
|
SET_BB(PROTECT_FROZEN_B(B));
|
|
|
|
}
|
2011-02-14 19:29:20 +00:00
|
|
|
}
|
|
|
|
|
2011-09-15 15:40:47 +01:00
|
|
|
#if YAPOR
|
|
|
|
#define INITIALIZE_PERMVAR(PTR, V) Bind_Local((PTR), (V))
|
|
|
|
#else
|
|
|
|
#define INITIALIZE_PERMVAR(PTR, V) *(PTR) = (V)
|
|
|
|
#endif
|
2011-03-18 19:34:58 +00:00
|
|
|
|
2011-10-27 11:35:07 +01:00
|
|
|
/* l1: bind a, l2 bind b, l3 no binding */
|
2016-03-29 02:02:43 +01:00
|
|
|
#define UnifyAndTrailCells(a, b) \
|
|
|
|
if ((a) > (b)) { \
|
|
|
|
if ((a) < HR) { \
|
|
|
|
*(a) = (CELL)(b); \
|
|
|
|
DO_TRAIL((a), (CELL)(b)); \
|
|
|
|
} else if ((b) <= HR) { \
|
|
|
|
*(a) = (CELL)(b); \
|
|
|
|
DO_TRAIL((a), (CELL)(b)); \
|
|
|
|
} else { \
|
|
|
|
*(b) = (CELL)(a); \
|
|
|
|
DO_TRAIL((b), (CELL)(a)); \
|
|
|
|
} \
|
|
|
|
} else if ((a) < (b)) { \
|
|
|
|
if ((b) <= HR) { \
|
|
|
|
*(b) = (CELL)(a); \
|
|
|
|
DO_TRAIL((b), (CELL)(a)); \
|
|
|
|
} else if ((a) <= HR) { \
|
|
|
|
*(b) = (CELL)(a); \
|
|
|
|
DO_TRAIL((b), (CELL)(a)); \
|
|
|
|
} else { \
|
|
|
|
*(a) = (CELL)(b); \
|
|
|
|
DO_TRAIL((a), (CELL)(b)); \
|
|
|
|
} \
|
2015-01-20 03:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define CHECK_ALARM(CONT)
|
|
|
|
|
2015-02-09 09:00:00 +00:00
|
|
|
#if HAVE_SYS_TIME_H
|
2015-01-20 03:00:42 +00:00
|
|
|
#include <sys/time.h>
|
2015-02-09 09:00:00 +00:00
|
|
|
#endif
|
|
|
|
#if HAVE_SYS_RESOURCE_H
|
2015-01-20 03:00:42 +00:00
|
|
|
#include <sys/resource.h>
|
2015-02-09 09:00:00 +00:00
|
|
|
#endif
|
|
|
|
|
2015-02-09 01:53:28 +00:00
|
|
|
#if YAP_JIT
|
|
|
|
|
2015-01-20 03:00:42 +00:00
|
|
|
extern Environment ExpEnv;
|
|
|
|
extern char fin[1024];
|
|
|
|
|
|
|
|
#ifndef _NATIVE
|
|
|
|
|
|
|
|
#include <math.h>
|
2011-10-27 11:35:07 +01:00
|
|
|
|
2015-02-06 18:11:52 +00:00
|
|
|
#ifndef __cplusplus
|
|
|
|
#include "JIT_Compiler.hpp"
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2016-03-29 02:02:43 +01:00
|
|
|
void *(*Yap_JitCall)(JIT_Compiler *jc, yamop *p);
|
|
|
|
void (*Yap_llvmShutdown)(void);
|
|
|
|
Int (*Yap_traced_absmi)(void);
|
2015-02-06 18:11:52 +00:00
|
|
|
extern JIT_Compiler *J;
|
|
|
|
#endif
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
extern NativeContext *NativeArea;
|
|
|
|
extern IntermediatecodeContext *IntermediatecodeArea;
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
extern CELL l;
|
|
|
|
extern short global;
|
|
|
|
extern CELL nnexec;
|
2016-03-29 02:02:43 +01:00
|
|
|
extern yamop *HEADPREG;
|
2015-01-26 04:02:46 +00:00
|
|
|
extern CELL BLOCK;
|
|
|
|
extern CELL BLOCKADDRESS;
|
|
|
|
extern CELL FAILED;
|
2015-01-20 03:00:42 +00:00
|
|
|
|
2015-02-18 10:03:57 +00:00
|
|
|
extern TraceContext **curtrace;
|
|
|
|
extern yamop *curpreg;
|
|
|
|
extern BlocksContext **globalcurblock;
|
|
|
|
extern COUNT ineedredefinedest;
|
2016-03-29 02:02:43 +01:00
|
|
|
extern yamop *headoftrace;
|
2015-01-26 04:02:46 +00:00
|
|
|
|
|
|
|
#endif /* _NATIVE */
|
2015-01-20 03:00:42 +00:00
|
|
|
#endif /* YAP_JIT */
|
2011-10-27 11:35:07 +01:00
|
|
|
|
2013-12-14 12:35:18 +00:00
|
|
|
#ifdef SHADOW_S
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PROCESS_INT(F, C) \
|
|
|
|
BEGD(d0); \
|
|
|
|
Yap_REGS.S_ = SREG; \
|
|
|
|
saveregs(); \
|
|
|
|
d0 = F(PASS_REGS1); \
|
|
|
|
setregs(); \
|
|
|
|
SREG = Yap_REGS.S_; \
|
|
|
|
if (!d0) \
|
|
|
|
FAIL(); \
|
|
|
|
PP = NULL; \
|
|
|
|
if (d0 == 2) \
|
|
|
|
goto C; \
|
|
|
|
JMPNext(); \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDD(d0);
|
2013-12-14 12:35:18 +00:00
|
|
|
#else
|
2016-03-29 02:02:43 +01:00
|
|
|
#define PROCESS_INT(F, C) \
|
|
|
|
BEGD(d0); \
|
|
|
|
saveregs(); \
|
|
|
|
d0 = F(PASS_REGS1); \
|
|
|
|
setregs(); \
|
|
|
|
PP = NULL; \
|
|
|
|
if (!d0) \
|
|
|
|
FAIL(); \
|
|
|
|
if (d0 == 2) \
|
|
|
|
goto C; \
|
|
|
|
JMPNext(); \
|
2015-01-20 03:00:42 +00:00
|
|
|
ENDD(d0);
|
2013-12-14 12:35:18 +00:00
|
|
|
#endif
|
2015-01-26 04:02:46 +00:00
|
|
|
|
2016-12-05 20:50:04 +00:00
|
|
|
#define Yap_AsmError(e, d) \
|
2016-10-20 04:44:59 +01:00
|
|
|
{ \
|
|
|
|
saveregs(); \
|
2016-12-05 20:50:04 +00:00
|
|
|
Yap_ThrowError(e, d, "while exwcuting inlined built-in"); \
|
2016-10-20 04:44:59 +01:00
|
|
|
setregs(); \
|
|
|
|
}
|
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
#endif // ABSMI_H
|