Revision: 23104
Author: [email protected]
Date: Wed Aug 13 12:38:22 2014 UTC
Log: Temporary workaround for scheduler running OOM.
[email protected]
TEST=benchmarks/octane/zlib
Review URL: https://codereview.chromium.org/468863002
http://code.google.com/p/v8/source/detail?r=23104
Modified:
/branches/bleeding_edge/src/compiler/scheduler.cc
=======================================
--- /branches/bleeding_edge/src/compiler/scheduler.cc Wed Aug 13 12:36:09
2014 UTC
+++ /branches/bleeding_edge/src/compiler/scheduler.cc Wed Aug 13 12:38:22
2014 UTC
@@ -623,9 +623,11 @@
for (NodeVectorIter i = schedule_root_nodes_.begin();
i != schedule_root_nodes_.end(); ++i) {
+ // TODO(mstarzinger): Make the scheduler eat less memory.
+ Zone zone(zone_->isolate());
GenericGraphVisit::Visit<ScheduleLateNodeVisitor,
NodeInputIterationTraits<Node> >(
- graph_, zone_, *i, &schedule_late_visitor);
+ graph_, &zone, *i, &schedule_late_visitor);
}
// Add collected nodes for basic blocks to their blocks in the right
order.
--
--
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/d/optout.