support resource errors for out of memory conditions.
improve stack dump message.
This commit is contained in:
parent
d8590f2587
commit
ae5bf4d6e7
104
C/errors.c
104
C/errors.c
@ -196,65 +196,31 @@ detect_bug_location(yamop *yap_pc, find_pred_type where_from, char *tp, int psiz
|
|||||||
} else if (pred_module == 0) {
|
} else if (pred_module == 0) {
|
||||||
/* don't give info on system predicates */
|
/* don't give info on system predicates */
|
||||||
#if HAVE_SNPRINTF
|
#if HAVE_SNPRINTF
|
||||||
#if SHORT_INTS
|
snprintf(tp, psize, "prolog:%s/%lu",
|
||||||
snprintf(tp, psize, "prolog:%s/%ld",
|
RepAtom(pred_name)->StrOfAE, (unsigned long int)pred_arity);
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
|
||||||
#else
|
#else
|
||||||
snprintf(tp, psize, "prolog:%s/%d",
|
sprintf(tp, "in prolog:%s/%lu",
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
RepAtom(pred_name)->StrOfAE, (unsigned long int)pred_arity);
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if SHORT_INTS
|
|
||||||
sprintf(tp, "in prolog:%s/%ld",
|
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
|
||||||
#else
|
|
||||||
sprintf(tp, "in prolog:%s/%d",
|
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
} else if (cl < 0) {
|
} else if (cl < 0) {
|
||||||
#if HAVE_SNPRINTF
|
#if HAVE_SNPRINTF
|
||||||
#if SHORT_INTS
|
snprintf(tp, psize, "%s:%s/%lu",
|
||||||
snprintf(tp, psize, "indexing code of %s:%s/%ld",
|
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
RepAtom(pred_name)->StrOfAE, (unsigned long int)pred_arity);
|
||||||
#else
|
#else
|
||||||
snprintf(tp, psize, "indexing code of %s:%s/%d",
|
sprintf(tp, "%s:%s/%lu",
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if SHORT_INTS
|
|
||||||
sprintf(tp, "indexing code of %s:%s/%ld",
|
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
RepAtom(pred_name)->StrOfAE, (unsigned long int)pred_arity);
|
||||||
#else
|
|
||||||
sprintf(tp, "indexing code of %s:%s/%d",
|
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
#if HAVE_SNPRINTF
|
#if HAVE_SNPRINTF
|
||||||
#if SHORT_INTS
|
snprintf(tp, psize, "%s:%s/%lu at clause %lu ",
|
||||||
snprintf(tp, psize, "clause %ld of %s:%s/%ld", cl,
|
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
RepAtom(pred_name)->StrOfAE, (unsigned long int)pred_arity, (unsigned long int)cl);
|
||||||
#else
|
#else
|
||||||
snprintf(tp, psize, "clause %d of %s:%s/%d", cl,
|
sprintf(tp, "%s:%s/%lu at clause %lu",
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if SHORT_INTS
|
|
||||||
sprintf(tp, "clause %ld of %s:%s/%ld", cl,
|
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
RepAtom(pred_name)->StrOfAE, (unsigned long int)pred_arity, (unsigned long int)cl);
|
||||||
#else
|
|
||||||
sprintf(tp, "clause %d of %s:%s/%d", cl,
|
|
||||||
RepAtom(AtomOfTerm(pred_module))->StrOfAE,
|
|
||||||
RepAtom(pred_name)->StrOfAE, pred_arity);
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -291,10 +257,14 @@ dump_stack(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
fprintf (stderr,"%ldKB of Global Stack (%p--%p)\n",(long int)(sizeof(CELL)*(H-H0))/1024,H0,H);
|
detect_bug_location(P, FIND_PRED_FROM_ANYWHERE, (char *)H, 256);
|
||||||
fprintf (stderr,"%ldKB of Local Stack (%p--%p)\n",(long int)(sizeof(CELL)*(LCL0-ASP))/1024,ASP,LCL0);
|
fprintf (stderr,"%%\n%% PC: %s\n",(char *)H);
|
||||||
fprintf (stderr,"%ldKB of Trail (%p--%p)\n",(long int)((ADDR)TR-Yap_TrailBase)/1024,Yap_TrailBase,TR);
|
detect_bug_location(CP, FIND_PRED_FROM_ANYWHERE, (char *)H, 256);
|
||||||
fprintf (stderr,"Performed %d garbage collections\n", GcCalls);
|
fprintf (stderr,"%% Continuation: %s\n",(char *)H);
|
||||||
|
fprintf (stderr,"%% %ldKB of Global Stack (%p--%p)\n",(long int)(sizeof(CELL)*(H-H0))/1024,H0,H);
|
||||||
|
fprintf (stderr,"%% %ldKB of Local Stack (%p--%p)\n",(long int)(sizeof(CELL)*(LCL0-ASP))/1024,ASP,LCL0);
|
||||||
|
fprintf (stderr,"%% %ldKB of Trail (%p--%p)\n",(long int)((ADDR)TR-Yap_TrailBase)/1024,Yap_TrailBase,TR);
|
||||||
|
fprintf (stderr,"%% Performed %d garbage collections\n", GcCalls);
|
||||||
#if LOW_LEVEL_TRACER
|
#if LOW_LEVEL_TRACER
|
||||||
{
|
{
|
||||||
extern long long vsc_count;
|
extern long long vsc_count;
|
||||||
@ -304,19 +274,17 @@ dump_stack(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
detect_bug_location(P, FIND_PRED_FROM_ANYWHERE, (char *)H, 256);
|
fprintf (stderr,"%% All Active Calls and\n");
|
||||||
fprintf (stderr,"Running code at %s\n",(char *)H);
|
fprintf (stderr,"%% Goals With Alternatives Open (Global In Use--Local In Use)\n%%\n");
|
||||||
detect_bug_location(CP, FIND_PRED_FROM_ANYWHERE, (char *)H, 256);
|
|
||||||
fprintf (stderr,"Continuation is at %s\n",(char *)H);
|
|
||||||
while (b_ptr != NULL) {
|
while (b_ptr != NULL) {
|
||||||
while (env_ptr && env_ptr <= (CELL *)b_ptr) {
|
while (env_ptr && env_ptr <= (CELL *)b_ptr) {
|
||||||
detect_bug_location(ipc, FIND_PRED_FROM_ENV, tp, 256);
|
detect_bug_location(ipc, FIND_PRED_FROM_ENV, tp, 256);
|
||||||
if (env_ptr == (CELL *)b_ptr &&
|
if (env_ptr == (CELL *)b_ptr &&
|
||||||
(choiceptr)env_ptr[E_CB] > b_ptr) {
|
(choiceptr)env_ptr[E_CB] > b_ptr) {
|
||||||
b_ptr = b_ptr->cp_b;
|
b_ptr = b_ptr->cp_b;
|
||||||
fprintf(stderr," %s (*)\n", tp);
|
fprintf(stderr,"%% %s\n", tp);
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr," %s\n", tp);
|
fprintf(stderr,"%% %s\n", tp);
|
||||||
}
|
}
|
||||||
ipc = (yamop *)(env_ptr[E_CP]);
|
ipc = (yamop *)(env_ptr[E_CP]);
|
||||||
env_ptr = (CELL *)(env_ptr[E_E]);
|
env_ptr = (CELL *)(env_ptr[E_E]);
|
||||||
@ -328,7 +296,9 @@ dump_stack(void)
|
|||||||
b_ptr->cp_ap->opc != Yap_opcode(_Nstop)) {
|
b_ptr->cp_ap->opc != Yap_opcode(_Nstop)) {
|
||||||
/* we can safely ignore ; because there is always an upper env */
|
/* we can safely ignore ; because there is always an upper env */
|
||||||
detect_bug_location(b_ptr->cp_ap, FIND_PRED_FROM_CP, tp, 256);
|
detect_bug_location(b_ptr->cp_ap, FIND_PRED_FROM_CP, tp, 256);
|
||||||
fprintf(stderr," %s (*)\n", tp);
|
fprintf(stderr,"%% %s (%luKB--%luKB)\n", tp,
|
||||||
|
(unsigned long int)((b_ptr->cp_h-H0)*sizeof(CELL)/1024),
|
||||||
|
(unsigned long int)((ADDR)LCL0-(ADDR)b_ptr)/1024);
|
||||||
}
|
}
|
||||||
b_ptr = b_ptr->cp_b;
|
b_ptr = b_ptr->cp_b;
|
||||||
}
|
}
|
||||||
@ -999,10 +969,12 @@ Yap_Error(yap_error_number type, Term where, char *format,...)
|
|||||||
case OUT_OF_HEAP_ERROR:
|
case OUT_OF_HEAP_ERROR:
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
Term ti[1];
|
||||||
|
|
||||||
dump_stack();
|
dump_stack();
|
||||||
|
ti[0] = MkAtomTerm(AtomCodeSpace);
|
||||||
i = strlen(tmpbuf);
|
i = strlen(tmpbuf);
|
||||||
nt[0] = MkAtomTerm(AtomOutOfHeapError);
|
nt[0] = Yap_MkApplTerm(FunctorResourceError, 1, ti);
|
||||||
tp = tmpbuf+i;
|
tp = tmpbuf+i;
|
||||||
psize -= i;
|
psize -= i;
|
||||||
fun = FunctorError;
|
fun = FunctorError;
|
||||||
@ -1012,10 +984,12 @@ Yap_Error(yap_error_number type, Term where, char *format,...)
|
|||||||
case OUT_OF_STACK_ERROR:
|
case OUT_OF_STACK_ERROR:
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
Term ti[1];
|
||||||
|
|
||||||
dump_stack();
|
dump_stack();
|
||||||
i = strlen(tmpbuf);
|
i = strlen(tmpbuf);
|
||||||
nt[0] = MkAtomTerm(AtomOutOfStackError);
|
ti[0] = MkAtomTerm(AtomStack);
|
||||||
|
nt[0] = Yap_MkApplTerm(FunctorResourceError, 1, ti);
|
||||||
tp = tmpbuf+i;
|
tp = tmpbuf+i;
|
||||||
psize -= i;
|
psize -= i;
|
||||||
fun = FunctorError;
|
fun = FunctorError;
|
||||||
@ -1025,10 +999,12 @@ Yap_Error(yap_error_number type, Term where, char *format,...)
|
|||||||
case OUT_OF_ATTVARS_ERROR:
|
case OUT_OF_ATTVARS_ERROR:
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
Term ti[1];
|
||||||
|
|
||||||
dump_stack();
|
dump_stack();
|
||||||
i = strlen(tmpbuf);
|
i = strlen(tmpbuf);
|
||||||
nt[0] = MkAtomTerm(AtomOutOfAttvarsError);
|
ti[0] = MkAtomTerm(AtomAttributes);
|
||||||
|
nt[0] = Yap_MkApplTerm(FunctorResourceError, 1, ti);
|
||||||
tp = tmpbuf+i;
|
tp = tmpbuf+i;
|
||||||
psize -= i;
|
psize -= i;
|
||||||
fun = FunctorError;
|
fun = FunctorError;
|
||||||
@ -1038,11 +1014,13 @@ Yap_Error(yap_error_number type, Term where, char *format,...)
|
|||||||
case OUT_OF_AUXSPACE_ERROR:
|
case OUT_OF_AUXSPACE_ERROR:
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
Term ti[1];
|
||||||
|
|
||||||
dump_stack();
|
dump_stack();
|
||||||
i = strlen(tmpbuf);
|
i = strlen(tmpbuf);
|
||||||
nt[0] = MkAtomTerm(AtomOutOfAuxspaceError);
|
|
||||||
tp = tmpbuf+i;
|
tp = tmpbuf+i;
|
||||||
|
ti[0] = MkAtomTerm(AtomUnificationStack);
|
||||||
|
nt[0] = Yap_MkApplTerm(FunctorResourceError, 1, ti);
|
||||||
psize -= i;
|
psize -= i;
|
||||||
fun = FunctorError;
|
fun = FunctorError;
|
||||||
serious = TRUE;
|
serious = TRUE;
|
||||||
@ -1051,10 +1029,12 @@ Yap_Error(yap_error_number type, Term where, char *format,...)
|
|||||||
case OUT_OF_TRAIL_ERROR:
|
case OUT_OF_TRAIL_ERROR:
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
Term ti[1];
|
||||||
|
|
||||||
dump_stack();
|
dump_stack();
|
||||||
i = strlen(tmpbuf);
|
i = strlen(tmpbuf);
|
||||||
nt[0] = MkAtomTerm(AtomOutOfTrailError);
|
ti[0] = MkAtomTerm(AtomTrail);
|
||||||
|
nt[0] = Yap_MkApplTerm(FunctorResourceError, 1, ti);
|
||||||
tp = tmpbuf+i;
|
tp = tmpbuf+i;
|
||||||
psize -= i;
|
psize -= i;
|
||||||
fun = FunctorError;
|
fun = FunctorError;
|
||||||
|
@ -38,10 +38,11 @@
|
|||||||
AtomCatch = Yap_FullLookupAtom("$catch");
|
AtomCatch = Yap_FullLookupAtom("$catch");
|
||||||
AtomChangeModule = Yap_FullLookupAtom("$change_module");
|
AtomChangeModule = Yap_FullLookupAtom("$change_module");
|
||||||
AtomChar = Yap_LookupAtom("char");
|
AtomChar = Yap_LookupAtom("char");
|
||||||
|
AtomCharsio = Yap_LookupAtom("charsio");
|
||||||
AtomCharacter = Yap_LookupAtom("character");
|
AtomCharacter = Yap_LookupAtom("character");
|
||||||
AtomCharacterCode = Yap_LookupAtom("character_code");
|
AtomCharacterCode = Yap_LookupAtom("character_code");
|
||||||
AtomCharsio = Yap_LookupAtom("charsio");
|
|
||||||
AtomColomn = Yap_LookupAtom(":");
|
AtomColomn = Yap_LookupAtom(":");
|
||||||
|
AtomCodeSpace = Yap_LookupAtom("code_space");
|
||||||
AtomComma = Yap_LookupAtom(",");
|
AtomComma = Yap_LookupAtom(",");
|
||||||
AtomCompound = Yap_LookupAtom("compound");
|
AtomCompound = Yap_LookupAtom("compound");
|
||||||
AtomConsistencyError = Yap_LookupAtom("consistency_error");
|
AtomConsistencyError = Yap_LookupAtom("consistency_error");
|
||||||
@ -260,6 +261,7 @@
|
|||||||
AtomTimeOutSpec = Yap_LookupAtom("time_out_spec");
|
AtomTimeOutSpec = Yap_LookupAtom("time_out_spec");
|
||||||
AtomTopLevelGoal = Yap_FullLookupAtom("$top_level_goal");
|
AtomTopLevelGoal = Yap_FullLookupAtom("$top_level_goal");
|
||||||
AtomTopThreadGoal = Yap_FullLookupAtom("$top_thread_goal");
|
AtomTopThreadGoal = Yap_FullLookupAtom("$top_thread_goal");
|
||||||
|
AtomTrail = Yap_LookupAtom("trail");
|
||||||
AtomTrue = Yap_LookupAtom("true");
|
AtomTrue = Yap_LookupAtom("true");
|
||||||
AtomTty = Yap_LookupAtom("tty");
|
AtomTty = Yap_LookupAtom("tty");
|
||||||
AtomTtys = Yap_LookupAtom("ttys");
|
AtomTtys = Yap_LookupAtom("ttys");
|
||||||
@ -267,6 +269,7 @@
|
|||||||
AtomUndefined = Yap_LookupAtom("undefined");
|
AtomUndefined = Yap_LookupAtom("undefined");
|
||||||
AtomUndefp = Yap_FullLookupAtom("$undefp");
|
AtomUndefp = Yap_FullLookupAtom("$undefp");
|
||||||
AtomUnderflow = Yap_LookupAtom("underflow");
|
AtomUnderflow = Yap_LookupAtom("underflow");
|
||||||
|
AtomUnificationStack = Yap_LookupAtom("unification_stack");
|
||||||
AtomUnsignedByte = Yap_LookupAtom("unsigned_byte");
|
AtomUnsignedByte = Yap_LookupAtom("unsigned_byte");
|
||||||
AtomUnsignedChar = Yap_LookupAtom("unsigned_char");
|
AtomUnsignedChar = Yap_LookupAtom("unsigned_char");
|
||||||
AtomUser = Yap_LookupAtom("user");
|
AtomUser = Yap_LookupAtom("user");
|
||||||
|
@ -38,10 +38,11 @@
|
|||||||
AtomCatch = AtomAdjust(AtomCatch);
|
AtomCatch = AtomAdjust(AtomCatch);
|
||||||
AtomChangeModule = AtomAdjust(AtomChangeModule);
|
AtomChangeModule = AtomAdjust(AtomChangeModule);
|
||||||
AtomChar = AtomAdjust(AtomChar);
|
AtomChar = AtomAdjust(AtomChar);
|
||||||
|
AtomCharsio = AtomAdjust(AtomCharsio);
|
||||||
AtomCharacter = AtomAdjust(AtomCharacter);
|
AtomCharacter = AtomAdjust(AtomCharacter);
|
||||||
AtomCharacterCode = AtomAdjust(AtomCharacterCode);
|
AtomCharacterCode = AtomAdjust(AtomCharacterCode);
|
||||||
AtomCharsio = AtomAdjust(AtomCharsio);
|
|
||||||
AtomColomn = AtomAdjust(AtomColomn);
|
AtomColomn = AtomAdjust(AtomColomn);
|
||||||
|
AtomCodeSpace = AtomAdjust(AtomCodeSpace);
|
||||||
AtomComma = AtomAdjust(AtomComma);
|
AtomComma = AtomAdjust(AtomComma);
|
||||||
AtomCompound = AtomAdjust(AtomCompound);
|
AtomCompound = AtomAdjust(AtomCompound);
|
||||||
AtomConsistencyError = AtomAdjust(AtomConsistencyError);
|
AtomConsistencyError = AtomAdjust(AtomConsistencyError);
|
||||||
@ -262,6 +263,7 @@
|
|||||||
AtomTimeOutSpec = AtomAdjust(AtomTimeOutSpec);
|
AtomTimeOutSpec = AtomAdjust(AtomTimeOutSpec);
|
||||||
AtomTopLevelGoal = AtomAdjust(AtomTopLevelGoal);
|
AtomTopLevelGoal = AtomAdjust(AtomTopLevelGoal);
|
||||||
AtomTopThreadGoal = AtomAdjust(AtomTopThreadGoal);
|
AtomTopThreadGoal = AtomAdjust(AtomTopThreadGoal);
|
||||||
|
AtomTrail = AtomAdjust(AtomTrail);
|
||||||
AtomTrue = AtomAdjust(AtomTrue);
|
AtomTrue = AtomAdjust(AtomTrue);
|
||||||
AtomTty = AtomAdjust(AtomTty);
|
AtomTty = AtomAdjust(AtomTty);
|
||||||
AtomTtys = AtomAdjust(AtomTtys);
|
AtomTtys = AtomAdjust(AtomTtys);
|
||||||
@ -269,6 +271,7 @@
|
|||||||
AtomUndefined = AtomAdjust(AtomUndefined);
|
AtomUndefined = AtomAdjust(AtomUndefined);
|
||||||
AtomUndefp = AtomAdjust(AtomUndefp);
|
AtomUndefp = AtomAdjust(AtomUndefp);
|
||||||
AtomUnderflow = AtomAdjust(AtomUnderflow);
|
AtomUnderflow = AtomAdjust(AtomUnderflow);
|
||||||
|
AtomUnificationStack = AtomAdjust(AtomUnificationStack);
|
||||||
AtomUnsignedByte = AtomAdjust(AtomUnsignedByte);
|
AtomUnsignedByte = AtomAdjust(AtomUnsignedByte);
|
||||||
AtomUnsignedChar = AtomAdjust(AtomUnsignedChar);
|
AtomUnsignedChar = AtomAdjust(AtomUnsignedChar);
|
||||||
AtomUser = AtomAdjust(AtomUser);
|
AtomUser = AtomAdjust(AtomUser);
|
||||||
|
10
H/tatoms.h
10
H/tatoms.h
@ -78,14 +78,16 @@
|
|||||||
#define AtomChangeModule Yap_heap_regs->AtomChangeModule_
|
#define AtomChangeModule Yap_heap_regs->AtomChangeModule_
|
||||||
Atom AtomChar_;
|
Atom AtomChar_;
|
||||||
#define AtomChar Yap_heap_regs->AtomChar_
|
#define AtomChar Yap_heap_regs->AtomChar_
|
||||||
|
Atom AtomCharsio_;
|
||||||
|
#define AtomCharsio Yap_heap_regs->AtomCharsio_
|
||||||
Atom AtomCharacter_;
|
Atom AtomCharacter_;
|
||||||
#define AtomCharacter Yap_heap_regs->AtomCharacter_
|
#define AtomCharacter Yap_heap_regs->AtomCharacter_
|
||||||
Atom AtomCharacterCode_;
|
Atom AtomCharacterCode_;
|
||||||
#define AtomCharacterCode Yap_heap_regs->AtomCharacterCode_
|
#define AtomCharacterCode Yap_heap_regs->AtomCharacterCode_
|
||||||
Atom AtomCharsio_;
|
|
||||||
#define AtomCharsio Yap_heap_regs->AtomCharsio_
|
|
||||||
Atom AtomColomn_;
|
Atom AtomColomn_;
|
||||||
#define AtomColomn Yap_heap_regs->AtomColomn_
|
#define AtomColomn Yap_heap_regs->AtomColomn_
|
||||||
|
Atom AtomCodeSpace_;
|
||||||
|
#define AtomCodeSpace Yap_heap_regs->AtomCodeSpace_
|
||||||
Atom AtomComma_;
|
Atom AtomComma_;
|
||||||
#define AtomComma Yap_heap_regs->AtomComma_
|
#define AtomComma Yap_heap_regs->AtomComma_
|
||||||
Atom AtomCompound_;
|
Atom AtomCompound_;
|
||||||
@ -526,6 +528,8 @@
|
|||||||
#define AtomTopLevelGoal Yap_heap_regs->AtomTopLevelGoal_
|
#define AtomTopLevelGoal Yap_heap_regs->AtomTopLevelGoal_
|
||||||
Atom AtomTopThreadGoal_;
|
Atom AtomTopThreadGoal_;
|
||||||
#define AtomTopThreadGoal Yap_heap_regs->AtomTopThreadGoal_
|
#define AtomTopThreadGoal Yap_heap_regs->AtomTopThreadGoal_
|
||||||
|
Atom AtomTrail_;
|
||||||
|
#define AtomTrail Yap_heap_regs->AtomTrail_
|
||||||
Atom AtomTrue_;
|
Atom AtomTrue_;
|
||||||
#define AtomTrue Yap_heap_regs->AtomTrue_
|
#define AtomTrue Yap_heap_regs->AtomTrue_
|
||||||
Atom AtomTty_;
|
Atom AtomTty_;
|
||||||
@ -540,6 +544,8 @@
|
|||||||
#define AtomUndefp Yap_heap_regs->AtomUndefp_
|
#define AtomUndefp Yap_heap_regs->AtomUndefp_
|
||||||
Atom AtomUnderflow_;
|
Atom AtomUnderflow_;
|
||||||
#define AtomUnderflow Yap_heap_regs->AtomUnderflow_
|
#define AtomUnderflow Yap_heap_regs->AtomUnderflow_
|
||||||
|
Atom AtomUnificationStack_;
|
||||||
|
#define AtomUnificationStack Yap_heap_regs->AtomUnificationStack_
|
||||||
Atom AtomUnsignedByte_;
|
Atom AtomUnsignedByte_;
|
||||||
#define AtomUnsignedByte Yap_heap_regs->AtomUnsignedByte_
|
#define AtomUnsignedByte Yap_heap_regs->AtomUnsignedByte_
|
||||||
Atom AtomUnsignedChar_;
|
Atom AtomUnsignedChar_;
|
||||||
|
@ -47,10 +47,11 @@ A Callable N "callable"
|
|||||||
A Catch F "$catch"
|
A Catch F "$catch"
|
||||||
A ChangeModule F "$change_module"
|
A ChangeModule F "$change_module"
|
||||||
A Char N "char"
|
A Char N "char"
|
||||||
|
A Charsio N "charsio"
|
||||||
A Character N "character"
|
A Character N "character"
|
||||||
A CharacterCode N "character_code"
|
A CharacterCode N "character_code"
|
||||||
A Charsio N "charsio"
|
|
||||||
A Colomn N ":"
|
A Colomn N ":"
|
||||||
|
A CodeSpace N "code_space"
|
||||||
A Comma N ","
|
A Comma N ","
|
||||||
A Compound N "compound"
|
A Compound N "compound"
|
||||||
A ConsistencyError N "consistency_error"
|
A ConsistencyError N "consistency_error"
|
||||||
@ -271,6 +272,7 @@ A Throw N "throw"
|
|||||||
A TimeOutSpec N "time_out_spec"
|
A TimeOutSpec N "time_out_spec"
|
||||||
A TopLevelGoal F "$top_level_goal"
|
A TopLevelGoal F "$top_level_goal"
|
||||||
A TopThreadGoal F "$top_thread_goal"
|
A TopThreadGoal F "$top_thread_goal"
|
||||||
|
A Trail N "trail"
|
||||||
A True N "true"
|
A True N "true"
|
||||||
A Tty N "tty"
|
A Tty N "tty"
|
||||||
A Ttys N "ttys"
|
A Ttys N "ttys"
|
||||||
@ -278,6 +280,7 @@ A TypeError N "type_error"
|
|||||||
A Undefined N "undefined"
|
A Undefined N "undefined"
|
||||||
A Undefp F "$undefp"
|
A Undefp F "$undefp"
|
||||||
A Underflow N "underflow"
|
A Underflow N "underflow"
|
||||||
|
A UnificationStack N "unification_stack"
|
||||||
A UnsignedByte N "unsigned_byte"
|
A UnsignedByte N "unsigned_byte"
|
||||||
A UnsignedChar N "unsigned_char"
|
A UnsignedChar N "unsigned_char"
|
||||||
A User N "user"
|
A User N "user"
|
||||||
|
Reference in New Issue
Block a user