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

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

Issue 11275044: Decrease swarm compile-time by 20%... (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/utils/compiler/build_helper.dart
diff --git a/dart/utils/compiler/build_helper.dart b/dart/utils/compiler/build_helper.dart
index 6821599be2391dbd4ca322476179aecac9c1aad4..0b4d29eca59e43fae3c312e51de7a984de86fca3 100644
--- a/dart/utils/compiler/build_helper.dart
+++ b/dart/utils/compiler/build_helper.dart
@@ -96,6 +96,11 @@ List<String> buildScript(String name,
// TODO(ahe): Remove this option.
options = ' --heap_growth_rate=32$options';
+ // Tell the VM to don't bother inlining methods. So far it isn't
+ // paying off but the VM team is working on fixing that.
+ // TODO(ahe): Remove this option.
+ options = ' --no_use_inlining$options';
+
return [
'''
#!/bin/bash
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698