| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/ |
| H A D | coalescer-cross.ll | 11 %struct.GCObject = type { %struct.lua_State } 18 …Table = type { %struct.GCObject*, i8, i8, i8, i8, %struct.Table*, %struct.TValue*, %struct.Node*, … 19 %struct.UpVal = type { %struct.GCObject*, i8, i8, %struct.TValue*, %0 } 20 %struct.anon = type { %struct.GCObject*, i8, i8, i8, i32, i32 } 21 …*, i8, i8, i32, %struct.GCObject*, %struct.GCObject**, %struct.GCObject*, %struct.GCObject*, %stru… 23 …GCObject*, i8, i8, i8, %struct.TValue*, %struct.TValue*, %struct.global_State*, %struct.CallInfo*,… 25 %struct.stringtable = type { %struct.GCObject**, i32, i32 }
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/PowerPC/ |
| H A D | bdzlr.ll | 7 %union.Value.16.691 = type { %union.GCObject.15.690* } 8 %union.GCObject.15.690 = type { %struct.lua_State.14.689 } 9 …GCObject.15.690*, i8, i8, i8, %struct.lua_TValue.17.692*, %struct.lua_TValue.17.692*, %struct.glob… 10 …, %union.GCObject.15.690*, %union.GCObject.15.690**, %union.GCObject.15.690*, %union.GCObject.15.6… 11 %struct.stringtable.0.675 = type { %union.GCObject.15.690**, i32, i32 } 13 %struct.UpVal.3.678 = type { %union.GCObject.15.690*, i8, i8, %struct.lua_TValue.17.692*, %union.an… 15 …union.GCObject.15.690*, i8, i8, i8, i8, %struct.Table.7.682*, %struct.lua_TValue.17.692*, %struct.… 20 %struct.anon.1.8.683 = type { %union.GCObject.15.690*, i8, i8, i8, i32, i64 }
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
| H A D | property-noprotocol-warning.m | 9 @protocol GCObject protocol 13 @protocol DerivedGCObject <GCObject> 17 @interface GCObject : Object <DerivedGCObject> { interface 25 @implementation GCObject : Object implementation 32 GCObject *f = [GCObject new];
|
| H A D | property-4.m | 15 @interface GCObject : Object <ProtocolDerivedGCObject> { interface 23 @interface ReleaseObject : GCObject <ProtocolObject> {
|
| /minix3/external/mit/lua/dist/src/ |
| H A D | lstate.h | 125 GCObject *allgc; /* list of all collectable objects */ 126 GCObject **sweepgc; /* current position of sweep in list */ 127 GCObject *finobj; /* list of collectable objects with finalizers */ 128 GCObject *gray; /* list of gray objects */ 129 GCObject *grayagain; /* list of objects to be traversed atomically */ 130 GCObject *weak; /* list of tables with weak values */ 131 GCObject *ephemeron; /* list of ephemeron tables (weak keys) */ 132 GCObject *allweak; /* list of all-weak tables */ 133 GCObject *tobefnz; /* list of userdata to be GC */ 134 GCObject *fixedgc; /* list of objects not to be collected */ [all …]
|
| H A D | lgc.c | 98 static void reallymarkobject (global_State *g, GCObject *o); 154 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_() 186 GCObject *o = gcvalue(uv->v); in luaC_upvalbarrier_() 193 void luaC_fix (lua_State *L, GCObject *o) { in luaC_fix() 207 GCObject *luaC_newobj (lua_State *L, int tt, size_t sz) { in luaC_newobj() 209 GCObject *o = cast(GCObject *, luaM_newobject(L, novariant(tt), sz)); in luaC_newobj() 234 static void reallymarkobject (global_State *g, GCObject *o) { in reallymarkobject() 299 GCObject *o; in markbeingfnz() 559 GCObject *o = g->gray; in propagatemark() 609 GCObject *w; in convergeephemerons() [all …]
|
| H A D | lgc.h | 125 LUAI_FUNC void luaC_fix (lua_State *L, GCObject *o); 130 LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz); 131 LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v); 134 LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt);
|
| H A D | lobject.h | 76 typedef struct GCObject GCObject; typedef 83 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked 89 struct GCObject { struct 224 { TValue *io = (obj); GCObject *i_g=(x); \ 296 GCObject *gc; /* collectable objects */ 446 GCObject *gclist; 462 CommonHeader; lu_byte nupvalues; GCObject *gclist 524 GCObject *gclist;
|
| H A D | lfunc.c | 30 GCObject *o = luaC_newobj(L, LUA_TCCL, sizeCclosure(n)); in luaF_newCclosure() 38 GCObject *o = luaC_newobj(L, LUA_TLCL, sizeLclosure(n)); in luaF_newLclosure() 104 GCObject *o = luaC_newobj(L, LUA_TPROTO, sizeof(Proto)); in luaF_newproto()
|
| H A D | lstring.c | 129 GCObject *o; in createstrobj() 220 GCObject *o; in luaS_newudata()
|
| H A D | ltable.c | 418 GCObject *o = luaC_newobj(L, LUA_TTABLE, sizeof(Table)); in luaH_new()
|