Lines Matching full:slot
30 for (ObjectSlot slot = start; slot < end; slot++) { in VisitAllObjects() local
31 JSTaggedValue value(slot.GetTaggedType()); in VisitAllObjects()
35 << " at object:" << slot.SlotAddress(); in VisitAllObjects()
41 << " at object:" << slot.SlotAddress(); in VisitAllObjects()
51 ObjectSlot slot(reinterpret_cast<uintptr_t>(obj)); in operator ()() local
53 LOG_GC(DEBUG) << "Heap object(" << slot.SlotAddress() << ") old to new rset fail: value is " in operator ()()
54 << slot.GetTaggedType(); in operator ()()
61 LOG_GC(ERROR) << "Heap object(" << slot.GetTaggedType() << ") old to new rset fail: value(" in operator ()()
62 << slot.GetTaggedObject() << "/" in operator ()()
63 << JSHClass::DumpJSType(slot.GetTaggedObject()->GetClass()->GetObjectType()) in operator ()()
72 RootVisitor visitor = [this, &failCount]([[maybe_unused]] Root type, ObjectSlot slot) { in VerifyRoot() argument
73 VerifyObjectSlot(slot, &failCount); in VerifyRoot()
76 for (ObjectSlot slot = start; slot < end; slot++) { in VerifyRoot() local
77 VerifyObjectSlot(slot, &failCount); in VerifyRoot()
110 void Verification::VerifyObjectSlot(const ObjectSlot &slot, size_t *failCount) const in VerifyObjectSlot() argument
112 JSTaggedValue value(slot.GetTaggedType()); in VerifyObjectSlot()