Searched defs:HeapRep (Results 1 – 1 of 1) sorted by relevance
85 struct HeapRep { struct86 typedef FixedArray Struct;88 static bool IsStruct(Handle<HeapType> t, int tag) { in IsStruct()91 static bool IsBitset(Handle<HeapType> t) { return t->IsSmi(); } in IsBitset()92 static bool IsClass(Handle<HeapType> t) { in IsClass()95 static bool IsConstant(Handle<HeapType> t) { return IsStruct(t, 1); } in IsConstant()96 static bool IsContext(Handle<HeapType> t) { return IsStruct(t, 2); } in IsContext()97 static bool IsArray(Handle<HeapType> t) { return IsStruct(t, 3); } in IsArray()98 static bool IsFunction(Handle<HeapType> t) { return IsStruct(t, 4); } in IsFunction()99 static bool IsUnion(Handle<HeapType> t) { return IsStruct(t, 5); } in IsUnion()[all …]