Lines Matching defs:slot
64 // Helper class for storing in-object slot addresses and values.
71 ObjectSlot slot(int i) const { return snapshot_[i].first; }
74 void add(ObjectSlot slot, Object value) {
75 snapshot_[number_of_slots_++] = {slot, value};
190 // Helper class for collecting in-object slot addresses and values.
209 void VisitCodePointer(HeapObject host, CodeObjectSlot slot) override {
211 Object code = slot.Relaxed_Load(code_cage_base());
212 slot_snapshot_->add(ObjectSlot(slot.address()), code);
286 ObjectSlot slot = snapshot.slot(i);
296 RecordSlot(host, slot, heap_object);
321 void RecordSlot(HeapObject object, TSlot slot, HeapObject target) {
322 MarkCompactCollector::RecordSlot(object, slot, target);