OLD | NEW |
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 #if !defined(DART_PRECOMPILED_RUNTIME) | |
6 | |
7 #include "vm/flow_graph.h" | 5 #include "vm/flow_graph.h" |
8 | 6 |
9 #include "vm/bit_vector.h" | 7 #include "vm/bit_vector.h" |
10 #include "vm/cha.h" | 8 #include "vm/cha.h" |
11 #include "vm/flow_graph_builder.h" | 9 #include "vm/flow_graph_builder.h" |
12 #include "vm/flow_graph_compiler.h" | 10 #include "vm/flow_graph_compiler.h" |
13 #include "vm/flow_graph_range_analysis.h" | 11 #include "vm/flow_graph_range_analysis.h" |
14 #include "vm/growable_array.h" | 12 #include "vm/growable_array.h" |
15 #include "vm/il_printer.h" | 13 #include "vm/il_printer.h" |
16 #include "vm/intermediate_language.h" | 14 #include "vm/intermediate_language.h" |
(...skipping 2249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2266 intptr_t index, | 2264 intptr_t index, |
2267 Representation rep, | 2265 Representation rep, |
2268 intptr_t cid) { | 2266 intptr_t cid) { |
2269 ExtractNthOutputInstr* extract = | 2267 ExtractNthOutputInstr* extract = |
2270 new (Z) ExtractNthOutputInstr(new (Z) Value(instr), index, rep, cid); | 2268 new (Z) ExtractNthOutputInstr(new (Z) Value(instr), index, rep, cid); |
2271 instr->ReplaceUsesWith(extract); | 2269 instr->ReplaceUsesWith(extract); |
2272 InsertAfter(instr, extract, NULL, FlowGraph::kValue); | 2270 InsertAfter(instr, extract, NULL, FlowGraph::kValue); |
2273 } | 2271 } |
2274 | 2272 |
2275 } // namespace dart | 2273 } // namespace dart |
2276 | |
2277 #endif // !defined(DART_PRECOMPILED_RUNTIME) | |
OLD | NEW |