OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 #if !defined(DART_PRECOMPILED_RUNTIME) |
5 #include "vm/flow_graph_inliner.h" | 5 #include "vm/flow_graph_inliner.h" |
6 | 6 |
7 #include "vm/aot_optimizer.h" | 7 #include "vm/aot_optimizer.h" |
8 #include "vm/block_scheduler.h" | 8 #include "vm/block_scheduler.h" |
9 #include "vm/branch_optimizer.h" | 9 #include "vm/branch_optimizer.h" |
10 #include "vm/compiler.h" | 10 #include "vm/compiler.h" |
11 #include "vm/kernel.h" | 11 #include "vm/kernel.h" |
12 #include "vm/kernel_to_il.h" | 12 #include "vm/kernel_to_il.h" |
13 #include "vm/flags.h" | 13 #include "vm/flags.h" |
14 #include "vm/flow_graph.h" | 14 #include "vm/flow_graph.h" |
(...skipping 3576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3591 return true; | 3591 return true; |
3592 } | 3592 } |
3593 | 3593 |
3594 default: | 3594 default: |
3595 return false; | 3595 return false; |
3596 } | 3596 } |
3597 } | 3597 } |
3598 | 3598 |
3599 | 3599 |
3600 } // namespace dart | 3600 } // namespace dart |
| 3601 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
OLD | NEW |