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

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

Issue 10873027: Use the location summary to represent safepoint information. (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
« no previous file with comments | « runtime/vm/code_descriptors.h ('k') | runtime/vm/code_descriptors_test.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 #include "vm/code_descriptors.h" 5 #include "vm/code_descriptors.h"
6 6
7 namespace dart { 7 namespace dart {
8 8
9 void DescriptorList::AddDescriptor(PcDescriptors::Kind kind, 9 void DescriptorList::AddDescriptor(PcDescriptors::Kind kind,
10 intptr_t pc_offset, 10 intptr_t pc_offset,
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 DeoptId(i), 47 DeoptId(i),
48 TokenPos(i), 48 TokenPos(i),
49 TryIndex(i)); 49 TryIndex(i));
50 } 50 }
51 return descriptors.raw(); 51 return descriptors.raw();
52 } 52 }
53 53
54 54
55 void StackmapTableBuilder::AddEntry(intptr_t pc_offset, 55 void StackmapTableBuilder::AddEntry(intptr_t pc_offset,
56 BitmapBuilder* bitmap) { 56 BitmapBuilder* bitmap) {
57 bitmap->SetLength(entry_length_);
58 stack_map_ = Stackmap::New(pc_offset, bitmap); 57 stack_map_ = Stackmap::New(pc_offset, bitmap);
59 list_.Add(stack_map_); 58 list_.Add(stack_map_);
60 } 59 }
61 60
62 61
63 bool StackmapTableBuilder::Verify() { 62 bool StackmapTableBuilder::Verify() {
64 intptr_t num_entries = Length(); 63 intptr_t num_entries = Length();
65 Stackmap& map1 = Stackmap::Handle(); 64 Stackmap& map1 = Stackmap::Handle();
66 Stackmap& map2 = Stackmap::Handle(); 65 Stackmap& map2 = Stackmap::Handle();
67 for (intptr_t i = 1; i < num_entries; i++) { 66 for (intptr_t i = 1; i < num_entries; i++) {
(...skipping 24 matching lines...) Expand all
92 } 91 }
93 92
94 93
95 RawStackmap* StackmapTableBuilder::MapAt(int index) const { 94 RawStackmap* StackmapTableBuilder::MapAt(int index) const {
96 Stackmap& map = Stackmap::Handle(); 95 Stackmap& map = Stackmap::Handle();
97 map ^= list_.At(index); 96 map ^= list_.At(index);
98 return map.raw(); 97 return map.raw();
99 } 98 }
100 99
101 } // namespace dart 100 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/code_descriptors.h ('k') | runtime/vm/code_descriptors_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698