39558ff37988de5caaa1a9c5b8de6def3611a670
[ghc-hetmet.git] / ghc / interpreter / storage.c
1
2 /* --------------------------------------------------------------------------
3  * Primitives for manipulating global data structures
4  *
5  * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
6  * Yale Haskell Group, and the Oregon Graduate Institute of Science and
7  * Technology, 1994-1999, All rights reserved.  It is distributed as
8  * free software under the license in the file "License", which is
9  * included in the distribution.
10  *
11  * $RCSfile: storage.c,v $
12  * $Revision: 1.42 $
13  * $Date: 2000/02/08 17:50:46 $
14  * ------------------------------------------------------------------------*/
15
16 #include "prelude.h"
17 #include "storage.h"
18 #include "backend.h"
19 #include "connect.h"
20 #include "errors.h"
21 #include "object.h"
22 #include <setjmp.h>
23
24 /*#define DEBUG_SHOWUSE*/
25
26 /* --------------------------------------------------------------------------
27  * local function prototypes:
28  * ------------------------------------------------------------------------*/
29
30 static Int  local hash                  Args((String));
31 static Int  local saveText              Args((Text));
32 static Module local findQualifier       Args((Text));
33 static Void local hashTycon             Args((Tycon));
34 static List local insertTycon           Args((Tycon,List));
35 static Void local hashName              Args((Name));
36 static List local insertName            Args((Name,List));
37 static Void local patternError          Args((String));
38 static Bool local stringMatch           Args((String,String));
39 static Bool local typeInvolves          Args((Type,Type));
40 static Cell local markCell              Args((Cell));
41 static Void local markSnd               Args((Cell));
42 static Cell local lowLevelLastIn        Args((Cell));
43 static Cell local lowLevelLastOut       Args((Cell));
44        Module local moduleOfScript      Args((Script));
45        Script local scriptThisFile      Args((Text));
46
47 /* --------------------------------------------------------------------------
48  * Text storage:
49  *
50  * provides storage for the characters making up identifier and symbol
51  * names, string literals, character constants etc...
52  *
53  * All character strings are stored in a large character array, with textHw
54  * pointing to the next free position.  Lookup in the array is improved using
55  * a hash table.  Internally, text strings are represented by integer offsets
56  * from the beginning of the array to the string in question.
57  *
58  * Where memory permits, the use of multiple hashtables gives a significant
59  * increase in performance, particularly when large source files are used.
60  *
61  * Each string in the array is terminated by a zero byte.  No string is
62  * stored more than once, so that it is safe to test equality of strings by
63  * comparing the corresponding offsets.
64  *
65  * Special text values (beyond the range of the text array table) are used
66  * to generate unique `new variable names' as required.
67  *
68  * The same text storage is also used to hold text values stored in a saved
69  * expression.  This grows downwards from the top of the text table (and is
70  * not included in the hash table).
71  * ------------------------------------------------------------------------*/
72
73 #define TEXTHSZ 512                     /* Size of Text hash table         */
74 #define NOTEXT  ((Text)(~0))            /* Empty bucket in Text hash table */
75 static  Text    textHw;                 /* Next unused position            */
76 static  Text    savedText = NUM_TEXT;   /* Start of saved portion of text  */
77 static  Text    nextNewText;            /* Next new text value             */
78 static  Text    nextNewDText;           /* Next new dict text value        */
79 static  char    DEFTABLE(text,NUM_TEXT);/* Storage of character strings    */
80 static  Text    textHash[TEXTHSZ][NUM_TEXTH]; /* Hash table storage        */
81
82 String textToStr(t)                    /* find string corresp to given Text*/
83 Text t; {
84     static char newVar[16];
85
86     if (0<=t && t<NUM_TEXT)                     /* standard char string    */
87         return text + t;
88     if (t<0)
89         sprintf(newVar,"d%d",-t);               /* dictionary variable     */
90     else
91         sprintf(newVar,"v%d",t-NUM_TEXT);       /* normal variable         */
92     return newVar;
93 }
94
95 String identToStr(v) /*find string corresp to given ident or qualified name*/
96 Cell v; {
97     if (!isPair(v)) {
98         internal("identToStr");
99     }
100     switch (fst(v)) {
101         case VARIDCELL  :
102         case VAROPCELL  : 
103         case CONIDCELL  :
104         case CONOPCELL  : return text+textOf(v);
105
106         case QUALIDENT  : {   Text pos = textHw;
107                               Text t   = qmodOf(v);
108                               while (pos+1 < savedText && text[t]!=0) {
109                                   text[pos++] = text[t++];
110                               }
111                               if (pos+1 < savedText) {
112                                   text[pos++] = '.';
113                               }
114                               t = qtextOf(v);
115                               while (pos+1 < savedText && text[t]!=0) {
116                                   text[pos++] = text[t++];
117                               }
118                               text[pos] = '\0';
119                               return text+textHw;
120                           }
121     }
122     internal("identToStr2");
123     return 0; /* NOTREACHED */
124 }
125
126 Text inventText()     {                 /* return new unused variable name */
127     return nextNewText++;
128 }
129
130 Text inventDictText() {                 /* return new unused dictvar name  */
131     return nextNewDText--;
132 }
133
134 Bool inventedText(t)                    /* Signal TRUE if text has been    */
135 Text t; {                               /* generated internally            */
136     return (t<0 || t>=NUM_TEXT);
137 }
138
139 #define MAX_FIXLIT 100
140 Text fixLitText(t)                /* fix literal text that might include \ */
141 Text t; {
142     String   s = textToStr(t);
143     char     p[MAX_FIXLIT];
144     Int      i;
145     for(i = 0;i < MAX_FIXLIT-2 && *s;s++) {
146       p[i++] = *s;
147       if (*s == '\\') {
148         p[i++] = '\\';
149       } 
150     }
151     if (i < MAX_FIXLIT-2) {
152       p[i] = 0;
153     } else {
154         ERRMSG(0) "storage space exhausted for internal literal string"
155         EEND;
156     }
157     return (findText(p));
158 }
159 #undef MAX_FIXLIT
160
161 static Int local hash(s)                /* Simple hash function on strings */
162 String s; {
163     int v, j = 3;
164
165     for (v=((int)(*s))*8; *s; s++)
166         v += ((int)(*s))*(j++);
167     if (v<0)
168         v = (-v);
169     return(v%TEXTHSZ);
170 }
171
172 Text findText(s)                       /* Locate string in Text array      */
173 String s; {
174     int    h       = hash(s);
175     int    hashno  = 0;
176     Text   textPos = textHash[h][hashno];
177
178 #define TryMatch        {   Text   originalTextPos = textPos;              \
179                             String t;                                      \
180                             for (t=s; *t==text[textPos]; textPos++,t++)    \
181                                 if (*t=='\0')                              \
182                                     return originalTextPos;                \
183                         }
184 #define Skip            while (text[textPos++]) ;
185
186     while (textPos!=NOTEXT) {
187         TryMatch
188         if (++hashno<NUM_TEXTH)         /* look in next hashtable entry    */
189             textPos = textHash[h][hashno];
190         else {
191             Skip
192             while (textPos < textHw) {
193                 TryMatch
194                 Skip
195             }
196             break;
197         }
198     }
199
200 #undef TryMatch
201 #undef Skip
202
203     textPos = textHw;                  /* if not found, save in array      */
204     if (textHw + (Int)strlen(s) + 1 > savedText) {
205         ERRMSG(0) "Character string storage space exhausted"
206         EEND;
207     }
208     while ((text[textHw++] = *s++) != 0) {
209     }
210     if (hashno<NUM_TEXTH) {            /* updating hash table as necessary */
211         textHash[h][hashno] = textPos;
212         if (hashno<NUM_TEXTH-1)
213             textHash[h][hashno+1] = NOTEXT;
214     }
215
216     return textPos;
217 }
218
219 static Int local saveText(t)            /* Save text value in buffer       */
220 Text t; {                               /* at top of text table            */
221     String s = textToStr(t);
222     Int    l = strlen(s);
223
224     if (textHw + l + 1 > savedText) {
225         ERRMSG(0) "Character string storage space exhausted"
226         EEND;
227     }
228     savedText -= l+1;
229     strcpy(text+savedText,s);
230     return savedText;
231 }
232
233
234 static int fromHexDigit ( char c )
235 {
236    switch (c) {
237       case '0': case '1': case '2': case '3': case '4':
238       case '5': case '6': case '7': case '8': case '9':
239          return c - '0';
240       case 'a': case 'A': return 10;
241       case 'b': case 'B': return 11;
242       case 'c': case 'C': return 12;
243       case 'd': case 'D': return 13;
244       case 'e': case 'E': return 14;
245       case 'f': case 'F': return 15;
246       default: return -1;
247    }
248 }
249
250
251 /* returns findText (unZencode s) */
252 Text unZcodeThenFindText ( String s )
253 {
254    unsigned char* p;
255    Int            n, nn, i;
256    Text           t;
257
258    assert(s);
259    nn = 100 + 10 * strlen(s);
260    p = malloc ( nn );
261    if (!p) internal ("unZcodeThenFindText: malloc failed");
262    n = 0;
263
264    while (1) {
265       if (!(*s)) break;
266       if (n > nn-90) internal ("unZcodeThenFindText: result is too big");
267       if (*s != 'z' && *s != 'Z') {
268          p[n] = *s; n++; s++; 
269          continue;
270       }
271       s++;
272       if (!(*s)) goto parse_error;
273       switch (*s++) {
274          case 'Z': p[n++] = 'Z'; break;
275          case 'C': p[n++] = ':'; break;
276          case 'L': p[n++] = '('; break;
277          case 'R': p[n++] = ')'; break;
278          case 'M': p[n++] = '['; break;
279          case 'N': p[n++] = ']'; break;
280          case 'z': p[n++] = 'z'; break;
281          case 'a': p[n++] = '&'; break;
282          case 'b': p[n++] = '|'; break;
283          case 'd': p[n++] = '$'; break;
284          case 'e': p[n++] = '='; break;
285          case 'g': p[n++] = '>'; break;
286          case 'h': p[n++] = '#'; break;
287          case 'i': p[n++] = '.'; break;
288          case 'l': p[n++] = '<'; break;
289          case 'm': p[n++] = '-'; break;
290          case 'n': p[n++] = '!'; break;
291          case 'p': p[n++] = '+'; break;
292          case 'q': p[n++] = '\\'; break;
293          case 'r': p[n++] = '\''; break;
294          case 's': p[n++] = '/'; break;
295          case 't': p[n++] = '*'; break;
296          case 'u': p[n++] = '^'; break;
297          case 'v': p[n++] = '%'; break;
298          case 'x':
299             if (!s[0] || !s[1]) goto parse_error;
300             if (fromHexDigit(s[0]) < 0 || fromHexDigit(s[1]) < 0) goto parse_error;
301             p[n++] = 16 * fromHexDigit(s[0]) + fromHexDigit(s[1]);
302             p += 2; s += 2;
303             break;
304          case '0': case '1': case '2': case '3': case '4':
305          case '5': case '6': case '7': case '8': case '9':
306             i = 0;
307             s--;
308             while (*s && isdigit((int)(*s))) {
309                i = 10 * i + (*s - '0');
310                s++;
311             }
312             if (*s != 'T') goto parse_error;
313             s++;
314             p[n++] = '(';
315             while (i > 0) { p[n++] = ','; i--; };
316             p[n++] = ')';
317             break;
318          default: 
319             goto parse_error;
320       }      
321    }
322    p[n] = 0;
323    t = findText(p);
324    free(p);
325    return t;
326
327   parse_error:
328    free(p);
329    fprintf ( stderr, "\nstring = `%s'\n", s );
330    internal ( "unZcodeThenFindText: parse error on above string");
331    return NIL; /*notreached*/
332 }
333
334
335 Text enZcodeThenFindText ( String s )
336 {
337    unsigned char* p;
338    Int            n, nn;
339    Text           t;
340    char toHex[16] = "0123456789ABCDEF";
341
342    assert(s);
343    nn = 100 + 10 * strlen(s);
344    p = malloc ( nn );
345    if (!p) internal ("enZcodeThenFindText: malloc failed");
346    n = 0;
347    while (1) {
348       if (!(*s)) break;
349       if (n > nn-90) internal ("enZcodeThenFindText: result is too big");
350       if (*s != 'z' 
351           && *s != 'Z'
352           && (isalnum((int)(*s)) || *s == '_')) { 
353          p[n] = *s; n++; s++;
354          continue;
355       }
356       if (*s == '(') {
357          int tup = 0;
358          char num[12];
359          s++;
360          while (*s && *s==',') { s++; tup++; };
361          if (*s != ')') internal("enZcodeThenFindText: invalid tuple type");
362          s++;
363          p[n++] = 'Z';
364          sprintf(num,"%d",tup);
365          p[n] = 0; strcat ( &(p[n]), num ); n += strlen(num);
366          p[n++] = 'T';
367          continue;         
368       }
369       switch (*s++) {
370          case '(': p[n++] = 'Z'; p[n++] = 'L'; break;
371          case ')': p[n++] = 'Z'; p[n++] = 'R'; break;
372          case '[': p[n++] = 'Z'; p[n++] = 'M'; break;
373          case ']': p[n++] = 'Z'; p[n++] = 'N'; break;
374          case ':': p[n++] = 'Z'; p[n++] = 'C'; break;
375          case 'Z': p[n++] = 'Z'; p[n++] = 'Z'; break;
376          case 'z': p[n++] = 'z'; p[n++] = 'z'; break;
377          case '&': p[n++] = 'z'; p[n++] = 'a'; break;
378          case '|': p[n++] = 'z'; p[n++] = 'b'; break;
379          case '$': p[n++] = 'z'; p[n++] = 'd'; break;
380          case '=': p[n++] = 'z'; p[n++] = 'e'; break;
381          case '>': p[n++] = 'z'; p[n++] = 'g'; break;
382          case '#': p[n++] = 'z'; p[n++] = 'h'; break;
383          case '.': p[n++] = 'z'; p[n++] = 'i'; break;
384          case '<': p[n++] = 'z'; p[n++] = 'l'; break;
385          case '-': p[n++] = 'z'; p[n++] = 'm'; break;
386          case '!': p[n++] = 'z'; p[n++] = 'n'; break;
387          case '+': p[n++] = 'z'; p[n++] = 'p'; break;
388          case '\'': p[n++] = 'z'; p[n++] = 'q'; break;
389          case '\\': p[n++] = 'z'; p[n++] = 'r'; break;
390          case '/': p[n++] = 'z'; p[n++] = 's'; break;
391          case '*': p[n++] = 'z'; p[n++] = 't'; break;
392          case '^': p[n++] = 'z'; p[n++] = 'u'; break;
393          case '%': p[n++] = 'z'; p[n++] = 'v'; break;
394          default: s--; p[n++] = 'z'; p[n++] = 'x';
395                        p[n++] = toHex[(int)(*s)/16];
396                        p[n++] = toHex[(int)(*s)%16];
397                   s++; break;
398       }
399    }
400    p[n] = 0;
401    t = findText(p);
402    free(p);
403    return t;
404 }
405
406
407 Text textOf ( Cell c )
408 {
409    Bool ok = 
410           (whatIs(c)==VARIDCELL
411            || whatIs(c)==CONIDCELL
412            || whatIs(c)==VAROPCELL
413            || whatIs(c)==CONOPCELL
414            || whatIs(c)==STRCELL
415            || whatIs(c)==DICTVAR
416           );
417    if (!ok) {
418       fprintf(stderr, "\ntextOf: bad tag %d\n",whatIs(c) );
419       internal("textOf: bad tag");
420    }
421    return snd(c);
422 }
423
424 /* --------------------------------------------------------------------------
425  * Ext storage:
426  *
427  * Currently, the only attributes that we store for each Ext value is the
428  * corresponding Text label.  At some later stage, we may decide to cache
429  * types, predicates, etc. here as a space saving gesture.  Given that Text
430  * comparison is cheap, and that this is an experimental implementation, we
431  * will use a straightforward linear search to locate Ext values from their
432  * corresponding Text labels; a hashing scheme can be introduced later if
433  * this turns out to be a problem.
434  * ------------------------------------------------------------------------*/
435
436 #if TREX
437 Text  DEFTABLE(tabExt,NUM_EXT);         /* Storage for Ext names           */
438 Ext   extHw;
439
440 Ext mkExt(t)                            /* Allocate or find an Ext value   */
441 Text t; {
442     Ext e = EXTMIN;
443     for (; e<extHw; e++)
444         if (t==extText(e))
445             return e;
446     if (extHw-EXTMIN >= NUM_EXT) {
447         ERRMSG(0) "Ext storage space exhausted"
448         EEND;
449     }
450     extText(extHw) = t;
451     return extHw++;
452 }
453 #endif
454
455 /* --------------------------------------------------------------------------
456  * Tycon storage:
457  *
458  * A Tycon represents a user defined type constructor.  Tycons are indexed
459  * by Text values ... a very simple hash function is used to improve lookup
460  * times.  Tycon entries with the same hash code are chained together, with
461  * the most recent entry at the front of the list.
462  * ------------------------------------------------------------------------*/
463
464 #define TYCONHSZ 256                            /* Size of Tycon hash table*/
465 #define tHash(x) ((x)%TYCONHSZ)                 /* Tycon hash function     */
466 static  Tycon    tyconHw;                       /* next unused Tycon       */
467 static  Tycon    DEFTABLE(tyconHash,TYCONHSZ);  /* Hash table storage      */
468 struct  strTycon DEFTABLE(tabTycon,NUM_TYCON);  /* Tycon storage           */
469
470 Tycon newTycon(t)                       /* add new tycon to tycon table    */
471 Text t; {
472     Int h = tHash(t);
473     if (tyconHw-TYCMIN >= NUM_TYCON) {
474         ERRMSG(0) "Type constructor storage space exhausted"
475         EEND;
476     }
477     tycon(tyconHw).text          = t;   /* clear new tycon record          */
478     tycon(tyconHw).kind          = NIL;
479     tycon(tyconHw).defn          = NIL;
480     tycon(tyconHw).what          = NIL;
481     tycon(tyconHw).conToTag      = NIL;
482     tycon(tyconHw).tagToCon      = NIL;
483     tycon(tyconHw).tuple         = -1;
484     tycon(tyconHw).mod           = currentModule;
485     tycon(tyconHw).itbl          = NULL;
486     module(currentModule).tycons = cons(tyconHw,module(currentModule).tycons);
487     tycon(tyconHw).nextTyconHash = tyconHash[h];
488     tyconHash[h]                 = tyconHw;
489
490     return tyconHw++;
491 }
492
493 Tycon findTycon(t)                      /* locate Tycon in tycon table     */
494 Text t; {
495     Tycon tc = tyconHash[tHash(t)];
496
497     while (nonNull(tc) && tycon(tc).text!=t)
498         tc = tycon(tc).nextTyconHash;
499     return tc;
500 }
501
502 Tycon addTycon(tc)  /* Insert Tycon in tycon table - if no clash is caused */
503 Tycon tc; {
504     Tycon oldtc; 
505     assert(whatIs(tc)==TYCON || whatIs(tc)==TUPLE);
506     oldtc = findTycon(tycon(tc).text);
507     if (isNull(oldtc)) {
508         hashTycon(tc);
509         module(currentModule).tycons=cons(tc,module(currentModule).tycons);
510         return tc;
511     } else
512         return oldtc;
513 }
514
515 static Void local hashTycon(tc)         /* Insert Tycon into hash table    */
516 Tycon tc; {
517   if (!(isTycon(tc) || isTuple(tc))) {
518     printf("\nbad stuff: " ); print(tc,10); printf("\n");
519       assert(isTycon(tc) || isTuple(tc));
520   }
521    if (1) {
522      Text  t = tycon(tc).text;
523      Int   h = tHash(t);
524      tycon(tc).nextTyconHash = tyconHash[h];
525      tyconHash[h]            = tc;
526    }
527 }
528
529 Tycon findQualTycon(id) /*locate (possibly qualified) Tycon in tycon table */
530 Cell id; {
531     if (!isPair(id)) internal("findQualTycon");
532     switch (fst(id)) {
533         case CONIDCELL :
534         case CONOPCELL :
535             return findTycon(textOf(id));
536         case QUALIDENT : {
537             Text   t  = qtextOf(id);
538             Module m  = findQualifier(qmodOf(id));
539             List   es = NIL;
540             if (isNull(m)) return NIL;
541             for(es=module(m).exports; nonNull(es); es=tl(es)) {
542                 Cell e = hd(es);
543                 if (isPair(e) && isTycon(fst(e)) && tycon(fst(e)).text==t) 
544                     return fst(e);
545             }
546             return NIL;
547         }
548         default : internal("findQualTycon2");
549     }
550     return NIL; /* NOTREACHED */
551 }
552
553 Tycon addPrimTycon(t,kind,ar,what,defn) /* add new primitive type constr   */
554 Text t;
555 Kind kind;
556 Int  ar;
557 Cell what;
558 Cell defn; {
559     Tycon tc        = newTycon(t);
560     tycon(tc).line  = 0;
561     tycon(tc).kind  = kind;
562     tycon(tc).what  = what;
563     tycon(tc).defn  = defn;
564     tycon(tc).arity = ar;
565     return tc;
566 }
567
568 static List local insertTycon(tc,ts)    /* insert tycon tc into sorted list*/
569 Tycon tc;                               /* ts                              */
570 List  ts; {
571     Cell   prev = NIL;
572     Cell   curr = ts;
573     String s    = textToStr(tycon(tc).text);
574
575     while (nonNull(curr) && strCompare(s,textToStr(tycon(hd(curr)).text))>=0) {
576         if (hd(curr)==tc)               /* just in case we get duplicates! */
577             return ts;
578         prev = curr;
579         curr = tl(curr);
580     }
581     if (nonNull(prev)) {
582         tl(prev) = cons(tc,curr);
583         return ts;
584     }
585     else
586         return cons(tc,curr);
587 }
588
589 List addTyconsMatching(pat,ts)          /* Add tycons matching pattern pat */
590 String pat;                             /* to list of Tycons ts            */
591 List   ts; {                            /* Null pattern matches every tycon*/
592     Tycon tc;                           /* (Tycons with NIL kind excluded) */
593     for (tc=TYCMIN; tc<tyconHw; ++tc)
594         if (!pat || stringMatch(pat,textToStr(tycon(tc).text)))
595             if (nonNull(tycon(tc).kind))
596                 ts = insertTycon(tc,ts);
597     return ts;
598 }
599
600 Text ghcTupleText_n ( Int n )
601 {
602     Int i;
603     Int x = 0; 
604     char buf[104];
605     if (n < 0 || n >= 100) internal("ghcTupleText_n");
606     if (n == 1) internal("ghcTupleText_n==1");
607     buf[x++] = '(';
608     for (i = 1; i <= n-1; i++) buf[x++] = ',';
609     buf[x++] = ')';
610     buf[x++] = 0;
611     return findText(buf);
612 }
613
614 Text ghcTupleText(tup)
615 Tycon tup; {
616     if (!isTuple(tup)) {
617        assert(isTuple(tup));
618     }
619     return ghcTupleText_n ( tupleOf(tup) );
620 }
621
622
623 Tycon mkTuple ( Int n )
624 {
625    Int i;
626    if (n >= NUM_TUPLES)
627       internal("mkTuple: request for tuple of unsupported size");
628    for (i = TYCMIN; i < tyconHw; i++)
629       if (tycon(i).tuple == n) return i;
630    internal("mkTuple: request for non-existent tuple");
631 }
632
633
634 /* --------------------------------------------------------------------------
635  * Name storage:
636  *
637  * A Name represents a top level binding of a value to an identifier.
638  * Such values may be a constructor function, a member function in a
639  * class, a user-defined or primitive value/function.
640  *
641  * Names are indexed by Text values ... a very simple hash functions speeds
642  * access to the table of Names and Name entries with the same hash value
643  * are chained together, with the most recent entry at the front of the
644  * list.
645  * ------------------------------------------------------------------------*/
646
647 #define NAMEHSZ  256                            /* Size of Name hash table */
648 #define nHash(x) ((x)%NAMEHSZ)                  /* hash fn :: Text->Int    */
649         Name     nameHw;                        /* next unused name        */
650 static  Name     DEFTABLE(nameHash,NAMEHSZ);    /* Hash table storage      */
651 struct  strName  DEFTABLE(tabName,NUM_NAME);    /* Name table storage      */
652
653 Name newName(t,parent)                  /* Add new name to name table      */
654 Text t; 
655 Cell parent; {
656     Int h = nHash(t);
657     if (nameHw-NAMEMIN >= NUM_NAME) {
658         ERRMSG(0) "Name storage space exhausted"
659         EEND;
660     }
661     name(nameHw).text         = t;      /* clear new name record           */
662     name(nameHw).line         = 0;
663     name(nameHw).syntax       = NO_SYNTAX;
664     name(nameHw).parent       = parent;
665     name(nameHw).arity        = 0;
666     name(nameHw).number       = EXECNAME;
667     name(nameHw).defn         = NIL;
668     name(nameHw).stgVar       = NIL;
669     name(nameHw).callconv     = NIL;
670     name(nameHw).type         = NIL;
671     name(nameHw).primop       = 0;
672     name(nameHw).mod          = currentModule;
673     name(nameHw).itbl         = NULL;
674     module(currentModule).names=cons(nameHw,module(currentModule).names);
675     name(nameHw).nextNameHash = nameHash[h];
676     nameHash[h]               = nameHw;
677     return nameHw++;
678 }
679
680 Name findName(t)                        /* Locate name in name table       */
681 Text t; {
682     Name n = nameHash[nHash(t)];
683
684     while (nonNull(n) && name(n).text!=t)
685         n = name(n).nextNameHash;
686     return n;
687 }
688
689 Name addName(nm)                        /* Insert Name in name table - if  */
690 Name nm; {                              /* no clash is caused              */
691     Name oldnm; 
692     assert(whatIs(nm)==NAME);
693     oldnm = findName(name(nm).text);
694     if (isNull(oldnm)) {
695         hashName(nm);
696         module(currentModule).names=cons(nm,module(currentModule).names);
697         return nm;
698     } else
699         return oldnm;
700 }
701
702 static Void local hashName(nm)          /* Insert Name into hash table     */
703 Name nm; {
704     Text t;
705     Int  h;
706     assert(isName(nm));
707     t = name(nm).text;
708     h = nHash(t);
709     name(nm).nextNameHash = nameHash[h];
710     nameHash[h]           = nm;
711 }
712
713 Name findQualName(id)              /* Locate (possibly qualified) name*/
714 Cell id; {                         /* in name table                   */
715     if (!isPair(id))
716         internal("findQualName");
717     switch (fst(id)) {
718         case VARIDCELL :
719         case VAROPCELL :
720         case CONIDCELL :
721         case CONOPCELL :
722             return findName(textOf(id));
723         case QUALIDENT : {
724             Text   t  = qtextOf(id);
725             Module m  = findQualifier(qmodOf(id));
726             List   es = NIL;
727             if (isNull(m)) return NIL;
728             for(es=module(m).exports; nonNull(es); es=tl(es)) {
729                 Cell e = hd(es);
730                 if (isName(e) && name(e).text==t) 
731                     return e;
732                 else if (isPair(e) && DOTDOT==snd(e)) {
733                     List subentities = NIL;
734                     Cell c = fst(e);
735                     if (isTycon(c)
736                         && (tycon(c).what==DATATYPE || tycon(c).what==NEWTYPE))
737                         subentities = tycon(c).defn;
738                     else if (isClass(c))
739                         subentities = cclass(c).members;
740                     for(; nonNull(subentities); subentities=tl(subentities)) {
741                        if (!isName(hd(subentities)))
742                             internal("findQualName3");
743                         if (name(hd(subentities)).text == t)
744                             return hd(subentities);
745                     }
746                 }
747             }
748             return NIL;
749         }
750         default : internal("findQualName2");
751     }
752     return 0; /* NOTREACHED */
753 }
754
755
756 Name nameFromStgVar ( StgVar v )
757 {
758    Int n;
759    for (n = NAMEMIN; n < nameHw; n++)
760       if (name(n).stgVar == v) return n;
761    return NIL;
762 }
763
764 void* getHugs_AsmObject_for ( char* s )
765 {
766    StgVar v;
767    Text   t = findText(s);
768    Name   n = NIL;
769    for (n = NAMEMIN; n < nameHw; n++)
770       if (name(n).text == t) break;
771    if (n == nameHw) internal("getHugs_AsmObject_for(1)");
772    v = name(n).stgVar;
773    if (!isStgVar(v) || !isPtr(stgVarInfo(v)))
774       internal("getHugs_AsmObject_for(2)");
775    return ptrOf(stgVarInfo(v));
776 }
777
778 /* --------------------------------------------------------------------------
779  * Primitive functions:
780  * ------------------------------------------------------------------------*/
781
782 Module findFakeModule ( Text t )
783 {
784    Module m = findModule(t);
785    if (nonNull(m)) {
786       if (!module(m).fake) internal("findFakeModule");
787    } else {
788       m = newModule(t);
789       module(m).fake = TRUE;
790    }
791    return m;
792 }
793
794
795 Name addWiredInBoxingTycon
796         ( String modNm, String typeNm, String constrNm,
797           Int rep, Kind kind )
798 {
799    Name   n;
800    Tycon  t;
801    Text   modT  = findText(modNm);
802    Text   typeT = findText(typeNm);
803    Text   conT  = findText(constrNm);
804    Module m     = findFakeModule(modT);
805    setCurrModule(m);
806    
807    n = newName(conT,NIL);
808    name(n).arity  = 1;
809    name(n).number = cfunNo(0);
810    name(n).type   = NIL;
811    name(n).primop = (void*)rep;
812
813    t = newTycon(typeT);
814    tycon(t).what = DATATYPE;
815    tycon(t).kind = kind;
816    return n;
817 }
818
819
820 Tycon addTupleTycon ( Int n )
821 {
822    Int    i;
823    Kind   k;
824    Tycon  t;
825    Module m;
826    Name   nm;
827
828    for (i = TYCMIN; i < tyconHw; i++)
829       if (tycon(i).tuple == n) return i;
830
831    if (combined)
832       m = findFakeModule(findText(n==0 ? "PrelBase" : "PrelTup")); else
833       m = findModule(findText("Prelude"));
834
835    setCurrModule(m);
836    k = STAR;
837    for (i = 0; i < n; i++) k = ap(STAR,k);
838    t = newTycon(ghcTupleText_n(n));
839    tycon(t).kind  = k;
840    tycon(t).tuple = n;
841    tycon(t).what  = DATATYPE;
842
843    if (n == 0) {
844       /* maybe we want to do this for all n ? */
845       nm = newName(ghcTupleText_n(n), t);
846       name(nm).type = t;   /* ummm ... for n > 0 */
847    }
848
849    return t;
850 }
851
852
853 Tycon addWiredInEnumTycon ( String modNm, String typeNm, 
854                             List /*of Text*/ constrs )
855 {
856    Int    i;
857    Tycon  t;
858    Text   modT  = findText(modNm);
859    Text   typeT = findText(typeNm);
860    Module m     = findFakeModule(modT);
861    setCurrModule(m);
862
863    t             = newTycon(typeT);
864    tycon(t).kind = STAR;
865    tycon(t).what = DATATYPE;
866    
867    constrs = reverse(constrs);
868    i       = length(constrs);
869    for (; nonNull(constrs); constrs=tl(constrs),i--) {
870       Text conT        = hd(constrs);
871       Name con         = newName(conT,t);
872       name(con).number = cfunNo(i);
873       name(con).type   = t;
874       name(con).parent = t;
875       tycon(t).defn    = cons(con, tycon(t).defn);      
876    }
877    return t;
878 }
879
880
881 Name addPrimCfunREP(t,arity,no,rep)     /* add primitive constructor func  */
882 Text t;                                 /* sets rep, not type              */
883 Int  arity;
884 Int  no;
885 Int  rep; { /* Really AsmRep */
886     Name n          = newName(t,NIL);
887     name(n).arity   = arity;
888     name(n).number  = cfunNo(no);
889     name(n).type    = NIL;
890     name(n).primop  = (void*)rep;
891     return n;
892 }
893
894
895 Name addPrimCfun(t,arity,no,type)       /* add primitive constructor func  */
896 Text t;
897 Int  arity;
898 Int  no;
899 Cell type; {
900     Name n         = newName(t,NIL);
901     name(n).arity  = arity;
902     name(n).number = cfunNo(no);
903     name(n).type   = type;
904     return n;
905 }
906
907
908 Int sfunPos(s,c)                        /* Find position of field with     */
909 Name s;                                 /* selector s in constructor c.    */
910 Name c; {
911     List cns;
912     cns = name(s).defn;
913     for (; nonNull(cns); cns=tl(cns))
914         if (fst(hd(cns))==c)
915             return intOf(snd(hd(cns)));
916     internal("sfunPos");
917     return 0;/* NOTREACHED */
918 }
919
920 static List local insertName(nm,ns)     /* insert name nm into sorted list */
921 Name nm;                                /* ns                              */
922 List ns; {
923     Cell   prev = NIL;
924     Cell   curr = ns;
925     String s    = textToStr(name(nm).text);
926
927     while (nonNull(curr) && strCompare(s,textToStr(name(hd(curr)).text))>=0) {
928         if (hd(curr)==nm)               /* just in case we get duplicates! */
929             return ns;
930         prev = curr;
931         curr = tl(curr);
932     }
933     if (nonNull(prev)) {
934         tl(prev) = cons(nm,curr);
935         return ns;
936     }
937     else
938         return cons(nm,curr);
939 }
940
941 List addNamesMatching(pat,ns)           /* Add names matching pattern pat  */
942 String pat;                             /* to list of names ns             */
943 List   ns; {                            /* Null pattern matches every name */
944     Name nm;                            /* (Names with NIL type, or hidden */
945 #if 1
946     for (nm=NAMEMIN; nm<nameHw; ++nm)   /* or invented names are excluded) */
947         if (!inventedText(name(nm).text) && nonNull(name(nm).type)) {
948             String str = textToStr(name(nm).text);
949             if (str[0]!='_' && (!pat || stringMatch(pat,str)))
950                 ns = insertName(nm,ns);
951         }
952     return ns;
953 #else
954     List mns = module(currentModule).names;
955     for(; nonNull(mns); mns=tl(mns)) {
956         Name nm = hd(mns);
957         if (!inventedText(name(nm).text)) {
958             String str = textToStr(name(nm).text);
959             if (str[0]!='_' && (!pat || stringMatch(pat,str)))
960                 ns = insertName(nm,ns);
961         }
962     }
963     return ns;
964 #endif
965 }
966
967 /* --------------------------------------------------------------------------
968  * A simple string matching routine
969  *     `*'    matches any sequence of zero or more characters
970  *     `?'    matches any single character exactly 
971  *     `@str' matches the string str exactly (ignoring any special chars)
972  *     `\c'   matches the character c only (ignoring special chars)
973  *     c      matches the character c only
974  * ------------------------------------------------------------------------*/
975
976 static Void local patternError(s)       /* report error in pattern         */
977 String s; {
978     ERRMSG(0) "%s in pattern", s
979     EEND;
980 }
981
982 static Bool local stringMatch(pat,str)  /* match string against pattern    */
983 String pat;
984 String str; {
985
986     for (;;)
987         switch (*pat) {
988             case '\0' : return (*str=='\0');
989
990             case '*'  : do {
991                             if (stringMatch(pat+1,str))
992                                 return TRUE;
993                         } while (*str++);
994                         return FALSE;
995
996             case '?'  : if (*str++=='\0')
997                             return FALSE;
998                         pat++;
999                         break;
1000
1001             case '['  : {   Bool found = FALSE;
1002                             while (*++pat!='\0' && *pat!=']')
1003                                 if (!found && ( pat[0] == *str  ||
1004                                                (pat[1] == '-'   &&
1005                                                 pat[2] != ']'   &&
1006                                                 pat[2] != '\0'  &&
1007                                                 pat[0] <= *str  &&
1008                                                 pat[2] >= *str)))
1009
1010                                     found = TRUE;
1011                             if (*pat != ']')
1012                                 patternError("missing `]'");
1013                             if (!found)
1014                                 return FALSE;
1015                             pat++;
1016                             str++;
1017                         }
1018                         break;
1019
1020             case '\\' : if (*++pat == '\0')
1021                             patternError("extra trailing `\\'");
1022                         /*fallthru!*/
1023             default   : if (*pat++ != *str++)
1024                             return FALSE;
1025                         break;
1026         }
1027 }
1028
1029 /* --------------------------------------------------------------------------
1030  * Storage of type classes, instances etc...:
1031  * ------------------------------------------------------------------------*/
1032
1033 static Class classHw;                  /* next unused class                */
1034 static List  classes;                  /* list of classes in current scope */
1035 static Inst  instHw;                   /* next unused instance record      */
1036
1037 struct strClass DEFTABLE(tabClass,NUM_CLASSES); /* table of class records  */
1038 struct strInst far *tabInst;           /* (pointer to) table of instances  */
1039
1040 Class newClass(t)                      /* add new class to class table     */
1041 Text t; {
1042     if (classHw-CLASSMIN >= NUM_CLASSES) {
1043         ERRMSG(0) "Class storage space exhausted"
1044         EEND;
1045     }
1046     cclass(classHw).text      = t;
1047     cclass(classHw).arity     = 0;
1048     cclass(classHw).kinds     = NIL;
1049     cclass(classHw).head      = NIL;
1050     cclass(classHw).fds       = NIL;
1051     cclass(classHw).xfds      = NIL;
1052     cclass(classHw).dcon      = NIL;
1053     cclass(classHw).supers    = NIL;
1054     cclass(classHw).dsels     = NIL;
1055     cclass(classHw).members   = NIL;
1056     cclass(classHw).defaults  = NIL;
1057     cclass(classHw).instances = NIL;
1058     classes=cons(classHw,classes);
1059     cclass(classHw).mod       = currentModule;
1060     module(currentModule).classes=cons(classHw,module(currentModule).classes);
1061     return classHw++;
1062 }
1063
1064 Class classMax() {                      /* Return max Class in use ...     */
1065     return classHw;                     /* This is a bit ugly, but it's not*/
1066 }                                       /* worth a lot of effort right now */
1067
1068 Class findClass(t)                     /* look for named class in table    */
1069 Text t; {
1070     Class cl;
1071     List cs;
1072     for (cs=classes; nonNull(cs); cs=tl(cs)) {
1073         cl=hd(cs);
1074         if (cclass(cl).text==t)
1075             return cl;
1076     }
1077     return NIL;
1078 }
1079
1080 Class addClass(c)                       /* Insert Class in class list      */
1081 Class c; {                              /*  - if no clash caused           */
1082     Class oldc; 
1083     assert(whatIs(c)==CLASS);
1084     oldc = findClass(cclass(c).text);
1085     if (isNull(oldc)) {
1086         classes=cons(c,classes);
1087         module(currentModule).classes=cons(c,module(currentModule).classes);
1088         return c;
1089     }
1090     else
1091         return oldc;
1092 }
1093
1094 Class findQualClass(c)                  /* Look for (possibly qualified)   */
1095 Cell c; {                               /* class in class list             */
1096     if (!isQualIdent(c)) {
1097         return findClass(textOf(c));
1098     } else {
1099         Text   t  = qtextOf(c);
1100         Module m  = findQualifier(qmodOf(c));
1101         List   es = NIL;
1102         if (isNull(m))
1103             return NIL;
1104         for (es=module(m).exports; nonNull(es); es=tl(es)) {
1105             Cell e = hd(es);
1106             if (isPair(e) && isClass(fst(e)) && cclass(fst(e)).text==t) 
1107                 return fst(e);
1108         }
1109     }
1110     return NIL;
1111 }
1112
1113 Inst newInst() {                       /* Add new instance to table        */
1114     if (instHw-INSTMIN >= NUM_INSTS) {
1115         ERRMSG(0) "Instance storage space exhausted"
1116         EEND;
1117     }
1118     inst(instHw).kinds      = NIL;
1119     inst(instHw).head       = NIL;
1120     inst(instHw).specifics  = NIL;
1121     inst(instHw).implements = NIL;
1122     inst(instHw).builder    = NIL;
1123     inst(instHw).mod        = currentModule;
1124
1125     return instHw++;
1126 }
1127
1128 #ifdef DEBUG_DICTS
1129 extern Void printInst Args((Inst));
1130
1131 Void printInst(in)
1132 Inst in; {
1133     Class cl = inst(in).c;
1134     Printf("%s-", textToStr(cclass(cl).text));
1135     printType(stdout,inst(in).t);
1136 }
1137 #endif /* DEBUG_DICTS */
1138
1139 Inst findFirstInst(tc)                  /* look for 1st instance involving */
1140 Tycon tc; {                             /* the type constructor tc         */
1141     return findNextInst(tc,INSTMIN-1);
1142 }
1143
1144 Inst findNextInst(tc,in)                /* look for next instance involving*/
1145 Tycon tc;                               /* the type constructor tc         */
1146 Inst  in; {                             /* starting after instance in      */
1147     while (++in < instHw) {
1148         Cell pi = inst(in).head;
1149         for (; isAp(pi); pi=fun(pi))
1150             if (typeInvolves(arg(pi),tc))
1151                 return in;
1152     }
1153     return NIL;
1154 }
1155
1156 static Bool local typeInvolves(ty,tc)   /* Test to see if type ty involves */
1157 Type ty;                                /* type constructor/tuple tc.      */
1158 Type tc; {
1159     return (ty==tc)
1160         || (isAp(ty) && (typeInvolves(fun(ty),tc)
1161                          || typeInvolves(arg(ty),tc)));
1162 }
1163
1164
1165 /* Needed by finishGHCInstance to find classes, before the
1166    export list has been built -- so we can't use 
1167    findQualClass.
1168 */
1169 Class findQualClassWithoutConsultingExportList ( QualId q )
1170 {
1171    Class cl;
1172    Text t_mod;
1173    Text t_class;
1174
1175    assert(isQCon(q));
1176
1177    if (isCon(q)) {
1178       t_mod   = NIL;
1179       t_class = textOf(q);
1180    } else {
1181       t_mod   = qmodOf(q);
1182       t_class = qtextOf(q);
1183    }
1184
1185    for (cl = CLASSMIN; cl < classHw; cl++) {
1186       if (cclass(cl).text == t_class) {
1187          /* Class name is ok, but is this the right module? */
1188          if (isNull(t_mod)   /* no module name specified */
1189              || (nonNull(t_mod) 
1190                  && t_mod == module(cclass(cl).mod).text)
1191             )
1192             return cl;
1193       }
1194    }
1195    return NIL;
1196 }
1197
1198
1199 /* Same deal, except for Tycons. */
1200 Tycon findQualTyconWithoutConsultingExportList ( QualId q )
1201 {
1202    Tycon tc;
1203    Text t_mod;
1204    Text t_tycon;
1205
1206    assert(isQCon(q));
1207
1208    if (isCon(q)) {
1209       t_mod   = NIL;
1210       t_tycon = textOf(q);
1211    } else {
1212       t_mod   = qmodOf(q);
1213       t_tycon = qtextOf(q);
1214    }
1215
1216    for (tc = TYCMIN; tc < tyconHw; tc++) {
1217       if (tycon(tc).text == t_tycon) {
1218          /* Tycon name is ok, but is this the right module? */
1219          if (isNull(t_mod)   /* no module name specified */
1220              || (nonNull(t_mod) 
1221                  && t_mod == module(tycon(tc).mod).text)
1222             )
1223             return tc;
1224       }
1225    }
1226    return NIL;
1227 }
1228
1229 Tycon findTyconInAnyModule ( Text t )
1230 {
1231    Tycon tc;
1232    for (tc = TYCMIN; tc < tyconHw; tc++)
1233       if (tycon(tc).text == t) return tc;
1234    return NIL;
1235 }
1236
1237 Class findClassInAnyModule ( Text t )
1238 {
1239    Class cc;
1240    for (cc = CLASSMIN; cc < classHw; cc++)
1241       if (cclass(cc).text == t) return cc;
1242    return NIL;
1243 }
1244
1245 Name findNameInAnyModule ( Text t )
1246 {
1247    Name nm;
1248    for (nm = NAMEMIN; nm < nameHw; nm++)
1249       if (name(nm).text == t) return nm;
1250    return NIL;
1251 }
1252
1253 /* Same deal, except for Names. */
1254 Name findQualNameWithoutConsultingExportList ( QualId q )
1255 {
1256    Name nm;
1257    Text t_mod;
1258    Text t_name;
1259
1260    assert(isQVar(q) || isQCon(q));
1261
1262    if (isCon(q) || isVar(q)) {
1263       t_mod  = NIL;
1264       t_name = textOf(q);
1265    } else {
1266       t_mod  = qmodOf(q);
1267       t_name = qtextOf(q);
1268    }
1269
1270    for (nm = NAMEMIN; nm < nameHw; nm++) {
1271       if (name(nm).text == t_name) {
1272          /* Name is ok, but is this the right module? */
1273          if (isNull(t_mod)   /* no module name specified */
1274              || (nonNull(t_mod) 
1275                  && t_mod == module(name(nm).mod).text)
1276             )
1277             return nm;
1278       }
1279    }
1280    return NIL;
1281 }
1282
1283
1284 /* returns List of QualId */
1285 List getAllKnownTyconsAndClasses ( void )
1286 {
1287    Tycon tc;
1288    Class nw;
1289    List  xs = NIL;
1290    for (tc = TYCMIN; tc < tyconHw; tc++) {
1291       /* almost certainly undue paranoia about duplicate avoidance, but .. */
1292       QualId q = mkQCon( module(tycon(tc).mod).text, tycon(tc).text );
1293       if (!qualidIsMember(q,xs))
1294          xs = cons ( q, xs );
1295    }
1296    for (nw = CLASSMIN; nw < classHw; nw++) {
1297       QualId q = mkQCon( module(cclass(nw).mod).text, cclass(nw).text );
1298       if (!qualidIsMember(q,xs))
1299          xs = cons ( q, xs );
1300    }
1301    return xs;
1302 }
1303
1304 /* Purely for debugging. */
1305 void locateSymbolByName ( Text t )
1306 {
1307    Int i;
1308    for (i = NAMEMIN; i < nameHw; i++)
1309       if (name(i).text == t)
1310          fprintf ( stderr, "name(%d)\n", i-NAMEMIN);
1311    for (i = TYCMIN; i < tyconHw; i++)
1312       if (tycon(i).text == t)
1313          fprintf ( stderr, "tycon(%d)\n", i-TYCMIN);
1314    for (i = CLASSMIN; i < classHw; i++)
1315       if (cclass(i).text == t)
1316          fprintf ( stderr, "class(%d)\n", i-CLASSMIN);
1317 }
1318
1319 /* --------------------------------------------------------------------------
1320  * Control stack:
1321  *
1322  * Various parts of the system use a stack of cells.  Most of the stack
1323  * operations are defined as macros, expanded inline.
1324  * ------------------------------------------------------------------------*/
1325
1326 Cell DEFTABLE(cellStack,NUM_STACK); /* Storage for cells on stack          */
1327 StackPtr sp;                        /* stack pointer                       */
1328
1329 #if GIMME_STACK_DUMPS
1330
1331 #define UPPER_DISP  5               /* # display entries on top of stack   */
1332 #define LOWER_DISP  5               /* # display entries on bottom of stack*/
1333
1334 Void hugsStackOverflow() {          /* Report stack overflow               */
1335     extern Int  rootsp;
1336     extern Cell evalRoots[];
1337
1338     ERRMSG(0) "Control stack overflow" ETHEN
1339     if (rootsp>=0) {
1340         Int i;
1341         if (rootsp>=UPPER_DISP+LOWER_DISP) {
1342             for (i=0; i<UPPER_DISP; i++) {
1343                 ERRTEXT "\nwhile evaluating: " ETHEN
1344                 ERREXPR(evalRoots[rootsp-i]);
1345             }
1346             ERRTEXT "\n..." ETHEN
1347             for (i=LOWER_DISP-1; i>=0; i--) {
1348                 ERRTEXT "\nwhile evaluating: " ETHEN
1349                 ERREXPR(evalRoots[i]);
1350             }
1351         }
1352         else {
1353             for (i=rootsp; i>=0; i--) {
1354                 ERRTEXT "\nwhile evaluating: " ETHEN
1355                 ERREXPR(evalRoots[i]);
1356             }
1357         }
1358     }
1359     ERRTEXT "\n"
1360     EEND;
1361 }
1362
1363 #else /* !GIMME_STACK_DUMPS */
1364
1365 Void hugsStackOverflow() {          /* Report stack overflow               */
1366     ERRMSG(0) "Control stack overflow"
1367     EEND;
1368 }
1369
1370 #endif /* !GIMME_STACK_DUMPS */
1371
1372 /* --------------------------------------------------------------------------
1373  * Module storage:
1374  *
1375  * A Module represents a user defined module.  
1376  *
1377  * Note: there are now two lookup mechanisms in the system:
1378  *
1379  * 1) The exports from a module are stored in a big list.
1380  *    We resolve qualified names, and import lists by linearly scanning
1381  *    through this list.
1382  *
1383  * 2) Unqualified imports and local definitions for the current module
1384  *    are stored in hash tables (tyconHash and nameHash) or linear lists
1385  *    (classes).
1386  *
1387  * ------------------------------------------------------------------------*/
1388
1389 static  Module   moduleHw;              /* next unused Module              */
1390 struct  Module   DEFTABLE(tabModule,NUM_MODULE); /* Module storage         */
1391 Module  currentModule;                  /* Module currently being processed*/
1392
1393 Bool isValidModule(m)                  /* is m a legitimate module id?     */
1394 Module m; {
1395     return (MODMIN <= m && m < moduleHw);
1396 }
1397
1398 Module newModule(t)                     /* add new module to module table  */
1399 Text t; {
1400     if (moduleHw-MODMIN >= NUM_MODULE) {
1401         ERRMSG(0) "Module storage space exhausted"
1402         EEND;
1403     }
1404     module(moduleHw).text             = t; /* clear new module record      */
1405     module(moduleHw).qualImports      = NIL;
1406     module(moduleHw).fake             = FALSE;
1407     module(moduleHw).exports          = NIL;
1408     module(moduleHw).tycons           = NIL;
1409     module(moduleHw).names            = NIL;
1410     module(moduleHw).classes          = NIL;
1411     module(moduleHw).object           = NULL;
1412     module(moduleHw).objectExtras     = NULL;
1413     module(moduleHw).objectExtraNames = NIL;
1414     return moduleHw++;
1415 }
1416
1417 void ppModules ( void )
1418 {
1419    Int i;
1420    fflush(stderr); fflush(stdout);
1421    printf ( "begin MODULES\n" );
1422    for (i = moduleHw-1; i >= MODMIN; i--)
1423       printf ( " %2d: %16s\n",
1424                i-MODMIN, textToStr(module(i).text)
1425              );
1426    printf ( "end   MODULES\n" );
1427    fflush(stderr); fflush(stdout);
1428 }
1429
1430
1431 Module findModule(t)                    /* locate Module in module table  */
1432 Text t; {
1433     Module m;
1434     for(m=MODMIN; m<moduleHw; ++m) {
1435         if (module(m).text==t)
1436             return m;
1437     }
1438     return NIL;
1439 }
1440
1441 Module findModid(c)                    /* Find module by name or filename  */
1442 Cell c; {
1443     switch (whatIs(c)) {
1444         case STRCELL   : { Script s = scriptThisFile(snd(c));
1445                            return (s==-1) ? NIL : moduleOfScript(s);
1446                          }
1447         case CONIDCELL : return findModule(textOf(c));
1448         default        : internal("findModid");
1449     }
1450     return NIL;/*NOTUSED*/
1451 }
1452
1453 static local Module findQualifier(t)    /* locate Module in import list   */
1454 Text t; {
1455     Module ms;
1456     for (ms=module(currentModule).qualImports; nonNull(ms); ms=tl(ms)) {
1457         if (textOf(fst(hd(ms)))==t)
1458             return snd(hd(ms));
1459     }
1460 #if 1 /* mpj */
1461     if (module(currentModule).text==t)
1462         return currentModule;
1463 #endif
1464     return NIL;
1465 }
1466
1467 Void setCurrModule(m)              /* set lookup tables for current module */
1468 Module m; {
1469     Int i;
1470     assert(isModule(m));
1471     if (m!=currentModule) {
1472         currentModule = m; /* This is the only assignment to currentModule */
1473         for (i=0; i<TYCONHSZ; ++i)
1474             tyconHash[i] = NIL;
1475         mapProc(hashTycon,module(m).tycons);
1476         for (i=0; i<NAMEHSZ; ++i)
1477             nameHash[i] = NIL;
1478         mapProc(hashName,module(m).names);
1479         classes = module(m).classes;
1480     }
1481 }
1482
1483 Name jrsFindQualName ( Text mn, Text sn )
1484 {
1485    Module m;
1486    List   ns;
1487
1488    for (m=MODMIN; m<moduleHw; m++)
1489       if (module(m).text == mn) break;
1490    if (m == moduleHw) return NIL;
1491    
1492    for (ns = module(m).names; nonNull(ns); ns=tl(ns)) 
1493       if (name(hd(ns)).text == sn) return hd(ns);
1494
1495    return NIL;
1496 }
1497
1498
1499 char* nameFromOPtr ( void* p )
1500 {
1501    int i;
1502    Module m;
1503    for (m=MODMIN; m<moduleHw; m++) {
1504       if (module(m).object) {
1505          char* nm = ocLookupAddr ( module(m).object, p );
1506          if (nm) return nm;
1507       }
1508    }
1509    return NULL;
1510 }
1511
1512
1513 void* lookupOTabName ( Module m, char* sym )
1514 {
1515    if (module(m).object)
1516       return ocLookupSym ( module(m).object, sym );
1517    return NULL;
1518 }
1519
1520
1521 void* lookupOExtraTabName ( char* sym )
1522 {
1523    ObjectCode* oc;
1524    Module      m;
1525    for (m = MODMIN; m < moduleHw; m++) {
1526       for (oc = module(m).objectExtras; oc; oc=oc->next) {
1527          void* ad = ocLookupSym ( oc, sym );
1528          if (ad) return ad;
1529       }
1530    }
1531    return NULL;
1532 }
1533
1534
1535 OSectionKind lookupSection ( void* ad )
1536 {
1537    int          i;
1538    Module       m;
1539    ObjectCode*  oc;
1540    OSectionKind sect;
1541
1542    for (m=MODMIN; m<moduleHw; m++) {
1543       if (module(m).object) {
1544          sect = ocLookupSection ( module(m).object, ad );
1545          if (sect != HUGS_SECTIONKIND_NOINFOAVAIL)
1546             return sect;
1547       }
1548       for (oc = module(m).objectExtras; oc; oc=oc->next) {
1549          sect = ocLookupSection ( oc, ad );
1550          if (sect != HUGS_SECTIONKIND_NOINFOAVAIL)
1551             return sect;
1552       }
1553    }
1554    return HUGS_SECTIONKIND_OTHER;
1555 }
1556
1557
1558 /* --------------------------------------------------------------------------
1559  * Script file storage:
1560  *
1561  * script files are read into the system one after another.  The state of
1562  * the stored data structures (except the garbage-collected heap) is recorded
1563  * before reading a new script.  In the event of being unable to read the
1564  * script, or if otherwise requested, the system can be restored to its
1565  * original state immediately before the file was read.
1566  * ------------------------------------------------------------------------*/
1567
1568 typedef struct {                       /* record of storage state prior to */
1569     Text  file;                        /* reading script/module            */
1570     Text  textHw;
1571     Text  nextNewText;
1572     Text  nextNewDText;
1573     Module moduleHw;
1574     Tycon tyconHw;
1575     Name  nameHw;
1576     Class classHw;
1577     Inst  instHw;
1578 #if TREX
1579     Ext   extHw;
1580 #endif
1581 } script;
1582
1583 #ifdef  DEBUG_SHOWUSE
1584 static Void local showUse(msg,val,mx)
1585 String msg;
1586 Int val, mx; {
1587     Printf("%6s : %5d of %5d (%2d%%)\n",msg,val,mx,(100*val)/mx);
1588 }
1589 #endif
1590
1591 static Script scriptHw;                 /* next unused script number       */
1592 static script scripts[NUM_SCRIPTS];     /* storage for script records      */
1593
1594
1595 void ppScripts ( void )
1596 {
1597    Int i;
1598    fflush(stderr); fflush(stdout);
1599    printf ( "begin SCRIPTS\n" );
1600    for (i = scriptHw-1; i >= 0; i--)
1601       printf ( " %2d: %16s  tH=%d  mH=%d  yH=%d  "
1602                "nH=%d  cH=%d  iH=%d  nnS=%d,%d\n",
1603                i, textToStr(scripts[i].file),
1604                scripts[i].textHw, scripts[i].moduleHw,
1605                scripts[i].tyconHw, scripts[i].nameHw, 
1606                scripts[i].classHw, scripts[i].instHw,
1607                scripts[i].nextNewText, scripts[i].nextNewDText 
1608              );
1609    printf ( "end   SCRIPTS\n" );
1610    fflush(stderr); fflush(stdout);
1611 }
1612
1613 Script startNewScript(f)                /* start new script, keeping record */
1614 String f; {                             /* of status for later restoration  */
1615     if (scriptHw >= NUM_SCRIPTS) {
1616         ERRMSG(0) "Too many script files in use"
1617         EEND;
1618     }
1619 #ifdef DEBUG_SHOWUSE
1620     showUse("Text",   textHw,           NUM_TEXT);
1621     showUse("Module", moduleHw-MODMIN,  NUM_MODULE);
1622     showUse("Tycon",  tyconHw-TYCMIN,   NUM_TYCON);
1623     showUse("Name",   nameHw-NAMEMIN,   NUM_NAME);
1624     showUse("Class",  classHw-CLASSMIN, NUM_CLASSES);
1625     showUse("Inst",   instHw-INSTMIN,   NUM_INSTS);
1626 #if TREX
1627     showUse("Ext",    extHw-EXTMIN,     NUM_EXT);
1628 #endif
1629 #endif
1630     scripts[scriptHw].file         = findText( f ? f : "<nofile>" );
1631     scripts[scriptHw].textHw       = textHw;
1632     scripts[scriptHw].nextNewText  = nextNewText;
1633     scripts[scriptHw].nextNewDText = nextNewDText;
1634     scripts[scriptHw].moduleHw     = moduleHw;
1635     scripts[scriptHw].tyconHw      = tyconHw;
1636     scripts[scriptHw].nameHw       = nameHw;
1637     scripts[scriptHw].classHw      = classHw;
1638     scripts[scriptHw].instHw       = instHw;
1639 #if TREX
1640     scripts[scriptHw].extHw        = extHw;
1641 #endif
1642     return scriptHw++;
1643 }
1644
1645 Bool isPreludeScript() {                /* Test whether this is the Prelude*/
1646     return (scriptHw==0);
1647 }
1648
1649 Bool moduleThisScript(m)                /* Test if given module is defined */
1650 Module m; {                             /* in current script file          */
1651     return scriptHw<1 || m>=scripts[scriptHw-1].moduleHw;
1652 }
1653
1654 Module lastModule() {              /* Return module in current script file */
1655     return (moduleHw>MODMIN ? moduleHw-1 : modulePrelude);
1656 }
1657
1658 #define scriptThis(nm,t,tag)            Script nm(x)                       \
1659                                         t x; {                             \
1660                                             Script s=0;                    \
1661                                             while (s<scriptHw              \
1662                                                    && x>=scripts[s].tag)   \
1663                                                 s++;                       \
1664                                             return s;                      \
1665                                         }
1666 scriptThis(scriptThisName,Name,nameHw)
1667 scriptThis(scriptThisTycon,Tycon,tyconHw)
1668 scriptThis(scriptThisInst,Inst,instHw)
1669 scriptThis(scriptThisClass,Class,classHw)
1670 #undef scriptThis
1671
1672 Module moduleOfScript(s)
1673 Script s; {
1674     return (s==0) ? modulePrelude : scripts[s-1].moduleHw;
1675 }
1676
1677 String fileOfModule(m)
1678 Module m; {
1679     Script s;
1680     if (m == modulePrelude) {
1681         return STD_PRELUDE;
1682     }
1683     for(s=0; s<scriptHw; ++s) {
1684         if (scripts[s].moduleHw == m) {
1685             return textToStr(scripts[s].file);
1686         }
1687     }
1688     return 0;
1689 }
1690
1691 Script scriptThisFile(f)
1692 Text f; {
1693     Script s;
1694     for (s=0; s < scriptHw; ++s) {
1695         if (scripts[s].file == f) {
1696             return s+1;
1697         }
1698     }
1699     if (f == findText(STD_PRELUDE)) {
1700         return 0;
1701     }
1702     return (-1);
1703 }
1704
1705 Void dropScriptsFrom(sno)               /* Restore storage to state prior  */
1706 Script sno; {                           /* to reading script sno           */
1707     if (sno<scriptHw) {                 /* is there anything to restore?   */
1708         int i;
1709         textHw       = scripts[sno].textHw;
1710         nextNewText  = scripts[sno].nextNewText;
1711         nextNewDText = scripts[sno].nextNewDText;
1712         moduleHw     = scripts[sno].moduleHw;
1713         tyconHw      = scripts[sno].tyconHw;
1714         nameHw       = scripts[sno].nameHw;
1715         classHw      = scripts[sno].classHw;
1716         instHw       = scripts[sno].instHw;
1717 #if USE_DICTHW
1718         dictHw       = scripts[sno].dictHw;
1719 #endif
1720 #if TREX
1721         extHw        = scripts[sno].extHw;
1722 #endif
1723
1724 #if 0
1725         for (i=moduleHw; i >= scripts[sno].moduleHw; --i) {
1726             if (module(i).objectFile) {
1727                 printf("[bogus] closing objectFile for module %d\n",i);
1728                 /*dlclose(module(i).objectFile);*/
1729             }
1730         }
1731         moduleHw = scripts[sno].moduleHw;
1732 #endif
1733         for (i=0; i<TEXTHSZ; ++i) {
1734             int j = 0;
1735             while (j<NUM_TEXTH && textHash[i][j]!=NOTEXT
1736                                && textHash[i][j]<textHw)
1737                 ++j;
1738             if (j<NUM_TEXTH)
1739                 textHash[i][j] = NOTEXT;
1740         }
1741
1742         currentModule=NIL;
1743         for (i=0; i<TYCONHSZ; ++i) {
1744             tyconHash[i] = NIL;
1745         }
1746         for (i=0; i<NAMEHSZ; ++i) {
1747             nameHash[i] = NIL;
1748         }
1749
1750         for (i=CLASSMIN; i<classHw; i++) {
1751             List ins = cclass(i).instances;
1752             List is  = NIL;
1753
1754             while (nonNull(ins)) {
1755                 List temp = tl(ins);
1756                 if (hd(ins)<instHw) {
1757                     tl(ins) = is;
1758                     is      = ins;
1759                 }
1760                 ins = temp;
1761             }
1762             cclass(i).instances = rev(is);
1763         }
1764
1765         scriptHw = sno;
1766     }
1767 }
1768
1769 /* --------------------------------------------------------------------------
1770  * Heap storage:
1771  *
1772  * Provides a garbage collectable heap for storage of expressions etc.
1773  *
1774  * Now incorporates a flat resource:  A two-space collected extension of
1775  * the heap that provides storage for contiguous arrays of Cell storage,
1776  * cooperating with the garbage collection mechanisms for the main heap.
1777  * ------------------------------------------------------------------------*/
1778
1779 Int     heapSize = DEFAULTHEAP;         /* number of cells in heap         */
1780 Heap    heapFst;                        /* array of fst component of pairs */
1781 Heap    heapSnd;                        /* array of snd component of pairs */
1782 #ifndef GLOBALfst
1783 Heap    heapTopFst;
1784 #endif
1785 #ifndef GLOBALsnd
1786 Heap    heapTopSnd;
1787 #endif
1788 Bool    consGC = TRUE;                  /* Set to FALSE to turn off gc from*/
1789                                         /* C stack; use with extreme care! */
1790 Long    numCells;
1791 Int     numGcs;                         /* number of garbage collections   */
1792 Int     cellsRecovered;                 /* number of cells recovered       */
1793
1794 static  Cell freeList;                  /* free list of unused cells       */
1795 static  Cell lsave, rsave;              /* save components of pair         */
1796
1797 #if GC_STATISTICS
1798
1799 static Int markCount, stackRoots;
1800
1801 #define initStackRoots() stackRoots = 0
1802 #define recordStackRoot() stackRoots++
1803
1804 #define startGC()       \
1805     if (gcMessages) {   \
1806         Printf("\n");   \
1807         fflush(stdout); \
1808     }
1809 #define endGC()         \
1810     if (gcMessages) {   \
1811         Printf("\n");   \
1812         fflush(stdout); \
1813     }
1814
1815 #define start()      markCount = 0
1816 #define end(thing,rs) \
1817     if (gcMessages) { \
1818         Printf("GC: %-18s: %4d cells, %4d roots.\n", thing, markCount, rs); \
1819         fflush(stdout); \
1820     }
1821 #define recordMark() markCount++
1822
1823 #else /* !GC_STATISTICS */
1824
1825 #define startGC()
1826 #define endGC()
1827
1828 #define initStackRoots()
1829 #define recordStackRoot()
1830
1831 #define start()   
1832 #define end(thing,root) 
1833 #define recordMark() 
1834
1835 #endif /* !GC_STATISTICS */
1836
1837 Cell pair(l,r)                          /* Allocate pair (l, r) from       */
1838 Cell l, r; {                            /* heap, garbage collecting first  */
1839     Cell c = freeList;                  /* if necessary ...                */
1840
1841     if (isNull(c)) {
1842         lsave = l;
1843         rsave = r;
1844         garbageCollect();
1845         l     = lsave;
1846         lsave = NIL;
1847         r     = rsave;
1848         rsave = NIL;
1849         c     = freeList;
1850     }
1851     freeList = snd(freeList);
1852     fst(c)   = l;
1853     snd(c)   = r;
1854     numCells++;
1855     return c;
1856 }
1857
1858 Void overwrite(dst,src)                 /* overwrite dst cell with src cell*/
1859 Cell dst, src; {                        /* both *MUST* be pairs            */
1860     if (isPair(dst) && isPair(src)) {
1861         fst(dst) = fst(src);
1862         snd(dst) = snd(src);
1863     }
1864     else
1865         internal("overwrite");
1866 }
1867
1868 static Int *marks;
1869 static Int marksSize;
1870
1871 Cell markExpr(c)                        /* External interface to markCell  */
1872 Cell c; {
1873     return isGenPair(c) ? markCell(c) : c;
1874 }
1875
1876 static Cell local markCell(c)           /* Traverse part of graph marking  */
1877 Cell c; {                               /* cells reachable from given root */
1878                                         /* markCell(c) is only called if c */
1879                                         /* is a pair                       */
1880     {   register int place = placeInSet(c);
1881         register int mask  = maskInSet(c);
1882         if (marks[place]&mask)
1883             return c;
1884         else {
1885             marks[place] |= mask;
1886             recordMark();
1887         }
1888     }
1889
1890     /* STACK_CHECK: Avoid stack overflows during recursive marking. */
1891     if (isGenPair(fst(c))) {
1892         STACK_CHECK
1893         fst(c) = markCell(fst(c));
1894         markSnd(c);
1895     }
1896     else if (isNull(fst(c)) || fst(c)>=BCSTAG) {
1897         STACK_CHECK
1898         markSnd(c);
1899     }
1900
1901     return c;
1902 }
1903
1904 static Void local markSnd(c)            /* Variant of markCell used to     */
1905 Cell c; {                               /* update snd component of cell    */
1906     Cell t;                             /* using tail recursion            */
1907
1908 ma: t = c;                              /* Keep pointer to original pair   */
1909     c = snd(c);
1910     if (!isPair(c))
1911         return;
1912
1913     {   register int place = placeInSet(c);
1914         register int mask  = maskInSet(c);
1915         if (marks[place]&mask)
1916             return;
1917         else {
1918             marks[place] |= mask;
1919             recordMark();
1920         }
1921     }
1922
1923     if (isGenPair(fst(c))) {
1924         fst(c) = markCell(fst(c));
1925         goto ma;
1926     }
1927     else if (isNull(fst(c)) || fst(c)>=BCSTAG)
1928         goto ma;
1929     return;
1930 }
1931
1932 Void markWithoutMove(n)                 /* Garbage collect cell at n, as if*/
1933 Cell n; {                               /* it was a cell ref, but don't    */
1934                                         /* move cell so we don't have      */
1935                                         /* to modify the stored value of n */
1936     if (isGenPair(n)) {
1937         recordStackRoot();
1938         markCell(n); 
1939     }
1940 }
1941
1942 Void garbageCollect()     {             /* Run garbage collector ...       */
1943     Bool breakStat = breakOn(FALSE);    /* disable break checking          */
1944     Int i,j;
1945     register Int mask;
1946     register Int place;
1947     Int      recovered;
1948
1949     jmp_buf  regs;                      /* save registers on stack         */
1950     setjmp(regs);
1951
1952     gcStarted();
1953     for (i=0; i<marksSize; ++i)         /* initialise mark set to empty    */
1954         marks[i] = 0;
1955
1956     everybody(MARK);                    /* Mark all components of system   */
1957
1958     gcScanning();                       /* scan mark set                   */
1959     mask      = 1;
1960     place     = 0;
1961     recovered = 0;
1962     j         = 0;
1963
1964     freeList = NIL;
1965     for (i=1; i<=heapSize; i++) {
1966         if ((marks[place] & mask) == 0) {
1967             snd(-i)  = freeList;
1968             fst(-i)  = FREECELL;
1969             freeList = -i;
1970             recovered++;
1971         }
1972         mask <<= 1;
1973         if (++j == bitsPerWord) {
1974             place++;
1975             mask = 1;
1976             j    = 0;
1977         }
1978     }
1979
1980     gcRecovered(recovered);
1981     breakOn(breakStat);                 /* restore break trapping if nec.  */
1982
1983     everybody(GCDONE);
1984
1985     /* can only return if freeList is nonempty on return. */
1986     if (recovered<minRecovery || isNull(freeList)) {
1987         ERRMSG(0) "Garbage collection fails to reclaim sufficient space"
1988         EEND;
1989     }
1990     cellsRecovered = recovered;
1991 }
1992
1993 /* --------------------------------------------------------------------------
1994  * Code for saving last expression entered:
1995  *
1996  * This is a little tricky because some text values (e.g. strings or variable
1997  * names) may not be defined or have the same value when the expression is
1998  * recalled.  These text values are therefore saved in the top portion of
1999  * the text table.
2000  * ------------------------------------------------------------------------*/
2001
2002 static Cell lastExprSaved;              /* last expression to be saved     */
2003
2004 Void setLastExpr(e)                     /* save expression for later recall*/
2005 Cell e; {
2006     lastExprSaved = NIL;                /* in case attempt to save fails   */
2007     savedText     = NUM_TEXT;
2008     lastExprSaved = lowLevelLastIn(e);
2009 }
2010
2011 static Cell local lowLevelLastIn(c)     /* Duplicate expression tree (i.e. */
2012 Cell c; {                               /* acyclic graph) for later recall */
2013     if (isPair(c)) {                    /* Duplicating any text strings    */
2014         if (isBoxTag(fst(c)))           /* in case these are lost at some  */
2015             switch (fst(c)) {           /* point before the expr is reused */
2016                 case VARIDCELL :
2017                 case VAROPCELL :
2018                 case DICTVAR   :
2019                 case CONIDCELL :
2020                 case CONOPCELL :
2021                 case STRCELL   : return pair(fst(c),saveText(textOf(c)));
2022                 default        : return pair(fst(c),snd(c));
2023             }
2024         else
2025             return pair(lowLevelLastIn(fst(c)),lowLevelLastIn(snd(c)));
2026     }
2027 #if TREX
2028     else if (isExt(c))
2029         return pair(EXTCOPY,saveText(extText(c)));
2030 #endif
2031     else
2032         return c;
2033 }
2034
2035 Cell getLastExpr() {                    /* recover previously saved expr   */
2036     return lowLevelLastOut(lastExprSaved);
2037 }
2038
2039 static Cell local lowLevelLastOut(c)    /* As with lowLevelLastIn() above  */
2040 Cell c; {                               /* except that Cells refering to   */
2041     if (isPair(c)) {                    /* Text values are restored to     */
2042         if (isBoxTag(fst(c)))           /* appropriate values              */
2043             switch (fst(c)) {
2044                 case VARIDCELL :
2045                 case VAROPCELL :
2046                 case DICTVAR   :
2047                 case CONIDCELL :
2048                 case CONOPCELL :
2049                 case STRCELL   : return pair(fst(c),
2050                                              findText(text+intValOf(c)));
2051 #if TREX
2052                 case EXTCOPY   : return mkExt(findText(text+intValOf(c)));
2053 #endif
2054                 default        : return pair(fst(c),snd(c));
2055             }
2056         else
2057             return pair(lowLevelLastOut(fst(c)),lowLevelLastOut(snd(c)));
2058     }
2059     else
2060         return c;
2061 }
2062
2063 /* --------------------------------------------------------------------------
2064  * Miscellaneous operations on heap cells:
2065  * ------------------------------------------------------------------------*/
2066
2067 /* Profiling suggests that the number of calls to whatIs() is typically    */
2068 /* rather high.  The recoded version below attempts to improve the average */
2069 /* performance for whatIs() using a binary search for part of the analysis */
2070
2071 Cell whatIs(c)                         /* identify type of cell            */
2072 register Cell c; {
2073     if (isPair(c)) {
2074         register Cell fstc = fst(c);
2075         return isTag(fstc) ? fstc : AP;
2076     }
2077     if (c<OFFMIN)    return c;
2078 #if TREX
2079     if (isExt(c))    return EXT;
2080 #endif
2081     if (c>=INTMIN)   return INTCELL;
2082
2083     if (c>=NAMEMIN){if (c>=CLASSMIN)   {if (c>=CHARMIN) return CHARCELL;
2084                                         else            return CLASS;}
2085                     else                if (c>=INSTMIN) return INSTANCE;
2086                                         else            return NAME;}
2087     else            if (c>=MODMIN)     {if (c>=TYCMIN)  return isTuple(c) ? TUPLE : TYCON;
2088                                         else            return MODULE;}
2089                     else                if (c>=OFFMIN)  return OFFSET;
2090 #if TREX
2091                                         else            return (c>=EXTMIN) ?
2092                                                                 EXT : TUPLE;
2093 #else
2094                                         else            return TUPLE;
2095 #endif
2096
2097 /*  if (isPair(c)) {
2098         register Cell fstc = fst(c);
2099         return isTag(fstc) ? fstc : AP;
2100     }
2101     if (c>=INTMIN)   return INTCELL;
2102     if (c>=CHARMIN)  return CHARCELL;
2103     if (c>=CLASSMIN) return CLASS;
2104     if (c>=INSTMIN)  return INSTANCE;
2105     if (c>=NAMEMIN)  return NAME;
2106     if (c>=TYCMIN)   return TYCON;
2107     if (c>=MODMIN)   return MODULE;
2108     if (c>=OFFMIN)   return OFFSET;
2109 #if TREX
2110     if (c>=EXTMIN)   return EXT;
2111 #endif
2112     if (c>=TUPMIN)   return TUPLE;
2113     return c;*/
2114 }
2115
2116 #if DEBUG_PRINTER
2117 /* A very, very simple printer.
2118  * Output is uglier than from printExp - but the printer is more
2119  * robust and can be used on any data structure irrespective of
2120  * its type.
2121  */
2122 Void print Args((Cell, Int));
2123 Void print(c, depth)
2124 Cell c;
2125 Int  depth; {
2126     if (0 == depth) {
2127         Printf("...");
2128 #if 0 /* Not in this version of Hugs */
2129     } else if (isPair(c) && !isGenPair(c)) {
2130         extern Void printEvalCell Args((Cell, Int));
2131         printEvalCell(c,depth);
2132 #endif
2133     } else {
2134         Int tag = whatIs(c);
2135         switch (tag) {
2136         case AP: 
2137                 Putchar('(');
2138                 print(fst(c), depth-1);
2139                 Putchar(',');
2140                 print(snd(c), depth-1);
2141                 Putchar(')');
2142                 break;
2143         case FREECELL:
2144                 Printf("free(%d)", c);
2145                 break;
2146         case INTCELL:
2147                 Printf("int(%d)", intOf(c));
2148                 break;
2149         case BIGCELL:
2150                 Printf("bignum(%s)", bignumToString(c));
2151                 break;
2152         case CHARCELL:
2153                 Printf("char('%c')", charOf(c));
2154                 break;
2155         case PTRCELL: 
2156                 Printf("ptr(%p)",ptrOf(c));
2157                 break;
2158         case CLASS:
2159                 Printf("class(%d)", c-CLASSMIN);
2160                 if (CLASSMIN <= c && c < classHw) {
2161                     Printf("=\"%s\"", textToStr(cclass(c).text));
2162                 }
2163                 break;
2164         case INSTANCE:
2165                 Printf("instance(%d)", c - INSTMIN);
2166                 break;
2167         case NAME:
2168                 Printf("name(%d)", c-NAMEMIN);
2169                 if (NAMEMIN <= c && c < nameHw) {
2170                     Printf("=\"%s\"", textToStr(name(c).text));
2171                 }
2172                 break;
2173         case TYCON:
2174                 Printf("tycon(%d)", c-TYCMIN);
2175                 if (TYCMIN <= c && c < tyconHw)
2176                     Printf("=\"%s\"", textToStr(tycon(c).text));
2177                 break;
2178         case MODULE:
2179                 Printf("module(%d)", c - MODMIN);
2180                 break;
2181         case OFFSET:
2182                 Printf("Offset %d", offsetOf(c));
2183                 break;
2184         case TUPLE:
2185                 Printf("%s", textToStr(ghcTupleText(c)));
2186                 break;
2187         case POLYTYPE:
2188                 Printf("Polytype");
2189                 print(snd(c),depth-1);
2190                 break;
2191         case QUAL:
2192                 Printf("Qualtype");
2193                 print(snd(c),depth-1);
2194                 break;
2195         case RANK2:
2196                 Printf("Rank2(");
2197                 if (isPair(snd(c)) && isInt(fst(snd(c)))) {
2198                     Printf("%d ", intOf(fst(snd(c))));
2199                     print(snd(snd(c)),depth-1);
2200                 } else {
2201                     print(snd(c),depth-1);
2202                 }
2203                 Printf(")");
2204                 break;
2205         case NIL:
2206                 Printf("NIL");
2207                 break;
2208         case WILDCARD:
2209                 Printf("_");
2210                 break;
2211         case STAR:
2212                 Printf("STAR");
2213                 break;
2214         case DOTDOT:
2215                 Printf("DOTDOT");
2216                 break;
2217         case DICTVAR:
2218                 Printf("{dict %d}",textOf(c));
2219                 break;
2220         case VARIDCELL:
2221         case VAROPCELL:
2222         case CONIDCELL:
2223         case CONOPCELL:
2224                 Printf("{id %s}",textToStr(textOf(c)));
2225                 break;
2226 #if IPARAM
2227           case IPCELL :
2228               Printf("{ip %s}",textToStr(textOf(c)));
2229               break;
2230           case IPVAR :
2231               Printf("?%s",textToStr(textOf(c)));
2232               break;
2233 #endif
2234         case QUALIDENT:
2235                 Printf("{qid %s.%s}",textToStr(qmodOf(c)),textToStr(qtextOf(c)));
2236                 break;
2237         case LETREC:
2238                 Printf("LetRec(");
2239                 print(fst(snd(c)),depth-1);
2240                 Putchar(',');
2241                 print(snd(snd(c)),depth-1);
2242                 Putchar(')');
2243                 break;
2244         case LAMBDA:
2245                 Printf("Lambda(");
2246                 print(snd(c),depth-1);
2247                 Putchar(')');
2248                 break;
2249         case FINLIST:
2250                 Printf("FinList(");
2251                 print(snd(c),depth-1);
2252                 Putchar(')');
2253                 break;
2254         case COMP:
2255                 Printf("Comp(");
2256                 print(fst(snd(c)),depth-1);
2257                 Putchar(',');
2258                 print(snd(snd(c)),depth-1);
2259                 Putchar(')');
2260                 break;
2261         case ASPAT:
2262                 Printf("AsPat(");
2263                 print(fst(snd(c)),depth-1);
2264                 Putchar(',');
2265                 print(snd(snd(c)),depth-1);
2266                 Putchar(')');
2267                 break;
2268         case FROMQUAL:
2269                 Printf("FromQual(");
2270                 print(fst(snd(c)),depth-1);
2271                 Putchar(',');
2272                 print(snd(snd(c)),depth-1);
2273                 Putchar(')');
2274                 break;
2275         case STGVAR:
2276                 Printf("StgVar%d=",-c);
2277                 print(snd(c), depth-1);
2278                 break;
2279         case STGAPP:
2280                 Printf("StgApp(");
2281                 print(fst(snd(c)),depth-1);
2282                 Putchar(',');
2283                 print(snd(snd(c)),depth-1);
2284                 Putchar(')');
2285                 break;
2286         case STGPRIM:
2287                 Printf("StgPrim(");
2288                 print(fst(snd(c)),depth-1);
2289                 Putchar(',');
2290                 print(snd(snd(c)),depth-1);
2291                 Putchar(')');
2292                 break;
2293         case STGCON:
2294                 Printf("StgCon(");
2295                 print(fst(snd(c)),depth-1);
2296                 Putchar(',');
2297                 print(snd(snd(c)),depth-1);
2298                 Putchar(')');
2299                 break;
2300         case PRIMCASE:
2301                 Printf("PrimCase(");
2302                 print(fst(snd(c)),depth-1);
2303                 Putchar(',');
2304                 print(snd(snd(c)),depth-1);
2305                 Putchar(')');
2306                 break;
2307         case DICTAP:
2308                 Printf("(DICTAP,");
2309                 print(snd(c),depth-1);
2310                 Putchar(')');
2311                 break;
2312         case UNBOXEDTUP:
2313                 Printf("(UNBOXEDTUP,");
2314                 print(snd(c),depth-1);
2315                 Putchar(')');
2316                 break;
2317         case ZTUP2:
2318                 Printf("<ZPair ");
2319                 print(zfst(c),depth-1);
2320                 Putchar(' ');
2321                 print(zsnd(c),depth-1);
2322                 Putchar('>');
2323                 break;
2324         case ZTUP3:
2325                 Printf("<ZTriple ");
2326                 print(zfst3(c),depth-1);
2327                 Putchar(' ');
2328                 print(zsnd3(c),depth-1);
2329                 Putchar(' ');
2330                 print(zthd3(c),depth-1);
2331                 Putchar('>');
2332                 break;
2333         case BANG:
2334                 Printf("(BANG,");
2335                 print(snd(c),depth-1);
2336                 Putchar(')');
2337                 break;
2338         default:
2339                 if (isBoxTag(tag)) {
2340                     Printf("Tag(%d)=%d", c, tag);
2341                 } else if (isConTag(tag)) {
2342                     Printf("%d@(%d,",c,tag);
2343                     print(snd(c), depth-1);
2344                     Putchar(')');
2345                     break;
2346                 } else if (c == tag) {
2347                     Printf("Tag(%d)", c);
2348                 } else {
2349                     Printf("Tag(%d)=%d", c, tag);
2350                 }
2351                 break;
2352         }
2353     }
2354     FlushStdout();
2355 }
2356 #endif
2357
2358 Bool isVar(c)                           /* is cell a VARIDCELL/VAROPCELL ? */
2359 Cell c; {                               /* also recognises DICTVAR cells   */
2360     return isPair(c) &&
2361                (fst(c)==VARIDCELL || fst(c)==VAROPCELL || fst(c)==DICTVAR);
2362 }
2363
2364 Bool isCon(c)                          /* is cell a CONIDCELL/CONOPCELL ?  */
2365 Cell c; {
2366     return isPair(c) && (fst(c)==CONIDCELL || fst(c)==CONOPCELL);
2367 }
2368
2369 Bool isQVar(c)                        /* is cell a [un]qualified varop/id? */
2370 Cell c; {
2371     if (!isPair(c)) return FALSE;
2372     switch (fst(c)) {
2373         case VARIDCELL  :
2374         case VAROPCELL  : return TRUE;
2375
2376         case QUALIDENT  : return isVar(snd(snd(c)));
2377
2378         default         : return FALSE;
2379     }
2380 }
2381
2382 Bool isQCon(c)                         /*is cell a [un]qualified conop/id? */
2383 Cell c; {
2384     if (!isPair(c)) return FALSE;
2385     switch (fst(c)) {
2386         case CONIDCELL  :
2387         case CONOPCELL  : return TRUE;
2388
2389         case QUALIDENT  : return isCon(snd(snd(c)));
2390
2391         default         : return FALSE;
2392     }
2393 }
2394
2395 Bool isQualIdent(c)                    /* is cell a qualified identifier?  */
2396 Cell c; {
2397     return isPair(c) && (fst(c)==QUALIDENT);
2398 }
2399
2400 Bool eqQualIdent ( QualId c1, QualId c2 )
2401 {
2402    assert(isQualIdent(c1));
2403    if (!isQualIdent(c2)) {
2404    assert(isQualIdent(c2));
2405    }
2406    return qmodOf(c1)==qmodOf(c2) &&
2407           qtextOf(c1)==qtextOf(c2);
2408 }
2409
2410 Bool isIdent(c)                        /* is cell an identifier?           */
2411 Cell c; {
2412     if (!isPair(c)) return FALSE;
2413     switch (fst(c)) {
2414         case VARIDCELL  :
2415         case VAROPCELL  :
2416         case CONIDCELL  :
2417         case CONOPCELL  : return TRUE;
2418
2419         case QUALIDENT  : return TRUE;
2420
2421         default         : return FALSE;
2422     }
2423 }
2424
2425 Bool isInt(c)                          /* cell holds integer value?        */
2426 Cell c; {
2427     return isSmall(c) || (isPair(c) && fst(c)==INTCELL);
2428 }
2429
2430 Int intOf(c)                           /* find integer value of cell?      */
2431 Cell c; {
2432     assert(isInt(c));
2433     return isPair(c) ? (Int)(snd(c)) : (Int)(c-INTZERO);
2434 }
2435
2436 Cell mkInt(n)                          /* make cell representing integer   */
2437 Int n; {
2438     return (MINSMALLINT <= n && n <= MAXSMALLINT)
2439            ? INTZERO+n
2440            : pair(INTCELL,n);
2441 }
2442
2443 #if SIZEOF_INTP == SIZEOF_INT
2444 typedef union {Int i; Ptr p;} IntOrPtr;
2445 Cell mkPtr(p)
2446 Ptr p;
2447 {
2448     IntOrPtr x;
2449     x.p = p;
2450     return pair(PTRCELL,x.i);
2451 }
2452
2453 Ptr ptrOf(c)
2454 Cell c;
2455 {
2456     IntOrPtr x;
2457     assert(fst(c) == PTRCELL);
2458     x.i = snd(c);
2459     return x.p;
2460 }
2461 Cell mkCPtr(p)
2462 Ptr p;
2463 {
2464     IntOrPtr x;
2465     x.p = p;
2466     return pair(CPTRCELL,x.i);
2467 }
2468
2469 Ptr cptrOf(c)
2470 Cell c;
2471 {
2472     IntOrPtr x;
2473     assert(fst(c) == CPTRCELL);
2474     x.i = snd(c);
2475     return x.p;
2476 }
2477 #elif SIZEOF_INTP == 2*SIZEOF_INT
2478 typedef union {struct {Int i1; Int i2;} i; Ptr p;} IntOrPtr;
2479 Cell mkPtr(p)
2480 Ptr p;
2481 {
2482     IntOrPtr x;
2483     x.p = p;
2484     return pair(PTRCELL,pair(mkInt(x.i.i1),mkInt(x.i.i2)));
2485 }
2486
2487 Ptr ptrOf(c)
2488 Cell c;
2489 {
2490     IntOrPtr x;
2491     assert(fst(c) == PTRCELL);
2492     x.i.i1 = intOf(fst(snd(c)));
2493     x.i.i2 = intOf(snd(snd(c)));
2494     return x.p;
2495 }
2496 #else
2497 #warning "type Addr not supported on this architecture - don't use it"
2498 Cell mkPtr(p)
2499 Ptr p;
2500 {
2501     ERRMSG(0) "mkPtr: type Addr not supported on this architecture"
2502     EEND;
2503 }
2504
2505 Ptr ptrOf(c)
2506 Cell c;
2507 {
2508     ERRMSG(0) "ptrOf: type Addr not supported on this architecture"
2509     EEND;
2510 }
2511 #endif
2512
2513 String stringNegate( s )
2514 String s;
2515 {
2516     if (s[0] == '-') {
2517         return &s[1];
2518     } else {
2519         static char t[100];
2520         t[0] = '-';
2521         strcpy(&t[1],s);  /* ToDo: use strncpy instead */
2522         return t;
2523     }
2524 }
2525
2526 /* --------------------------------------------------------------------------
2527  * List operations:
2528  * ------------------------------------------------------------------------*/
2529
2530 Int length(xs)                         /* calculate length of list xs      */
2531 List xs; {
2532     Int n = 0;
2533     for (; nonNull(xs); ++n)
2534         xs = tl(xs);
2535     return n;
2536 }
2537
2538 List appendOnto(xs,ys)                 /* Destructively prepend xs onto    */
2539 List xs, ys; {                         /* ys by modifying xs ...           */
2540     if (isNull(xs))
2541         return ys;
2542     else {
2543         List zs = xs;
2544         while (nonNull(tl(zs)))
2545             zs = tl(zs);
2546         tl(zs) = ys;
2547         return xs;
2548     }
2549 }
2550
2551 List dupOnto(xs,ys)      /* non-destructively prepend xs backwards onto ys */
2552 List xs; 
2553 List ys; {
2554     for (; nonNull(xs); xs=tl(xs))
2555         ys = cons(hd(xs),ys);
2556     return ys;
2557 }
2558
2559 List dupListOnto(xs,ys)              /* Duplicate spine of list xs onto ys */
2560 List xs;
2561 List ys; {
2562     return revOnto(dupOnto(xs,NIL),ys);
2563 }
2564
2565 List dupList(xs)                       /* Duplicate spine of list xs       */
2566 List xs; {
2567     List ys = NIL;
2568     for (; nonNull(xs); xs=tl(xs))
2569         ys = cons(hd(xs),ys);
2570     return rev(ys);
2571 }
2572
2573 List revOnto(xs,ys)                    /* Destructively reverse elements of*/
2574 List xs, ys; {                         /* list xs onto list ys...          */
2575     Cell zs;
2576
2577     while (nonNull(xs)) {
2578         zs     = tl(xs);
2579         tl(xs) = ys;
2580         ys     = xs;
2581         xs     = zs;
2582     }
2583     return ys;
2584 }
2585
2586 QualId qualidIsMember ( QualId q, List xs )
2587 {
2588    for (; nonNull(xs); xs=tl(xs)) {
2589       if (eqQualIdent(q, hd(xs)))
2590          return hd(xs);
2591    }
2592    return NIL;
2593 }  
2594
2595 Cell varIsMember(t,xs)                 /* Test if variable is a member of  */
2596 Text t;                                /* given list of variables          */
2597 List xs; {
2598     for (; nonNull(xs); xs=tl(xs))
2599         if (t==textOf(hd(xs)))
2600             return hd(xs);
2601     return NIL;
2602 }
2603
2604 Name nameIsMember(t,ns)                 /* Test if name with text t is a   */
2605 Text t;                                 /* member of list of names xs      */
2606 List ns; {
2607     for (; nonNull(ns); ns=tl(ns))
2608         if (t==name(hd(ns)).text)
2609             return hd(ns);
2610     return NIL;
2611 }
2612
2613 Cell intIsMember(n,xs)                 /* Test if integer n is member of   */
2614 Int  n;                                /* given list of integers           */
2615 List xs; {
2616     for (; nonNull(xs); xs=tl(xs))
2617         if (n==intOf(hd(xs)))
2618             return hd(xs);
2619     return NIL;
2620 }
2621
2622 Cell cellIsMember(x,xs)                /* Test for membership of specific  */
2623 Cell x;                                /* cell x in list xs                */
2624 List xs; {
2625     for (; nonNull(xs); xs=tl(xs))
2626         if (x==hd(xs))
2627             return hd(xs);
2628     return NIL;
2629 }
2630
2631 Cell cellAssoc(c,xs)                   /* Lookup cell in association list  */
2632 Cell c;         
2633 List xs; {
2634     for (; nonNull(xs); xs=tl(xs))
2635         if (c==fst(hd(xs)))
2636             return hd(xs);
2637     return NIL;
2638 }
2639
2640 Cell cellRevAssoc(c,xs)                /* Lookup cell in range of          */
2641 Cell c;                                /* association lists                */
2642 List xs; {
2643     for (; nonNull(xs); xs=tl(xs))
2644         if (c==snd(hd(xs)))
2645             return hd(xs);
2646     return NIL;
2647 }
2648
2649 List replicate(n,x)                     /* create list of n copies of x    */
2650 Int n;
2651 Cell x; {
2652     List xs=NIL;
2653     while (0<n--)
2654         xs = cons(x,xs);
2655     return xs;
2656 }
2657
2658 List diffList(from,take)               /* list difference: from\take       */
2659 List from, take; {                     /* result contains all elements of  */
2660     List result = NIL;                 /* `from' not appearing in `take'   */
2661
2662     while (nonNull(from)) {
2663         List next = tl(from);
2664         if (!cellIsMember(hd(from),take)) {
2665             tl(from) = result;
2666             result   = from;
2667         }
2668         from = next;
2669     }
2670     return rev(result);
2671 }
2672
2673 List deleteCell(xs, y)                  /* copy xs deleting pointers to y  */
2674 List xs;
2675 Cell y; {
2676     List result = NIL; 
2677     for(;nonNull(xs);xs=tl(xs)) {
2678         Cell x = hd(xs);
2679         if (x != y) {
2680             result=cons(x,result);
2681         }
2682     }
2683     return rev(result);
2684 }
2685
2686 List take(n,xs)                         /* destructively truncate list to  */
2687 Int  n;                                 /* specified length                */
2688 List xs; {
2689     List ys = xs;
2690
2691     if (n==0)
2692         return NIL;
2693     while (1<n-- && nonNull(xs))
2694         xs = tl(xs);
2695     if (nonNull(xs))
2696         tl(xs) = NIL;
2697     return ys;
2698 }
2699
2700 List splitAt(n,xs)                      /* drop n things from front of list*/
2701 Int  n;       
2702 List xs; {
2703     for(; n>0; --n) {
2704         xs = tl(xs);
2705     }
2706     return xs;
2707 }
2708
2709 Cell nth(n,xs)                          /* extract n'th element of list    */
2710 Int  n;
2711 List xs; {
2712     for(; n>0 && nonNull(xs); --n, xs=tl(xs)) {
2713     }
2714     if (isNull(xs))
2715         internal("nth");
2716     return hd(xs);
2717 }
2718
2719 List removeCell(x,xs)                   /* destructively remove cell from  */
2720 Cell x;                                 /* list                            */
2721 List xs; {
2722     if (nonNull(xs)) {
2723         if (hd(xs)==x)
2724             return tl(xs);              /* element at front of list        */
2725         else {
2726             List prev = xs;
2727             List curr = tl(xs);
2728             for (; nonNull(curr); prev=curr, curr=tl(prev))
2729                 if (hd(curr)==x) {
2730                     tl(prev) = tl(curr);
2731                     return xs;          /* element in middle of list       */
2732                 }
2733         }
2734     }
2735     return xs;                          /* here if element not found       */
2736 }
2737
2738 List nubList(xs)                        /* nuke dups in list               */
2739 List xs; {                              /* non destructive                 */
2740    List outs = NIL;
2741    for (; nonNull(xs); xs=tl(xs))
2742       if (isNull(cellIsMember(hd(xs),outs)))
2743          outs = cons(hd(xs),outs);
2744    outs = rev(outs);
2745    return outs;
2746 }
2747
2748
2749 /* --------------------------------------------------------------------------
2750  * Strongly-typed lists (z-lists) and tuples (experimental)
2751  * ------------------------------------------------------------------------*/
2752
2753 static void z_tag_check ( Cell x, int tag, char* caller )
2754 {
2755    char buf[100];
2756    if (isNull(x)) {
2757       sprintf(buf,"z_tag_check(%s): null\n", caller);
2758       internal(buf);
2759    }
2760    if (whatIs(x) != tag) {
2761       sprintf(buf, 
2762           "z_tag_check(%s): tag was %d, expected %d\n",
2763           caller, whatIs(x), tag );
2764       internal(buf);
2765    }  
2766 }
2767
2768 #if 0
2769 Cell zcons ( Cell x, Cell xs )
2770 {
2771    if (!(isNull(xs) || whatIs(xs)==ZCONS)) 
2772       internal("zcons: ill typed tail");
2773    return ap(ZCONS,ap(x,xs));
2774 }
2775
2776 Cell zhd ( Cell xs )
2777 {
2778    if (isNull(xs)) internal("zhd: empty list");
2779    z_tag_check(xs,ZCONS,"zhd");
2780    return fst( snd(xs) );
2781 }
2782
2783 Cell ztl ( Cell xs )
2784 {
2785    if (isNull(xs)) internal("ztl: empty list");
2786    z_tag_check(xs,ZCONS,"zhd");
2787    return snd( snd(xs) );
2788 }
2789
2790 Int zlength ( ZList xs )
2791 {
2792    Int n = 0;
2793    while (nonNull(xs)) {
2794       z_tag_check(xs,ZCONS,"zlength");
2795       n++;
2796       xs = snd( snd(xs) );
2797    }
2798    return n;
2799 }
2800
2801 ZList zreverse ( ZList xs )
2802 {
2803    ZList rev = NIL;
2804    while (nonNull(xs)) {
2805       z_tag_check(xs,ZCONS,"zreverse");
2806       rev = zcons(zhd(xs),rev);
2807       xs = ztl(xs);
2808    }
2809    return rev;
2810 }
2811
2812 Cell zsingleton ( Cell x )
2813 {
2814    return zcons (x,NIL);
2815 }
2816
2817 Cell zdoubleton ( Cell x, Cell y )
2818 {
2819    return zcons(x,zcons(y,NIL));
2820 }
2821 #endif
2822
2823 Cell zpair ( Cell x1, Cell x2 )
2824 { return ap(ZTUP2,ap(x1,x2)); }
2825 Cell zfst ( Cell zpair )
2826 { z_tag_check(zpair,ZTUP2,"zfst"); return fst( snd(zpair) ); }
2827 Cell zsnd ( Cell zpair )
2828 { z_tag_check(zpair,ZTUP2,"zsnd"); return snd( snd(zpair) ); }
2829
2830 Cell ztriple ( Cell x1, Cell x2, Cell x3 )
2831 { return ap(ZTUP3,ap(x1,ap(x2,x3))); }
2832 Cell zfst3 ( Cell zpair )
2833 { z_tag_check(zpair,ZTUP3,"zfst3"); return fst( snd(zpair) ); }
2834 Cell zsnd3 ( Cell zpair )
2835 { z_tag_check(zpair,ZTUP3,"zsnd3"); return fst(snd( snd(zpair) )); }
2836 Cell zthd3 ( Cell zpair )
2837 { z_tag_check(zpair,ZTUP3,"zthd3"); return snd(snd( snd(zpair) )); }
2838
2839 Cell z4ble ( Cell x1, Cell x2, Cell x3, Cell x4 )
2840 { return ap(ZTUP4,ap(x1,ap(x2,ap(x3,x4)))); }
2841 Cell zsel14 ( Cell zpair )
2842 { z_tag_check(zpair,ZTUP4,"zsel14"); return fst( snd(zpair) ); }
2843 Cell zsel24 ( Cell zpair )
2844 { z_tag_check(zpair,ZTUP4,"zsel24"); return fst(snd( snd(zpair) )); }
2845 Cell zsel34 ( Cell zpair )
2846 { z_tag_check(zpair,ZTUP4,"zsel34"); return fst(snd(snd( snd(zpair) ))); }
2847 Cell zsel44 ( Cell zpair )
2848 { z_tag_check(zpair,ZTUP4,"zsel44"); return snd(snd(snd( snd(zpair) ))); }
2849
2850 Cell z5ble ( Cell x1, Cell x2, Cell x3, Cell x4, Cell x5 )
2851 { return ap(ZTUP5,ap(x1,ap(x2,ap(x3,ap(x4,x5))))); }
2852 Cell zsel15 ( Cell zpair )
2853 { z_tag_check(zpair,ZTUP5,"zsel15"); return fst( snd(zpair) ); }
2854 Cell zsel25 ( Cell zpair )
2855 { z_tag_check(zpair,ZTUP5,"zsel25"); return fst(snd( snd(zpair) )); }
2856 Cell zsel35 ( Cell zpair )
2857 { z_tag_check(zpair,ZTUP5,"zsel35"); return fst(snd(snd( snd(zpair) ))); }
2858 Cell zsel45 ( Cell zpair )
2859 { z_tag_check(zpair,ZTUP5,"zsel45"); return fst(snd(snd(snd( snd(zpair) )))); }
2860 Cell zsel55 ( Cell zpair )
2861 { z_tag_check(zpair,ZTUP5,"zsel55"); return snd(snd(snd(snd( snd(zpair) )))); }
2862
2863
2864 Cell unap ( int tag, Cell c )
2865 {
2866    char buf[100];
2867    if (whatIs(c) != tag) {
2868       sprintf(buf, "unap: specified %d, actual %d\n",
2869                    tag, whatIs(c) );
2870       internal(buf);
2871    }
2872    return snd(c);
2873 }
2874
2875 /* --------------------------------------------------------------------------
2876  * Operations on applications:
2877  * ------------------------------------------------------------------------*/
2878
2879 Int argCount;                          /* number of args in application    */
2880
2881 Cell getHead(e)                        /* get head cell of application     */
2882 Cell e; {                              /* set number of args in argCount   */
2883     for (argCount=0; isAp(e); e=fun(e))
2884         argCount++;
2885     return e;
2886 }
2887
2888 List getArgs(e)                        /* get list of arguments in function*/
2889 Cell e; {                              /* application:                     */
2890     List as;                           /* getArgs(f e1 .. en) = [e1,..,en] */
2891
2892     for (as=NIL; isAp(e); e=fun(e))
2893         as = cons(arg(e),as);
2894     return as;
2895 }
2896
2897 Cell nthArg(n,e)                       /* return nth arg in application    */
2898 Int  n;                                /* of function to m args (m>=n)     */
2899 Cell e; {                              /* nthArg n (f x0 x1 ... xm) = xn   */
2900     for (n=numArgs(e)-n-1; n>0; n--)
2901         e = fun(e);
2902     return arg(e);
2903 }
2904
2905 Int numArgs(e)                         /* find number of arguments to expr */
2906 Cell e; {
2907     Int n;
2908     for (n=0; isAp(e); e=fun(e))
2909         n++;
2910     return n;
2911 }
2912
2913 Cell applyToArgs(f,args)               /* destructively apply list of args */
2914 Cell f;                                /* to function f                    */
2915 List args; {
2916     while (nonNull(args)) {
2917         Cell temp = tl(args);
2918         tl(args)  = hd(args);
2919         hd(args)  = f;
2920         f         = args;
2921         args      = temp;
2922     }
2923     return f;
2924 }
2925
2926 /* --------------------------------------------------------------------------
2927  * debugging support
2928  * ------------------------------------------------------------------------*/
2929
2930 static String maybeModuleStr ( Module m )
2931 {
2932    if (isModule(m)) return textToStr(module(m).text); else return "??";
2933 }
2934
2935 static String maybeNameStr ( Name n )
2936 {
2937    if (isName(n)) return textToStr(name(n).text); else return "??";
2938 }
2939
2940 static String maybeTyconStr ( Tycon t )
2941 {
2942    if (isTycon(t)) return textToStr(tycon(t).text); else return "??";
2943 }
2944
2945 static String maybeClassStr ( Class c )
2946 {
2947    if (isClass(c)) return textToStr(cclass(c).text); else return "??";
2948 }
2949
2950 static String maybeText ( Text t )
2951 {
2952    if (isNull(t)) return "(nil)";
2953    return textToStr(t);
2954 }
2955
2956 static void print100 ( Int x )
2957 {
2958    print ( x, 100); printf("\n");
2959 }
2960
2961 void dumpTycon ( Int t )
2962 {
2963    if (isTycon(TYCMIN+t) && !isTycon(t)) t += TYCMIN;
2964    if (!isTycon(t)) {
2965       printf ( "dumpTycon %d: not a tycon\n", t);
2966       return;
2967    }
2968    printf ( "{\n" );
2969    printf ( "    text: %s\n",     textToStr(tycon(t).text) );
2970    printf ( "    line: %d\n",     tycon(t).line );
2971    printf ( "     mod: %s\n",     maybeModuleStr(tycon(t).mod));
2972    printf ( "   tuple: %d\n",     tycon(t).tuple);
2973    printf ( "   arity: %d\n",     tycon(t).arity);
2974    printf ( "    kind: ");        print100(tycon(t).kind);
2975    printf ( "    what: %d\n",     tycon(t).what);
2976    printf ( "    defn: ");        print100(tycon(t).defn);
2977    printf ( "    cToT: %d %s\n",  tycon(t).conToTag, 
2978                                   maybeNameStr(tycon(t).conToTag));
2979    printf ( "    tToC: %d %s\n",  tycon(t).tagToCon, 
2980                                   maybeNameStr(tycon(t).tagToCon));
2981    printf ( "    itbl: %p\n",     tycon(t).itbl);
2982    printf ( "  nextTH: %d %s\n",  tycon(t).nextTyconHash,
2983                                   maybeTyconStr(tycon(t).nextTyconHash));
2984    printf ( "}\n" );
2985 }
2986
2987 void dumpName ( Int n )
2988 {
2989    if (isName(NAMEMIN+n) && !isName(n)) n += NAMEMIN;
2990    if (!isName(n)) {
2991       printf ( "dumpName %d: not a name\n", n);
2992       return;
2993    }
2994    printf ( "{\n" );
2995    printf ( "    text: %s\n",     textToStr(name(n).text) );
2996    printf ( "    line: %d\n",     name(n).line );
2997    printf ( "     mod: %s\n",     maybeModuleStr(name(n).mod));
2998    printf ( "  syntax: %d\n",     name(n).syntax );
2999    printf ( "  parent: %d\n",     name(n).parent );
3000    printf ( "   arity: %d\n",     name(n).arity );
3001    printf ( "  number: %d\n",     name(n).number );
3002    printf ( "    type: ");        print100(name(n).type);
3003    printf ( "    defn: %d\n",     name(n).defn );
3004    printf ( "  stgVar: ");        print100(name(n).stgVar);
3005    printf ( "   cconv: %d\n",     name(n).callconv );
3006    printf ( "  primop: %p\n",     name(n).primop );
3007    printf ( "    itbl: %p\n",     name(n).itbl );
3008    printf ( "  nextNH: %d\n",     name(n).nextNameHash );
3009    printf ( "}\n" );
3010 }
3011
3012
3013 void dumpClass ( Int c )
3014 {
3015    if (isClass(CLASSMIN+c) && !isClass(c)) c += CLASSMIN;
3016    if (!isClass(c)) {
3017       printf ( "dumpClass %d: not a class\n", c);
3018       return;
3019    }
3020    printf ( "{\n" );
3021    printf ( "    text: %s\n",     textToStr(cclass(c).text) );
3022    printf ( "    line: %d\n",     cclass(c).line );
3023    printf ( "     mod: %s\n",     maybeModuleStr(cclass(c).mod));
3024    printf ( "   arity: %d\n",     cclass(c).arity );
3025    printf ( "   level: %d\n",     cclass(c).level );
3026    printf ( "   kinds: ");        print100( cclass(c).kinds );
3027    printf ( "     fds: %d\n",     cclass(c).fds );
3028    printf ( "    xfds: %d\n",     cclass(c).xfds );
3029    printf ( "    head: ");        print100( cclass(c).head );
3030    printf ( "    dcon: ");        print100( cclass(c).dcon );
3031    printf ( "  supers: ");        print100( cclass(c).supers );
3032    printf ( " #supers: %d\n",     cclass(c).numSupers );
3033    printf ( "   dsels: ");        print100( cclass(c).dsels );
3034    printf ( " members: ");        print100( cclass(c).members );
3035    printf ( "#members: %d\n",     cclass(c).numMembers );
3036    printf ( "defaults: ");        print100( cclass(c).defaults );
3037    printf ( "   insts: ");        print100( cclass(c).instances );
3038    printf ( "}\n" );
3039 }
3040
3041
3042 void dumpInst ( Int i )
3043 {
3044    if (isInst(INSTMIN+i) && !isInst(i)) i += INSTMIN;
3045    if (!isInst(i)) {
3046       printf ( "dumpInst %d: not an instance\n", i);
3047       return;
3048    }
3049    printf ( "{\n" );
3050    printf ( "   class: %s\n",     maybeClassStr(inst(i).c) );
3051    printf ( "    line: %d\n",     inst(i).line );
3052    printf ( "     mod: %s\n",     maybeModuleStr(inst(i).mod));
3053    printf ( "   kinds: ");        print100( inst(i).kinds );
3054    printf ( "    head: ");        print100( inst(i).head );
3055    printf ( "   specs: ");        print100( inst(i).specifics );
3056    printf ( "  #specs: %d\n",     inst(i).numSpecifics );
3057    printf ( "   impls: ");        print100( inst(i).implements );
3058    printf ( " builder: %s\n",     maybeNameStr( inst(i).builder ) );
3059    printf ( "}\n" );
3060 }
3061
3062
3063 /* --------------------------------------------------------------------------
3064  * plugin support
3065  * ------------------------------------------------------------------------*/
3066
3067 /*---------------------------------------------------------------------------
3068  * GreenCard entry points
3069  *
3070  * GreenCard generated code accesses Hugs data structures and functions 
3071  * (only) via these functions (which are stored in the virtual function
3072  * table hugsAPI1.
3073  *-------------------------------------------------------------------------*/
3074
3075 #if GREENCARD
3076
3077 static Cell  makeTuple      Args((Int));
3078 static Cell  makeInt        Args((Int));
3079 static Cell  makeChar       Args((Char));
3080 static Char  CharOf         Args((Cell));
3081 static Cell  makeFloat      Args((FloatPro));
3082 static Void* derefMallocPtr Args((Cell));
3083 static Cell* Fst            Args((Cell));
3084 static Cell* Snd            Args((Cell));
3085
3086 static Cell  makeTuple(n)      Int      n; { return mkTuple(n); }
3087 static Cell  makeInt(n)        Int      n; { return mkInt(n); }
3088 static Cell  makeChar(n)       Char     n; { return mkChar(n); }
3089 static Char  CharOf(n)         Cell     n; { return charOf(n); }
3090 static Cell  makeFloat(n)      FloatPro n; { return mkFloat(n); }
3091 static Void* derefMallocPtr(n) Cell     n; { return derefMP(n); }
3092 static Cell* Fst(n)            Cell     n; { return (Cell*)&fst(n); }
3093 static Cell* Snd(n)            Cell     n; { return (Cell*)&snd(n); }
3094
3095 HugsAPI1* hugsAPI1() {
3096     static HugsAPI1 api;
3097     static Bool initialised = FALSE;
3098     if (!initialised) {
3099         api.nameTrue        = nameTrue;
3100         api.nameFalse       = nameFalse;
3101         api.nameNil         = nameNil;
3102         api.nameCons        = nameCons;
3103         api.nameJust        = nameJust;
3104         api.nameNothing     = nameNothing;
3105         api.nameLeft        = nameLeft;
3106         api.nameRight       = nameRight;
3107         api.nameUnit        = nameUnit;
3108         api.nameIORun       = nameIORun;
3109         api.makeInt         = makeInt;
3110         api.makeChar        = makeChar;
3111         api.CharOf          = CharOf;
3112         api.makeFloat       = makeFloat;
3113         api.makeTuple       = makeTuple;
3114         api.pair            = pair;
3115         api.mkMallocPtr     = mkMallocPtr;
3116         api.derefMallocPtr  = derefMallocPtr;
3117         api.mkStablePtr     = mkStablePtr;
3118         api.derefStablePtr  = derefStablePtr;
3119         api.freeStablePtr   = freeStablePtr;
3120         api.eval            = eval;
3121         api.evalWithNoError = evalWithNoError;
3122         api.evalFails       = evalFails;
3123         api.whnfArgs        = &whnfArgs;
3124         api.whnfHead        = &whnfHead;
3125         api.whnfInt         = &whnfInt;
3126         api.whnfFloat       = &whnfFloat;
3127         api.garbageCollect  = garbageCollect;
3128         api.stackOverflow   = hugsStackOverflow;
3129         api.internal        = internal;
3130         api.registerPrims   = registerPrims;
3131         api.addPrimCfun     = addPrimCfun;
3132         api.inventText      = inventText;
3133         api.Fst             = Fst;
3134         api.Snd             = Snd;
3135         api.cellStack       = cellStack;
3136         api.sp              = &sp;
3137     }
3138     return &api;
3139 }
3140
3141 #endif /* GREENCARD */
3142
3143
3144 /* --------------------------------------------------------------------------
3145  * storage control:
3146  * ------------------------------------------------------------------------*/
3147
3148 #if DYN_TABLES
3149 static void far* safeFarCalloc Args((Int,Int));
3150 static void far* safeFarCalloc(n,s)     /* allocate table storage and check*/
3151 Int n, s; {                             /* for non-null return             */
3152     void far* tab = farCalloc(n,s);
3153     if (tab==0) {
3154         ERRMSG(0) "Cannot allocate run-time tables"
3155         EEND;
3156     }
3157     return tab;
3158 }
3159 #define TABALLOC(v,t,n)                 v=(t far*)safeFarCalloc(n,sizeof(t));
3160 #else
3161 #define TABALLOC(v,t,n)
3162 #endif
3163
3164 Void storage(what)
3165 Int what; {
3166     Int i;
3167
3168     switch (what) {
3169         case POSTPREL: break;
3170
3171         case RESET   : clearStack();
3172
3173                        /* the next 2 statements are particularly important
3174                         * if you are using GLOBALfst or GLOBALsnd since the
3175                         * corresponding registers may be reset to their
3176                         * uninitialised initial values by a longjump.
3177                         */
3178                        heapTopFst = heapFst + heapSize;
3179                        heapTopSnd = heapSnd + heapSize;
3180                        consGC = TRUE;
3181                        lsave  = NIL;
3182                        rsave  = NIL;
3183                        if (isNull(lastExprSaved))
3184                            savedText = NUM_TEXT;
3185                        break;
3186
3187         case MARK    : 
3188                        start();
3189                        for (i=NAMEMIN; i<nameHw; ++i) {
3190                            mark(name(i).parent);
3191                            mark(name(i).defn);
3192                            mark(name(i).stgVar);
3193                            mark(name(i).type);
3194                         }
3195                        end("Names", nameHw-NAMEMIN);
3196
3197                        start();
3198                        for (i=MODMIN; i<moduleHw; ++i) {
3199                            mark(module(i).tycons);
3200                            mark(module(i).names);
3201                            mark(module(i).classes);
3202                            mark(module(i).exports);
3203                            mark(module(i).qualImports);
3204                            mark(module(i).objectExtraNames);
3205                        }
3206                        end("Modules", moduleHw-MODMIN);
3207
3208                        start();
3209                        for (i=TYCMIN; i<tyconHw; ++i) {
3210                            mark(tycon(i).defn);
3211                            mark(tycon(i).kind);
3212                            mark(tycon(i).what);
3213                        }
3214                        end("Type constructors", tyconHw-TYCMIN);
3215
3216                        start();
3217                        for (i=CLASSMIN; i<classHw; ++i) {
3218                            mark(cclass(i).head);
3219                            mark(cclass(i).kinds);
3220                            mark(cclass(i).fds);
3221                            mark(cclass(i).xfds);
3222                            mark(cclass(i).dsels);
3223                            mark(cclass(i).supers);
3224                            mark(cclass(i).members);
3225                            mark(cclass(i).defaults);
3226                            mark(cclass(i).instances);
3227                        }
3228                        mark(classes);
3229                        end("Classes", classHw-CLASSMIN);
3230
3231                        start();
3232                        for (i=INSTMIN; i<instHw; ++i) {
3233                            mark(inst(i).head);
3234                            mark(inst(i).kinds);
3235                            mark(inst(i).specifics);
3236                            mark(inst(i).implements);
3237                        }
3238                        end("Instances", instHw-INSTMIN);
3239
3240                        start();
3241                        for (i=0; i<=sp; ++i)
3242                            mark(stack(i));
3243                        end("Stack", sp+1);
3244
3245                        start();
3246                        mark(lastExprSaved);
3247                        mark(lsave);
3248                        mark(rsave);
3249                        end("Last expression", 3);
3250
3251                        if (consGC) {
3252                            start();
3253                            gcCStack();
3254                            end("C stack", stackRoots);
3255                        }
3256
3257                        break;
3258
3259         case PREPREL : heapFst = heapAlloc(heapSize);
3260                        heapSnd = heapAlloc(heapSize);
3261
3262                        if (heapFst==(Heap)0 || heapSnd==(Heap)0) {
3263                            ERRMSG(0) "Cannot allocate heap storage (%d cells)",
3264                                      heapSize
3265                            EEND;
3266                        }
3267
3268                        heapTopFst = heapFst + heapSize;
3269                        heapTopSnd = heapSnd + heapSize;
3270                        for (i=1; i<heapSize; ++i) {
3271                            fst(-i) = FREECELL;
3272                            snd(-i) = -(i+1);
3273                        }
3274                        snd(-heapSize) = NIL;
3275                        freeList  = -1;
3276                        numGcs    = 0;
3277                        consGC    = TRUE;
3278                        lsave     = NIL;
3279                        rsave     = NIL;
3280
3281                        marksSize  = bitArraySize(heapSize);
3282                        if ((marks=(Int *)calloc(marksSize, sizeof(Int)))==0) {
3283                            ERRMSG(0) "Unable to allocate gc markspace"
3284                            EEND;
3285                        }
3286
3287                        TABALLOC(text,      char,             NUM_TEXT)
3288                        TABALLOC(tyconHash, Tycon,            TYCONHSZ)
3289                        TABALLOC(tabTycon,  struct strTycon,  NUM_TYCON)
3290                        TABALLOC(nameHash,  Name,             NAMEHSZ)
3291                        TABALLOC(tabName,   struct strName,   NUM_NAME)
3292                        TABALLOC(tabClass,  struct strClass,  NUM_CLASSES)
3293                        TABALLOC(cellStack, Cell,             NUM_STACK)
3294                        TABALLOC(tabModule, struct Module,    NUM_SCRIPTS)
3295 #if TREX
3296                        TABALLOC(tabExt,    Text,             NUM_EXT)
3297 #endif
3298                        clearStack();
3299
3300                        textHw        = 0;
3301                        nextNewText   = NUM_TEXT;
3302                        nextNewDText  = (-1);
3303                        lastExprSaved = NIL;
3304                        savedText     = NUM_TEXT;
3305                        for (i=0; i<TEXTHSZ; ++i)
3306                            textHash[i][0] = NOTEXT;
3307
3308
3309                        moduleHw = MODMIN;
3310
3311                        tyconHw  = TYCMIN;
3312                        for (i=0; i<TYCONHSZ; ++i)
3313                            tyconHash[i] = NIL;
3314 #if TREX
3315                        extHw    = EXTMIN;
3316 #endif
3317
3318                        nameHw   = NAMEMIN;
3319                        for (i=0; i<NAMEHSZ; ++i)
3320                            nameHash[i] = NIL;
3321
3322                        classHw  = CLASSMIN;
3323
3324                        instHw   = INSTMIN;
3325
3326 #if USE_DICTHW
3327                        dictHw   = 0;
3328 #endif
3329
3330                        tabInst  = (struct strInst far *)
3331                                     farCalloc(NUM_INSTS,sizeof(struct strInst));
3332
3333                        if (tabInst==0) {
3334                            ERRMSG(0) "Cannot allocate instance tables"
3335                            EEND;
3336                        }
3337
3338                        scriptHw = 0;
3339
3340                        break;
3341     }
3342 }
3343
3344 /*-------------------------------------------------------------------------*/