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

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

Issue 1398393002: Decouple SSA builder from codegen-work-item (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
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
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 import '../universe/selector.dart' show 57 import '../universe/selector.dart' show
58 Selector; 58 Selector;
59 import '../universe/side_effects.dart' show 59 import '../universe/side_effects.dart' show
60 SideEffects; 60 SideEffects;
61 import '../universe/universe.dart' show 61 import '../universe/universe.dart' show
62 UniverseSelector; 62 UniverseSelector;
63 import '../util/util.dart'; 63 import '../util/util.dart';
64 import '../world.dart' show 64 import '../world.dart' show
65 ClassWorld, 65 ClassWorld,
66 World; 66 World;
67 import '../dump_info.dart' show InfoReporter;
67 68
68 part 'builder.dart'; 69 part 'builder.dart';
69 part 'codegen.dart'; 70 part 'codegen.dart';
70 part 'codegen_helpers.dart'; 71 part 'codegen_helpers.dart';
71 part 'interceptor_simplifier.dart'; 72 part 'interceptor_simplifier.dart';
72 part 'invoke_dynamic_specializers.dart'; 73 part 'invoke_dynamic_specializers.dart';
73 part 'nodes.dart'; 74 part 'nodes.dart';
74 part 'optimize.dart'; 75 part 'optimize.dart';
75 part 'types.dart'; 76 part 'types.dart';
76 part 'types_propagation.dart'; 77 part 'types_propagation.dart';
77 part 'validate.dart'; 78 part 'validate.dart';
78 part 'variable_allocator.dart'; 79 part 'variable_allocator.dart';
79 part 'value_range_analyzer.dart'; 80 part 'value_range_analyzer.dart';
80 part 'value_set.dart'; 81 part 'value_set.dart';
OLDNEW
« pkg/compiler/lib/src/ssa/builder.dart ('K') | « pkg/compiler/lib/src/ssa/builder.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698