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

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

Issue 574683002: Use ConstExp for storing constants. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 6 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 unified diff | Download patch | Annotate | Revision Log
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 8
9 import '../closure.dart'; 9 import '../closure.dart';
10 import '../cps_ir/const_expression.dart';
10 import '../js/js.dart' as js; 11 import '../js/js.dart' as js;
11 import '../dart2jslib.dart' hide Selector, TypedSelector; 12 import '../dart2jslib.dart' hide Selector, TypedSelector;
12 import '../dart_types.dart'; 13 import '../dart_types.dart';
13 import '../source_file.dart'; 14 import '../source_file.dart';
14 import '../source_map_builder.dart'; 15 import '../source_map_builder.dart';
15 import '../elements/elements.dart'; 16 import '../elements/elements.dart';
16 import '../js_backend/js_backend.dart'; 17 import '../js_backend/js_backend.dart';
17 import '../native_handler.dart' as native; 18 import '../native_handler.dart' as native;
18 import '../tree/tree.dart' as ast; 19 import '../tree/tree.dart' as ast;
19 import '../types/types.dart'; 20 import '../types/types.dart';
(...skipping 17 matching lines...) Expand all
37 part 'interceptor_simplifier.dart'; 38 part 'interceptor_simplifier.dart';
38 part 'invoke_dynamic_specializers.dart'; 39 part 'invoke_dynamic_specializers.dart';
39 part 'nodes.dart'; 40 part 'nodes.dart';
40 part 'optimize.dart'; 41 part 'optimize.dart';
41 part 'types.dart'; 42 part 'types.dart';
42 part 'types_propagation.dart'; 43 part 'types_propagation.dart';
43 part 'validate.dart'; 44 part 'validate.dart';
44 part 'variable_allocator.dart'; 45 part 'variable_allocator.dart';
45 part 'value_range_analyzer.dart'; 46 part 'value_range_analyzer.dart';
46 part 'value_set.dart'; 47 part 'value_set.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698