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

Unified Diff: lib/compiler/implementation/ssa/builder.dart

Issue 11361036: Revert instance inlining. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | tests/utils/instance_inline_test.dart » ('j') | tests/utils/instance_inline_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/ssa/builder.dart
diff --git a/lib/compiler/implementation/ssa/builder.dart b/lib/compiler/implementation/ssa/builder.dart
index 2dbd9a3e226dafef6cfdd69f62957e850f1c04ec..39e75a3037ab5e85176f0204a96b5e8255507103 100644
--- a/lib/compiler/implementation/ssa/builder.dart
+++ b/lib/compiler/implementation/ssa/builder.dart
@@ -2567,12 +2567,6 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
addDynamicSendArgumentsToList(node, inputs);
- Element element = elements[node];
- if (element != null && compiler.world.hasNoOverridingMember(element)) {
- if (tryInlineMethod(element, selector, node.arguments)) {
kasperl 2012/11/01 15:36:11 Maybe just disable it here with a 'false && ' cond
- return;
- }
- }
// The first entry in the inputs list is the receiver.
pushWithPosition(new HInvokeDynamicMethod(selector, inputs), node);
« no previous file with comments | « no previous file | tests/utils/instance_inline_test.dart » ('j') | tests/utils/instance_inline_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698