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

Side by Side Diff: pkg/compiler/lib/src/ssa/ssa.dart

Issue 1153243003: dart2js: Use frequency of occurence to sort metadata indices. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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) 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 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:mirrors' as mirror;
karlklose 2015/05/28 09:39:53 Is this import used?
herhut 2015/06/01 12:09:42 Done.
8 9
9 import '../closure.dart'; 10 import '../closure.dart';
10 import '../constant_system_dart.dart'; 11 import '../constant_system_dart.dart';
11 import '../constants/constant_system.dart'; 12 import '../constants/constant_system.dart';
12 import '../constants/expressions.dart'; 13 import '../constants/expressions.dart';
13 import '../constants/values.dart'; 14 import '../constants/values.dart';
14 import '../deferred_load.dart' show DeferredLoadTask; 15 import '../deferred_load.dart' show DeferredLoadTask;
15 import '../dart2jslib.dart' hide Selector, TypedSelector; 16 import '../dart2jslib.dart' hide Selector, TypedSelector;
16 import '../dart_types.dart'; 17 import '../dart_types.dart';
17 import '../elements/elements.dart'; 18 import '../elements/elements.dart';
(...skipping 25 matching lines...) Expand all
43 part 'interceptor_simplifier.dart'; 44 part 'interceptor_simplifier.dart';
44 part 'invoke_dynamic_specializers.dart'; 45 part 'invoke_dynamic_specializers.dart';
45 part 'nodes.dart'; 46 part 'nodes.dart';
46 part 'optimize.dart'; 47 part 'optimize.dart';
47 part 'types.dart'; 48 part 'types.dart';
48 part 'types_propagation.dart'; 49 part 'types_propagation.dart';
49 part 'validate.dart'; 50 part 'validate.dart';
50 part 'variable_allocator.dart'; 51 part 'variable_allocator.dart';
51 part 'value_range_analyzer.dart'; 52 part 'value_range_analyzer.dart';
52 part 'value_set.dart'; 53 part 'value_set.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698