blob: 0b1c4f9c63e8f7e123a325762411d2b6eb5ce509 [file] [log] [blame]
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +01001/*
2 * Copyright (C) 2014 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 */
16
17#ifndef ART_RUNTIME_STACK_MAP_H_
18#define ART_RUNTIME_STACK_MAP_H_
19
Andreas Gampe69489fa2017-06-08 18:03:25 -070020#include <limits>
21
David Srbeckyf6ba5b32018-06-23 22:05:49 +010022#include "arch/instruction_set.h"
David Sehr1ce2b3b2018-04-05 11:02:03 -070023#include "base/bit_memory_region.h"
David Srbecky052f8ca2018-04-26 15:42:54 +010024#include "base/bit_table.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010025#include "base/bit_utils.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070026#include "base/bit_vector.h"
David Sehr67bf42e2018-02-26 16:43:04 -080027#include "base/leb128.h"
David Sehr1ce2b3b2018-04-05 11:02:03 -070028#include "base/memory_region.h"
David Sehr9e734c72018-01-04 17:56:19 -080029#include "dex/dex_file_types.h"
David Srbecky71ec1cc2018-05-18 15:57:25 +010030#include "dex_register_location.h"
David Srbeckyf6ba5b32018-06-23 22:05:49 +010031#include "quick/quick_method_frame_info.h"
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +010032
33namespace art {
34
David Srbeckyf6ba5b32018-06-23 22:05:49 +010035class OatQuickMethodHeader;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +010036class VariableIndentationOutputStream;
37
Roland Levillaina2d8ec62015-03-12 15:25:29 +000038// Size of a frame slot, in bytes. This constant is a signed value,
39// to please the compiler in arithmetic operations involving int32_t
40// (signed) values.
Roland Levillaina552e1c2015-03-26 15:01:03 +000041static constexpr ssize_t kFrameSlotSize = 4;
Roland Levillaina2d8ec62015-03-12 15:25:29 +000042
David Srbecky6de88332018-06-03 12:00:11 +010043// The delta compression of dex register maps means we need to scan the stackmaps backwards.
44// We compress the data in such a way so that there is an upper bound on the search distance.
45// Max distance 0 means each stack map must be fully defined and no scanning back is allowed.
46// If this value is changed, the oat file version should be incremented (for DCHECK to pass).
47static constexpr size_t kMaxDexRegisterMapSearchDistance = 32;
48
Nicolas Geoffray5d37c152017-01-12 13:25:19 +000049class ArtMethod;
Nicolas Geoffray004c2302015-03-20 10:06:38 +000050class CodeInfo;
David Srbecky86decb62018-06-05 06:41:10 +010051class Stats;
Nicolas Geoffray004c2302015-03-20 10:06:38 +000052
David Srbecky71ec1cc2018-05-18 15:57:25 +010053std::ostream& operator<<(std::ostream& stream, const DexRegisterLocation& reg);
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +010054
David Srbecky71ec1cc2018-05-18 15:57:25 +010055// Information on Dex register locations for a specific PC.
56// Effectively just a convenience wrapper for DexRegisterLocation vector.
57// If the size is small enough, it keeps the data on the stack.
David Srbeckye1402122018-06-13 18:20:45 +010058// TODO: Replace this with generic purpose "small-vector" implementation.
Roland Levillaina552e1c2015-03-26 15:01:03 +000059class DexRegisterMap {
60 public:
David Srbecky6de88332018-06-03 12:00:11 +010061 using iterator = DexRegisterLocation*;
David Srbeckye1402122018-06-13 18:20:45 +010062 using const_iterator = const DexRegisterLocation*;
David Srbecky6de88332018-06-03 12:00:11 +010063
64 // Create map for given number of registers and initialize them to the given value.
65 DexRegisterMap(size_t count, DexRegisterLocation value) : count_(count), regs_small_{} {
David Srbecky71ec1cc2018-05-18 15:57:25 +010066 if (count_ <= kSmallCount) {
David Srbecky6de88332018-06-03 12:00:11 +010067 std::fill_n(regs_small_.begin(), count, value);
David Srbecky71ec1cc2018-05-18 15:57:25 +010068 } else {
David Srbecky6de88332018-06-03 12:00:11 +010069 regs_large_.resize(count, value);
David Srbecky71ec1cc2018-05-18 15:57:25 +010070 }
Roland Levillaina552e1c2015-03-26 15:01:03 +000071 }
72
David Srbecky71ec1cc2018-05-18 15:57:25 +010073 DexRegisterLocation* data() {
74 return count_ <= kSmallCount ? regs_small_.data() : regs_large_.data();
75 }
David Srbeckye1402122018-06-13 18:20:45 +010076 const DexRegisterLocation* data() const {
77 return count_ <= kSmallCount ? regs_small_.data() : regs_large_.data();
78 }
Roland Levillaina552e1c2015-03-26 15:01:03 +000079
David Srbecky6de88332018-06-03 12:00:11 +010080 iterator begin() { return data(); }
81 iterator end() { return data() + count_; }
David Srbeckye1402122018-06-13 18:20:45 +010082 const_iterator begin() const { return data(); }
83 const_iterator end() const { return data() + count_; }
David Srbecky71ec1cc2018-05-18 15:57:25 +010084 size_t size() const { return count_; }
David Srbeckyfd89b072018-06-03 12:00:22 +010085 bool empty() const { return count_ == 0; }
David Srbecky71ec1cc2018-05-18 15:57:25 +010086
David Srbeckye1402122018-06-13 18:20:45 +010087 DexRegisterLocation& operator[](size_t index) {
David Srbecky71ec1cc2018-05-18 15:57:25 +010088 DCHECK_LT(index, count_);
David Srbeckye1402122018-06-13 18:20:45 +010089 return data()[index];
David Srbecky71ec1cc2018-05-18 15:57:25 +010090 }
David Srbeckye1402122018-06-13 18:20:45 +010091 const DexRegisterLocation& operator[](size_t index) const {
92 DCHECK_LT(index, count_);
93 return data()[index];
Roland Levillaina552e1c2015-03-26 15:01:03 +000094 }
95
David Srbecky71ec1cc2018-05-18 15:57:25 +010096 size_t GetNumberOfLiveDexRegisters() const {
David Srbeckye1402122018-06-13 18:20:45 +010097 return std::count_if(begin(), end(), [](auto& loc) { return loc.IsLive(); });
Roland Levillaina552e1c2015-03-26 15:01:03 +000098 }
99
David Srbecky71ec1cc2018-05-18 15:57:25 +0100100 bool HasAnyLiveDexRegisters() const {
David Srbeckye1402122018-06-13 18:20:45 +0100101 return std::any_of(begin(), end(), [](auto& loc) { return loc.IsLive(); });
David Srbecky21d45b42018-05-30 06:35:05 +0100102 }
103
David Srbeckye1402122018-06-13 18:20:45 +0100104 void Dump(VariableIndentationOutputStream* vios) const;
105
Roland Levillaina552e1c2015-03-26 15:01:03 +0000106 private:
David Srbecky71ec1cc2018-05-18 15:57:25 +0100107 // Store the data inline if the number of registers is small to avoid memory allocations.
108 // If count_ <= kSmallCount, we use the regs_small_ array, and regs_large_ otherwise.
109 static constexpr size_t kSmallCount = 16;
110 size_t count_;
111 std::array<DexRegisterLocation, kSmallCount> regs_small_;
112 dchecked_vector<DexRegisterLocation> regs_large_;
Roland Levillaina552e1c2015-03-26 15:01:03 +0000113};
114
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100115/**
116 * A Stack Map holds compilation information for a specific PC necessary for:
117 * - Mapping it to a dex PC,
118 * - Knowing which stack entries are objects,
119 * - Knowing which registers hold objects,
120 * - Knowing the inlining information,
121 * - Knowing the values of dex registers.
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100122 */
David Srbeckycf7833e2018-06-14 16:45:22 +0100123class StackMap : public BitTableAccessor<8> {
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100124 public:
David Srbecky50fac062018-06-13 18:55:35 +0100125 enum Kind {
126 Default = -1,
127 Catch = 0,
128 OSR = 1,
129 Debug = 2,
130 };
David Srbeckyd97e0822018-06-03 12:00:24 +0100131 BIT_TABLE_HEADER()
David Srbecky50fac062018-06-13 18:55:35 +0100132 BIT_TABLE_COLUMN(0, Kind)
133 BIT_TABLE_COLUMN(1, PackedNativePc)
134 BIT_TABLE_COLUMN(2, DexPc)
135 BIT_TABLE_COLUMN(3, RegisterMaskIndex)
136 BIT_TABLE_COLUMN(4, StackMaskIndex)
137 BIT_TABLE_COLUMN(5, InlineInfoIndex)
138 BIT_TABLE_COLUMN(6, DexRegisterMaskIndex)
139 BIT_TABLE_COLUMN(7, DexRegisterMapIndex)
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100140
David Srbecky052f8ca2018-04-26 15:42:54 +0100141 ALWAYS_INLINE uint32_t GetNativePcOffset(InstructionSet instruction_set) const {
David Srbeckycf7833e2018-06-14 16:45:22 +0100142 return UnpackNativePc(GetPackedNativePc(), instruction_set);
David Brazdilf677ebf2015-05-29 16:29:43 +0100143 }
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100144
David Srbeckyd97e0822018-06-03 12:00:24 +0100145 ALWAYS_INLINE bool HasInlineInfo() const {
146 return HasInlineInfoIndex();
147 }
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100148
David Srbeckyd97e0822018-06-03 12:00:24 +0100149 ALWAYS_INLINE bool HasDexRegisterMap() const {
150 return HasDexRegisterMapIndex();
151 }
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100152
David Srbeckyd02b23f2018-05-29 23:27:22 +0100153 static uint32_t PackNativePc(uint32_t native_pc, InstructionSet isa) {
David Srbeckyd775f962018-05-30 18:12:52 +0100154 DCHECK_ALIGNED_PARAM(native_pc, GetInstructionSetInstructionAlignment(isa));
David Srbeckyd02b23f2018-05-29 23:27:22 +0100155 return native_pc / GetInstructionSetInstructionAlignment(isa);
156 }
157
158 static uint32_t UnpackNativePc(uint32_t packed_native_pc, InstructionSet isa) {
159 uint32_t native_pc = packed_native_pc * GetInstructionSetInstructionAlignment(isa);
160 DCHECK_EQ(native_pc / GetInstructionSetInstructionAlignment(isa), packed_native_pc);
161 return native_pc;
162 }
163
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100164 void Dump(VariableIndentationOutputStream* vios,
Roland Levillainf2650d12015-05-28 14:53:28 +0100165 const CodeInfo& code_info,
166 uint32_t code_offset,
David Srbecky71ec1cc2018-05-18 15:57:25 +0100167 InstructionSet instruction_set) const;
David Srbecky61b28a12016-02-25 21:55:03 +0000168};
169
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100170/**
David Srbecky052f8ca2018-04-26 15:42:54 +0100171 * Inline information for a specific PC.
172 * The row referenced from the StackMap holds information at depth 0.
173 * Following rows hold information for further depths.
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100174 */
David Srbeckycf7833e2018-06-14 16:45:22 +0100175class InlineInfo : public BitTableAccessor<6> {
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100176 public:
David Srbeckyd97e0822018-06-03 12:00:24 +0100177 BIT_TABLE_HEADER()
178 BIT_TABLE_COLUMN(0, IsLast) // Determines if there are further rows for further depths.
179 BIT_TABLE_COLUMN(1, DexPc)
180 BIT_TABLE_COLUMN(2, MethodInfoIndex)
181 BIT_TABLE_COLUMN(3, ArtMethodHi) // High bits of ArtMethod*.
182 BIT_TABLE_COLUMN(4, ArtMethodLo) // Low bits of ArtMethod*.
David Srbecky6de88332018-06-03 12:00:11 +0100183 BIT_TABLE_COLUMN(5, NumberOfDexRegisters) // Includes outer levels and the main method.
David Srbeckyd97e0822018-06-03 12:00:24 +0100184 BIT_TABLE_COLUMN(6, DexRegisterMapIndex)
185
David Srbecky052f8ca2018-04-26 15:42:54 +0100186 static constexpr uint32_t kLast = -1;
187 static constexpr uint32_t kMore = 0;
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100188
David Srbecky6e69e522018-06-03 12:00:14 +0100189 bool EncodesArtMethod() const {
David Srbeckyd97e0822018-06-03 12:00:24 +0100190 return HasArtMethodLo();
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100191 }
192
David Srbecky6e69e522018-06-03 12:00:14 +0100193 ArtMethod* GetArtMethod() const {
David Srbeckyd97e0822018-06-03 12:00:24 +0100194 uint64_t lo = GetArtMethodLo();
195 uint64_t hi = GetArtMethodHi();
David Srbecky71ec1cc2018-05-18 15:57:25 +0100196 return reinterpret_cast<ArtMethod*>((hi << 32) | lo);
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100197 }
198
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100199 void Dump(VariableIndentationOutputStream* vios,
David Srbecky61b28a12016-02-25 21:55:03 +0000200 const CodeInfo& info,
David Srbecky8cd54542018-07-15 23:58:44 +0100201 const StackMap& stack_map) const;
Mathieu Chartier575d3e62017-02-06 11:00:40 -0800202};
203
David Srbeckycf7833e2018-06-14 16:45:22 +0100204class MaskInfo : public BitTableAccessor<1> {
David Srbecky86decb62018-06-05 06:41:10 +0100205 public:
206 BIT_TABLE_HEADER()
207 BIT_TABLE_COLUMN(0, Mask)
208};
209
David Srbeckycf7833e2018-06-14 16:45:22 +0100210class DexRegisterMapInfo : public BitTableAccessor<1> {
David Srbecky86decb62018-06-05 06:41:10 +0100211 public:
212 BIT_TABLE_HEADER()
213 BIT_TABLE_COLUMN(0, CatalogueIndex)
214};
215
David Srbeckycf7833e2018-06-14 16:45:22 +0100216class DexRegisterInfo : public BitTableAccessor<2> {
David Srbecky71ec1cc2018-05-18 15:57:25 +0100217 public:
David Srbeckyd97e0822018-06-03 12:00:24 +0100218 BIT_TABLE_HEADER()
219 BIT_TABLE_COLUMN(0, Kind)
220 BIT_TABLE_COLUMN(1, PackedValue)
David Srbecky71ec1cc2018-05-18 15:57:25 +0100221
222 ALWAYS_INLINE DexRegisterLocation GetLocation() const {
David Srbeckyd97e0822018-06-03 12:00:24 +0100223 DexRegisterLocation::Kind kind = static_cast<DexRegisterLocation::Kind>(GetKind());
224 return DexRegisterLocation(kind, UnpackValue(kind, GetPackedValue()));
David Srbecky71ec1cc2018-05-18 15:57:25 +0100225 }
226
227 static uint32_t PackValue(DexRegisterLocation::Kind kind, uint32_t value) {
228 uint32_t packed_value = value;
229 if (kind == DexRegisterLocation::Kind::kInStack) {
230 DCHECK(IsAligned<kFrameSlotSize>(packed_value));
231 packed_value /= kFrameSlotSize;
232 }
233 return packed_value;
234 }
235
236 static uint32_t UnpackValue(DexRegisterLocation::Kind kind, uint32_t packed_value) {
237 uint32_t value = packed_value;
238 if (kind == DexRegisterLocation::Kind::kInStack) {
239 value *= kFrameSlotSize;
240 }
241 return value;
242 }
243};
244
David Srbecky4b59d102018-05-29 21:46:10 +0000245// Register masks tend to have many trailing zero bits (caller-saves are usually not encoded),
246// therefore it is worth encoding the mask as value+shift.
David Srbeckycf7833e2018-06-14 16:45:22 +0100247class RegisterMask : public BitTableAccessor<2> {
David Srbecky4b59d102018-05-29 21:46:10 +0000248 public:
David Srbeckyd97e0822018-06-03 12:00:24 +0100249 BIT_TABLE_HEADER()
250 BIT_TABLE_COLUMN(0, Value)
251 BIT_TABLE_COLUMN(1, Shift)
David Srbecky4b59d102018-05-29 21:46:10 +0000252
253 ALWAYS_INLINE uint32_t GetMask() const {
David Srbeckyd97e0822018-06-03 12:00:24 +0100254 return GetValue() << GetShift();
David Srbecky4b59d102018-05-29 21:46:10 +0000255 }
256};
257
David Srbecky8cd54542018-07-15 23:58:44 +0100258// Method indices are not very dedup friendly.
259// Separating them greatly improves dedup efficiency of the other tables.
260class MethodInfo : public BitTableAccessor<1> {
261 public:
262 BIT_TABLE_HEADER()
263 BIT_TABLE_COLUMN(0, MethodIndex)
264};
265
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100266/**
267 * Wrapper around all compiler information collected for a method.
David Srbecky71ec1cc2018-05-18 15:57:25 +0100268 * See the Decode method at the end for the precise binary format.
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100269 */
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100270class CodeInfo {
271 public:
David Srbecky6ee06e92018-07-25 21:45:54 +0100272 enum DecodeFlags {
273 Default = 0,
274 // Limits the decoding only to the main stack map table and inline info table.
275 // This is sufficient for many use cases and makes the header decoding faster.
276 InlineInfoOnly = 1,
277 };
278
279 explicit CodeInfo(const uint8_t* data, DecodeFlags flags = DecodeFlags::Default) {
280 Decode(reinterpret_cast<const uint8_t*>(data), flags);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100281 }
282
David Srbecky052f8ca2018-04-26 15:42:54 +0100283 explicit CodeInfo(MemoryRegion region) : CodeInfo(region.begin()) {
David Srbeckya38e6cf2018-06-26 18:13:49 +0100284 DCHECK_EQ(Size(), region.size());
Nicolas Geoffray896f8f72015-03-30 15:44:25 +0100285 }
286
David Srbecky6ee06e92018-07-25 21:45:54 +0100287 explicit CodeInfo(const OatQuickMethodHeader* header, DecodeFlags flags = DecodeFlags::Default);
Nicolas Geoffray896f8f72015-03-30 15:44:25 +0100288
David Srbecky052f8ca2018-04-26 15:42:54 +0100289 size_t Size() const {
David Srbeckya38e6cf2018-06-26 18:13:49 +0100290 return BitsToBytesRoundUp(size_in_bits_);
Roland Levillaina552e1c2015-03-26 15:01:03 +0000291 }
292
David Srbecky93bd3612018-07-02 19:30:18 +0100293 ALWAYS_INLINE const BitTable<StackMap>& GetStackMaps() const {
294 return stack_maps_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100295 }
296
David Srbecky052f8ca2018-04-26 15:42:54 +0100297 ALWAYS_INLINE StackMap GetStackMapAt(size_t index) const {
David Srbeckycf7833e2018-06-14 16:45:22 +0100298 return stack_maps_.GetRow(index);
David Srbecky45aa5982016-03-18 02:15:09 +0000299 }
300
David Srbecky052f8ca2018-04-26 15:42:54 +0100301 BitMemoryRegion GetStackMask(size_t index) const {
David Srbecky4b59d102018-05-29 21:46:10 +0000302 return stack_masks_.GetBitMemoryRegion(index);
Mathieu Chartier1a20b682017-01-31 14:25:16 -0800303 }
304
David Srbecky052f8ca2018-04-26 15:42:54 +0100305 BitMemoryRegion GetStackMaskOf(const StackMap& stack_map) const {
David Srbecky4b59d102018-05-29 21:46:10 +0000306 uint32_t index = stack_map.GetStackMaskIndex();
307 return (index == StackMap::kNoValue) ? BitMemoryRegion() : GetStackMask(index);
Mathieu Chartier1a20b682017-01-31 14:25:16 -0800308 }
309
David Srbecky052f8ca2018-04-26 15:42:54 +0100310 uint32_t GetRegisterMaskOf(const StackMap& stack_map) const {
David Srbecky4b59d102018-05-29 21:46:10 +0000311 uint32_t index = stack_map.GetRegisterMaskIndex();
David Srbeckycf7833e2018-06-14 16:45:22 +0100312 return (index == StackMap::kNoValue) ? 0 : register_masks_.GetRow(index).GetMask();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100313 }
314
David Srbecky052f8ca2018-04-26 15:42:54 +0100315 uint32_t GetNumberOfLocationCatalogEntries() const {
David Srbecky71ec1cc2018-05-18 15:57:25 +0100316 return dex_register_catalog_.NumRows();
Roland Levillaina552e1c2015-03-26 15:01:03 +0000317 }
318
David Srbecky71ec1cc2018-05-18 15:57:25 +0100319 ALWAYS_INLINE DexRegisterLocation GetDexRegisterCatalogEntry(size_t index) const {
David Srbecky6de88332018-06-03 12:00:11 +0100320 return (index == StackMap::kNoValue)
321 ? DexRegisterLocation::None()
David Srbeckycf7833e2018-06-14 16:45:22 +0100322 : dex_register_catalog_.GetRow(index).GetLocation();
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100323 }
324
David Srbecky93bd3612018-07-02 19:30:18 +0100325 bool HasInlineInfo() const {
326 return inline_infos_.NumRows() > 0;
327 }
328
David Srbecky052f8ca2018-04-26 15:42:54 +0100329 uint32_t GetNumberOfStackMaps() const {
330 return stack_maps_.NumRows();
Nicolas Geoffray6530baf2015-05-26 15:22:58 +0100331 }
332
David Srbecky8cd54542018-07-15 23:58:44 +0100333 uint32_t GetMethodIndexOf(InlineInfo inline_info) const {
334 return method_infos_.GetRow(inline_info.GetMethodInfoIndex()).GetMethodIndex();
335 }
336
David Srbeckyfd89b072018-06-03 12:00:22 +0100337 ALWAYS_INLINE DexRegisterMap GetDexRegisterMapOf(StackMap stack_map) const {
David Srbecky6de88332018-06-03 12:00:11 +0100338 if (stack_map.HasDexRegisterMap()) {
339 DexRegisterMap map(number_of_dex_registers_, DexRegisterLocation::Invalid());
340 DecodeDexRegisterMap(stack_map.Row(), /* first_dex_register */ 0, &map);
341 return map;
342 }
343 return DexRegisterMap(0, DexRegisterLocation::None());
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100344 }
345
David Srbecky93bd3612018-07-02 19:30:18 +0100346 ALWAYS_INLINE DexRegisterMap GetInlineDexRegisterMapOf(StackMap stack_map,
347 InlineInfo inline_info) const {
David Srbecky6de88332018-06-03 12:00:11 +0100348 if (stack_map.HasDexRegisterMap()) {
David Srbecky93bd3612018-07-02 19:30:18 +0100349 DCHECK(stack_map.HasInlineInfoIndex());
350 uint32_t depth = inline_info.Row() - stack_map.GetInlineInfoIndex();
David Srbecky6de88332018-06-03 12:00:11 +0100351 // The register counts are commutative and include all outer levels.
352 // This allows us to determine the range [first, last) in just two lookups.
353 // If we are at depth 0 (the first inlinee), the count from the main method is used.
David Srbecky93bd3612018-07-02 19:30:18 +0100354 uint32_t first = (depth == 0)
355 ? number_of_dex_registers_
356 : inline_infos_.GetRow(inline_info.Row() - 1).GetNumberOfDexRegisters();
357 uint32_t last = inline_info.GetNumberOfDexRegisters();
David Srbecky6de88332018-06-03 12:00:11 +0100358 DexRegisterMap map(last - first, DexRegisterLocation::Invalid());
359 DecodeDexRegisterMap(stack_map.Row(), first, &map);
360 return map;
361 }
362 return DexRegisterMap(0, DexRegisterLocation::None());
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100363 }
364
David Srbecky93bd3612018-07-02 19:30:18 +0100365 BitTableRange<InlineInfo> GetInlineInfosOf(StackMap stack_map) const {
David Srbecky052f8ca2018-04-26 15:42:54 +0100366 uint32_t index = stack_map.GetInlineInfoIndex();
David Srbecky6e69e522018-06-03 12:00:14 +0100367 if (index != StackMap::kNoValue) {
David Srbecky93bd3612018-07-02 19:30:18 +0100368 auto begin = inline_infos_.begin() + index;
369 auto end = begin;
370 while ((*end++).GetIsLast() == InlineInfo::kMore) { }
371 return BitTableRange<InlineInfo>(begin, end);
372 } else {
373 return BitTableRange<InlineInfo>();
David Srbecky6e69e522018-06-03 12:00:14 +0100374 }
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100375 }
376
David Srbecky052f8ca2018-04-26 15:42:54 +0100377 StackMap GetStackMapForDexPc(uint32_t dex_pc) const {
David Srbecky93bd3612018-07-02 19:30:18 +0100378 for (StackMap stack_map : stack_maps_) {
David Srbecky50fac062018-06-13 18:55:35 +0100379 if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() != StackMap::Kind::Debug) {
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100380 return stack_map;
381 }
382 }
David Srbeckya45a85c2018-06-21 16:03:12 +0100383 return stack_maps_.GetInvalidRow();
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100384 }
385
David Srbecky50fac062018-06-13 18:55:35 +0100386 // Searches the stack map list backwards because catch stack maps are stored at the end.
David Srbecky052f8ca2018-04-26 15:42:54 +0100387 StackMap GetCatchStackMapForDexPc(uint32_t dex_pc) const {
388 for (size_t i = GetNumberOfStackMaps(); i > 0; --i) {
389 StackMap stack_map = GetStackMapAt(i - 1);
David Srbecky50fac062018-06-13 18:55:35 +0100390 if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() == StackMap::Kind::Catch) {
David Brazdil77a48ae2015-09-15 12:34:04 +0000391 return stack_map;
392 }
393 }
David Srbeckya45a85c2018-06-21 16:03:12 +0100394 return stack_maps_.GetInvalidRow();
David Brazdil77a48ae2015-09-15 12:34:04 +0000395 }
396
David Srbecky052f8ca2018-04-26 15:42:54 +0100397 StackMap GetOsrStackMapForDexPc(uint32_t dex_pc) const {
David Srbecky93bd3612018-07-02 19:30:18 +0100398 for (StackMap stack_map : stack_maps_) {
David Srbecky50fac062018-06-13 18:55:35 +0100399 if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() == StackMap::Kind::OSR) {
400 return stack_map;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000401 }
402 }
David Srbeckya45a85c2018-06-21 16:03:12 +0100403 return stack_maps_.GetInvalidRow();
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000404 }
405
David Srbecky0b4e5a32018-06-11 16:25:29 +0100406 StackMap GetStackMapForNativePcOffset(uint32_t pc, InstructionSet isa = kRuntimeISA) const;
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100407
David Srbecky71ec1cc2018-05-18 15:57:25 +0100408 // Dump this CodeInfo object on `vios`.
409 // `code_offset` is the (absolute) native PC of the compiled method.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100410 void Dump(VariableIndentationOutputStream* vios,
Roland Levillainf2650d12015-05-28 14:53:28 +0100411 uint32_t code_offset,
David Srbecky71ec1cc2018-05-18 15:57:25 +0100412 bool verbose,
David Srbecky8cd54542018-07-15 23:58:44 +0100413 InstructionSet instruction_set) const;
Nicolas Geoffray004c2302015-03-20 10:06:38 +0000414
David Srbecky86decb62018-06-05 06:41:10 +0100415 // Accumulate code info size statistics into the given Stats tree.
416 void AddSizeStats(/*out*/ Stats* parent) const;
417
David Srbeckyf6ba5b32018-06-23 22:05:49 +0100418 ALWAYS_INLINE static QuickMethodFrameInfo DecodeFrameInfo(const uint8_t* data) {
David Srbecky3aaaa212018-07-30 16:46:53 +0100419 BitMemoryReader reader(data);
David Srbeckyf6ba5b32018-06-23 22:05:49 +0100420 return QuickMethodFrameInfo(
David Srbecky3aaaa212018-07-30 16:46:53 +0100421 DecodeVarintBits(reader) * kStackAlignment, // Decode packed_frame_size_ and unpack.
422 DecodeVarintBits(reader), // core_spill_mask_.
423 DecodeVarintBits(reader)); // fp_spill_mask_.
David Srbeckyf6ba5b32018-06-23 22:05:49 +0100424 }
425
David Srbeckyb73323c2018-07-15 23:58:44 +0100426 typedef std::map<BitMemoryRegion, uint32_t, BitMemoryRegion::Less> DedupeMap;
427
428 // Copy CodeInfo data while de-duplicating the internal bit tables.
429 // The 'out' vector must be reused between Dedupe calls (it does not have to be empty).
430 // The 'dedupe_map' stores the bit offsets of bit tables within the 'out' vector.
431 // It returns the byte offset of the copied CodeInfo within the 'out' vector.
432 static size_t Dedupe(std::vector<uint8_t>* out,
433 const uint8_t* in,
434 /*inout*/ DedupeMap* dedupe_map);
435
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100436 private:
David Srbecky0b4e5a32018-06-11 16:25:29 +0100437 // Returns lower bound (fist stack map which has pc greater or equal than the desired one).
438 // It ignores catch stack maps at the end (it is the same as if they had maximum pc value).
439 BitTable<StackMap>::const_iterator BinarySearchNativePc(uint32_t packed_pc) const;
440
David Srbecky6de88332018-06-03 12:00:11 +0100441 // Scan backward to determine dex register locations at given stack map.
442 void DecodeDexRegisterMap(uint32_t stack_map_index,
443 uint32_t first_dex_register,
444 /*out*/ DexRegisterMap* map) const;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000445
David Srbecky6ee06e92018-07-25 21:45:54 +0100446 void Decode(const uint8_t* data, DecodeFlags flags);
David Srbecky052f8ca2018-04-26 15:42:54 +0100447
David Srbecky3aaaa212018-07-30 16:46:53 +0100448 uint32_t packed_frame_size_; // Frame size in kStackAlignment units.
David Srbeckyf6ba5b32018-06-23 22:05:49 +0100449 uint32_t core_spill_mask_;
450 uint32_t fp_spill_mask_;
451 uint32_t number_of_dex_registers_;
David Srbeckycf7833e2018-06-14 16:45:22 +0100452 BitTable<StackMap> stack_maps_;
David Srbecky6ee06e92018-07-25 21:45:54 +0100453 BitTable<InlineInfo> inline_infos_;
David Srbecky8cd54542018-07-15 23:58:44 +0100454 BitTable<MethodInfo> method_infos_;
David Srbeckycf7833e2018-06-14 16:45:22 +0100455 BitTable<RegisterMask> register_masks_;
456 BitTable<MaskInfo> stack_masks_;
David Srbeckycf7833e2018-06-14 16:45:22 +0100457 BitTable<MaskInfo> dex_register_masks_;
458 BitTable<DexRegisterMapInfo> dex_register_maps_;
459 BitTable<DexRegisterInfo> dex_register_catalog_;
David Srbecky6ee06e92018-07-25 21:45:54 +0100460 uint32_t size_in_bits_ = 0;
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100461};
462
Roland Levillain1c1da432015-07-16 11:54:44 +0100463#undef ELEMENT_BYTE_OFFSET_AFTER
464#undef ELEMENT_BIT_OFFSET_AFTER
465
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100466} // namespace art
467
468#endif // ART_RUNTIME_STACK_MAP_H_