| 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 |
| 5 #include "vm/locations.h" | 5 #include "vm/locations.h" |
| 6 | 6 |
| 7 #include "vm/assembler.h" | 7 #include "vm/assembler.h" |
| 8 #include "vm/il_printer.h" | 8 #include "vm/il_printer.h" |
| 9 #include "vm/intermediate_language.h" | 9 #include "vm/intermediate_language.h" |
| 10 #include "vm/flow_graph_compiler.h" | 10 #include "vm/flow_graph_compiler.h" |
| 11 #include "vm/stack_frame.h" |
| 11 | 12 |
| 12 namespace dart { | 13 namespace dart { |
| 13 | 14 |
| 14 LocationSummary::LocationSummary(intptr_t input_count, | 15 LocationSummary::LocationSummary(intptr_t input_count, |
| 15 intptr_t temp_count, | 16 intptr_t temp_count, |
| 16 LocationSummary::ContainsCall contains_call) | 17 LocationSummary::ContainsCall contains_call) |
| 17 : input_locations_(input_count), | 18 : input_locations_(input_count), |
| 18 temp_locations_(temp_count), | 19 temp_locations_(temp_count), |
| 19 output_location_(), | 20 output_location_(), |
| 20 stack_bitmap_(NULL), | 21 stack_bitmap_(NULL), |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 172 |
| 172 if (!out().IsInvalid()) { | 173 if (!out().IsInvalid()) { |
| 173 f->Print(" => "); | 174 f->Print(" => "); |
| 174 out().PrintTo(f); | 175 out().PrintTo(f); |
| 175 } | 176 } |
| 176 | 177 |
| 177 if (always_calls()) f->Print(" C"); | 178 if (always_calls()) f->Print(" C"); |
| 178 } | 179 } |
| 179 | 180 |
| 180 } // namespace dart | 181 } // namespace dart |
| OLD | NEW |