Reviewers: Michael Starzinger,
Description:
Fix build bot. Force instantiation of templatized SweepConservatively
method.
BUG=
Please review this at https://chromiumcodereview.appspot.com/12079075/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/mark-compact.cc
Index: src/mark-compact.cc
diff --git a/src/mark-compact.cc b/src/mark-compact.cc
index
4d9d7b44a30abee4b589e582d0ba10c8822069ca..f430444386c2aeb1b94b7bcca0210eeb1e62ba0c
100644
--- a/src/mark-compact.cc
+++ b/src/mark-compact.cc
@@ -3545,6 +3545,20 @@ static intptr_t Free(PagedSpace* space,
}
+// Force instantiation of templatized SweepConservatively method for
+// SWEEP_SEQUENTIALLY mode.
+template intptr_t MarkCompactCollector::
+ SweepConservatively<MarkCompactCollector::
+ SWEEP_SEQUENTIALLY>(PagedSpace*, FreeList*, Page*);
+
+
+// Force instantiation of templatized SweepConservatively method for
+// SWEEP_IN_PARALLEL mode.
+template intptr_t MarkCompactCollector::
+ SweepConservatively<MarkCompactCollector::
+ SWEEP_IN_PARALLEL>(PagedSpace*, FreeList*, Page*);
+
+
// Sweeps a space conservatively. After this has been done the larger free
// spaces have been put on the free list and the smaller ones have been
// ignored and left untouched. A free space is always either ignored or
put
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.