| 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 |
| 5 #include "vm/flow_graph.h" | 7 #include "vm/flow_graph.h" |
| 6 | 8 |
| 7 #include "vm/bit_vector.h" | 9 #include "vm/bit_vector.h" |
| 8 #include "vm/cha.h" | 10 #include "vm/cha.h" |
| 9 #include "vm/flow_graph_builder.h" | 11 #include "vm/flow_graph_builder.h" |
| 10 #include "vm/flow_graph_compiler.h" | 12 #include "vm/flow_graph_compiler.h" |
| 11 #include "vm/flow_graph_range_analysis.h" | 13 #include "vm/flow_graph_range_analysis.h" |
| 12 #include "vm/growable_array.h" | 14 #include "vm/growable_array.h" |
| 13 #include "vm/il_printer.h" | 15 #include "vm/il_printer.h" |
| 14 #include "vm/intermediate_language.h" | 16 #include "vm/intermediate_language.h" |
| (...skipping 2144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2159 intptr_t index, | 2161 intptr_t index, |
| 2160 Representation rep, | 2162 Representation rep, |
| 2161 intptr_t cid) { | 2163 intptr_t cid) { |
| 2162 ExtractNthOutputInstr* extract = | 2164 ExtractNthOutputInstr* extract = |
| 2163 new (Z) ExtractNthOutputInstr(new (Z) Value(instr), index, rep, cid); | 2165 new (Z) ExtractNthOutputInstr(new (Z) Value(instr), index, rep, cid); |
| 2164 instr->ReplaceUsesWith(extract); | 2166 instr->ReplaceUsesWith(extract); |
| 2165 InsertAfter(instr, extract, NULL, FlowGraph::kValue); | 2167 InsertAfter(instr, extract, NULL, FlowGraph::kValue); |
| 2166 } | 2168 } |
| 2167 | 2169 |
| 2168 } // namespace dart | 2170 } // namespace dart |
| 2171 |
| 2172 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
| OLD | NEW |