Home | History | Annotate | Download | only in heap

Lines Matching refs:Heap

8 #include "src/heap/objects-visiting.h"
9 #include "src/heap/slot-set.h"
19 explicit Scavenger(Heap* heap) : heap_(heap) {}
24 // Callback function passed to Heap::Iterate etc. Copies an object if
26 // ensure the precondition that the object is (a) a heap object and (b) in
27 // the heap's from space.
29 static inline SlotCallbackResult CheckAndScavengeObject(Heap* heap,
36 // of the heap (i.e. incremental marking, logging and profiling).
40 Heap* heap() { return heap_; }
43 Heap* heap_;
52 explicit ScavengeVisitor(Heap* heap) : heap_(heap) {}
60 Heap* heap_;
69 static inline void VisitPointer(Heap* heap, HeapObject* object, Object** p);