Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 1 | /* |
| 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 Gampe | 69489fa | 2017-06-08 18:03:25 -0700 | [diff] [blame] | 20 | #include <limits> |
| 21 | |
David Srbecky | f6ba5b3 | 2018-06-23 22:05:49 +0100 | [diff] [blame] | 22 | #include "arch/instruction_set.h" |
David Sehr | 1ce2b3b | 2018-04-05 11:02:03 -0700 | [diff] [blame] | 23 | #include "base/bit_memory_region.h" |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 24 | #include "base/bit_table.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 25 | #include "base/bit_utils.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 26 | #include "base/bit_vector.h" |
David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 27 | #include "base/leb128.h" |
David Sehr | 1ce2b3b | 2018-04-05 11:02:03 -0700 | [diff] [blame] | 28 | #include "base/memory_region.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 29 | #include "dex/dex_file_types.h" |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 30 | #include "dex_register_location.h" |
David Srbecky | f6ba5b3 | 2018-06-23 22:05:49 +0100 | [diff] [blame] | 31 | #include "quick/quick_method_frame_info.h" |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 32 | |
| 33 | namespace art { |
| 34 | |
David Srbecky | f6ba5b3 | 2018-06-23 22:05:49 +0100 | [diff] [blame] | 35 | class OatQuickMethodHeader; |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 36 | class VariableIndentationOutputStream; |
| 37 | |
Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 38 | // 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 Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 41 | static constexpr ssize_t kFrameSlotSize = 4; |
Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 42 | |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 43 | // 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). |
| 47 | static constexpr size_t kMaxDexRegisterMapSearchDistance = 32; |
| 48 | |
Nicolas Geoffray | 5d37c15 | 2017-01-12 13:25:19 +0000 | [diff] [blame] | 49 | class ArtMethod; |
Nicolas Geoffray | 004c230 | 2015-03-20 10:06:38 +0000 | [diff] [blame] | 50 | class CodeInfo; |
David Srbecky | 86decb6 | 2018-06-05 06:41:10 +0100 | [diff] [blame] | 51 | class Stats; |
Nicolas Geoffray | 004c230 | 2015-03-20 10:06:38 +0000 | [diff] [blame] | 52 | |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 53 | std::ostream& operator<<(std::ostream& stream, const DexRegisterLocation& reg); |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 54 | |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 55 | // 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 Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 58 | // TODO: Replace this with generic purpose "small-vector" implementation. |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 59 | class DexRegisterMap { |
| 60 | public: |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 61 | using iterator = DexRegisterLocation*; |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 62 | using const_iterator = const DexRegisterLocation*; |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 63 | |
| 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 Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 66 | if (count_ <= kSmallCount) { |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 67 | std::fill_n(regs_small_.begin(), count, value); |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 68 | } else { |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 69 | regs_large_.resize(count, value); |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 70 | } |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 71 | } |
| 72 | |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 73 | DexRegisterLocation* data() { |
| 74 | return count_ <= kSmallCount ? regs_small_.data() : regs_large_.data(); |
| 75 | } |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 76 | const DexRegisterLocation* data() const { |
| 77 | return count_ <= kSmallCount ? regs_small_.data() : regs_large_.data(); |
| 78 | } |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 79 | |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 80 | iterator begin() { return data(); } |
| 81 | iterator end() { return data() + count_; } |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 82 | const_iterator begin() const { return data(); } |
| 83 | const_iterator end() const { return data() + count_; } |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 84 | size_t size() const { return count_; } |
David Srbecky | fd89b07 | 2018-06-03 12:00:22 +0100 | [diff] [blame] | 85 | bool empty() const { return count_ == 0; } |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 86 | |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 87 | DexRegisterLocation& operator[](size_t index) { |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 88 | DCHECK_LT(index, count_); |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 89 | return data()[index]; |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 90 | } |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 91 | const DexRegisterLocation& operator[](size_t index) const { |
| 92 | DCHECK_LT(index, count_); |
| 93 | return data()[index]; |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 94 | } |
| 95 | |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 96 | size_t GetNumberOfLiveDexRegisters() const { |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 97 | return std::count_if(begin(), end(), [](auto& loc) { return loc.IsLive(); }); |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 98 | } |
| 99 | |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 100 | bool HasAnyLiveDexRegisters() const { |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 101 | return std::any_of(begin(), end(), [](auto& loc) { return loc.IsLive(); }); |
David Srbecky | 21d45b4 | 2018-05-30 06:35:05 +0100 | [diff] [blame] | 102 | } |
| 103 | |
David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 104 | void Dump(VariableIndentationOutputStream* vios) const; |
| 105 | |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 106 | private: |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 107 | // 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 Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 113 | }; |
| 114 | |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 115 | /** |
| 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 Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 122 | */ |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 123 | class StackMap : public BitTableAccessor<8> { |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 124 | public: |
David Srbecky | 50fac06 | 2018-06-13 18:55:35 +0100 | [diff] [blame] | 125 | enum Kind { |
| 126 | Default = -1, |
| 127 | Catch = 0, |
| 128 | OSR = 1, |
| 129 | Debug = 2, |
| 130 | }; |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 131 | BIT_TABLE_HEADER(StackMap) |
David Srbecky | 50fac06 | 2018-06-13 18:55:35 +0100 | [diff] [blame] | 132 | 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 Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 140 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 141 | ALWAYS_INLINE uint32_t GetNativePcOffset(InstructionSet instruction_set) const { |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 142 | return UnpackNativePc(GetPackedNativePc(), instruction_set); |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 143 | } |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 144 | |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 145 | ALWAYS_INLINE bool HasInlineInfo() const { |
| 146 | return HasInlineInfoIndex(); |
| 147 | } |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 148 | |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 149 | ALWAYS_INLINE bool HasDexRegisterMap() const { |
| 150 | return HasDexRegisterMapIndex(); |
| 151 | } |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 152 | |
David Srbecky | d02b23f | 2018-05-29 23:27:22 +0100 | [diff] [blame] | 153 | static uint32_t PackNativePc(uint32_t native_pc, InstructionSet isa) { |
David Srbecky | d775f96 | 2018-05-30 18:12:52 +0100 | [diff] [blame] | 154 | DCHECK_ALIGNED_PARAM(native_pc, GetInstructionSetInstructionAlignment(isa)); |
David Srbecky | d02b23f | 2018-05-29 23:27:22 +0100 | [diff] [blame] | 155 | 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 Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 164 | void Dump(VariableIndentationOutputStream* vios, |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 165 | const CodeInfo& code_info, |
| 166 | uint32_t code_offset, |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 167 | InstructionSet instruction_set) const; |
David Srbecky | 61b28a1 | 2016-02-25 21:55:03 +0000 | [diff] [blame] | 168 | }; |
| 169 | |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 170 | /** |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 171 | * 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 Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 174 | */ |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 175 | class InlineInfo : public BitTableAccessor<6> { |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 176 | public: |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 177 | BIT_TABLE_HEADER(InlineInfo) |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 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 Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 183 | BIT_TABLE_COLUMN(5, NumberOfDexRegisters) // Includes outer levels and the main method. |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 184 | BIT_TABLE_COLUMN(6, DexRegisterMapIndex) |
| 185 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 186 | static constexpr uint32_t kLast = -1; |
| 187 | static constexpr uint32_t kMore = 0; |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 188 | |
David Srbecky | 6e69e52 | 2018-06-03 12:00:14 +0100 | [diff] [blame] | 189 | bool EncodesArtMethod() const { |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 190 | return HasArtMethodLo(); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 191 | } |
| 192 | |
David Srbecky | 6e69e52 | 2018-06-03 12:00:14 +0100 | [diff] [blame] | 193 | ArtMethod* GetArtMethod() const { |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 194 | uint64_t lo = GetArtMethodLo(); |
| 195 | uint64_t hi = GetArtMethodHi(); |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 196 | return reinterpret_cast<ArtMethod*>((hi << 32) | lo); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 199 | void Dump(VariableIndentationOutputStream* vios, |
David Srbecky | 61b28a1 | 2016-02-25 21:55:03 +0000 | [diff] [blame] | 200 | const CodeInfo& info, |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 201 | const StackMap& stack_map) const; |
Mathieu Chartier | 575d3e6 | 2017-02-06 11:00:40 -0800 | [diff] [blame] | 202 | }; |
| 203 | |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 204 | class StackMask : public BitTableAccessor<1> { |
David Srbecky | 86decb6 | 2018-06-05 06:41:10 +0100 | [diff] [blame] | 205 | public: |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 206 | BIT_TABLE_HEADER(StackMask) |
| 207 | BIT_TABLE_COLUMN(0, Mask) |
| 208 | }; |
| 209 | |
| 210 | class DexRegisterMask : public BitTableAccessor<1> { |
| 211 | public: |
| 212 | BIT_TABLE_HEADER(DexRegisterMask) |
David Srbecky | 86decb6 | 2018-06-05 06:41:10 +0100 | [diff] [blame] | 213 | BIT_TABLE_COLUMN(0, Mask) |
| 214 | }; |
| 215 | |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 216 | class DexRegisterMapInfo : public BitTableAccessor<1> { |
David Srbecky | 86decb6 | 2018-06-05 06:41:10 +0100 | [diff] [blame] | 217 | public: |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 218 | BIT_TABLE_HEADER(DexRegisterMapInfo) |
David Srbecky | 86decb6 | 2018-06-05 06:41:10 +0100 | [diff] [blame] | 219 | BIT_TABLE_COLUMN(0, CatalogueIndex) |
| 220 | }; |
| 221 | |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 222 | class DexRegisterInfo : public BitTableAccessor<2> { |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 223 | public: |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 224 | BIT_TABLE_HEADER(DexRegisterInfo) |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 225 | BIT_TABLE_COLUMN(0, Kind) |
| 226 | BIT_TABLE_COLUMN(1, PackedValue) |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 227 | |
| 228 | ALWAYS_INLINE DexRegisterLocation GetLocation() const { |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 229 | DexRegisterLocation::Kind kind = static_cast<DexRegisterLocation::Kind>(GetKind()); |
| 230 | return DexRegisterLocation(kind, UnpackValue(kind, GetPackedValue())); |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 231 | } |
| 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 Srbecky | 4b59d10 | 2018-05-29 21:46:10 +0000 | [diff] [blame] | 251 | // 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 Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 253 | class RegisterMask : public BitTableAccessor<2> { |
David Srbecky | 4b59d10 | 2018-05-29 21:46:10 +0000 | [diff] [blame] | 254 | public: |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 255 | BIT_TABLE_HEADER(RegisterMask) |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 256 | BIT_TABLE_COLUMN(0, Value) |
| 257 | BIT_TABLE_COLUMN(1, Shift) |
David Srbecky | 4b59d10 | 2018-05-29 21:46:10 +0000 | [diff] [blame] | 258 | |
| 259 | ALWAYS_INLINE uint32_t GetMask() const { |
David Srbecky | d97e082 | 2018-06-03 12:00:24 +0100 | [diff] [blame] | 260 | return GetValue() << GetShift(); |
David Srbecky | 4b59d10 | 2018-05-29 21:46:10 +0000 | [diff] [blame] | 261 | } |
| 262 | }; |
| 263 | |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 264 | // Method indices are not very dedup friendly. |
| 265 | // Separating them greatly improves dedup efficiency of the other tables. |
| 266 | class MethodInfo : public BitTableAccessor<1> { |
| 267 | public: |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 268 | BIT_TABLE_HEADER(MethodInfo) |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 269 | BIT_TABLE_COLUMN(0, MethodIndex) |
| 270 | }; |
| 271 | |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 272 | /** |
| 273 | * Wrapper around all compiler information collected for a method. |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 274 | * See the Decode method at the end for the precise binary format. |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 275 | */ |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 276 | class CodeInfo { |
| 277 | public: |
David Srbecky | d160641 | 2018-07-31 15:05:14 +0100 | [diff] [blame] | 278 | 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 Srbecky | d160641 | 2018-07-31 15:05:14 +0100 | [diff] [blame] | 289 | 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 Srbecky | 6ee06e9 | 2018-07-25 21:45:54 +0100 | [diff] [blame] | 295 | enum DecodeFlags { |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 296 | AllTables = 0, |
David Srbecky | a2d29a3 | 2018-08-03 11:06:38 +0100 | [diff] [blame] | 297 | // Limits the decoding only to the data needed by GC. |
| 298 | GcMasksOnly = 1, |
David Srbecky | 6ee06e9 | 2018-07-25 21:45:54 +0100 | [diff] [blame] | 299 | // 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 Srbecky | a2d29a3 | 2018-08-03 11:06:38 +0100 | [diff] [blame] | 301 | InlineInfoOnly = 2, |
David Srbecky | 6ee06e9 | 2018-07-25 21:45:54 +0100 | [diff] [blame] | 302 | }; |
| 303 | |
David Srbecky | 2259f1c | 2019-01-16 23:18:30 +0000 | [diff] [blame] | 304 | CodeInfo() {} |
| 305 | |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 306 | explicit CodeInfo(const uint8_t* data, DecodeFlags flags = AllTables) { |
David Srbecky | 6ee06e9 | 2018-07-25 21:45:54 +0100 | [diff] [blame] | 307 | Decode(reinterpret_cast<const uint8_t*>(data), flags); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 308 | } |
| 309 | |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 310 | explicit CodeInfo(const OatQuickMethodHeader* header, DecodeFlags flags = AllTables); |
Nicolas Geoffray | 896f8f7 | 2015-03-30 15:44:25 +0100 | [diff] [blame] | 311 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 312 | size_t Size() const { |
David Srbecky | a38e6cf | 2018-06-26 18:13:49 +0100 | [diff] [blame] | 313 | return BitsToBytesRoundUp(size_in_bits_); |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 314 | } |
| 315 | |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 316 | ALWAYS_INLINE const BitTable<StackMap>& GetStackMaps() const { |
| 317 | return stack_maps_; |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 318 | } |
| 319 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 320 | ALWAYS_INLINE StackMap GetStackMapAt(size_t index) const { |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 321 | return stack_maps_.GetRow(index); |
David Srbecky | 45aa598 | 2016-03-18 02:15:09 +0000 | [diff] [blame] | 322 | } |
| 323 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 324 | BitMemoryRegion GetStackMask(size_t index) const { |
David Srbecky | 4b59d10 | 2018-05-29 21:46:10 +0000 | [diff] [blame] | 325 | return stack_masks_.GetBitMemoryRegion(index); |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 326 | } |
| 327 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 328 | BitMemoryRegion GetStackMaskOf(const StackMap& stack_map) const { |
David Srbecky | 4b59d10 | 2018-05-29 21:46:10 +0000 | [diff] [blame] | 329 | uint32_t index = stack_map.GetStackMaskIndex(); |
| 330 | return (index == StackMap::kNoValue) ? BitMemoryRegion() : GetStackMask(index); |
Mathieu Chartier | 1a20b68 | 2017-01-31 14:25:16 -0800 | [diff] [blame] | 331 | } |
| 332 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 333 | uint32_t GetRegisterMaskOf(const StackMap& stack_map) const { |
David Srbecky | 4b59d10 | 2018-05-29 21:46:10 +0000 | [diff] [blame] | 334 | uint32_t index = stack_map.GetRegisterMaskIndex(); |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 335 | return (index == StackMap::kNoValue) ? 0 : register_masks_.GetRow(index).GetMask(); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 336 | } |
| 337 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 338 | uint32_t GetNumberOfLocationCatalogEntries() const { |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 339 | return dex_register_catalog_.NumRows(); |
Roland Levillain | a552e1c | 2015-03-26 15:01:03 +0000 | [diff] [blame] | 340 | } |
| 341 | |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 342 | ALWAYS_INLINE DexRegisterLocation GetDexRegisterCatalogEntry(size_t index) const { |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 343 | return (index == StackMap::kNoValue) |
| 344 | ? DexRegisterLocation::None() |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 345 | : dex_register_catalog_.GetRow(index).GetLocation(); |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 346 | } |
| 347 | |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 348 | bool HasInlineInfo() const { |
| 349 | return inline_infos_.NumRows() > 0; |
| 350 | } |
| 351 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 352 | uint32_t GetNumberOfStackMaps() const { |
| 353 | return stack_maps_.NumRows(); |
Nicolas Geoffray | 6530baf | 2015-05-26 15:22:58 +0100 | [diff] [blame] | 354 | } |
| 355 | |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 356 | uint32_t GetMethodIndexOf(InlineInfo inline_info) const { |
| 357 | return method_infos_.GetRow(inline_info.GetMethodInfoIndex()).GetMethodIndex(); |
| 358 | } |
| 359 | |
David Srbecky | fd89b07 | 2018-06-03 12:00:22 +0100 | [diff] [blame] | 360 | ALWAYS_INLINE DexRegisterMap GetDexRegisterMapOf(StackMap stack_map) const { |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 361 | if (stack_map.HasDexRegisterMap()) { |
| 362 | DexRegisterMap map(number_of_dex_registers_, DexRegisterLocation::Invalid()); |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 363 | DecodeDexRegisterMap(stack_map.Row(), /* first_dex_register= */ 0, &map); |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 364 | return map; |
| 365 | } |
| 366 | return DexRegisterMap(0, DexRegisterLocation::None()); |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 367 | } |
| 368 | |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 369 | ALWAYS_INLINE DexRegisterMap GetInlineDexRegisterMapOf(StackMap stack_map, |
| 370 | InlineInfo inline_info) const { |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 371 | if (stack_map.HasDexRegisterMap()) { |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 372 | DCHECK(stack_map.HasInlineInfoIndex()); |
| 373 | uint32_t depth = inline_info.Row() - stack_map.GetInlineInfoIndex(); |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 374 | // 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 Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 377 | 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 Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 381 | DexRegisterMap map(last - first, DexRegisterLocation::Invalid()); |
| 382 | DecodeDexRegisterMap(stack_map.Row(), first, &map); |
| 383 | return map; |
| 384 | } |
| 385 | return DexRegisterMap(0, DexRegisterLocation::None()); |
Nicolas Geoffray | b1d0f3f | 2015-05-14 12:41:51 +0100 | [diff] [blame] | 386 | } |
| 387 | |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 388 | BitTableRange<InlineInfo> GetInlineInfosOf(StackMap stack_map) const { |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 389 | uint32_t index = stack_map.GetInlineInfoIndex(); |
David Srbecky | 6e69e52 | 2018-06-03 12:00:14 +0100 | [diff] [blame] | 390 | if (index != StackMap::kNoValue) { |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 391 | 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 Srbecky | 6e69e52 | 2018-06-03 12:00:14 +0100 | [diff] [blame] | 397 | } |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 398 | } |
| 399 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 400 | StackMap GetStackMapForDexPc(uint32_t dex_pc) const { |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 401 | for (StackMap stack_map : stack_maps_) { |
David Srbecky | 50fac06 | 2018-06-13 18:55:35 +0100 | [diff] [blame] | 402 | if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() != StackMap::Kind::Debug) { |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 403 | return stack_map; |
| 404 | } |
| 405 | } |
David Srbecky | a45a85c | 2018-06-21 16:03:12 +0100 | [diff] [blame] | 406 | return stack_maps_.GetInvalidRow(); |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 407 | } |
| 408 | |
David Srbecky | 50fac06 | 2018-06-13 18:55:35 +0100 | [diff] [blame] | 409 | // Searches the stack map list backwards because catch stack maps are stored at the end. |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 410 | StackMap GetCatchStackMapForDexPc(uint32_t dex_pc) const { |
| 411 | for (size_t i = GetNumberOfStackMaps(); i > 0; --i) { |
| 412 | StackMap stack_map = GetStackMapAt(i - 1); |
David Srbecky | 50fac06 | 2018-06-13 18:55:35 +0100 | [diff] [blame] | 413 | if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() == StackMap::Kind::Catch) { |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 414 | return stack_map; |
| 415 | } |
| 416 | } |
David Srbecky | a45a85c | 2018-06-21 16:03:12 +0100 | [diff] [blame] | 417 | return stack_maps_.GetInvalidRow(); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 418 | } |
| 419 | |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 420 | StackMap GetOsrStackMapForDexPc(uint32_t dex_pc) const { |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 421 | for (StackMap stack_map : stack_maps_) { |
David Srbecky | 50fac06 | 2018-06-13 18:55:35 +0100 | [diff] [blame] | 422 | if (stack_map.GetDexPc() == dex_pc && stack_map.GetKind() == StackMap::Kind::OSR) { |
| 423 | return stack_map; |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 424 | } |
| 425 | } |
David Srbecky | a45a85c | 2018-06-21 16:03:12 +0100 | [diff] [blame] | 426 | return stack_maps_.GetInvalidRow(); |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 427 | } |
| 428 | |
David Srbecky | 0b4e5a3 | 2018-06-11 16:25:29 +0100 | [diff] [blame] | 429 | StackMap GetStackMapForNativePcOffset(uint32_t pc, InstructionSet isa = kRuntimeISA) const; |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 430 | |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 431 | // Dump this CodeInfo object on `vios`. |
| 432 | // `code_offset` is the (absolute) native PC of the compiled method. |
Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 433 | void Dump(VariableIndentationOutputStream* vios, |
Roland Levillain | f2650d1 | 2015-05-28 14:53:28 +0100 | [diff] [blame] | 434 | uint32_t code_offset, |
David Srbecky | 71ec1cc | 2018-05-18 15:57:25 +0100 | [diff] [blame] | 435 | bool verbose, |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 436 | InstructionSet instruction_set) const; |
Nicolas Geoffray | 004c230 | 2015-03-20 10:06:38 +0000 | [diff] [blame] | 437 | |
David Srbecky | 86decb6 | 2018-06-05 06:41:10 +0100 | [diff] [blame] | 438 | // Accumulate code info size statistics into the given Stats tree. |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 439 | static void CollectSizeStats(const uint8_t* code_info, /*out*/ Stats* parent); |
David Srbecky | 86decb6 | 2018-06-05 06:41:10 +0100 | [diff] [blame] | 440 | |
David Srbecky | f6ba5b3 | 2018-06-23 22:05:49 +0100 | [diff] [blame] | 441 | ALWAYS_INLINE static QuickMethodFrameInfo DecodeFrameInfo(const uint8_t* data) { |
David Srbecky | 3aaaa21 | 2018-07-30 16:46:53 +0100 | [diff] [blame] | 442 | BitMemoryReader reader(data); |
David Srbecky | 67ba872 | 2019-05-23 15:32:18 +0100 | [diff] [blame^] | 443 | uint32_t args[3]; // packed_frame_size, core_spill_mask, fp_spill_mask. |
| 444 | reader.ReadVarints(args); |
| 445 | return QuickMethodFrameInfo(args[0] * kStackAlignment, args[1], args[2]); |
David Srbecky | f6ba5b3 | 2018-06-23 22:05:49 +0100 | [diff] [blame] | 446 | } |
| 447 | |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 448 | private: |
David Srbecky | 0b4e5a3 | 2018-06-11 16:25:29 +0100 | [diff] [blame] | 449 | // Returns lower bound (fist stack map which has pc greater or equal than the desired one). |
| 450 | // It ignores catch stack maps at the end (it is the same as if they had maximum pc value). |
| 451 | BitTable<StackMap>::const_iterator BinarySearchNativePc(uint32_t packed_pc) const; |
| 452 | |
David Srbecky | 6de8833 | 2018-06-03 12:00:11 +0100 | [diff] [blame] | 453 | // Scan backward to determine dex register locations at given stack map. |
| 454 | void DecodeDexRegisterMap(uint32_t stack_map_index, |
| 455 | uint32_t first_dex_register, |
| 456 | /*out*/ DexRegisterMap* map) const; |
Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 457 | |
David Srbecky | 6ee06e9 | 2018-07-25 21:45:54 +0100 | [diff] [blame] | 458 | void Decode(const uint8_t* data, DecodeFlags flags); |
David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 459 | |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 460 | // Invokes the callback with member pointer of each header field. |
| 461 | template<typename Callback> |
| 462 | ALWAYS_INLINE static void ForEachHeaderField(Callback callback) { |
| 463 | callback(&CodeInfo::packed_frame_size_); |
| 464 | callback(&CodeInfo::core_spill_mask_); |
| 465 | callback(&CodeInfo::fp_spill_mask_); |
| 466 | callback(&CodeInfo::number_of_dex_registers_); |
| 467 | } |
| 468 | |
| 469 | // Invokes the callback with member pointer of each BitTable field. |
| 470 | template<typename Callback> |
| 471 | ALWAYS_INLINE static void ForEachBitTableField(Callback callback, DecodeFlags flags = AllTables) { |
| 472 | callback(&CodeInfo::stack_maps_); |
| 473 | callback(&CodeInfo::register_masks_); |
| 474 | callback(&CodeInfo::stack_masks_); |
| 475 | if (flags & DecodeFlags::GcMasksOnly) { |
| 476 | return; |
| 477 | } |
| 478 | callback(&CodeInfo::inline_infos_); |
| 479 | callback(&CodeInfo::method_infos_); |
| 480 | if (flags & DecodeFlags::InlineInfoOnly) { |
| 481 | return; |
| 482 | } |
| 483 | callback(&CodeInfo::dex_register_masks_); |
| 484 | callback(&CodeInfo::dex_register_maps_); |
| 485 | callback(&CodeInfo::dex_register_catalog_); |
| 486 | } |
| 487 | |
David Srbecky | 2259f1c | 2019-01-16 23:18:30 +0000 | [diff] [blame] | 488 | uint32_t packed_frame_size_ = 0; // Frame size in kStackAlignment units. |
| 489 | uint32_t core_spill_mask_ = 0; |
| 490 | uint32_t fp_spill_mask_ = 0; |
| 491 | uint32_t number_of_dex_registers_ = 0; |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 492 | BitTable<StackMap> stack_maps_; |
| 493 | BitTable<RegisterMask> register_masks_; |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 494 | BitTable<StackMask> stack_masks_; |
David Srbecky | a2d29a3 | 2018-08-03 11:06:38 +0100 | [diff] [blame] | 495 | BitTable<InlineInfo> inline_infos_; |
| 496 | BitTable<MethodInfo> method_infos_; |
David Srbecky | 42deda8 | 2018-08-10 11:23:27 +0100 | [diff] [blame] | 497 | BitTable<DexRegisterMask> dex_register_masks_; |
David Srbecky | cf7833e | 2018-06-14 16:45:22 +0100 | [diff] [blame] | 498 | BitTable<DexRegisterMapInfo> dex_register_maps_; |
| 499 | BitTable<DexRegisterInfo> dex_register_catalog_; |
David Srbecky | 6ee06e9 | 2018-07-25 21:45:54 +0100 | [diff] [blame] | 500 | uint32_t size_in_bits_ = 0; |
David Srbecky | 67ba872 | 2019-05-23 15:32:18 +0100 | [diff] [blame^] | 501 | |
| 502 | friend class StackMapStream; |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 503 | }; |
| 504 | |
Roland Levillain | 1c1da43 | 2015-07-16 11:54:44 +0100 | [diff] [blame] | 505 | #undef ELEMENT_BYTE_OFFSET_AFTER |
| 506 | #undef ELEMENT_BIT_OFFSET_AFTER |
| 507 | |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 508 | } // namespace art |
| 509 | |
| 510 | #endif // ART_RUNTIME_STACK_MAP_H_ |