blob: 87133cf59c2b075d405a04aecafc5f8e806097a1 [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 Srbecky42deda82018-08-10 11:23:27 +0100131 BIT_TABLE_HEADER(StackMap)
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 Srbecky42deda82018-08-10 11:23:27 +0100177 BIT_TABLE_HEADER(InlineInfo)
David Srbeckyd97e0822018-06-03 12:00:24 +0100178 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 Srbecky42deda82018-08-10 11:23:27 +0100204class StackMask : public BitTableAccessor<1> {
David Srbecky86decb62018-06-05 06:41:10 +0100205 public:
David Srbecky42deda82018-08-10 11:23:27 +0100206 BIT_TABLE_HEADER(StackMask)
207 BIT_TABLE_COLUMN(0, Mask)
208};
209
210class DexRegisterMask : public BitTableAccessor<1> {
211 public:
212 BIT_TABLE_HEADER(DexRegisterMask)
David Srbecky86decb62018-06-05 06:41:10 +0100213 BIT_TABLE_COLUMN(0, Mask)
214};
215
David Srbeckycf7833e2018-06-14 16:45:22 +0100216class DexRegisterMapInfo : public BitTableAccessor<1> {
David Srbecky86decb62018-06-05 06:41:10 +0100217 public:
David Srbecky42deda82018-08-10 11:23:27 +0100218 BIT_TABLE_HEADER(DexRegisterMapInfo)
David Srbecky86decb62018-06-05 06:41:10 +0100219 BIT_TABLE_COLUMN(0, CatalogueIndex)
220};
221
David Srbeckycf7833e2018-06-14 16:45:22 +0100222class DexRegisterInfo : public BitTableAccessor<2> {
David Srbecky71ec1cc2018-05-18 15:57:25 +0100223 public:
David Srbecky42deda82018-08-10 11:23:27 +0100224 BIT_TABLE_HEADER(DexRegisterInfo)
David Srbeckyd97e0822018-06-03 12:00:24 +0100225 BIT_TABLE_COLUMN(0, Kind)
226 BIT_TABLE_COLUMN(1, PackedValue)
David Srbecky71ec1cc2018-05-18 15:57:25 +0100227
228 ALWAYS_INLINE DexRegisterLocation GetLocation() const {
David Srbeckyd97e0822018-06-03 12:00:24 +0100229 DexRegisterLocation::Kind kind = static_cast<DexRegisterLocation::Kind>(GetKind());
230 return DexRegisterLocation(kind, UnpackValue(kind, GetPackedValue()));
David Srbecky71ec1cc2018-05-18 15:57:25 +0100231 }
232
233 static uint32_t PackValue(DexRegisterLocation::Kind kind, uint32_t value) {
234 uint32_t packed_value = value;
235 if (kind == DexRegisterLocation::Kind::kInStack) {
236 DCHECK(IsAligned<kFrameSlotSize>(packed_value));
237 packed_value /= kFrameSlotSize;
238 }
239 return packed_value;
240 }
241
242 static uint32_t UnpackValue(DexRegisterLocation::Kind kind, uint32_t packed_value) {
243 uint32_t value = packed_value;
244 if (kind == DexRegisterLocation::Kind::kInStack) {
245 value *= kFrameSlotSize;
246 }
247 return value;
248 }
249};
250
David Srbecky4b59d102018-05-29 21:46:10 +0000251// Register masks tend to have many trailing zero bits (caller-saves are usually not encoded),
252// therefore it is worth encoding the mask as value+shift.
David Srbeckycf7833e2018-06-14 16:45:22 +0100253class RegisterMask : public BitTableAccessor<2> {
David Srbecky4b59d102018-05-29 21:46:10 +0000254 public:
David Srbecky42deda82018-08-10 11:23:27 +0100255 BIT_TABLE_HEADER(RegisterMask)
David Srbeckyd97e0822018-06-03 12:00:24 +0100256 BIT_TABLE_COLUMN(0, Value)
257 BIT_TABLE_COLUMN(1, Shift)
David Srbecky4b59d102018-05-29 21:46:10 +0000258
259 ALWAYS_INLINE uint32_t GetMask() const {
David Srbeckyd97e0822018-06-03 12:00:24 +0100260 return GetValue() << GetShift();
David Srbecky4b59d102018-05-29 21:46:10 +0000261 }
262};
263
David Srbecky8cd54542018-07-15 23:58:44 +0100264// Method indices are not very dedup friendly.
265// Separating them greatly improves dedup efficiency of the other tables.
266class MethodInfo : public BitTableAccessor<1> {
267 public:
David Srbecky42deda82018-08-10 11:23:27 +0100268 BIT_TABLE_HEADER(MethodInfo)
David Srbecky8cd54542018-07-15 23:58:44 +0100269 BIT_TABLE_COLUMN(0, MethodIndex)
270};
271
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100272/**
273 * Wrapper around all compiler information collected for a method.
David Srbecky71ec1cc2018-05-18 15:57:25 +0100274 * See the Decode method at the end for the precise binary format.
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100275 */
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100276class CodeInfo {
277 public:
David Srbeckyd1606412018-07-31 15:05:14 +0100278 class Deduper {
279 public:
280 explicit Deduper(std::vector<uint8_t>* output) : writer_(output) {
281 DCHECK_EQ(output->size(), 0u);
282 }
283
284 // Copy CodeInfo into output while de-duplicating the internal bit tables.
285 // It returns the byte offset of the copied CodeInfo within the output.
286 size_t Dedupe(const uint8_t* code_info);
287
288 private:
David Srbeckyd1606412018-07-31 15:05:14 +0100289 BitMemoryWriter<std::vector<uint8_t>> writer_;
290
291 // Deduplicate at BitTable level. The value is bit offset within the output.
292 std::map<BitMemoryRegion, uint32_t, BitMemoryRegion::Less> dedupe_map_;
293 };
294
David Srbecky6ee06e92018-07-25 21:45:54 +0100295 enum DecodeFlags {
David Srbecky42deda82018-08-10 11:23:27 +0100296 AllTables = 0,
David Srbeckya2d29a32018-08-03 11:06:38 +0100297 // Limits the decoding only to the data needed by GC.
298 GcMasksOnly = 1,
David Srbecky6ee06e92018-07-25 21:45:54 +0100299 // Limits the decoding only to the main stack map table and inline info table.
300 // This is sufficient for many use cases and makes the header decoding faster.
David Srbeckya2d29a32018-08-03 11:06:38 +0100301 InlineInfoOnly = 2,
David Srbecky6ee06e92018-07-25 21:45:54 +0100302 };
303
David Srbecky2259f1c2019-01-16 23:18:30 +0000304 CodeInfo() {}
305
David Srbecky42deda82018-08-10 11:23:27 +0100306 explicit CodeInfo(const uint8_t* data, DecodeFlags flags = AllTables) {
David Srbecky6ee06e92018-07-25 21:45:54 +0100307 Decode(reinterpret_cast<const uint8_t*>(data), flags);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100308 }
309
David Srbecky42deda82018-08-10 11:23:27 +0100310 explicit CodeInfo(const OatQuickMethodHeader* header, DecodeFlags flags = AllTables);
Nicolas Geoffray896f8f72015-03-30 15:44:25 +0100311
David Srbecky052f8ca2018-04-26 15:42:54 +0100312 size_t Size() const {
David Srbeckya38e6cf2018-06-26 18:13:49 +0100313 return BitsToBytesRoundUp(size_in_bits_);
Roland Levillaina552e1c2015-03-26 15:01:03 +0000314 }
315
David Srbecky93bd3612018-07-02 19:30:18 +0100316 ALWAYS_INLINE const BitTable<StackMap>& GetStackMaps() const {
317 return stack_maps_;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100318 }
319
David Srbecky052f8ca2018-04-26 15:42:54 +0100320 ALWAYS_INLINE StackMap GetStackMapAt(size_t index) const {
David Srbeckycf7833e2018-06-14 16:45:22 +0100321 return stack_maps_.GetRow(index);
David Srbecky45aa5982016-03-18 02:15:09 +0000322 }
323
David Srbecky052f8ca2018-04-26 15:42:54 +0100324 BitMemoryRegion GetStackMask(size_t index) const {
David Srbecky4b59d102018-05-29 21:46:10 +0000325 return stack_masks_.GetBitMemoryRegion(index);
Mathieu Chartier1a20b682017-01-31 14:25:16 -0800326 }
327
David Srbecky052f8ca2018-04-26 15:42:54 +0100328 BitMemoryRegion GetStackMaskOf(const StackMap& stack_map) const {
David Srbecky4b59d102018-05-29 21:46:10 +0000329 uint32_t index = stack_map.GetStackMaskIndex();
330 return (index == StackMap::kNoValue) ? BitMemoryRegion() : GetStackMask(index);
Mathieu Chartier1a20b682017-01-31 14:25:16 -0800331 }
332
David Srbecky052f8ca2018-04-26 15:42:54 +0100333 uint32_t GetRegisterMaskOf(const StackMap& stack_map) const {
David Srbecky4b59d102018-05-29 21:46:10 +0000334 uint32_t index = stack_map.GetRegisterMaskIndex();
David Srbeckycf7833e2018-06-14 16:45:22 +0100335 return (index == StackMap::kNoValue) ? 0 : register_masks_.GetRow(index).GetMask();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100336 }
337
David Srbecky052f8ca2018-04-26 15:42:54 +0100338 uint32_t GetNumberOfLocationCatalogEntries() const {
David Srbecky71ec1cc2018-05-18 15:57:25 +0100339 return dex_register_catalog_.NumRows();
Roland Levillaina552e1c2015-03-26 15:01:03 +0000340 }
341
David Srbecky71ec1cc2018-05-18 15:57:25 +0100342 ALWAYS_INLINE DexRegisterLocation GetDexRegisterCatalogEntry(size_t index) const {
David Srbecky6de88332018-06-03 12:00:11 +0100343 return (index == StackMap::kNoValue)
344 ? DexRegisterLocation::None()
David Srbeckycf7833e2018-06-14 16:45:22 +0100345 : dex_register_catalog_.GetRow(index).GetLocation();
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100346 }
347
David Srbecky93bd3612018-07-02 19:30:18 +0100348 bool HasInlineInfo() const {
349 return inline_infos_.NumRows() > 0;
350 }
351
David Srbecky052f8ca2018-04-26 15:42:54 +0100352 uint32_t GetNumberOfStackMaps() const {
353 return stack_maps_.NumRows();
Nicolas Geoffray6530baf2015-05-26 15:22:58 +0100354 }
355
David Srbecky8cd54542018-07-15 23:58:44 +0100356 uint32_t GetMethodIndexOf(InlineInfo inline_info) const {
357 return method_infos_.GetRow(inline_info.GetMethodInfoIndex()).GetMethodIndex();
358 }
359
David Srbeckyfd89b072018-06-03 12:00:22 +0100360 ALWAYS_INLINE DexRegisterMap GetDexRegisterMapOf(StackMap stack_map) const {
David Srbecky6de88332018-06-03 12:00:11 +0100361 if (stack_map.HasDexRegisterMap()) {
362 DexRegisterMap map(number_of_dex_registers_, DexRegisterLocation::Invalid());
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700363 DecodeDexRegisterMap(stack_map.Row(), /* first_dex_register= */ 0, &map);
David Srbecky6de88332018-06-03 12:00:11 +0100364 return map;
365 }
366 return DexRegisterMap(0, DexRegisterLocation::None());
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100367 }
368
David Srbecky93bd3612018-07-02 19:30:18 +0100369 ALWAYS_INLINE DexRegisterMap GetInlineDexRegisterMapOf(StackMap stack_map,
370 InlineInfo inline_info) const {
David Srbecky6de88332018-06-03 12:00:11 +0100371 if (stack_map.HasDexRegisterMap()) {
David Srbecky93bd3612018-07-02 19:30:18 +0100372 DCHECK(stack_map.HasInlineInfoIndex());
373 uint32_t depth = inline_info.Row() - stack_map.GetInlineInfoIndex();
David Srbecky6de88332018-06-03 12:00:11 +0100374 // The register counts are commutative and include all outer levels.
375 // This allows us to determine the range [first, last) in just two lookups.
376 // If we are at depth 0 (the first inlinee), the count from the main method is used.
David Srbecky93bd3612018-07-02 19:30:18 +0100377 uint32_t first = (depth == 0)
378 ? number_of_dex_registers_
379 : inline_infos_.GetRow(inline_info.Row() - 1).GetNumberOfDexRegisters();
380 uint32_t last = inline_info.GetNumberOfDexRegisters();
David Srbecky6de88332018-06-03 12:00:11 +0100381 DexRegisterMap map(last - first, DexRegisterLocation::Invalid());
382 DecodeDexRegisterMap(stack_map.Row(), first, &map);
383 return map;
384 }
385 return DexRegisterMap(0, DexRegisterLocation::None());
Nicolas Geoffrayb1d0f3f2015-05-14 12:41:51 +0100386 }
387
David Srbecky93bd3612018-07-02 19:30:18 +0100388 BitTableRange<InlineInfo> GetInlineInfosOf(StackMap stack_map) const {
David Srbecky052f8ca2018-04-26 15:42:54 +0100389 uint32_t index = stack_map.GetInlineInfoIndex();
David Srbecky6e69e522018-06-03 12:00:14 +0100390 if (index != StackMap::kNoValue) {
David Srbecky93bd3612018-07-02 19:30:18 +0100391 auto begin = inline_infos_.begin() + index;
392 auto end = begin;
393 while ((*end++).GetIsLast() == InlineInfo::kMore) { }
394 return BitTableRange<InlineInfo>(begin, end);
395 } else {
396 return BitTableRange<InlineInfo>();
David Srbecky6e69e522018-06-03 12:00:14 +0100397 }
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100398 }
399
David Srbecky052f8ca2018-04-26 15:42:54 +0100400 StackMap GetStackMapForDexPc(uint32_t dex_pc) const {
David Srbecky93bd3612018-07-02 19:30:18 +0100401 for (StackMap stack_map : stack_maps_) {
David Srbecky50fac062018-06-13 18:55:35 +0100402 if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() != StackMap::Kind::Debug) {
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100403 return stack_map;
404 }
405 }
David Srbeckya45a85c2018-06-21 16:03:12 +0100406 return stack_maps_.GetInvalidRow();
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100407 }
408
David Srbecky50fac062018-06-13 18:55:35 +0100409 // Searches the stack map list backwards because catch stack maps are stored at the end.
David Srbecky052f8ca2018-04-26 15:42:54 +0100410 StackMap GetCatchStackMapForDexPc(uint32_t dex_pc) const {
411 for (size_t i = GetNumberOfStackMaps(); i > 0; --i) {
412 StackMap stack_map = GetStackMapAt(i - 1);
David Srbecky50fac062018-06-13 18:55:35 +0100413 if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() == StackMap::Kind::Catch) {
David Brazdil77a48ae2015-09-15 12:34:04 +0000414 return stack_map;
415 }
416 }
David Srbeckya45a85c2018-06-21 16:03:12 +0100417 return stack_maps_.GetInvalidRow();
David Brazdil77a48ae2015-09-15 12:34:04 +0000418 }
419
David Srbecky052f8ca2018-04-26 15:42:54 +0100420 StackMap GetOsrStackMapForDexPc(uint32_t dex_pc) const {
David Srbecky93bd3612018-07-02 19:30:18 +0100421 for (StackMap stack_map : stack_maps_) {
David Srbecky50fac062018-06-13 18:55:35 +0100422 if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() == StackMap::Kind::OSR) {
423 return stack_map;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000424 }
425 }
David Srbeckya45a85c2018-06-21 16:03:12 +0100426 return stack_maps_.GetInvalidRow();
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000427 }
428
David Srbecky0b4e5a32018-06-11 16:25:29 +0100429 StackMap GetStackMapForNativePcOffset(uint32_t pc, InstructionSet isa = kRuntimeISA) const;
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100430
David Srbecky71ec1cc2018-05-18 15:57:25 +0100431 // Dump this CodeInfo object on `vios`.
432 // `code_offset` is the (absolute) native PC of the compiled method.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100433 void Dump(VariableIndentationOutputStream* vios,
Roland Levillainf2650d12015-05-28 14:53:28 +0100434 uint32_t code_offset,
David Srbecky71ec1cc2018-05-18 15:57:25 +0100435 bool verbose,
David Srbecky8cd54542018-07-15 23:58:44 +0100436 InstructionSet instruction_set) const;
Nicolas Geoffray004c2302015-03-20 10:06:38 +0000437
David Srbecky86decb62018-06-05 06:41:10 +0100438 // Accumulate code info size statistics into the given Stats tree.
David Srbecky42deda82018-08-10 11:23:27 +0100439 static void CollectSizeStats(const uint8_t* code_info, /*out*/ Stats* parent);
David Srbecky86decb62018-06-05 06:41:10 +0100440
David Srbeckyf6ba5b32018-06-23 22:05:49 +0100441 ALWAYS_INLINE static QuickMethodFrameInfo DecodeFrameInfo(const uint8_t* data) {
David Srbecky3aaaa212018-07-30 16:46:53 +0100442 BitMemoryReader reader(data);
David Srbeckyf6ba5b32018-06-23 22:05:49 +0100443 return QuickMethodFrameInfo(
David Srbecky0c3aa312018-08-03 14:52:32 +0100444 reader.ReadVarint() * kStackAlignment, // Decode packed_frame_size_ and unpack.
445 reader.ReadVarint(), // core_spill_mask_.
446 reader.ReadVarint()); // fp_spill_mask_.
David Srbeckyf6ba5b32018-06-23 22:05:49 +0100447 }
448
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100449 private:
David Srbecky0b4e5a32018-06-11 16:25:29 +0100450 // Returns lower bound (fist stack map which has pc greater or equal than the desired one).
451 // It ignores catch stack maps at the end (it is the same as if they had maximum pc value).
452 BitTable<StackMap>::const_iterator BinarySearchNativePc(uint32_t packed_pc) const;
453
David Srbecky6de88332018-06-03 12:00:11 +0100454 // Scan backward to determine dex register locations at given stack map.
455 void DecodeDexRegisterMap(uint32_t stack_map_index,
456 uint32_t first_dex_register,
457 /*out*/ DexRegisterMap* map) const;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000458
David Srbecky6ee06e92018-07-25 21:45:54 +0100459 void Decode(const uint8_t* data, DecodeFlags flags);
David Srbecky052f8ca2018-04-26 15:42:54 +0100460
David Srbecky42deda82018-08-10 11:23:27 +0100461 // Invokes the callback with member pointer of each header field.
462 template<typename Callback>
463 ALWAYS_INLINE static void ForEachHeaderField(Callback callback) {
464 callback(&CodeInfo::packed_frame_size_);
465 callback(&CodeInfo::core_spill_mask_);
466 callback(&CodeInfo::fp_spill_mask_);
467 callback(&CodeInfo::number_of_dex_registers_);
468 }
469
470 // Invokes the callback with member pointer of each BitTable field.
471 template<typename Callback>
472 ALWAYS_INLINE static void ForEachBitTableField(Callback callback, DecodeFlags flags = AllTables) {
473 callback(&CodeInfo::stack_maps_);
474 callback(&CodeInfo::register_masks_);
475 callback(&CodeInfo::stack_masks_);
476 if (flags & DecodeFlags::GcMasksOnly) {
477 return;
478 }
479 callback(&CodeInfo::inline_infos_);
480 callback(&CodeInfo::method_infos_);
481 if (flags & DecodeFlags::InlineInfoOnly) {
482 return;
483 }
484 callback(&CodeInfo::dex_register_masks_);
485 callback(&CodeInfo::dex_register_maps_);
486 callback(&CodeInfo::dex_register_catalog_);
487 }
488
David Srbecky2259f1c2019-01-16 23:18:30 +0000489 uint32_t packed_frame_size_ = 0; // Frame size in kStackAlignment units.
490 uint32_t core_spill_mask_ = 0;
491 uint32_t fp_spill_mask_ = 0;
492 uint32_t number_of_dex_registers_ = 0;
David Srbeckycf7833e2018-06-14 16:45:22 +0100493 BitTable<StackMap> stack_maps_;
494 BitTable<RegisterMask> register_masks_;
David Srbecky42deda82018-08-10 11:23:27 +0100495 BitTable<StackMask> stack_masks_;
David Srbeckya2d29a32018-08-03 11:06:38 +0100496 BitTable<InlineInfo> inline_infos_;
497 BitTable<MethodInfo> method_infos_;
David Srbecky42deda82018-08-10 11:23:27 +0100498 BitTable<DexRegisterMask> dex_register_masks_;
David Srbeckycf7833e2018-06-14 16:45:22 +0100499 BitTable<DexRegisterMapInfo> dex_register_maps_;
500 BitTable<DexRegisterInfo> dex_register_catalog_;
David Srbecky6ee06e92018-07-25 21:45:54 +0100501 uint32_t size_in_bits_ = 0;
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100502};
503
Roland Levillain1c1da432015-07-16 11:54:44 +0100504#undef ELEMENT_BYTE_OFFSET_AFTER
505#undef ELEMENT_BIT_OFFSET_AFTER
506
Nicolas Geoffray99ea58c2014-07-02 15:08:17 +0100507} // namespace art
508
509#endif // ART_RUNTIME_STACK_MAP_H_