| 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 #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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 uword entry_point = code.EntryPoint(); | 70 uword entry_point = code.EntryPoint(); |
| 71 for (intptr_t i = 0; i < num_entries; i++) { | 71 for (intptr_t i = 0; i < num_entries; i++) { |
| 72 stack_map_ = MapAt(i); | 72 stack_map_ = MapAt(i); |
| 73 stack_map_.SetPC(entry_point + stack_map_.PC()); | 73 stack_map_.SetPC(entry_point + stack_map_.PC()); |
| 74 stack_map_.SetCode(code); | 74 stack_map_.SetCode(code); |
| 75 } | 75 } |
| 76 return Array::MakeArray(list_); | 76 return Array::MakeArray(list_); |
| 77 } | 77 } |
| 78 | 78 |
| 79 | 79 |
| 80 RawStackmap* StackmapTableBuilder::MapAt(int index) const { | 80 RawStackmap* StackmapTableBuilder::MapAt(intptr_t index) const { |
| 81 Stackmap& map = Stackmap::Handle(); | 81 Stackmap& map = Stackmap::Handle(); |
| 82 map ^= list_.At(index); | 82 map ^= list_.At(index); |
| 83 return map.raw(); | 83 return map.raw(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 } // namespace dart | 86 } // namespace dart |
| OLD | NEW |