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 #if !defined(DART_PRECOMPILED_RUNTIME) |
| 6 |
5 #include "vm/flow_graph_inliner.h" | 7 #include "vm/flow_graph_inliner.h" |
6 | 8 |
7 #include "vm/aot_optimizer.h" | 9 #include "vm/aot_optimizer.h" |
8 #include "vm/precompiler.h" | 10 #include "vm/precompiler.h" |
9 #include "vm/block_scheduler.h" | 11 #include "vm/block_scheduler.h" |
10 #include "vm/branch_optimizer.h" | 12 #include "vm/branch_optimizer.h" |
11 #include "vm/compiler.h" | 13 #include "vm/compiler.h" |
12 #include "vm/kernel.h" | 14 #include "vm/kernel.h" |
13 #include "vm/kernel_to_il.h" | 15 #include "vm/kernel_to_il.h" |
14 #include "vm/flags.h" | 16 #include "vm/flags.h" |
(...skipping 3780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3795 call->deopt_id() != Thread::kNoDeoptId ? call->env() : NULL, | 3797 call->deopt_id() != Thread::kNoDeoptId ? call->env() : NULL, |
3796 FlowGraph::kEffect); | 3798 FlowGraph::kEffect); |
3797 return true; | 3799 return true; |
3798 } | 3800 } |
3799 | 3801 |
3800 default: | 3802 default: |
3801 return false; | 3803 return false; |
3802 } | 3804 } |
3803 } | 3805 } |
3804 | 3806 |
| 3807 } // namespace dart |
3805 | 3808 |
3806 } // namespace dart | |
3807 #endif // !defined(DART_PRECOMPILED_RUNTIME) | 3809 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
OLD | NEW |