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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/ssa/ssa.dart

Issue 11879047: Add a new class InvokeDynamicSpecializer and subclasses that know what input types are beneficial f… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/optimize.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 ssa; 5 library ssa;
6 6
7 import '../closure.dart'; 7 import '../closure.dart';
8 import '../js/js.dart' as js; 8 import '../js/js.dart' as js;
9 import '../dart2jslib.dart' hide Selector; 9 import '../dart2jslib.dart' hide Selector;
10 import '../source_file.dart'; 10 import '../source_file.dart';
(...skipping 11 matching lines...) Expand all
22 show PartialFunctionElement, Token, PLUS_TOKEN; 22 show PartialFunctionElement, Token, PLUS_TOKEN;
23 23
24 import '../elements/modelx.dart' 24 import '../elements/modelx.dart'
25 show ElementX, 25 show ElementX,
26 ConstructorBodyElementX; 26 ConstructorBodyElementX;
27 27
28 part 'bailout.dart'; 28 part 'bailout.dart';
29 part 'builder.dart'; 29 part 'builder.dart';
30 part 'codegen.dart'; 30 part 'codegen.dart';
31 part 'codegen_helpers.dart'; 31 part 'codegen_helpers.dart';
32 part 'invoke_dynamic_specializers.dart';
32 part 'js_names.dart'; 33 part 'js_names.dart';
33 part 'nodes.dart'; 34 part 'nodes.dart';
34 part 'optimize.dart'; 35 part 'optimize.dart';
35 part 'types.dart'; 36 part 'types.dart';
36 part 'types_propagation.dart'; 37 part 'types_propagation.dart';
37 part 'validate.dart'; 38 part 'validate.dart';
38 part 'variable_allocator.dart'; 39 part 'variable_allocator.dart';
39 part 'value_range_analyzer.dart'; 40 part 'value_range_analyzer.dart';
40 part 'value_set.dart'; 41 part 'value_set.dart';
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/optimize.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698