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

Side by Side Diff: runtime/vm/compiler.cc

Issue 820883004: Move ConstantPropagator from flow_graph_optimizer.cc/.h into separate files. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | runtime/vm/constant_propagator.h » ('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 #include "vm/compiler.h" 5 #include "vm/compiler.h"
6 6
7 #include "vm/assembler.h" 7 #include "vm/assembler.h"
8 8
9 #include "vm/ast_printer.h" 9 #include "vm/ast_printer.h"
10 #include "vm/block_scheduler.h" 10 #include "vm/block_scheduler.h"
11 #include "vm/cha.h" 11 #include "vm/cha.h"
12 #include "vm/code_generator.h" 12 #include "vm/code_generator.h"
13 #include "vm/code_patcher.h" 13 #include "vm/code_patcher.h"
14 #include "vm/constant_propagator.h"
14 #include "vm/dart_entry.h" 15 #include "vm/dart_entry.h"
15 #include "vm/debugger.h" 16 #include "vm/debugger.h"
16 #include "vm/deopt_instructions.h" 17 #include "vm/deopt_instructions.h"
17 #include "vm/exceptions.h" 18 #include "vm/exceptions.h"
18 #include "vm/flags.h" 19 #include "vm/flags.h"
19 #include "vm/flow_graph.h" 20 #include "vm/flow_graph.h"
20 #include "vm/flow_graph_allocator.h" 21 #include "vm/flow_graph_allocator.h"
21 #include "vm/flow_graph_builder.h" 22 #include "vm/flow_graph_builder.h"
22 #include "vm/flow_graph_compiler.h" 23 #include "vm/flow_graph_compiler.h"
23 #include "vm/flow_graph_inliner.h" 24 #include "vm/flow_graph_inliner.h"
(...skipping 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 const Object& result = 1190 const Object& result =
1190 PassiveObject::Handle(isolate->object_store()->sticky_error()); 1191 PassiveObject::Handle(isolate->object_store()->sticky_error());
1191 isolate->object_store()->clear_sticky_error(); 1192 isolate->object_store()->clear_sticky_error();
1192 return result.raw(); 1193 return result.raw();
1193 } 1194 }
1194 UNREACHABLE(); 1195 UNREACHABLE();
1195 return Object::null(); 1196 return Object::null();
1196 } 1197 }
1197 1198
1198 } // namespace dart 1199 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/constant_propagator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698