fix nasty overflows in and add some very preliminary support for very large

clauses with lots
of disjuncts (eg, query packs).


git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1676 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2006-07-27 19:04:56 +00:00
parent 4dc4eb8a75
commit beba8315ca
6 changed files with 50 additions and 5 deletions

View File

@@ -11,8 +11,12 @@
* File: compiler.c *
* comments: Clause compiler *
* *
* Last rev: $Date: 2006-05-19 14:31:31 $,$Author: vsc $ *
* Last rev: $Date: 2006-07-27 19:04:56 $,$Author: vsc $ *
* $Log: not supported by cvs2svn $
* Revision 1.77 2006/05/19 14:31:31 vsc
* get rid of IntArrays and FloatArray code.
* include holes when calculating memory usage.
*
* Revision 1.76 2006/05/19 13:48:11 vsc
* help to make Yap work with dynamic libs
*
@@ -2794,7 +2798,7 @@ c_layout(compiler_struct *cglobs)
{
up = cglobs->Uses;
cop = cglobs->Contents;
for (rn = 0; rn <= cglobs->MaxCTemps; ++rn) {
for (rn = 0; rn < cglobs->MaxCTemps; ++rn) {
if (*cop != (TempVar | rn)) {
*up++ = *cop++ = NIL;
} else {