Lines Matching defs:slot
154 void Serializer::SerializeRootObject(FullObjectSlot slot) {
155 Object o = *slot;
157 PutSmiRoot(slot);
159 SerializeObject(Handle<HeapObject>(slot.location()));
269 void Serializer::PutSmiRoot(FullObjectSlot slot) {
271 // full object slot (of kSystemPointerSize) to avoid complications during
273 STATIC_ASSERT(decltype(slot)::kSlotDataSize == sizeof(Address));
274 STATIC_ASSERT(decltype(slot)::kSlotDataSize == kSystemPointerSize);
275 static constexpr int bytes_to_output = decltype(slot)::kSlotDataSize;
279 Address raw_value = Smi::cast(*slot).ptr();
309 // Register the current slot with the pending object.
939 CodeObjectSlot slot) {
950 Object contents = slot.load(code_cage_base);