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

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

Issue 2667473003: Move Entity and Local to entities.dart (Closed)
Patch Set: Created 3 years, 10 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 import 'dart:math' as math; 5 import 'dart:math' as math;
6 import '../common.dart'; 6 import '../common.dart';
7 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; 7 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem;
8 import '../common/tasks.dart' show CompilerTask; 8 import '../common/tasks.dart' show CompilerTask;
9 import '../compiler.dart' show Compiler; 9 import '../compiler.dart' show Compiler;
10 import '../constants/constant_system.dart'; 10 import '../constants/constant_system.dart';
11 import '../constants/values.dart'; 11 import '../constants/values.dart';
12 import '../core_types.dart' show CommonElements; 12 import '../core_types.dart' show CommonElements;
13 import '../elements/elements.dart' 13 import '../elements/elements.dart'
14 show 14 show
15 Entity,
16 JumpTarget, 15 JumpTarget,
17 LabelDefinition, 16 LabelDefinition,
18 Name, 17 Name,
19 AsyncMarker, 18 AsyncMarker,
20 ResolvedAst, 19 ResolvedAst,
21 FunctionElement; 20 FunctionElement;
22 import '../elements/entities.dart'; 21 import '../elements/entities.dart';
23 import '../elements/types.dart'; 22 import '../elements/types.dart';
24 import '../io/source_information.dart'; 23 import '../io/source_information.dart';
25 import '../js/js.dart' as js; 24 import '../js/js.dart' as js;
(...skipping 3095 matching lines...) Expand 10 before | Expand all | Expand 10 after
3121 registry.registerStaticUse(new StaticUse.staticInvoke( 3120 registry.registerStaticUse(new StaticUse.staticInvoke(
3122 helper, new CallStructure.unnamed(argumentCount))); 3121 helper, new CallStructure.unnamed(argumentCount)));
3123 return backend.emitter.staticFunctionAccess(helper); 3122 return backend.emitter.staticFunctionAccess(helper);
3124 } 3123 }
3125 3124
3126 @override 3125 @override
3127 void visitRef(HRef node) { 3126 void visitRef(HRef node) {
3128 visit(node.value); 3127 visit(node.value);
3129 } 3128 }
3130 } 3129 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/builder_kernel.dart ('k') | pkg/compiler/lib/src/ssa/graph_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698