/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
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 }
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
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 }
|
/external/llvm/test/CodeGen/X86/ |
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 }
|
/external/llvm/test/CodeGen/PowerPC/ |
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 }
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
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 }
|
/external/lua/src/ |
D | lstate.h | 151 GCObject *allgc; /* list of all collectable objects */ 152 GCObject **sweepgc; /* current position of sweep in list */ 153 GCObject *finobj; /* list of collectable objects with finalizers */ 154 GCObject *gray; /* list of gray objects */ 155 GCObject *grayagain; /* list of objects to be traversed atomically */ 156 GCObject *weak; /* list of tables with weak values */ 157 GCObject *ephemeron; /* list of ephemeron tables (weak keys) */ 158 GCObject *allweak; /* list of all-weak tables */ 159 GCObject *tobefnz; /* list of userdata to be GC */ 160 GCObject *fixedgc; /* list of objects not to be collected */ [all …]
|
D | lgc.c | 94 static void reallymarkobject (global_State *g, GCObject *o); 155 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_() 187 GCObject *o = gcvalue(uv->v); in luaC_upvalbarrier_() 194 void luaC_fix (lua_State *L, GCObject *o) { in luaC_fix() 208 GCObject *luaC_newobj (lua_State *L, int tt, size_t sz) { in luaC_newobj() 210 GCObject *o = cast(GCObject *, luaM_newobject(L, novariant(tt), sz)); in luaC_newobj() 235 static void reallymarkobject (global_State *g, GCObject *o) { in reallymarkobject() 300 GCObject *o; in markbeingfnz() 561 GCObject *o = g->gray; in propagatemark() 611 GCObject *w; in convergeephemerons() [all …]
|
D | lgc.h | 134 LUAI_FUNC void luaC_fix (lua_State *L, GCObject *o); 139 LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz); 140 LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v); 143 LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt);
|
D | lobject.h | 72 typedef struct GCObject GCObject; typedef 79 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked 85 struct GCObject { struct 101 GCObject *gc; /* collectable objects */ 222 { TValue *io = (obj); GCObject *i_g=(x); \ 428 GCObject *gclist; 444 CommonHeader; lu_byte nupvalues; GCObject *gclist 506 GCObject *gclist;
|
D | lfunc.c | 26 GCObject *o = luaC_newobj(L, LUA_TCCL, sizeCclosure(n)); in luaF_newCclosure() 34 GCObject *o = luaC_newobj(L, LUA_TLCL, sizeLclosure(n)); in luaF_newLclosure() 100 GCObject *o = luaC_newobj(L, LUA_TPROTO, sizeof(Proto)); in luaF_newproto()
|
D | lstring.c | 135 GCObject *o; in createstrobj() 238 GCObject *o; in luaS_newudata()
|
D | ltable.c | 422 GCObject *o = luaC_newobj(L, LUA_TTABLE, sizeof(Table)); in luaH_new()
|
/external/clang/test/SemaObjC/ |
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];
|
D | property-4.m | 15 @interface GCObject : Object <ProtocolDerivedGCObject> { interface 23 @interface ReleaseObject : GCObject <ProtocolObject> {
|