Home | History | Annotate | Download | only in src

Lines Matching defs:GCObject

60   GCObject **hash;
127 GCObject *allgc; /* list of all collectable objects */
128 GCObject *finobj; /* list of collectable objects with finalizers */
129 GCObject **sweepgc; /* current position of sweep in list 'allgc' */
130 GCObject **sweepfin; /* current position of sweep in list 'finobj' */
131 GCObject *gray; /* list of gray objects */
132 GCObject *grayagain; /* list of objects to be traversed atomically */
133 GCObject *weak; /* list of tables with weak values */
134 GCObject *ephemeron; /* list of ephemeron tables (weak keys) */
135 GCObject *allweak; /* list of all-weak tables */
136 GCObject *tobefnz; /* list of userdata to be GC */
171 GCObject *openupval; /* list of open upvalues in this stack */
172 GCObject *gclist;
185 union GCObject {
199 /* macros to convert a GCObject into a specific value */
214 /* macro to convert any Lua object into a GCObject */
215 #define obj2gco(v) (cast(GCObject *, (v)))