| Index: src/mark-compact.h
|
| ===================================================================
|
| --- src/mark-compact.h (revision 7557)
|
| +++ src/mark-compact.h (working copy)
|
| @@ -344,11 +344,14 @@
|
| // group marked.
|
| static void MarkObjectGroups();
|
|
|
| - // Mark all objects in an object group with at least one marked
|
| - // object, then all objects reachable from marked objects in object
|
| - // groups, and repeat.
|
| - static void ProcessObjectGroups();
|
| + // Mark objects in implicit references groups if their parent object
|
| + // is marked.
|
| + static void MarkImplicitRefGroups();
|
|
|
| + // Mark all objects which are reachable due to host application
|
| + // logic like object groups or implicit references' groups.
|
| + static void ProcessExternalMarking();
|
| +
|
| // Mark objects reachable (transitively) from objects in the marking stack
|
| // or overflowed in the heap.
|
| static void ProcessMarkingStack();
|
|
|