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

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

Issue 1679853002: VM: Move redundancy elimination phases into a separate file. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: fixed indentation Created 4 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
« no previous file with comments | « no previous file | runtime/vm/flow_graph.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"
(...skipping 13 matching lines...) Expand all
24 #include "vm/flow_graph_compiler.h" 24 #include "vm/flow_graph_compiler.h"
25 #include "vm/flow_graph_inliner.h" 25 #include "vm/flow_graph_inliner.h"
26 #include "vm/flow_graph_optimizer.h" 26 #include "vm/flow_graph_optimizer.h"
27 #include "vm/flow_graph_type_propagator.h" 27 #include "vm/flow_graph_type_propagator.h"
28 #include "vm/il_printer.h" 28 #include "vm/il_printer.h"
29 #include "vm/longjump.h" 29 #include "vm/longjump.h"
30 #include "vm/object.h" 30 #include "vm/object.h"
31 #include "vm/object_store.h" 31 #include "vm/object_store.h"
32 #include "vm/os.h" 32 #include "vm/os.h"
33 #include "vm/parser.h" 33 #include "vm/parser.h"
34 #include "vm/redundancy_elimination.h"
34 #include "vm/regexp_parser.h" 35 #include "vm/regexp_parser.h"
35 #include "vm/regexp_assembler.h" 36 #include "vm/regexp_assembler.h"
36 #include "vm/scanner.h" 37 #include "vm/scanner.h"
37 #include "vm/symbols.h" 38 #include "vm/symbols.h"
38 #include "vm/tags.h" 39 #include "vm/tags.h"
39 #include "vm/thread_registry.h" 40 #include "vm/thread_registry.h"
40 #include "vm/timer.h" 41 #include "vm/timer.h"
41 42
42 namespace dart { 43 namespace dart {
43 44
(...skipping 1992 matching lines...) Expand 10 before | Expand all | Expand 10 after
2036 } 2037 }
2037 2038
2038 2039
2039 void BackgroundCompiler::EnsureInit(Thread* thread) { 2040 void BackgroundCompiler::EnsureInit(Thread* thread) {
2040 UNREACHABLE(); 2041 UNREACHABLE();
2041 } 2042 }
2042 2043
2043 #endif // DART_PRECOMPILED_RUNTIME 2044 #endif // DART_PRECOMPILED_RUNTIME
2044 2045
2045 } // namespace dart 2046 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/flow_graph.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698