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

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

Issue 10831261: Build and use stack maps in the SSA compiler. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | Annotate | Revision Log
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 #include "vm/locations.h" 5 #include "vm/locations.h"
6 6
7 #include "vm/il_printer.h" 7 #include "vm/il_printer.h"
8 #include "vm/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 #include "vm/flow_graph_compiler.h" 9 #include "vm/flow_graph_compiler.h"
10 10
11 namespace dart { 11 namespace dart {
12 12
13 LocationSummary::LocationSummary(intptr_t input_count, 13 LocationSummary::LocationSummary(intptr_t input_count,
14 intptr_t temp_count, 14 intptr_t temp_count,
15 LocationSummary::ContainsCall contains_call) 15 LocationSummary::ContainsCall contains_call)
16 : input_locations_(input_count), 16 : input_locations_(input_count),
17 temp_locations_(temp_count), 17 temp_locations_(temp_count),
18 output_location_(), 18 output_location_(),
19 is_call_(contains_call == LocationSummary::kCall) { 19 stack_bitmap_(NULL),
20 is_call_(contains_call == kCall) {
21 if (is_call()) stack_bitmap_ = new BitmapBuilder();
20 for (intptr_t i = 0; i < input_count; i++) { 22 for (intptr_t i = 0; i < input_count; i++) {
21 input_locations_.Add(Location()); 23 input_locations_.Add(Location());
22 } 24 }
23 for (intptr_t i = 0; i < temp_count; i++) { 25 for (intptr_t i = 0; i < temp_count; i++) {
24 temp_locations_.Add(Location()); 26 temp_locations_.Add(Location());
25 } 27 }
26 } 28 }
27 29
28 30
29 LocationSummary* LocationSummary::Make( 31 LocationSummary* LocationSummary::Make(
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 105
104 if (!out().IsInvalid()) { 106 if (!out().IsInvalid()) {
105 f->Print(" => "); 107 f->Print(" => ");
106 out().PrintTo(f); 108 out().PrintTo(f);
107 } 109 }
108 110
109 if (is_call()) f->Print(" C"); 111 if (is_call()) f->Print(" C");
110 } 112 }
111 113
112 } // namespace dart 114 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698