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

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

Issue 2997993002: Revert "Reapply "Eliminate dependencies on assemblers and code stubs in precompiled runtime."" (Closed)
Patch Set: Created 3 years, 4 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/flag_list.h ('k') | runtime/vm/flow_graph_allocator.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 #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
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)
OLDNEW
« no previous file with comments | « runtime/vm/flag_list.h ('k') | runtime/vm/flow_graph_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698