Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: dart/utils/compiler/build_helper.dart

Issue 10542073: RFC: Resolution based tree-shaking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Minor tweaks for the unit tests Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: dart/utils/compiler/build_helper.dart
diff --git a/dart/utils/compiler/build_helper.dart b/dart/utils/compiler/build_helper.dart
index a094d3b787c8ad863827633d35c3f8887392f41a..0e628bcdb4c0afdcd29223014a337ce4adf59ed8 100644
--- a/dart/utils/compiler/build_helper.dart
+++ b/dart/utils/compiler/build_helper.dart
@@ -78,6 +78,12 @@ List<String> buildScript(Uri dartUri, Uri dartVmLocation, String options) {
// TODO(ahe): Remove this option.
options = ' --allow_string_plus=false$options';
+ // Tell the VM to grow the heap more aggressively. This should only
+ // be necessary temporarily until the VM is better at detecting how
+ // applications use memory.
+ // TODO(ahe): Remove this option.
+ options = ' --heap_growth_rate=32$options';
+
return [
'''
#!/bin/sh
« dart/lib/compiler/implementation/resolver.dart ('K') | « dart/tests/co19/co19-leg.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698