1    	/*
2    	** $Id: lgc.c,v 2.210 2015/11/03 18:10:44 roberto Exp $
3    	** Garbage Collector
4    	** See Copyright Notice in lua.h
5    	*/
6    	
7    	#define lgc_c
8    	#define LUA_CORE
9    	
10   	#include "lprefix.h"
11   	
12   	
13   	#include <string.h>
14   	
15   	#include "lua.h"
16   	
17   	#include "ldebug.h"
18   	#include "ldo.h"
19   	#include "lfunc.h"
20   	#include "lgc.h"
21   	#include "lmem.h"
22   	#include "lobject.h"
23   	#include "lstate.h"
24   	#include "lstring.h"
25   	#include "ltable.h"
26   	#include "ltm.h"
27   	
28   	
29   	/*
30   	** internal state for collector while inside the atomic phase. The
31   	** collector should never be in this state while running regular code.
32   	*/
33   	#define GCSinsideatomic		(GCSpause + 1)
34   	
35   	/*
36   	** cost of sweeping one element (the size of a small object divided
37   	** by some adjust for the sweep speed)
38   	*/
39   	#define GCSWEEPCOST	((sizeof(TString) + 4) / 4)
40   	
41   	/* maximum number of elements to sweep in each single step */
42   	#define GCSWEEPMAX	(cast_int((GCSTEPSIZE / GCSWEEPCOST) / 4))
43   	
44   	/* cost of calling one finalizer */
45   	#define GCFINALIZECOST	GCSWEEPCOST
46   	
47   	
48   	/*
49   	** macro to adjust 'stepmul': 'stepmul' is actually used like
50   	** 'stepmul / STEPMULADJ' (value chosen by tests)
51   	*/
52   	#define STEPMULADJ		200
53   	
54   	
55   	/*
56   	** macro to adjust 'pause': 'pause' is actually used like
57   	** 'pause / PAUSEADJ' (value chosen by tests)
58   	*/
59   	#define PAUSEADJ		100
60   	
61   	
62   	/*
63   	** 'makewhite' erases all color bits then sets only the current white
64   	** bit
65   	*/
66   	#define maskcolors	(~(bitmask(BLACKBIT) | WHITEBITS))
67   	#define makewhite(g,x)	\
68   	 (x->marked = cast_byte((x->marked & maskcolors) | luaC_white(g)))
69   	
70   	#define white2gray(x)	resetbits(x->marked, WHITEBITS)
71   	#define black2gray(x)	resetbit(x->marked, BLACKBIT)
72   	
73   	
74   	#define valiswhite(x)   (iscollectable(x) && iswhite(gcvalue(x)))
75   	
76   	#define checkdeadkey(n)	lua_assert(!ttisdeadkey(gkey(n)) || ttisnil(gval(n)))
77   	
78   	
79   	#define checkconsistency(obj)  \
80   	  lua_longassert(!iscollectable(obj) || righttt(obj))
81   	
82   	
83   	#define markvalue(g,o) { checkconsistency(o); \
84   	  if (valiswhite(o)) reallymarkobject(g,gcvalue(o)); }
85   	
86   	#define markobject(g,t)	{ if (iswhite(t)) reallymarkobject(g, obj2gco(t)); }
87   	
88   	/*
89   	** mark an object that can be NULL (either because it is really optional,
90   	** or it was stripped as debug info, or inside an uncompleted structure)
91   	*/
92   	#define markobjectN(g,t)	{ if (t) markobject(g,t); }
93   	
94   	static void reallymarkobject (global_State *g, GCObject *o);
95   	
96   	
97   	/*
98   	** {======================================================
99   	** Generic functions
100  	** =======================================================
101  	*/
102  	
103  	
104  	/*
105  	** one after last element in a hash array
106  	*/
107  	#define gnodelast(h)	gnode(h, cast(size_t, sizenode(h)))
108  	
109  	
110  	/*
111  	** link collectable object 'o' into list pointed by 'p'
112  	*/
113  	#define linkgclist(o,p)	((o)->gclist = (p), (p) = obj2gco(o))
114  	
115  	
116  	/*
117  	** If key is not marked, mark its entry as dead. This allows key to be
118  	** collected, but keeps its entry in the table.  A dead node is needed
119  	** when Lua looks up for a key (it may be part of a chain) and when
120  	** traversing a weak table (key might be removed from the table during
121  	** traversal). Other places never manipulate dead keys, because its
122  	** associated nil value is enough to signal that the entry is logically
123  	** empty.
124  	*/
125  	static void removeentry (Node *n) {
126  	  lua_assert(ttisnil(gval(n)));
127  	  if (valiswhite(gkey(n)))
128  	    setdeadvalue(wgkey(n));  /* unused and unmarked key; remove it */
129  	}
130  	
131  	
132  	/*
133  	** tells whether a key or value can be cleared from a weak
134  	** table. Non-collectable objects are never removed from weak
135  	** tables. Strings behave as 'values', so are never removed too. for
136  	** other objects: if really collected, cannot keep them; for objects
137  	** being finalized, keep them in keys, but not in values
138  	*/
139  	static int iscleared (global_State *g, const TValue *o) {
140  	  if (!iscollectable(o)) return 0;
141  	  else if (ttisstring(o)) {
142  	    markobject(g, tsvalue(o));  /* strings are 'values', so are never weak */
143  	    return 0;
144  	  }
145  	  else return iswhite(gcvalue(o));
146  	}
147  	
148  	
149  	/*
150  	** barrier that moves collector forward, that is, mark the white object
151  	** being pointed by a black object. (If in sweep phase, clear the black
152  	** object to white [sweep it] to avoid other barrier calls for this
153  	** same object.)
154  	*/
155  	void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) {
156  	  global_State *g = G(L);
157  	  lua_assert(isblack(o) && iswhite(v) && !isdead(g, v) && !isdead(g, o));
158  	  if (keepinvariant(g))  /* must keep invariant? */
159  	    reallymarkobject(g, v);  /* restore invariant */
160  	  else {  /* sweep phase */
161  	    lua_assert(issweepphase(g));
162  	    makewhite(g, o);  /* mark main obj. as white to avoid other barriers */
163  	  }
164  	}
165  	
166  	
167  	/*
168  	** barrier that moves collector backward, that is, mark the black object
169  	** pointing to a white object as gray again.
170  	*/
171  	void luaC_barrierback_ (lua_State *L, Table *t) {
172  	  global_State *g = G(L);
173  	  lua_assert(isblack(t) && !isdead(g, t));
174  	  black2gray(t);  /* make table gray (again) */
175  	  linkgclist(t, g->grayagain);
176  	}
177  	
178  	
179  	/*
180  	** barrier for assignments to closed upvalues. Because upvalues are
181  	** shared among closures, it is impossible to know the color of all
182  	** closures pointing to it. So, we assume that the object being assigned
183  	** must be marked.
184  	*/
185  	void luaC_upvalbarrier_ (lua_State *L, UpVal *uv) {
186  	  global_State *g = G(L);
187  	  GCObject *o = gcvalue(uv->v);
188  	  lua_assert(!upisopen(uv));  /* ensured by macro luaC_upvalbarrier */
189  	  if (keepinvariant(g))
190  	    markobject(g, o);
191  	}
192  	
193  	
194  	void luaC_fix (lua_State *L, GCObject *o) {
195  	  global_State *g = G(L);
196  	  lua_assert(g->allgc == o);  /* object must be 1st in 'allgc' list! */
197  	  white2gray(o);  /* they will be gray forever */
198  	  g->allgc = o->next;  /* remove object from 'allgc' list */
199  	  o->next = g->fixedgc;  /* link it to 'fixedgc' list */
200  	  g->fixedgc = o;
201  	}
202  	
203  	
204  	/*
205  	** create a new collectable object (with given type and size) and link
206  	** it to 'allgc' list.
207  	*/
208  	GCObject *luaC_newobj (lua_State *L, int tt, size_t sz) {
209  	  global_State *g = G(L);
210  	  GCObject *o = cast(GCObject *, luaM_newobject(L, novariant(tt), sz));
211  	  o->marked = luaC_white(g);
212  	  o->tt = tt;
213  	  o->next = g->allgc;
214  	  g->allgc = o;
215  	  return o;
216  	}
217  	
218  	/* }====================================================== */
219  	
220  	
221  	
222  	/*
223  	** {======================================================
224  	** Mark functions
225  	** =======================================================
226  	*/
227  	
228  	
229  	/*
230  	** mark an object. Userdata, strings, and closed upvalues are visited
231  	** and turned black here. Other objects are marked gray and added
232  	** to appropriate list to be visited (and turned black) later. (Open
233  	** upvalues are already linked in 'headuv' list.)
234  	*/
235  	static void reallymarkobject (global_State *g, GCObject *o) {
236  	 reentry:
237  	  white2gray(o);
238  	  switch (o->tt) {
239  	    case LUA_TSHRSTR: {
240  	      gray2black(o);
241  	      g->GCmemtrav += sizelstring(gco2ts(o)->shrlen);
242  	      break;
243  	    }
244  	    case LUA_TLNGSTR: {
245  	      gray2black(o);
246  	      g->GCmemtrav += sizelstring(gco2ts(o)->u.lnglen);
247  	      break;
248  	    }
249  	    case LUA_TUSERDATA: {
250  	      TValue uvalue;
251  	      markobjectN(g, gco2u(o)->metatable);  /* mark its metatable */
252  	      gray2black(o);
253  	      g->GCmemtrav += sizeudata(gco2u(o));
254  	      getuservalue(g->mainthread, gco2u(o), &uvalue);
255  	      if (valiswhite(&uvalue)) {  /* markvalue(g, &uvalue); */
256  	        o = gcvalue(&uvalue);
257  	        goto reentry;
258  	      }
259  	      break;
260  	    }
261  	    case LUA_TLCL: {
262  	      linkgclist(gco2lcl(o), g->gray);
263  	      break;
264  	    }
265  	    case LUA_TCCL: {
266  	      linkgclist(gco2ccl(o), g->gray);
267  	      break;
268  	    }
269  	    case LUA_TTABLE: {
270  	      linkgclist(gco2t(o), g->gray);
271  	      break;
272  	    }
273  	    case LUA_TTHREAD: {
274  	      linkgclist(gco2th(o), g->gray);
275  	      break;
276  	    }
277  	    case LUA_TPROTO: {
278  	      linkgclist(gco2p(o), g->gray);
279  	      break;
280  	    }
281  	    default: lua_assert(0); break;
282  	  }
283  	}
284  	
285  	
286  	/*
287  	** mark metamethods for basic types
288  	*/
289  	static void markmt (global_State *g) {
290  	  int i;
291  	  for (i=0; i < LUA_NUMTAGS; i++)
292  	    markobjectN(g, g->mt[i]);
293  	}
294  	
295  	
296  	/*
297  	** mark all objects in list of being-finalized
298  	*/
299  	static void markbeingfnz (global_State *g) {
300  	  GCObject *o;
301  	  for (o = g->tobefnz; o != NULL; o = o->next)
302  	    markobject(g, o);
303  	}
304  	
305  	
306  	/*
307  	** Mark all values stored in marked open upvalues from non-marked threads.
308  	** (Values from marked threads were already marked when traversing the
309  	** thread.) Remove from the list threads that no longer have upvalues and
310  	** not-marked threads.
311  	*/
312  	static void remarkupvals (global_State *g) {
313  	  lua_State *thread;
314  	  lua_State **p = &g->twups;
315  	  while ((thread = *p) != NULL) {
316  	    lua_assert(!isblack(thread));  /* threads are never black */
317  	    if (isgray(thread) && thread->openupval != NULL)
318  	      p = &thread->twups;  /* keep marked thread with upvalues in the list */
319  	    else {  /* thread is not marked or without upvalues */
320  	      UpVal *uv;
321  	      *p = thread->twups;  /* remove thread from the list */
322  	      thread->twups = thread;  /* mark that it is out of list */
323  	      for (uv = thread->openupval; uv != NULL; uv = uv->u.open.next) {
324  	        if (uv->u.open.touched) {
325  	          markvalue(g, uv->v);  /* remark upvalue's value */
326  	          uv->u.open.touched = 0;
327  	        }
328  	      }
329  	    }
330  	  }
331  	}
332  	
333  	
334  	/*
335  	** mark root set and reset all gray lists, to start a new collection
336  	*/
337  	static void restartcollection (global_State *g) {
338  	  g->gray = g->grayagain = NULL;
339  	  g->weak = g->allweak = g->ephemeron = NULL;
340  	  markobject(g, g->mainthread);
341  	  markvalue(g, &g->l_registry);
342  	  markmt(g);
343  	  markbeingfnz(g);  /* mark any finalizing object left from previous cycle */
344  	}
345  	
346  	/* }====================================================== */
347  	
348  	
349  	/*
350  	** {======================================================
351  	** Traverse functions
352  	** =======================================================
353  	*/
354  	
355  	/*
356  	** Traverse a table with weak values and link it to proper list. During
357  	** propagate phase, keep it in 'grayagain' list, to be revisited in the
358  	** atomic phase. In the atomic phase, if table has any white value,
359  	** put it in 'weak' list, to be cleared.
360  	*/
361  	static void traverseweakvalue (global_State *g, Table *h) {
362  	  Node *n, *limit = gnodelast(h);
363  	  /* if there is array part, assume it may have white values (it is not
364  	     worth traversing it now just to check) */
365  	  int hasclears = (h->sizearray > 0);
366  	  for (n = gnode(h, 0); n < limit; n++) {  /* traverse hash part */
367  	    checkdeadkey(n);
368  	    if (ttisnil(gval(n)))  /* entry is empty? */
369  	      removeentry(n);  /* remove it */
370  	    else {
371  	      lua_assert(!ttisnil(gkey(n)));
372  	      markvalue(g, gkey(n));  /* mark key */
373  	      if (!hasclears && iscleared(g, gval(n)))  /* is there a white value? */
374  	        hasclears = 1;  /* table will have to be cleared */
375  	    }
376  	  }
377  	  if (g->gcstate == GCSpropagate)
378  	    linkgclist(h, g->grayagain);  /* must retraverse it in atomic phase */
379  	  else if (hasclears)
380  	    linkgclist(h, g->weak);  /* has to be cleared later */
381  	}
382  	
383  	
384  	/*
385  	** Traverse an ephemeron table and link it to proper list. Returns true
386  	** iff any object was marked during this traversal (which implies that
387  	** convergence has to continue). During propagation phase, keep table
388  	** in 'grayagain' list, to be visited again in the atomic phase. In
389  	** the atomic phase, if table has any white->white entry, it has to
390  	** be revisited during ephemeron convergence (as that key may turn
391  	** black). Otherwise, if it has any white key, table has to be cleared
392  	** (in the atomic phase).
393  	*/
394  	static int traverseephemeron (global_State *g, Table *h) {
395  	  int marked = 0;  /* true if an object is marked in this traversal */
396  	  int hasclears = 0;  /* true if table has white keys */
397  	  int hasww = 0;  /* true if table has entry "white-key -> white-value" */
398  	  Node *n, *limit = gnodelast(h);
399  	  unsigned int i;
400  	  /* traverse array part */
401  	  for (i = 0; i < h->sizearray; i++) {
402  	    if (valiswhite(&h->array[i])) {
403  	      marked = 1;
404  	      reallymarkobject(g, gcvalue(&h->array[i]));
405  	    }
406  	  }
407  	  /* traverse hash part */
408  	  for (n = gnode(h, 0); n < limit; n++) {
409  	    checkdeadkey(n);
410  	    if (ttisnil(gval(n)))  /* entry is empty? */
411  	      removeentry(n);  /* remove it */
412  	    else if (iscleared(g, gkey(n))) {  /* key is not marked (yet)? */
413  	      hasclears = 1;  /* table must be cleared */
414  	      if (valiswhite(gval(n)))  /* value not marked yet? */
415  	        hasww = 1;  /* white-white entry */
416  	    }
417  	    else if (valiswhite(gval(n))) {  /* value not marked yet? */
418  	      marked = 1;
419  	      reallymarkobject(g, gcvalue(gval(n)));  /* mark it now */
420  	    }
421  	  }
422  	  /* link table into proper list */
423  	  if (g->gcstate == GCSpropagate)
424  	    linkgclist(h, g->grayagain);  /* must retraverse it in atomic phase */
425  	  else if (hasww)  /* table has white->white entries? */
426  	    linkgclist(h, g->ephemeron);  /* have to propagate again */
427  	  else if (hasclears)  /* table has white keys? */
428  	    linkgclist(h, g->allweak);  /* may have to clean white keys */
429  	  return marked;
430  	}
431  	
432  	
433  	static void traversestrongtable (global_State *g, Table *h) {
434  	  Node *n, *limit = gnodelast(h);
435  	  unsigned int i;
436  	  for (i = 0; i < h->sizearray; i++)  /* traverse array part */
437  	    markvalue(g, &h->array[i]);
438  	  for (n = gnode(h, 0); n < limit; n++) {  /* traverse hash part */
439  	    checkdeadkey(n);
440  	    if (ttisnil(gval(n)))  /* entry is empty? */
441  	      removeentry(n);  /* remove it */
442  	    else {
443  	      lua_assert(!ttisnil(gkey(n)));
444  	      markvalue(g, gkey(n));  /* mark key */
445  	      markvalue(g, gval(n));  /* mark value */
446  	    }
447  	  }
448  	}
449  	
450  	
451  	static lu_mem traversetable (global_State *g, Table *h) {
452  	  const char *weakkey, *weakvalue;
453  	  const TValue *mode = gfasttm(g, h->metatable, TM_MODE);
(1) Event cond_true: Condition "h->metatable", taking true branch.
(2) Event cond_true: Condition "h->metatable->marked & (3 /* (1 << 0) | (1 << 1) */)", taking true branch.
454  	  markobjectN(g, h->metatable);
(3) Event cond_true: Condition "mode", taking true branch.
(4) Event cond_true: Condition "(mode->tt_ & 0xf) == 4", taking true branch.
(5) Event overrun-local: Overrunning array of 24 bytes at byte offset 24 by dereferencing pointer "(char *)&((union GCUnion *)mode->value_.gc)->ts + 24UL".
455  	  if (mode && ttisstring(mode) &&  /* is there a weak mode? */
456  	      ((weakkey = strchr(svalue(mode), 'k')),
457  	       (weakvalue = strchr(svalue(mode), 'v')),
458  	       (weakkey || weakvalue))) {  /* is really weak? */
459  	    black2gray(h);  /* keep table gray */
460  	    if (!weakkey)  /* strong keys? */
461  	      traverseweakvalue(g, h);
462  	    else if (!weakvalue)  /* strong values? */
463  	      traverseephemeron(g, h);
464  	    else  /* all weak */
465  	      linkgclist(h, g->allweak);  /* nothing to traverse now */
466  	  }
467  	  else  /* not weak */
468  	    traversestrongtable(g, h);
469  	  return sizeof(Table) + sizeof(TValue) * h->sizearray +
470  	                         sizeof(Node) * cast(size_t, sizenode(h));
471  	}
472  	
473  	
474  	/*
475  	** Traverse a prototype. (While a prototype is being build, its
476  	** arrays can be larger than needed; the extra slots are filled with
477  	** NULL, so the use of 'markobjectN')
478  	*/
479  	static int traverseproto (global_State *g, Proto *f) {
480  	  int i;
481  	  if (f->cache && iswhite(f->cache))
482  	    f->cache = NULL;  /* allow cache to be collected */
483  	  markobjectN(g, f->source);
484  	  for (i = 0; i < f->sizek; i++)  /* mark literals */
485  	    markvalue(g, &f->k[i]);
486  	  for (i = 0; i < f->sizeupvalues; i++)  /* mark upvalue names */
487  	    markobjectN(g, f->upvalues[i].name);
488  	  for (i = 0; i < f->sizep; i++)  /* mark nested protos */
489  	    markobjectN(g, f->p[i]);
490  	  for (i = 0; i < f->sizelocvars; i++)  /* mark local-variable names */
491  	    markobjectN(g, f->locvars[i].varname);
492  	  return sizeof(Proto) + sizeof(Instruction) * f->sizecode +
493  	                         sizeof(Proto *) * f->sizep +
494  	                         sizeof(TValue) * f->sizek +
495  	                         sizeof(int) * f->sizelineinfo +
496  	                         sizeof(LocVar) * f->sizelocvars +
497  	                         sizeof(Upvaldesc) * f->sizeupvalues;
498  	}
499  	
500  	
501  	static lu_mem traverseCclosure (global_State *g, CClosure *cl) {
502  	  int i;
503  	  for (i = 0; i < cl->nupvalues; i++)  /* mark its upvalues */
504  	    markvalue(g, &cl->upvalue[i]);
505  	  return sizeCclosure(cl->nupvalues);
506  	}
507  	
508  	/*
509  	** open upvalues point to values in a thread, so those values should
510  	** be marked when the thread is traversed except in the atomic phase
511  	** (because then the value cannot be changed by the thread and the
512  	** thread may not be traversed again)
513  	*/
514  	static lu_mem traverseLclosure (global_State *g, LClosure *cl) {
515  	  int i;
516  	  markobjectN(g, cl->p);  /* mark its prototype */
517  	  for (i = 0; i < cl->nupvalues; i++) {  /* mark its upvalues */
518  	    UpVal *uv = cl->upvals[i];
519  	    if (uv != NULL) {
520  	      if (upisopen(uv) && g->gcstate != GCSinsideatomic)
521  	        uv->u.open.touched = 1;  /* can be marked in 'remarkupvals' */
522  	      else
523  	        markvalue(g, uv->v);
524  	    }
525  	  }
526  	  return sizeLclosure(cl->nupvalues);
527  	}
528  	
529  	
530  	static lu_mem traversethread (global_State *g, lua_State *th) {
531  	  StkId o = th->stack;
532  	  if (o == NULL)
533  	    return 1;  /* stack not completely built yet */
534  	  lua_assert(g->gcstate == GCSinsideatomic ||
535  	             th->openupval == NULL || isintwups(th));
536  	  for (; o < th->top; o++)  /* mark live elements in the stack */
537  	    markvalue(g, o);
538  	  if (g->gcstate == GCSinsideatomic) {  /* final traversal? */
539  	    StkId lim = th->stack + th->stacksize;  /* real end of stack */
540  	    for (; o < lim; o++)  /* clear not-marked stack slice */
541  	      setnilvalue(o);
542  	    /* 'remarkupvals' may have removed thread from 'twups' list */ 
543  	    if (!isintwups(th) && th->openupval != NULL) {
544  	      th->twups = g->twups;  /* link it back to the list */
545  	      g->twups = th;
546  	    }
547  	  }
548  	  else if (g->gckind != KGC_EMERGENCY)
549  	    luaD_shrinkstack(th); /* do not change stack in emergency cycle */
550  	  return (sizeof(lua_State) + sizeof(TValue) * th->stacksize +
551  	          sizeof(CallInfo) * th->nci);
552  	}
553  	
554  	
555  	/*
556  	** traverse one gray object, turning it to black (except for threads,
557  	** which are always gray).
558  	*/
559  	static void propagatemark (global_State *g) {
560  	  lu_mem size;
561  	  GCObject *o = g->gray;
562  	  lua_assert(isgray(o));
563  	  gray2black(o);
564  	  switch (o->tt) {
565  	    case LUA_TTABLE: {
566  	      Table *h = gco2t(o);
567  	      g->gray = h->gclist;  /* remove from 'gray' list */
568  	      size = traversetable(g, h);
569  	      break;
570  	    }
571  	    case LUA_TLCL: {
572  	      LClosure *cl = gco2lcl(o);
573  	      g->gray = cl->gclist;  /* remove from 'gray' list */
574  	      size = traverseLclosure(g, cl);
575  	      break;
576  	    }
577  	    case LUA_TCCL: {
578  	      CClosure *cl = gco2ccl(o);
579  	      g->gray = cl->gclist;  /* remove from 'gray' list */
580  	      size = traverseCclosure(g, cl);
581  	      break;
582  	    }
583  	    case LUA_TTHREAD: {
584  	      lua_State *th = gco2th(o);
585  	      g->gray = th->gclist;  /* remove from 'gray' list */
586  	      linkgclist(th, g->grayagain);  /* insert into 'grayagain' list */
587  	      black2gray(o);
588  	      size = traversethread(g, th);
589  	      break;
590  	    }
591  	    case LUA_TPROTO: {
592  	      Proto *p = gco2p(o);
593  	      g->gray = p->gclist;  /* remove from 'gray' list */
594  	      size = traverseproto(g, p);
595  	      break;
596  	    }
597  	    default: lua_assert(0); return;
598  	  }
599  	  g->GCmemtrav += size;
600  	}
601  	
602  	
603  	static void propagateall (global_State *g) {
604  	  while (g->gray) propagatemark(g);
605  	}
606  	
607  	
608  	static void convergeephemerons (global_State *g) {
609  	  int changed;
610  	  do {
611  	    GCObject *w;
612  	    GCObject *next = g->ephemeron;  /* get ephemeron list */
613  	    g->ephemeron = NULL;  /* tables may return to this list when traversed */
614  	    changed = 0;
615  	    while ((w = next) != NULL) {
616  	      next = gco2t(w)->gclist;
617  	      if (traverseephemeron(g, gco2t(w))) {  /* traverse marked some value? */
618  	        propagateall(g);  /* propagate changes */
619  	        changed = 1;  /* will have to revisit all ephemeron tables */
620  	      }
621  	    }
622  	  } while (changed);
623  	}
624  	
625  	/* }====================================================== */
626  	
627  	
628  	/*
629  	** {======================================================
630  	** Sweep Functions
631  	** =======================================================
632  	*/
633  	
634  	
635  	/*
636  	** clear entries with unmarked keys from all weaktables in list 'l' up
637  	** to element 'f'
638  	*/
639  	static void clearkeys (global_State *g, GCObject *l, GCObject *f) {
640  	  for (; l != f; l = gco2t(l)->gclist) {
641  	    Table *h = gco2t(l);
642  	    Node *n, *limit = gnodelast(h);
643  	    for (n = gnode(h, 0); n < limit; n++) {
644  	      if (!ttisnil(gval(n)) && (iscleared(g, gkey(n)))) {
645  	        setnilvalue(gval(n));  /* remove value ... */
646  	        removeentry(n);  /* and remove entry from table */
647  	      }
648  	    }
649  	  }
650  	}
651  	
652  	
653  	/*
654  	** clear entries with unmarked values from all weaktables in list 'l' up
655  	** to element 'f'
656  	*/
657  	static void clearvalues (global_State *g, GCObject *l, GCObject *f) {
658  	  for (; l != f; l = gco2t(l)->gclist) {
659  	    Table *h = gco2t(l);
660  	    Node *n, *limit = gnodelast(h);
661  	    unsigned int i;
662  	    for (i = 0; i < h->sizearray; i++) {
663  	      TValue *o = &h->array[i];
664  	      if (iscleared(g, o))  /* value was collected? */
665  	        setnilvalue(o);  /* remove value */
666  	    }
667  	    for (n = gnode(h, 0); n < limit; n++) {
668  	      if (!ttisnil(gval(n)) && iscleared(g, gval(n))) {
669  	        setnilvalue(gval(n));  /* remove value ... */
670  	        removeentry(n);  /* and remove entry from table */
671  	      }
672  	    }
673  	  }
674  	}
675  	
676  	
677  	void luaC_upvdeccount (lua_State *L, UpVal *uv) {
678  	  lua_assert(uv->refcount > 0);
679  	  uv->refcount--;
680  	  if (uv->refcount == 0 && !upisopen(uv))
681  	    luaM_free(L, uv);
682  	}
683  	
684  	
685  	static void freeLclosure (lua_State *L, LClosure *cl) {
686  	  int i;
687  	  for (i = 0; i < cl->nupvalues; i++) {
688  	    UpVal *uv = cl->upvals[i];
689  	    if (uv)
690  	      luaC_upvdeccount(L, uv);
691  	  }
692  	  luaM_freemem(L, cl, sizeLclosure(cl->nupvalues));
693  	}
694  	
695  	
696  	static void freeobj (lua_State *L, GCObject *o) {
697  	  switch (o->tt) {
698  	    case LUA_TPROTO: luaF_freeproto(L, gco2p(o)); break;
699  	    case LUA_TLCL: {
700  	      freeLclosure(L, gco2lcl(o));
701  	      break;
702  	    }
703  	    case LUA_TCCL: {
704  	      luaM_freemem(L, o, sizeCclosure(gco2ccl(o)->nupvalues));
705  	      break;
706  	    }
707  	    case LUA_TTABLE: luaH_free(L, gco2t(o)); break;
708  	    case LUA_TTHREAD: luaE_freethread(L, gco2th(o)); break;
709  	    case LUA_TUSERDATA: luaM_freemem(L, o, sizeudata(gco2u(o))); break;
710  	    case LUA_TSHRSTR:
711  	      luaS_remove(L, gco2ts(o));  /* remove it from hash table */
712  	      luaM_freemem(L, o, sizelstring(gco2ts(o)->shrlen));
713  	      break;
714  	    case LUA_TLNGSTR: {
715  	      luaM_freemem(L, o, sizelstring(gco2ts(o)->u.lnglen));
716  	      break;
717  	    }
718  	    default: lua_assert(0);
719  	  }
720  	}
721  	
722  	
723  	#define sweepwholelist(L,p)	sweeplist(L,p,MAX_LUMEM)
724  	static GCObject **sweeplist (lua_State *L, GCObject **p, lu_mem count);
725  	
726  	
727  	/*
728  	** sweep at most 'count' elements from a list of GCObjects erasing dead
729  	** objects, where a dead object is one marked with the old (non current)
730  	** white; change all non-dead objects back to white, preparing for next
731  	** collection cycle. Return where to continue the traversal or NULL if
732  	** list is finished.
733  	*/
734  	static GCObject **sweeplist (lua_State *L, GCObject **p, lu_mem count) {
735  	  global_State *g = G(L);
736  	  int ow = otherwhite(g);
737  	  int white = luaC_white(g);  /* current white */
738  	  while (*p != NULL && count-- > 0) {
739  	    GCObject *curr = *p;
740  	    int marked = curr->marked;
741  	    if (isdeadm(ow, marked)) {  /* is 'curr' dead? */
742  	      *p = curr->next;  /* remove 'curr' from list */
743  	      freeobj(L, curr);  /* erase 'curr' */
744  	    }
745  	    else {  /* change mark to 'white' */
746  	      curr->marked = cast_byte((marked & maskcolors) | white);
747  	      p = &curr->next;  /* go to next element */
748  	    }
749  	  }
750  	  return (*p == NULL) ? NULL : p;
751  	}
752  	
753  	
754  	/*
755  	** sweep a list until a live object (or end of list)
756  	*/
757  	static GCObject **sweeptolive (lua_State *L, GCObject **p, int *n) {
758  	  GCObject **old = p;
759  	  int i = 0;
760  	  do {
761  	    i++;
762  	    p = sweeplist(L, p, 1);
763  	  } while (p == old);
764  	  if (n) *n += i;
765  	  return p;
766  	}
767  	
768  	/* }====================================================== */
769  	
770  	
771  	/*
772  	** {======================================================
773  	** Finalization
774  	** =======================================================
775  	*/
776  	
777  	/*
778  	** If possible, shrink string table
779  	*/
780  	static void checkSizes (lua_State *L, global_State *g) {
781  	  if (g->gckind != KGC_EMERGENCY) {
782  	    l_mem olddebt = g->GCdebt;
783  	    if (g->strt.nuse < g->strt.size / 4)  /* string table too big? */
784  	      luaS_resize(L, g->strt.size / 2);  /* shrink it a little */
785  	    g->GCestimate += g->GCdebt - olddebt;  /* update estimate */
786  	  }
787  	}
788  	
789  	
790  	static GCObject *udata2finalize (global_State *g) {
791  	  GCObject *o = g->tobefnz;  /* get first element */
792  	  lua_assert(tofinalize(o));
793  	  g->tobefnz = o->next;  /* remove it from 'tobefnz' list */
794  	  o->next = g->allgc;  /* return it to 'allgc' list */
795  	  g->allgc = o;
796  	  resetbit(o->marked, FINALIZEDBIT);  /* object is "normal" again */
797  	  if (issweepphase(g))
798  	    makewhite(g, o);  /* "sweep" object */
799  	  return o;
800  	}
801  	
802  	
803  	static void dothecall (lua_State *L, void *ud) {
804  	  UNUSED(ud);
805  	  luaD_callnoyield(L, L->top - 2, 0);
806  	}
807  	
808  	
809  	static void GCTM (lua_State *L, int propagateerrors) {
810  	  global_State *g = G(L);
811  	  const TValue *tm;
812  	  TValue v;
813  	  setgcovalue(L, &v, udata2finalize(g));
814  	  tm = luaT_gettmbyobj(L, &v, TM_GC);
815  	  if (tm != NULL && ttisfunction(tm)) {  /* is there a finalizer? */
816  	    int status;
817  	    lu_byte oldah = L->allowhook;
818  	    int running  = g->gcrunning;
819  	    L->allowhook = 0;  /* stop debug hooks during GC metamethod */
820  	    g->gcrunning = 0;  /* avoid GC steps */
821  	    setobj2s(L, L->top, tm);  /* push finalizer... */
822  	    setobj2s(L, L->top + 1, &v);  /* ... and its argument */
823  	    L->top += 2;  /* and (next line) call the finalizer */
824  	    status = luaD_pcall(L, dothecall, NULL, savestack(L, L->top - 2), 0);
825  	    L->allowhook = oldah;  /* restore hooks */
826  	    g->gcrunning = running;  /* restore state */
827  	    if (status != LUA_OK && propagateerrors) {  /* error while running __gc? */
828  	      if (status == LUA_ERRRUN) {  /* is there an error object? */
829  	        const char *msg = (ttisstring(L->top - 1))
830  	                            ? svalue(L->top - 1)
831  	                            : "no message";
832  	        luaO_pushfstring(L, "error in __gc metamethod (%s)", msg);
833  	        status = LUA_ERRGCMM;  /* error in __gc metamethod */
834  	      }
835  	      luaD_throw(L, status);  /* re-throw error */
836  	    }
837  	  }
838  	}
839  	
840  	
841  	/*
842  	** call a few (up to 'g->gcfinnum') finalizers
843  	*/
844  	static int runafewfinalizers (lua_State *L) {
845  	  global_State *g = G(L);
846  	  unsigned int i;
847  	  lua_assert(!g->tobefnz || g->gcfinnum > 0);
848  	  for (i = 0; g->tobefnz && i < g->gcfinnum; i++)
849  	    GCTM(L, 1);  /* call one finalizer */
850  	  g->gcfinnum = (!g->tobefnz) ? 0  /* nothing more to finalize? */
851  	                    : g->gcfinnum * 2;  /* else call a few more next time */
852  	  return i;
853  	}
854  	
855  	
856  	/*
857  	** call all pending finalizers
858  	*/
859  	static void callallpendingfinalizers (lua_State *L, int propagateerrors) {
860  	  global_State *g = G(L);
861  	  while (g->tobefnz)
862  	    GCTM(L, propagateerrors);
863  	}
864  	
865  	
866  	/*
867  	** find last 'next' field in list 'p' list (to add elements in its end)
868  	*/
869  	static GCObject **findlast (GCObject **p) {
870  	  while (*p != NULL)
871  	    p = &(*p)->next;
872  	  return p;
873  	}
874  	
875  	
876  	/*
877  	** move all unreachable objects (or 'all' objects) that need
878  	** finalization from list 'finobj' to list 'tobefnz' (to be finalized)
879  	*/
880  	static void separatetobefnz (global_State *g, int all) {
881  	  GCObject *curr;
882  	  GCObject **p = &g->finobj;
883  	  GCObject **lastnext = findlast(&g->tobefnz);
884  	  while ((curr = *p) != NULL) {  /* traverse all finalizable objects */
885  	    lua_assert(tofinalize(curr));
886  	    if (!(iswhite(curr) || all))  /* not being collected? */
887  	      p = &curr->next;  /* don't bother with it */
888  	    else {
889  	      *p = curr->next;  /* remove 'curr' from 'finobj' list */
890  	      curr->next = *lastnext;  /* link at the end of 'tobefnz' list */
891  	      *lastnext = curr;
892  	      lastnext = &curr->next;
893  	    }
894  	  }
895  	}
896  	
897  	
898  	/*
899  	** if object 'o' has a finalizer, remove it from 'allgc' list (must
900  	** search the list to find it) and link it in 'finobj' list.
901  	*/
902  	void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt) {
903  	  global_State *g = G(L);
904  	  if (tofinalize(o) ||                 /* obj. is already marked... */
905  	      gfasttm(g, mt, TM_GC) == NULL)   /* or has no finalizer? */
906  	    return;  /* nothing to be done */
907  	  else {  /* move 'o' to 'finobj' list */
908  	    GCObject **p;
909  	    if (issweepphase(g)) {
910  	      makewhite(g, o);  /* "sweep" object 'o' */
911  	      if (g->sweepgc == &o->next)  /* should not remove 'sweepgc' object */
912  	        g->sweepgc = sweeptolive(L, g->sweepgc, NULL);  /* change 'sweepgc' */
913  	    }
914  	    /* search for pointer pointing to 'o' */
915  	    for (p = &g->allgc; *p != o; p = &(*p)->next) { /* empty */ }
916  	    *p = o->next;  /* remove 'o' from 'allgc' list */
917  	    o->next = g->finobj;  /* link it in 'finobj' list */
918  	    g->finobj = o;
919  	    l_setbit(o->marked, FINALIZEDBIT);  /* mark it as such */
920  	  }
921  	}
922  	
923  	/* }====================================================== */
924  	
925  	
926  	
927  	/*
928  	** {======================================================
929  	** GC control
930  	** =======================================================
931  	*/
932  	
933  	
934  	/*
935  	** Set a reasonable "time" to wait before starting a new GC cycle; cycle
936  	** will start when memory use hits threshold. (Division by 'estimate'
937  	** should be OK: it cannot be zero (because Lua cannot even start with
938  	** less than PAUSEADJ bytes).
939  	*/
940  	static void setpause (global_State *g) {
941  	  l_mem threshold, debt;
942  	  l_mem estimate = g->GCestimate / PAUSEADJ;  /* adjust 'estimate' */
943  	  lua_assert(estimate > 0);
944  	  threshold = (g->gcpause < MAX_LMEM / estimate)  /* overflow? */
945  	            ? estimate * g->gcpause  /* no overflow */
946  	            : MAX_LMEM;  /* overflow; truncate to maximum */
947  	  debt = gettotalbytes(g) - threshold;
948  	  luaE_setdebt(g, debt);
949  	}
950  	
951  	
952  	/*
953  	** Enter first sweep phase.
954  	** The call to 'sweeptolive' makes pointer point to an object inside
955  	** the list (instead of to the header), so that the real sweep do not
956  	** need to skip objects created between "now" and the start of the real
957  	** sweep.
958  	** Returns how many objects it swept.
959  	*/
960  	static int entersweep (lua_State *L) {
961  	  global_State *g = G(L);
962  	  int n = 0;
963  	  g->gcstate = GCSswpallgc;
964  	  lua_assert(g->sweepgc == NULL);
965  	  g->sweepgc = sweeptolive(L, &g->allgc, &n);
966  	  return n;
967  	}
968  	
969  	
970  	void luaC_freeallobjects (lua_State *L) {
971  	  global_State *g = G(L);
972  	  separatetobefnz(g, 1);  /* separate all objects with finalizers */
973  	  lua_assert(g->finobj == NULL);
974  	  callallpendingfinalizers(L, 0);
975  	  lua_assert(g->tobefnz == NULL);
976  	  g->currentwhite = WHITEBITS; /* this "white" makes all objects look dead */
977  	  g->gckind = KGC_NORMAL;
978  	  sweepwholelist(L, &g->finobj);
979  	  sweepwholelist(L, &g->allgc);
980  	  sweepwholelist(L, &g->fixedgc);  /* collect fixed objects */
981  	  lua_assert(g->strt.nuse == 0);
982  	}
983  	
984  	
985  	static l_mem atomic (lua_State *L) {
986  	  global_State *g = G(L);
987  	  l_mem work;
988  	  GCObject *origweak, *origall;
989  	  GCObject *grayagain = g->grayagain;  /* save original list */
990  	  lua_assert(g->ephemeron == NULL && g->weak == NULL);
991  	  lua_assert(!iswhite(g->mainthread));
992  	  g->gcstate = GCSinsideatomic;
993  	  g->GCmemtrav = 0;  /* start counting work */
994  	  markobject(g, L);  /* mark running thread */
995  	  /* registry and global metatables may be changed by API */
996  	  markvalue(g, &g->l_registry);
997  	  markmt(g);  /* mark global metatables */
998  	  /* remark occasional upvalues of (maybe) dead threads */
999  	  remarkupvals(g);
1000 	  propagateall(g);  /* propagate changes */
1001 	  work = g->GCmemtrav;  /* stop counting (do not recount 'grayagain') */
1002 	  g->gray = grayagain;
1003 	  propagateall(g);  /* traverse 'grayagain' list */
1004 	  g->GCmemtrav = 0;  /* restart counting */
1005 	  convergeephemerons(g);
1006 	  /* at this point, all strongly accessible objects are marked. */
1007 	  /* Clear values from weak tables, before checking finalizers */
1008 	  clearvalues(g, g->weak, NULL);
1009 	  clearvalues(g, g->allweak, NULL);
1010 	  origweak = g->weak; origall = g->allweak;
1011 	  work += g->GCmemtrav;  /* stop counting (objects being finalized) */
1012 	  separatetobefnz(g, 0);  /* separate objects to be finalized */
1013 	  g->gcfinnum = 1;  /* there may be objects to be finalized */
1014 	  markbeingfnz(g);  /* mark objects that will be finalized */
1015 	  propagateall(g);  /* remark, to propagate 'resurrection' */
1016 	  g->GCmemtrav = 0;  /* restart counting */
1017 	  convergeephemerons(g);
1018 	  /* at this point, all resurrected objects are marked. */
1019 	  /* remove dead objects from weak tables */
1020 	  clearkeys(g, g->ephemeron, NULL);  /* clear keys from all ephemeron tables */
1021 	  clearkeys(g, g->allweak, NULL);  /* clear keys from all 'allweak' tables */
1022 	  /* clear values from resurrected weak tables */
1023 	  clearvalues(g, g->weak, origweak);
1024 	  clearvalues(g, g->allweak, origall);
1025 	  luaS_clearcache(g);
1026 	  g->currentwhite = cast_byte(otherwhite(g));  /* flip current white */
1027 	  work += g->GCmemtrav;  /* complete counting */
1028 	  return work;  /* estimate of memory marked by 'atomic' */
1029 	}
1030 	
1031 	
1032 	static lu_mem sweepstep (lua_State *L, global_State *g,
1033 	                         int nextstate, GCObject **nextlist) {
1034 	  if (g->sweepgc) {
1035 	    l_mem olddebt = g->GCdebt;
1036 	    g->sweepgc = sweeplist(L, g->sweepgc, GCSWEEPMAX);
1037 	    g->GCestimate += g->GCdebt - olddebt;  /* update estimate */
1038 	    if (g->sweepgc)  /* is there still something to sweep? */
1039 	      return (GCSWEEPMAX * GCSWEEPCOST);
1040 	  }
1041 	  /* else enter next state */
1042 	  g->gcstate = nextstate;
1043 	  g->sweepgc = nextlist;
1044 	  return 0;
1045 	}
1046 	
1047 	
1048 	static lu_mem singlestep (lua_State *L) {
1049 	  global_State *g = G(L);
1050 	  switch (g->gcstate) {
1051 	    case GCSpause: {
1052 	      g->GCmemtrav = g->strt.size * sizeof(GCObject*);
1053 	      restartcollection(g);
1054 	      g->gcstate = GCSpropagate;
1055 	      return g->GCmemtrav;
1056 	    }
1057 	    case GCSpropagate: {
1058 	      g->GCmemtrav = 0;
1059 	      lua_assert(g->gray);
1060 	      propagatemark(g);
1061 	       if (g->gray == NULL)  /* no more gray objects? */
1062 	        g->gcstate = GCSatomic;  /* finish propagate phase */
1063 	      return g->GCmemtrav;  /* memory traversed in this step */
1064 	    }
1065 	    case GCSatomic: {
1066 	      lu_mem work;
1067 	      int sw;
1068 	      propagateall(g);  /* make sure gray list is empty */
1069 	      work = atomic(L);  /* work is what was traversed by 'atomic' */
1070 	      sw = entersweep(L);
1071 	      g->GCestimate = gettotalbytes(g);  /* first estimate */;
1072 	      return work + sw * GCSWEEPCOST;
1073 	    }
1074 	    case GCSswpallgc: {  /* sweep "regular" objects */
1075 	      return sweepstep(L, g, GCSswpfinobj, &g->finobj);
1076 	    }
1077 	    case GCSswpfinobj: {  /* sweep objects with finalizers */
1078 	      return sweepstep(L, g, GCSswptobefnz, &g->tobefnz);
1079 	    }
1080 	    case GCSswptobefnz: {  /* sweep objects to be finalized */
1081 	      return sweepstep(L, g, GCSswpend, NULL);
1082 	    }
1083 	    case GCSswpend: {  /* finish sweeps */
1084 	      makewhite(g, g->mainthread);  /* sweep main thread */
1085 	      checkSizes(L, g);
1086 	      g->gcstate = GCScallfin;
1087 	      return 0;
1088 	    }
1089 	    case GCScallfin: {  /* call remaining finalizers */
1090 	      if (g->tobefnz && g->gckind != KGC_EMERGENCY) {
1091 	        int n = runafewfinalizers(L);
1092 	        return (n * GCFINALIZECOST);
1093 	      }
1094 	      else {  /* emergency mode or no more finalizers */
1095 	        g->gcstate = GCSpause;  /* finish collection */
1096 	        return 0;
1097 	      }
1098 	    }
1099 	    default: lua_assert(0); return 0;
1100 	  }
1101 	}
1102 	
1103 	
1104 	/*
1105 	** advances the garbage collector until it reaches a state allowed
1106 	** by 'statemask'
1107 	*/
1108 	void luaC_runtilstate (lua_State *L, int statesmask) {
1109 	  global_State *g = G(L);
1110 	  while (!testbit(statesmask, g->gcstate))
1111 	    singlestep(L);
1112 	}
1113 	
1114 	
1115 	/*
1116 	** get GC debt and convert it from Kb to 'work units' (avoid zero debt
1117 	** and overflows)
1118 	*/
1119 	static l_mem getdebt (global_State *g) {
1120 	  l_mem debt = g->GCdebt;
1121 	  int stepmul = g->gcstepmul;
1122 	  if (debt <= 0) return 0;  /* minimal debt */
1123 	  else {
1124 	    debt = (debt / STEPMULADJ) + 1;
1125 	    debt = (debt < MAX_LMEM / stepmul) ? debt * stepmul : MAX_LMEM;
1126 	    return debt;
1127 	  }
1128 	}
1129 	
1130 	/*
1131 	** performs a basic GC step when collector is running
1132 	*/
1133 	void luaC_step (lua_State *L) {
1134 	  global_State *g = G(L);
1135 	  l_mem debt = getdebt(g);  /* GC deficit (be paid now) */
1136 	  if (!g->gcrunning) {  /* not running? */
1137 	    luaE_setdebt(g, -GCSTEPSIZE * 10);  /* avoid being called too often */
1138 	    return;
1139 	  }
1140 	  do {  /* repeat until pause or enough "credit" (negative debt) */
1141 	    lu_mem work = singlestep(L);  /* perform one single step */
1142 	    debt -= work;
1143 	  } while (debt > -GCSTEPSIZE && g->gcstate != GCSpause);
1144 	  if (g->gcstate == GCSpause)
1145 	    setpause(g);  /* pause until next cycle */
1146 	  else {
1147 	    debt = (debt / g->gcstepmul) * STEPMULADJ;  /* convert 'work units' to Kb */
1148 	    luaE_setdebt(g, debt);
1149 	    runafewfinalizers(L);
1150 	  }
1151 	}
1152 	
1153 	
1154 	/*
1155 	** Performs a full GC cycle; if 'isemergency', set a flag to avoid
1156 	** some operations which could change the interpreter state in some
1157 	** unexpected ways (running finalizers and shrinking some structures).
1158 	** Before running the collection, check 'keepinvariant'; if it is true,
1159 	** there may be some objects marked as black, so the collector has
1160 	** to sweep all objects to turn them back to white (as white has not
1161 	** changed, nothing will be collected).
1162 	*/
1163 	void luaC_fullgc (lua_State *L, int isemergency) {
1164 	  global_State *g = G(L);
1165 	  lua_assert(g->gckind == KGC_NORMAL);
1166 	  if (isemergency) g->gckind = KGC_EMERGENCY;  /* set flag */
1167 	  if (keepinvariant(g)) {  /* black objects? */
1168 	    entersweep(L); /* sweep everything to turn them back to white */
1169 	  }
1170 	  /* finish any pending sweep phase to start a new cycle */
1171 	  luaC_runtilstate(L, bitmask(GCSpause));
1172 	  luaC_runtilstate(L, ~bitmask(GCSpause));  /* start new collection */
1173 	  luaC_runtilstate(L, bitmask(GCScallfin));  /* run up to finalizers */
1174 	  /* estimate must be correct after a full GC cycle */
1175 	  lua_assert(g->GCestimate == gettotalbytes(g));
1176 	  luaC_runtilstate(L, bitmask(GCSpause));  /* finish collection */
1177 	  g->gckind = KGC_NORMAL;
1178 	  setpause(g);
1179 	}
1180 	
1181 	/* }====================================================== */
1182 	
1183 	
1184