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

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

Issue 1679833002: VM: Move branch optimizations into a separate file. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 | « runtime/vm/branch_optimizer.cc ('k') | runtime/vm/flow_graph_inliner.cc » ('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/branch_optimizer.h"
11 #include "vm/cha.h" 12 #include "vm/cha.h"
12 #include "vm/code_generator.h" 13 #include "vm/code_generator.h"
13 #include "vm/code_patcher.h" 14 #include "vm/code_patcher.h"
14 #include "vm/constant_propagator.h" 15 #include "vm/constant_propagator.h"
15 #include "vm/dart_entry.h" 16 #include "vm/dart_entry.h"
16 #include "vm/debugger.h" 17 #include "vm/debugger.h"
17 #include "vm/deopt_instructions.h" 18 #include "vm/deopt_instructions.h"
18 #include "vm/exceptions.h" 19 #include "vm/exceptions.h"
19 #include "vm/flags.h" 20 #include "vm/flags.h"
20 #include "vm/flow_graph.h" 21 #include "vm/flow_graph.h"
(...skipping 2014 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 } 2036 }
2036 2037
2037 2038
2038 void BackgroundCompiler::EnsureInit(Thread* thread) { 2039 void BackgroundCompiler::EnsureInit(Thread* thread) {
2039 UNREACHABLE(); 2040 UNREACHABLE();
2040 } 2041 }
2041 2042
2042 #endif // DART_PRECOMPILED_RUNTIME 2043 #endif // DART_PRECOMPILED_RUNTIME
2043 2044
2044 } // namespace dart 2045 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/branch_optimizer.cc ('k') | runtime/vm/flow_graph_inliner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698