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

Side by Side Diff: pkg/compiler/lib/src/inferrer/list_tracer.dart

Issue 2935663002: Remove Compiler.commonElements (Closed)
Patch Set: Remove Compiler._commonElements Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library compiler.src.inferrer.list_tracer; 5 library compiler.src.inferrer.list_tracer;
6 6
7 import '../elements/elements.dart'; 7 import '../elements/elements.dart';
8 import '../js_backend/backend.dart' show JavaScriptBackend; 8 import '../js_backend/backend.dart' show JavaScriptBackend;
9 import '../universe/selector.dart' show Selector; 9 import '../universe/selector.dart' show Selector;
10 import '../util/util.dart' show Setlet; 10 import '../util/util.dart' show Setlet;
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 } 158 }
159 } 159 }
160 160
161 visitClosureCallSiteTypeInformation(ClosureCallSiteTypeInformation info) { 161 visitClosureCallSiteTypeInformation(ClosureCallSiteTypeInformation info) {
162 bailout('Passed to a closure'); 162 bailout('Passed to a closure');
163 } 163 }
164 164
165 visitStaticCallSiteTypeInformation(StaticCallSiteTypeInformation info) { 165 visitStaticCallSiteTypeInformation(StaticCallSiteTypeInformation info) {
166 super.visitStaticCallSiteTypeInformation(info); 166 super.visitStaticCallSiteTypeInformation(info);
167 Element called = info.calledElement; 167 Element called = info.calledElement;
168 if (compiler.backend.isForeign(compiler.commonElements, called) && 168 if (compiler.backend
169 .isForeign(inferrer.closedWorld.commonElements, called) &&
169 called.name == JavaScriptBackend.JS) { 170 called.name == JavaScriptBackend.JS) {
170 bailout('Used in JS ${info.call}'); 171 bailout('Used in JS ${info.call}');
171 } 172 }
172 } 173 }
173 174
174 visitDynamicCallSiteTypeInformation(DynamicCallSiteTypeInformation info) { 175 visitDynamicCallSiteTypeInformation(DynamicCallSiteTypeInformation info) {
175 super.visitDynamicCallSiteTypeInformation(info); 176 super.visitDynamicCallSiteTypeInformation(info);
176 Selector selector = info.selector; 177 Selector selector = info.selector;
177 String selectorName = selector.name; 178 String selectorName = selector.name;
178 if (currentUser == info.receiver) { 179 if (currentUser == info.receiver) {
(...skipping 26 matching lines...) Expand all
205 callsGrowableMethod = true; 206 callsGrowableMethod = true;
206 assignments.add(inferrer.types.nullType); 207 assignments.add(inferrer.types.nullType);
207 } 208 }
208 } else if (selector.isCall && 209 } else if (selector.isCall &&
209 !info.targets.every((element) => element.isFunction)) { 210 !info.targets.every((element) => element.isFunction)) {
210 bailout('Passed to a closure'); 211 bailout('Passed to a closure');
211 return; 212 return;
212 } 213 }
213 } 214 }
214 } 215 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/inferrer/closure_tracer.dart ('k') | pkg/compiler/lib/src/inferrer/map_tracer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698