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

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

Issue 1299413002: Move common identifiers, names and selectors to a separate library. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 5 years, 4 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
« no previous file with comments | « pkg/compiler/lib/src/ssa/builder.dart ('k') | pkg/compiler/lib/src/universe/function_set.dart » ('j') | 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 'dart:collection'; 7 import 'dart:collection';
8 8
9 import 'package:js_runtime/shared/embedded_names.dart'; 9 import 'package:js_runtime/shared/embedded_names.dart';
10 10
11 import '../closure.dart'; 11 import '../closure.dart';
12 import '../common/codegen.dart' show 12 import '../common/codegen.dart' show
13 CodegenRegistry, 13 CodegenRegistry,
14 CodegenWorkItem; 14 CodegenWorkItem;
15 import '../common/names.dart' show
16 Identifiers,
17 Selectors;
15 import '../common/tasks.dart' show 18 import '../common/tasks.dart' show
16 CompilerTask; 19 CompilerTask;
17 import '../compiler.dart' show 20 import '../compiler.dart' show
18 Compiler; 21 Compiler;
19 import '../constant_system_dart.dart'; 22 import '../constant_system_dart.dart';
20 import '../constants/constant_system.dart'; 23 import '../constants/constant_system.dart';
21 import '../constants/expressions.dart'; 24 import '../constants/expressions.dart';
22 import '../constants/values.dart'; 25 import '../constants/values.dart';
23 import '../dart_types.dart'; 26 import '../dart_types.dart';
24 import '../diagnostics/invariant.dart' show 27 import '../diagnostics/invariant.dart' show
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 part 'interceptor_simplifier.dart'; 64 part 'interceptor_simplifier.dart';
62 part 'invoke_dynamic_specializers.dart'; 65 part 'invoke_dynamic_specializers.dart';
63 part 'nodes.dart'; 66 part 'nodes.dart';
64 part 'optimize.dart'; 67 part 'optimize.dart';
65 part 'types.dart'; 68 part 'types.dart';
66 part 'types_propagation.dart'; 69 part 'types_propagation.dart';
67 part 'validate.dart'; 70 part 'validate.dart';
68 part 'variable_allocator.dart'; 71 part 'variable_allocator.dart';
69 part 'value_range_analyzer.dart'; 72 part 'value_range_analyzer.dart';
70 part 'value_set.dart'; 73 part 'value_set.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/builder.dart ('k') | pkg/compiler/lib/src/universe/function_set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698