Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 16 | #include "stack_map_stream.h" |
| 17 | |
| 18 | namespace art { |
| 19 | |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 20 | void StackMapStream::BeginStackMapEntry(uint32_t dex_pc, |
| 21 | uint32_t native_pc_offset, |
| 22 | uint32_t register_mask, |
| 23 | BitVector* sp_mask, |
| 24 | uint32_t num_dex_registers, |
| 25 | uint8_t inlining_depth) { |
| 26 | DCHECK_EQ(0u, current_entry_.dex_pc) << "EndStackMapEntry not called after BeginStackMapEntry"; |
| 27 | current_entry_.dex_pc = dex_pc; |
| 28 | current_entry_.native_pc_offset = native_pc_offset; |
| 29 | current_entry_.register_mask = register_mask; |
| 30 | current_entry_.sp_mask = sp_mask; |
| 31 | current_entry_.num_dex_registers = num_dex_registers; |
| 32 | current_entry_.inlining_depth = inlining_depth; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 33 | current_entry_.dex_register_locations_start_index = dex_register_locations_.size(); |
| 34 | current_entry_.inline_infos_start_index = inline_infos_.size(); |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 35 | current_entry_.dex_register_map_hash = 0; |
| 36 | current_entry_.same_dex_register_map_as_ = kNoSameDexMapFound; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 37 | if (num_dex_registers != 0) { |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 38 | current_entry_.live_dex_registers_mask = |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 39 | new (allocator_) ArenaBitVector(allocator_, num_dex_registers, true); |
| 40 | } else { |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 41 | current_entry_.live_dex_registers_mask = nullptr; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 42 | } |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 43 | |
| 44 | if (sp_mask != nullptr) { |
| 45 | stack_mask_max_ = std::max(stack_mask_max_, sp_mask->GetHighestBitSet()); |
| 46 | } |
| 47 | if (inlining_depth > 0) { |
| 48 | number_of_stack_maps_with_inline_info_++; |
| 49 | } |
| 50 | |
| 51 | dex_pc_max_ = std::max(dex_pc_max_, dex_pc); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 52 | register_mask_max_ = std::max(register_mask_max_, register_mask); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 53 | current_dex_register_ = 0; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 54 | } |
| 55 | |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 56 | void StackMapStream::EndStackMapEntry() { |
| 57 | current_entry_.same_dex_register_map_as_ = FindEntryWithTheSameDexMap(); |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 58 | stack_maps_.push_back(current_entry_); |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 59 | current_entry_ = StackMapEntry(); |
| 60 | } |
| 61 | |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 62 | void StackMapStream::AddDexRegisterEntry(DexRegisterLocation::Kind kind, int32_t value) { |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 63 | if (kind != DexRegisterLocation::Kind::kNone) { |
| 64 | // Ensure we only use non-compressed location kind at this stage. |
| 65 | DCHECK(DexRegisterLocation::IsShortLocationKind(kind)) |
| 66 | << DexRegisterLocation::PrettyDescriptor(kind); |
| 67 | DexRegisterLocation location(kind, value); |
| 68 | |
| 69 | // Look for Dex register `location` in the location catalog (using the |
| 70 | // companion hash map of locations to indices). Use its index if it |
| 71 | // is already in the location catalog. If not, insert it (in the |
| 72 | // location catalog and the hash map) and use the newly created index. |
| 73 | auto it = location_catalog_entries_indices_.Find(location); |
| 74 | if (it != location_catalog_entries_indices_.end()) { |
| 75 | // Retrieve the index from the hash map. |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 76 | dex_register_locations_.push_back(it->second); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 77 | } else { |
| 78 | // Create a new entry in the location catalog and the hash map. |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 79 | size_t index = location_catalog_entries_.size(); |
| 80 | location_catalog_entries_.push_back(location); |
| 81 | dex_register_locations_.push_back(index); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 82 | location_catalog_entries_indices_.Insert(std::make_pair(location, index)); |
| 83 | } |
| 84 | |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 85 | if (in_inline_frame_) { |
| 86 | // TODO: Support sharing DexRegisterMap across InlineInfo. |
| 87 | DCHECK_LT(current_dex_register_, current_inline_info_.num_dex_registers); |
| 88 | current_inline_info_.live_dex_registers_mask->SetBit(current_dex_register_); |
| 89 | } else { |
| 90 | DCHECK_LT(current_dex_register_, current_entry_.num_dex_registers); |
| 91 | current_entry_.live_dex_registers_mask->SetBit(current_dex_register_); |
| 92 | current_entry_.dex_register_map_hash += (1 << |
| 93 | (current_dex_register_ % (sizeof(current_entry_.dex_register_map_hash) * kBitsPerByte))); |
| 94 | current_entry_.dex_register_map_hash += static_cast<uint32_t>(value); |
| 95 | current_entry_.dex_register_map_hash += static_cast<uint32_t>(kind); |
| 96 | } |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 97 | } |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 98 | current_dex_register_++; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 99 | } |
| 100 | |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 101 | void StackMapStream::BeginInlineInfoEntry(uint32_t method_index, |
| 102 | uint32_t dex_pc, |
Nicolas Geoffray | b176d7c | 2015-05-20 18:48:31 +0100 | [diff] [blame] | 103 | InvokeType invoke_type, |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 104 | uint32_t num_dex_registers) { |
| 105 | DCHECK(!in_inline_frame_); |
| 106 | in_inline_frame_ = true; |
| 107 | current_inline_info_.method_index = method_index; |
| 108 | current_inline_info_.dex_pc = dex_pc; |
Nicolas Geoffray | b176d7c | 2015-05-20 18:48:31 +0100 | [diff] [blame] | 109 | current_inline_info_.invoke_type = invoke_type; |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 110 | current_inline_info_.num_dex_registers = num_dex_registers; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 111 | current_inline_info_.dex_register_locations_start_index = dex_register_locations_.size(); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 112 | if (num_dex_registers != 0) { |
| 113 | current_inline_info_.live_dex_registers_mask = |
| 114 | new (allocator_) ArenaBitVector(allocator_, num_dex_registers, true); |
| 115 | } else { |
| 116 | current_inline_info_.live_dex_registers_mask = nullptr; |
| 117 | } |
| 118 | current_dex_register_ = 0; |
| 119 | } |
| 120 | |
| 121 | void StackMapStream::EndInlineInfoEntry() { |
| 122 | DCHECK(in_inline_frame_); |
| 123 | DCHECK_EQ(current_dex_register_, current_inline_info_.num_dex_registers) |
| 124 | << "Inline information contains less registers than expected"; |
| 125 | in_inline_frame_ = false; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 126 | inline_infos_.push_back(current_inline_info_); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 127 | current_inline_info_ = InlineInfoEntry(); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 128 | } |
| 129 | |
Vladimir Marko | bd8c725 | 2015-06-12 10:06:32 +0100 | [diff] [blame] | 130 | uint32_t StackMapStream::ComputeMaxNativePcOffset() const { |
| 131 | uint32_t max_native_pc_offset = 0u; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 132 | for (const StackMapEntry& entry : stack_maps_) { |
| 133 | max_native_pc_offset = std::max(max_native_pc_offset, entry.native_pc_offset); |
Vladimir Marko | bd8c725 | 2015-06-12 10:06:32 +0100 | [diff] [blame] | 134 | } |
| 135 | return max_native_pc_offset; |
| 136 | } |
| 137 | |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 138 | size_t StackMapStream::PrepareForFillIn() { |
| 139 | int stack_mask_number_of_bits = stack_mask_max_ + 1; // Need room for max element too. |
| 140 | stack_mask_size_ = RoundUp(stack_mask_number_of_bits, kBitsPerByte) / kBitsPerByte; |
| 141 | inline_info_size_ = ComputeInlineInfoSize(); |
| 142 | dex_register_maps_size_ = ComputeDexRegisterMapsSize(); |
Vladimir Marko | bd8c725 | 2015-06-12 10:06:32 +0100 | [diff] [blame] | 143 | uint32_t max_native_pc_offset = ComputeMaxNativePcOffset(); |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 144 | stack_map_encoding_ = StackMapEncoding::CreateFromSizes(stack_mask_size_, |
| 145 | inline_info_size_, |
| 146 | dex_register_maps_size_, |
| 147 | dex_pc_max_, |
Vladimir Marko | bd8c725 | 2015-06-12 10:06:32 +0100 | [diff] [blame] | 148 | max_native_pc_offset, |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 149 | register_mask_max_); |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 150 | stack_maps_size_ = stack_maps_.size() * stack_map_encoding_.ComputeStackMapSize(); |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 151 | dex_register_location_catalog_size_ = ComputeDexRegisterLocationCatalogSize(); |
| 152 | |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 153 | // Note: use RoundUp to word-size here if you want CodeInfo objects to be word aligned. |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 154 | needed_size_ = CodeInfo::kFixedSize |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 155 | + stack_maps_size_ |
Nicolas Geoffray | 6530baf | 2015-05-26 15:22:58 +0100 | [diff] [blame] | 156 | + dex_register_location_catalog_size_ |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 157 | + dex_register_maps_size_ |
| 158 | + inline_info_size_; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 159 | |
Nicolas Geoffray | 6530baf | 2015-05-26 15:22:58 +0100 | [diff] [blame] | 160 | stack_maps_start_ = CodeInfo::kFixedSize; |
| 161 | // TODO: Move the catalog at the end. It is currently too expensive at runtime |
| 162 | // to compute its size (note that we do not encode that size in the CodeInfo). |
| 163 | dex_register_location_catalog_start_ = stack_maps_start_ + stack_maps_size_; |
| 164 | dex_register_maps_start_ = |
| 165 | dex_register_location_catalog_start_ + dex_register_location_catalog_size_; |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 166 | inline_infos_start_ = dex_register_maps_start_ + dex_register_maps_size_; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 167 | |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 168 | return needed_size_; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | size_t StackMapStream::ComputeDexRegisterLocationCatalogSize() const { |
| 172 | size_t size = DexRegisterLocationCatalog::kFixedSize; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 173 | for (const DexRegisterLocation& dex_register_location : location_catalog_entries_) { |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 174 | size += DexRegisterLocationCatalog::EntrySize(dex_register_location); |
| 175 | } |
| 176 | return size; |
| 177 | } |
| 178 | |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 179 | size_t StackMapStream::ComputeDexRegisterMapSize(uint32_t num_dex_registers, |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 180 | const BitVector* live_dex_registers_mask) const { |
| 181 | // For num_dex_registers == 0u live_dex_registers_mask may be null. |
| 182 | if (num_dex_registers == 0u) { |
| 183 | return 0u; // No register map will be emitted. |
| 184 | } |
| 185 | DCHECK(live_dex_registers_mask != nullptr); |
| 186 | |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 187 | // Size of the map in bytes. |
| 188 | size_t size = DexRegisterMap::kFixedSize; |
| 189 | // Add the live bit mask for the Dex register liveness. |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 190 | size += DexRegisterMap::GetLiveBitMaskSize(num_dex_registers); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 191 | // Compute the size of the set of live Dex register entries. |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 192 | size_t number_of_live_dex_registers = live_dex_registers_mask->NumSetBits(); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 193 | size_t map_entries_size_in_bits = |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 194 | DexRegisterMap::SingleEntrySizeInBits(location_catalog_entries_.size()) |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 195 | * number_of_live_dex_registers; |
| 196 | size_t map_entries_size_in_bytes = |
| 197 | RoundUp(map_entries_size_in_bits, kBitsPerByte) / kBitsPerByte; |
| 198 | size += map_entries_size_in_bytes; |
| 199 | return size; |
| 200 | } |
| 201 | |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 202 | size_t StackMapStream::ComputeDexRegisterMapsSize() const { |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 203 | size_t size = 0; |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 204 | size_t inline_info_index = 0; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 205 | for (const StackMapEntry& entry : stack_maps_) { |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 206 | if (entry.same_dex_register_map_as_ == kNoSameDexMapFound) { |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 207 | size += ComputeDexRegisterMapSize(entry.num_dex_registers, entry.live_dex_registers_mask); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 208 | } else { |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 209 | // Entries with the same dex map will have the same offset. |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 210 | } |
| 211 | for (size_t j = 0; j < entry.inlining_depth; ++j) { |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 212 | DCHECK_LT(inline_info_index, inline_infos_.size()); |
| 213 | InlineInfoEntry inline_entry = inline_infos_[inline_info_index++]; |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 214 | size += ComputeDexRegisterMapSize(inline_entry.num_dex_registers, |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 215 | inline_entry.live_dex_registers_mask); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | return size; |
| 219 | } |
| 220 | |
| 221 | size_t StackMapStream::ComputeInlineInfoSize() const { |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 222 | return inline_infos_.size() * InlineInfo::SingleEntrySize() |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 223 | // For encoding the depth. |
| 224 | + (number_of_stack_maps_with_inline_info_ * InlineInfo::kFixedSize); |
| 225 | } |
| 226 | |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 227 | void StackMapStream::FillIn(MemoryRegion region) { |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 228 | DCHECK_EQ(0u, current_entry_.dex_pc) << "EndStackMapEntry not called after BeginStackMapEntry"; |
| 229 | DCHECK_NE(0u, needed_size_) << "PrepareForFillIn not called before FillIn"; |
| 230 | |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 231 | CodeInfo code_info(region); |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 232 | DCHECK_EQ(region.size(), needed_size_); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 233 | code_info.SetOverallSize(region.size()); |
| 234 | |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 235 | MemoryRegion dex_register_locations_region = region.Subregion( |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 236 | dex_register_maps_start_, dex_register_maps_size_); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 237 | |
| 238 | MemoryRegion inline_infos_region = region.Subregion( |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 239 | inline_infos_start_, inline_info_size_); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 240 | |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 241 | code_info.SetEncoding(stack_map_encoding_); |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 242 | code_info.SetNumberOfStackMaps(stack_maps_.size()); |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 243 | DCHECK_EQ(code_info.GetStackMapsSize(code_info.ExtractEncoding()), stack_maps_size_); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 244 | |
| 245 | // Set the Dex register location catalog. |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 246 | code_info.SetNumberOfLocationCatalogEntries(location_catalog_entries_.size()); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 247 | MemoryRegion dex_register_location_catalog_region = region.Subregion( |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 248 | dex_register_location_catalog_start_, dex_register_location_catalog_size_); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 249 | DexRegisterLocationCatalog dex_register_location_catalog(dex_register_location_catalog_region); |
| 250 | // Offset in `dex_register_location_catalog` where to store the next |
| 251 | // register location. |
| 252 | size_t location_catalog_offset = DexRegisterLocationCatalog::kFixedSize; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 253 | for (DexRegisterLocation dex_register_location : location_catalog_entries_) { |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 254 | dex_register_location_catalog.SetRegisterInfo(location_catalog_offset, dex_register_location); |
| 255 | location_catalog_offset += DexRegisterLocationCatalog::EntrySize(dex_register_location); |
| 256 | } |
| 257 | // Ensure we reached the end of the Dex registers location_catalog. |
| 258 | DCHECK_EQ(location_catalog_offset, dex_register_location_catalog_region.size()); |
| 259 | |
| 260 | uintptr_t next_dex_register_map_offset = 0; |
| 261 | uintptr_t next_inline_info_offset = 0; |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 262 | for (size_t i = 0, e = stack_maps_.size(); i < e; ++i) { |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 263 | StackMap stack_map = code_info.GetStackMapAt(i, stack_map_encoding_); |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 264 | StackMapEntry entry = stack_maps_[i]; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 265 | |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 266 | stack_map.SetDexPc(stack_map_encoding_, entry.dex_pc); |
| 267 | stack_map.SetNativePcOffset(stack_map_encoding_, entry.native_pc_offset); |
| 268 | stack_map.SetRegisterMask(stack_map_encoding_, entry.register_mask); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 269 | if (entry.sp_mask != nullptr) { |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 270 | stack_map.SetStackMask(stack_map_encoding_, *entry.sp_mask); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | if (entry.num_dex_registers == 0) { |
| 274 | // No dex map available. |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 275 | stack_map.SetDexRegisterMapOffset(stack_map_encoding_, StackMap::kNoDexRegisterMap); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 276 | } else { |
| 277 | // Search for an entry with the same dex map. |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 278 | if (entry.same_dex_register_map_as_ != kNoSameDexMapFound) { |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 279 | // If we have a hit reuse the offset. |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 280 | stack_map.SetDexRegisterMapOffset( |
| 281 | stack_map_encoding_, |
| 282 | code_info.GetStackMapAt(entry.same_dex_register_map_as_, stack_map_encoding_) |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 283 | .GetDexRegisterMapOffset(stack_map_encoding_)); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 284 | } else { |
| 285 | // New dex registers maps should be added to the stack map. |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 286 | MemoryRegion register_region = dex_register_locations_region.Subregion( |
| 287 | next_dex_register_map_offset, |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 288 | ComputeDexRegisterMapSize(entry.num_dex_registers, entry.live_dex_registers_mask)); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 289 | next_dex_register_map_offset += register_region.size(); |
| 290 | DexRegisterMap dex_register_map(register_region); |
| 291 | stack_map.SetDexRegisterMapOffset( |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 292 | stack_map_encoding_, register_region.start() - dex_register_locations_region.start()); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 293 | |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 294 | // Set the dex register location. |
| 295 | FillInDexRegisterMap(dex_register_map, |
| 296 | entry.num_dex_registers, |
| 297 | *entry.live_dex_registers_mask, |
| 298 | entry.dex_register_locations_start_index); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 299 | } |
| 300 | } |
| 301 | |
| 302 | // Set the inlining info. |
| 303 | if (entry.inlining_depth != 0) { |
| 304 | MemoryRegion inline_region = inline_infos_region.Subregion( |
| 305 | next_inline_info_offset, |
| 306 | InlineInfo::kFixedSize + entry.inlining_depth * InlineInfo::SingleEntrySize()); |
| 307 | next_inline_info_offset += inline_region.size(); |
| 308 | InlineInfo inline_info(inline_region); |
| 309 | |
| 310 | // Currently relative to the dex register map. |
| 311 | stack_map.SetInlineDescriptorOffset( |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 312 | stack_map_encoding_, inline_region.start() - dex_register_locations_region.start()); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 313 | |
| 314 | inline_info.SetDepth(entry.inlining_depth); |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 315 | DCHECK_LE(entry.inline_infos_start_index + entry.inlining_depth, inline_infos_.size()); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 316 | for (size_t depth = 0; depth < entry.inlining_depth; ++depth) { |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 317 | InlineInfoEntry inline_entry = inline_infos_[depth + entry.inline_infos_start_index]; |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 318 | inline_info.SetMethodIndexAtDepth(depth, inline_entry.method_index); |
| 319 | inline_info.SetDexPcAtDepth(depth, inline_entry.dex_pc); |
Nicolas Geoffray | b176d7c | 2015-05-20 18:48:31 +0100 | [diff] [blame] | 320 | inline_info.SetInvokeTypeAtDepth(depth, inline_entry.invoke_type); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 321 | if (inline_entry.num_dex_registers == 0) { |
| 322 | // No dex map available. |
| 323 | inline_info.SetDexRegisterMapOffsetAtDepth(depth, StackMap::kNoDexRegisterMap); |
| 324 | DCHECK(inline_entry.live_dex_registers_mask == nullptr); |
| 325 | } else { |
| 326 | MemoryRegion register_region = dex_register_locations_region.Subregion( |
| 327 | next_dex_register_map_offset, |
| 328 | ComputeDexRegisterMapSize(inline_entry.num_dex_registers, |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 329 | inline_entry.live_dex_registers_mask)); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 330 | next_dex_register_map_offset += register_region.size(); |
| 331 | DexRegisterMap dex_register_map(register_region); |
| 332 | inline_info.SetDexRegisterMapOffsetAtDepth( |
| 333 | depth, register_region.start() - dex_register_locations_region.start()); |
| 334 | |
| 335 | FillInDexRegisterMap(dex_register_map, |
| 336 | inline_entry.num_dex_registers, |
| 337 | *inline_entry.live_dex_registers_mask, |
| 338 | inline_entry.dex_register_locations_start_index); |
| 339 | } |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 340 | } |
| 341 | } else { |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 342 | if (inline_info_size_ != 0) { |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 343 | stack_map.SetInlineDescriptorOffset(stack_map_encoding_, StackMap::kNoInlineInfo); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 344 | } |
| 345 | } |
| 346 | } |
| 347 | } |
| 348 | |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 349 | void StackMapStream::FillInDexRegisterMap(DexRegisterMap dex_register_map, |
| 350 | uint32_t num_dex_registers, |
| 351 | const BitVector& live_dex_registers_mask, |
| 352 | uint32_t start_index_in_dex_register_locations) const { |
| 353 | dex_register_map.SetLiveBitMask(num_dex_registers, live_dex_registers_mask); |
| 354 | // Set the dex register location mapping data. |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 355 | size_t number_of_live_dex_registers = live_dex_registers_mask.NumSetBits(); |
| 356 | DCHECK_LE(number_of_live_dex_registers, dex_register_locations_.size()); |
| 357 | DCHECK_LE(start_index_in_dex_register_locations, |
| 358 | dex_register_locations_.size() - number_of_live_dex_registers); |
| 359 | for (size_t index_in_dex_register_locations = 0; |
| 360 | index_in_dex_register_locations != number_of_live_dex_registers; |
| 361 | ++index_in_dex_register_locations) { |
| 362 | size_t location_catalog_entry_index = dex_register_locations_[ |
| 363 | start_index_in_dex_register_locations + index_in_dex_register_locations]; |
| 364 | dex_register_map.SetLocationCatalogEntryIndex( |
| 365 | index_in_dex_register_locations, |
| 366 | location_catalog_entry_index, |
| 367 | num_dex_registers, |
| 368 | location_catalog_entries_.size()); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 369 | } |
| 370 | } |
| 371 | |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 372 | size_t StackMapStream::FindEntryWithTheSameDexMap() { |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 373 | size_t current_entry_index = stack_maps_.size(); |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 374 | auto entries_it = dex_map_hash_to_stack_map_indices_.find(current_entry_.dex_register_map_hash); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 375 | if (entries_it == dex_map_hash_to_stack_map_indices_.end()) { |
| 376 | // We don't have a perfect hash functions so we need a list to collect all stack maps |
| 377 | // which might have the same dex register map. |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 378 | ArenaVector<uint32_t> stack_map_indices(allocator_->Adapter(kArenaAllocStackMapStream)); |
| 379 | stack_map_indices.push_back(current_entry_index); |
| 380 | dex_map_hash_to_stack_map_indices_.Put(current_entry_.dex_register_map_hash, |
| 381 | std::move(stack_map_indices)); |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 382 | return kNoSameDexMapFound; |
| 383 | } |
| 384 | |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 385 | // We might have collisions, so we need to check whether or not we really have a match. |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 386 | for (uint32_t test_entry_index : entries_it->second) { |
| 387 | if (HaveTheSameDexMaps(GetStackMap(test_entry_index), current_entry_)) { |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 388 | return test_entry_index; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 389 | } |
| 390 | } |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 391 | entries_it->second.push_back(current_entry_index); |
Calin Juravle | 4f46ac5 | 2015-04-23 18:47:21 +0100 | [diff] [blame] | 392 | return kNoSameDexMapFound; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | bool StackMapStream::HaveTheSameDexMaps(const StackMapEntry& a, const StackMapEntry& b) const { |
| 396 | if (a.live_dex_registers_mask == nullptr && b.live_dex_registers_mask == nullptr) { |
| 397 | return true; |
| 398 | } |
| 399 | if (a.live_dex_registers_mask == nullptr || b.live_dex_registers_mask == nullptr) { |
| 400 | return false; |
| 401 | } |
| 402 | if (a.num_dex_registers != b.num_dex_registers) { |
| 403 | return false; |
| 404 | } |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 405 | if (a.num_dex_registers != 0u) { |
| 406 | DCHECK(a.live_dex_registers_mask != nullptr); |
| 407 | DCHECK(b.live_dex_registers_mask != nullptr); |
| 408 | if (!a.live_dex_registers_mask->Equal(b.live_dex_registers_mask)) { |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 409 | return false; |
| 410 | } |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 411 | size_t number_of_live_dex_registers = a.live_dex_registers_mask->NumSetBits(); |
| 412 | DCHECK_LE(number_of_live_dex_registers, dex_register_locations_.size()); |
| 413 | DCHECK_LE(a.dex_register_locations_start_index, |
| 414 | dex_register_locations_.size() - number_of_live_dex_registers); |
| 415 | DCHECK_LE(b.dex_register_locations_start_index, |
| 416 | dex_register_locations_.size() - number_of_live_dex_registers); |
| 417 | auto a_begin = dex_register_locations_.begin() + a.dex_register_locations_start_index; |
| 418 | auto b_begin = dex_register_locations_.begin() + b.dex_register_locations_start_index; |
| 419 | if (!std::equal(a_begin, a_begin + number_of_live_dex_registers, b_begin)) { |
| 420 | return false; |
Calin Juravle | c416d33 | 2015-04-23 16:01:43 +0100 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | return true; |
| 424 | } |
| 425 | |
| 426 | } // namespace art |