| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 #include "vm/code_descriptors.h" |
| 6 |
| 7 namespace dart { |
| 8 |
| 9 void DescriptorList::AddDescriptor(PcDescriptors::Kind kind, |
| 10 intptr_t pc_offset, |
| 11 intptr_t node_id, |
| 12 intptr_t token_index, |
| 13 intptr_t try_index) { |
| 14 struct PcDesc data; |
| 15 data.pc_offset = pc_offset; |
| 16 data.kind = kind; |
| 17 data.node_id = node_id; |
| 18 data.token_index = token_index; |
| 19 data.try_index = try_index; |
| 20 list_.Add(data); |
| 21 } |
| 22 |
| 23 |
| 24 RawPcDescriptors* DescriptorList::FinalizePcDescriptors(uword entry_point) { |
| 25 intptr_t num_descriptors = Length(); |
| 26 const PcDescriptors& descriptors = |
| 27 PcDescriptors::Handle(PcDescriptors::New(num_descriptors)); |
| 28 for (intptr_t i = 0; i < num_descriptors; i++) { |
| 29 descriptors.AddDescriptor(i, |
| 30 (entry_point + PcOffset(i)), |
| 31 Kind(i), |
| 32 NodeId(i), |
| 33 TokenIndex(i), |
| 34 TryIndex(i)); |
| 35 } |
| 36 return descriptors.raw(); |
| 37 } |
| 38 |
| 39 |
| 40 void StackmapBuilder::AddEntry(intptr_t pc_offset) { |
| 41 stack_map_ = Stackmap::New(pc_offset, code_, builder_); |
| 42 list_.Add(stack_map_); |
| 43 } |
| 44 |
| 45 |
| 46 bool StackmapBuilder::Verify() { |
| 47 intptr_t num_entries = Length(); |
| 48 Stackmap& map1 = Stackmap::Handle(); |
| 49 Stackmap& map2 = Stackmap::Handle(); |
| 50 for (intptr_t i = 1; i < num_entries; i++) { |
| 51 map1 = Map(i - 1); |
| 52 map2 = Map(i); |
| 53 // Ensure there are no duplicates and the entries are sorted. |
| 54 if (map1.PC() >= map2.PC()) { |
| 55 return false; |
| 56 } |
| 57 } |
| 58 return true; |
| 59 } |
| 60 |
| 61 |
| 62 RawArray* StackmapBuilder::FinalizeStackmaps(const Code& code) { |
| 63 ASSERT(Verify()); |
| 64 intptr_t num_entries = Length(); |
| 65 uword entry_point = code.EntryPoint(); |
| 66 if (num_entries == 0) { |
| 67 return Array::Empty(); |
| 68 } |
| 69 for (intptr_t i = 0; i < num_entries; i++) { |
| 70 stack_map_ = Map(i); |
| 71 stack_map_.SetPC(entry_point + stack_map_.PC()); |
| 72 stack_map_.SetCode(code); |
| 73 } |
| 74 return Array::MakeArray(list_); |
| 75 } |
| 76 |
| 77 |
| 78 RawStackmap* StackmapBuilder::Map(int index) const { |
| 79 Stackmap& map = Stackmap::Handle(); |
| 80 map ^= list_.At(index); |
| 81 return map.raw(); |
| 82 } |
| 83 |
| 84 } // namespace dart |
| OLD | NEW |