Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | */ |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_DEX_FILE_H_ |
| 18 | #define ART_RUNTIME_DEX_FILE_H_ |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 19 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 20 | #include <memory> |
Elliott Hughes | 0c424cb | 2011-08-26 10:16:25 -0700 | [diff] [blame] | 21 | #include <string> |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 22 | #include <vector> |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 23 | |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 24 | #include "base/logging.h" |
Ian Rogers | 03b6eaf | 2014-10-28 09:34:57 -0700 | [diff] [blame] | 25 | #include "base/value_object.h" |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 26 | #include "dex_file_types.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 27 | #include "globals.h" |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 28 | #include "invoke_type.h" |
Jesse Wilson | 6bf1915 | 2011-09-29 13:12:33 -0400 | [diff] [blame] | 29 | #include "jni.h" |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 30 | #include "modifiers.h" |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 31 | #include "utf.h" |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 32 | |
| 33 | namespace art { |
| 34 | |
Ian Rogers | 576ca0c | 2014-06-06 15:58:22 -0700 | [diff] [blame] | 35 | class MemMap; |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 36 | class OatDexFile; |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 37 | class Signature; |
Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 38 | class StringPiece; |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 39 | class ZipArchive; |
| 40 | |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 41 | class DexFile { |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 42 | public: |
Roland Levillain | 621b5ea | 2016-05-18 11:41:33 +0100 | [diff] [blame] | 43 | // First Dex format version supporting default methods. |
Alex Light | b55f1ac | 2016-04-12 15:50:55 -0700 | [diff] [blame] | 44 | static const uint32_t kDefaultMethodsVersion = 37; |
Roland Levillain | 621b5ea | 2016-05-18 11:41:33 +0100 | [diff] [blame] | 45 | // First Dex format version enforcing class definition ordering rules. |
| 46 | static const uint32_t kClassDefinitionOrderEnforcedVersion = 37; |
| 47 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 48 | static const uint8_t kDexMagic[]; |
Narayan Kamath | 52e6650 | 2016-08-01 14:20:31 +0100 | [diff] [blame] | 49 | static constexpr size_t kNumDexVersions = 3; |
Alex Light | c496181 | 2016-03-23 10:20:41 -0700 | [diff] [blame] | 50 | static constexpr size_t kDexVersionLen = 4; |
| 51 | static const uint8_t kDexMagicVersions[kNumDexVersions][kDexVersionLen]; |
| 52 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 53 | static constexpr size_t kSha1DigestSize = 20; |
| 54 | static constexpr uint32_t kDexEndianConstant = 0x12345678; |
Carl Shapiro | 80d4dde | 2011-06-28 16:24:07 -0700 | [diff] [blame] | 55 | |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 56 | // name of the DexFile entry within a zip archive |
| 57 | static const char* kClassesDex; |
| 58 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 59 | // The value of an invalid index. |
| 60 | static const uint32_t kDexNoIndex = 0xFFFFFFFF; |
| 61 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 62 | // The value of an invalid index. |
| 63 | static const uint16_t kDexNoIndex16 = 0xFFFF; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 64 | |
Alex Light | c496181 | 2016-03-23 10:20:41 -0700 | [diff] [blame] | 65 | // The separator character in MultiDex locations. |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 66 | static constexpr char kMultiDexSeparator = ':'; |
| 67 | |
| 68 | // A string version of the previous. This is a define so that we can merge string literals in the |
| 69 | // preprocessor. |
| 70 | #define kMultiDexSeparatorString ":" |
| 71 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 72 | // Raw header_item. |
| 73 | struct Header { |
| 74 | uint8_t magic_[8]; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 75 | uint32_t checksum_; // See also location_checksum_ |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 76 | uint8_t signature_[kSha1DigestSize]; |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 77 | uint32_t file_size_; // size of entire file |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 78 | uint32_t header_size_; // offset to start of next section |
| 79 | uint32_t endian_tag_; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 80 | uint32_t link_size_; // unused |
| 81 | uint32_t link_off_; // unused |
| 82 | uint32_t map_off_; // unused |
| 83 | uint32_t string_ids_size_; // number of StringIds |
| 84 | uint32_t string_ids_off_; // file offset of StringIds array |
| 85 | uint32_t type_ids_size_; // number of TypeIds, we don't support more than 65535 |
| 86 | uint32_t type_ids_off_; // file offset of TypeIds array |
| 87 | uint32_t proto_ids_size_; // number of ProtoIds, we don't support more than 65535 |
| 88 | uint32_t proto_ids_off_; // file offset of ProtoIds array |
| 89 | uint32_t field_ids_size_; // number of FieldIds |
| 90 | uint32_t field_ids_off_; // file offset of FieldIds array |
| 91 | uint32_t method_ids_size_; // number of MethodIds |
| 92 | uint32_t method_ids_off_; // file offset of MethodIds array |
| 93 | uint32_t class_defs_size_; // number of ClassDefs |
| 94 | uint32_t class_defs_off_; // file offset of ClassDef array |
| 95 | uint32_t data_size_; // unused |
| 96 | uint32_t data_off_; // unused |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 97 | |
Andreas Gampe | 76ed99d | 2016-03-28 18:31:29 -0700 | [diff] [blame] | 98 | // Decode the dex magic version |
| 99 | uint32_t GetVersion() const; |
| 100 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 101 | private: |
| 102 | DISALLOW_COPY_AND_ASSIGN(Header); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 103 | }; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 104 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 105 | // Map item type codes. |
| 106 | enum { |
| 107 | kDexTypeHeaderItem = 0x0000, |
| 108 | kDexTypeStringIdItem = 0x0001, |
| 109 | kDexTypeTypeIdItem = 0x0002, |
| 110 | kDexTypeProtoIdItem = 0x0003, |
| 111 | kDexTypeFieldIdItem = 0x0004, |
| 112 | kDexTypeMethodIdItem = 0x0005, |
| 113 | kDexTypeClassDefItem = 0x0006, |
| 114 | kDexTypeMapList = 0x1000, |
| 115 | kDexTypeTypeList = 0x1001, |
| 116 | kDexTypeAnnotationSetRefList = 0x1002, |
| 117 | kDexTypeAnnotationSetItem = 0x1003, |
| 118 | kDexTypeClassDataItem = 0x2000, |
| 119 | kDexTypeCodeItem = 0x2001, |
| 120 | kDexTypeStringDataItem = 0x2002, |
| 121 | kDexTypeDebugInfoItem = 0x2003, |
| 122 | kDexTypeAnnotationItem = 0x2004, |
| 123 | kDexTypeEncodedArrayItem = 0x2005, |
| 124 | kDexTypeAnnotationsDirectoryItem = 0x2006, |
| 125 | }; |
| 126 | |
| 127 | struct MapItem { |
| 128 | uint16_t type_; |
| 129 | uint16_t unused_; |
| 130 | uint32_t size_; |
| 131 | uint32_t offset_; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 132 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 133 | private: |
| 134 | DISALLOW_COPY_AND_ASSIGN(MapItem); |
| 135 | }; |
| 136 | |
| 137 | struct MapList { |
| 138 | uint32_t size_; |
| 139 | MapItem list_[1]; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 140 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 141 | private: |
| 142 | DISALLOW_COPY_AND_ASSIGN(MapList); |
| 143 | }; |
| 144 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 145 | // Raw string_id_item. |
| 146 | struct StringId { |
| 147 | uint32_t string_data_off_; // offset in bytes from the base address |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 148 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 149 | private: |
| 150 | DISALLOW_COPY_AND_ASSIGN(StringId); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | // Raw type_id_item. |
| 154 | struct TypeId { |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 155 | dex::StringIndex descriptor_idx_; // index into string_ids |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 156 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 157 | private: |
| 158 | DISALLOW_COPY_AND_ASSIGN(TypeId); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 159 | }; |
| 160 | |
| 161 | // Raw field_id_item. |
| 162 | struct FieldId { |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 163 | dex::TypeIndex class_idx_; // index into type_ids_ array for defining class |
| 164 | dex::TypeIndex type_idx_; // index into type_ids_ array for field type |
| 165 | dex::StringIndex name_idx_; // index into string_ids_ array for field name |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 166 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 167 | private: |
| 168 | DISALLOW_COPY_AND_ASSIGN(FieldId); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 169 | }; |
| 170 | |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 171 | // Raw proto_id_item. |
| 172 | struct ProtoId { |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 173 | dex::StringIndex shorty_idx_; // index into string_ids array for shorty descriptor |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 174 | dex::TypeIndex return_type_idx_; // index into type_ids array for return type |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 175 | uint16_t pad_; // padding = 0 |
| 176 | uint32_t parameters_off_; // file offset to type_list for parameter types |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 177 | |
| 178 | private: |
| 179 | DISALLOW_COPY_AND_ASSIGN(ProtoId); |
| 180 | }; |
| 181 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 182 | // Raw method_id_item. |
| 183 | struct MethodId { |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 184 | dex::TypeIndex class_idx_; // index into type_ids_ array for defining class |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 185 | uint16_t proto_idx_; // index into proto_ids_ array for method prototype |
| 186 | dex::StringIndex name_idx_; // index into string_ids_ array for method name |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 187 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 188 | private: |
| 189 | DISALLOW_COPY_AND_ASSIGN(MethodId); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 190 | }; |
| 191 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 192 | // Raw class_def_item. |
| 193 | struct ClassDef { |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 194 | dex::TypeIndex class_idx_; // index into type_ids_ array for this class |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 195 | uint16_t pad1_; // padding = 0 |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 196 | uint32_t access_flags_; |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 197 | dex::TypeIndex superclass_idx_; // index into type_ids_ array for superclass |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 198 | uint16_t pad2_; // padding = 0 |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 199 | uint32_t interfaces_off_; // file offset to TypeList |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 200 | dex::StringIndex source_file_idx_; // index into string_ids_ for source file name |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 201 | uint32_t annotations_off_; // file offset to annotations_directory_item |
| 202 | uint32_t class_data_off_; // file offset to class_data_item |
| 203 | uint32_t static_values_off_; // file offset to EncodedArray |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 204 | |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 205 | // Returns the valid access flags, that is, Java modifier bits relevant to the ClassDef type |
| 206 | // (class or interface). These are all in the lower 16b and do not contain runtime flags. |
| 207 | uint32_t GetJavaAccessFlags() const { |
| 208 | // Make sure that none of our runtime-only flags are set. |
Andreas Gampe | 575e78c | 2014-11-03 23:41:03 -0800 | [diff] [blame] | 209 | static_assert((kAccValidClassFlags & kAccJavaFlagsMask) == kAccValidClassFlags, |
| 210 | "Valid class flags not a subset of Java flags"); |
| 211 | static_assert((kAccValidInterfaceFlags & kAccJavaFlagsMask) == kAccValidInterfaceFlags, |
| 212 | "Valid interface flags not a subset of Java flags"); |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 213 | |
| 214 | if ((access_flags_ & kAccInterface) != 0) { |
| 215 | // Interface. |
| 216 | return access_flags_ & kAccValidInterfaceFlags; |
| 217 | } else { |
| 218 | // Class. |
| 219 | return access_flags_ & kAccValidClassFlags; |
| 220 | } |
| 221 | } |
| 222 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 223 | private: |
| 224 | DISALLOW_COPY_AND_ASSIGN(ClassDef); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 225 | }; |
| 226 | |
| 227 | // Raw type_item. |
| 228 | struct TypeItem { |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 229 | dex::TypeIndex type_idx_; // index into type_ids section |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 230 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 231 | private: |
| 232 | DISALLOW_COPY_AND_ASSIGN(TypeItem); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 233 | }; |
| 234 | |
| 235 | // Raw type_list. |
| 236 | class TypeList { |
| 237 | public: |
| 238 | uint32_t Size() const { |
| 239 | return size_; |
| 240 | } |
| 241 | |
| 242 | const TypeItem& GetTypeItem(uint32_t idx) const { |
Sebastien Hertz | b24bd99 | 2013-08-02 15:19:09 +0200 | [diff] [blame] | 243 | DCHECK_LT(idx, this->size_); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 244 | return this->list_[idx]; |
| 245 | } |
| 246 | |
Andreas Gampe | 31a7a0c | 2014-08-29 16:07:49 -0700 | [diff] [blame] | 247 | // Size in bytes of the part of the list that is common. |
| 248 | static constexpr size_t GetHeaderSize() { |
| 249 | return 4U; |
| 250 | } |
| 251 | |
| 252 | // Size in bytes of the whole type list including all the stored elements. |
| 253 | static constexpr size_t GetListSize(size_t count) { |
| 254 | return GetHeaderSize() + sizeof(TypeItem) * count; |
| 255 | } |
| 256 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 257 | private: |
| 258 | uint32_t size_; // size of the list, in entries |
| 259 | TypeItem list_[1]; // elements of the list |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 260 | DISALLOW_COPY_AND_ASSIGN(TypeList); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 261 | }; |
| 262 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 263 | // Raw code_item. |
| 264 | struct CodeItem { |
Igor Murashkin | c449e8b | 2015-06-10 15:56:42 -0700 | [diff] [blame] | 265 | uint16_t registers_size_; // the number of registers used by this code |
| 266 | // (locals + parameters) |
| 267 | uint16_t ins_size_; // the number of words of incoming arguments to the method |
| 268 | // that this code is for |
| 269 | uint16_t outs_size_; // the number of words of outgoing argument space required |
| 270 | // by this code for method invocation |
| 271 | uint16_t tries_size_; // the number of try_items for this instance. If non-zero, |
| 272 | // then these appear as the tries array just after the |
| 273 | // insns in this instance. |
| 274 | uint32_t debug_info_off_; // file offset to debug info stream |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 275 | uint32_t insns_size_in_code_units_; // size of the insns array, in 2 byte code units |
Igor Murashkin | c449e8b | 2015-06-10 15:56:42 -0700 | [diff] [blame] | 276 | uint16_t insns_[1]; // actual array of bytecode. |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 277 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 278 | private: |
| 279 | DISALLOW_COPY_AND_ASSIGN(CodeItem); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 280 | }; |
| 281 | |
Carl Shapiro | 2eaa968 | 2011-08-04 19:26:11 -0700 | [diff] [blame] | 282 | // Raw try_item. |
| 283 | struct TryItem { |
| 284 | uint32_t start_addr_; |
| 285 | uint16_t insn_count_; |
| 286 | uint16_t handler_off_; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 287 | |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 288 | private: |
| 289 | DISALLOW_COPY_AND_ASSIGN(TryItem); |
Carl Shapiro | 2eaa968 | 2011-08-04 19:26:11 -0700 | [diff] [blame] | 290 | }; |
| 291 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 292 | // Annotation constants. |
| 293 | enum { |
| 294 | kDexVisibilityBuild = 0x00, /* annotation visibility */ |
| 295 | kDexVisibilityRuntime = 0x01, |
| 296 | kDexVisibilitySystem = 0x02, |
| 297 | |
| 298 | kDexAnnotationByte = 0x00, |
| 299 | kDexAnnotationShort = 0x02, |
| 300 | kDexAnnotationChar = 0x03, |
| 301 | kDexAnnotationInt = 0x04, |
| 302 | kDexAnnotationLong = 0x06, |
| 303 | kDexAnnotationFloat = 0x10, |
| 304 | kDexAnnotationDouble = 0x11, |
| 305 | kDexAnnotationString = 0x17, |
| 306 | kDexAnnotationType = 0x18, |
| 307 | kDexAnnotationField = 0x19, |
| 308 | kDexAnnotationMethod = 0x1a, |
| 309 | kDexAnnotationEnum = 0x1b, |
| 310 | kDexAnnotationArray = 0x1c, |
| 311 | kDexAnnotationAnnotation = 0x1d, |
| 312 | kDexAnnotationNull = 0x1e, |
| 313 | kDexAnnotationBoolean = 0x1f, |
| 314 | |
| 315 | kDexAnnotationValueTypeMask = 0x1f, /* low 5 bits */ |
| 316 | kDexAnnotationValueArgShift = 5, |
| 317 | }; |
| 318 | |
| 319 | struct AnnotationsDirectoryItem { |
| 320 | uint32_t class_annotations_off_; |
| 321 | uint32_t fields_size_; |
| 322 | uint32_t methods_size_; |
| 323 | uint32_t parameters_size_; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 324 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 325 | private: |
| 326 | DISALLOW_COPY_AND_ASSIGN(AnnotationsDirectoryItem); |
| 327 | }; |
| 328 | |
| 329 | struct FieldAnnotationsItem { |
| 330 | uint32_t field_idx_; |
| 331 | uint32_t annotations_off_; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 332 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 333 | private: |
| 334 | DISALLOW_COPY_AND_ASSIGN(FieldAnnotationsItem); |
| 335 | }; |
| 336 | |
| 337 | struct MethodAnnotationsItem { |
| 338 | uint32_t method_idx_; |
| 339 | uint32_t annotations_off_; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 340 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 341 | private: |
| 342 | DISALLOW_COPY_AND_ASSIGN(MethodAnnotationsItem); |
| 343 | }; |
| 344 | |
| 345 | struct ParameterAnnotationsItem { |
| 346 | uint32_t method_idx_; |
| 347 | uint32_t annotations_off_; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 348 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 349 | private: |
| 350 | DISALLOW_COPY_AND_ASSIGN(ParameterAnnotationsItem); |
| 351 | }; |
| 352 | |
| 353 | struct AnnotationSetRefItem { |
| 354 | uint32_t annotations_off_; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 355 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 356 | private: |
| 357 | DISALLOW_COPY_AND_ASSIGN(AnnotationSetRefItem); |
| 358 | }; |
| 359 | |
| 360 | struct AnnotationSetRefList { |
| 361 | uint32_t size_; |
| 362 | AnnotationSetRefItem list_[1]; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 363 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 364 | private: |
| 365 | DISALLOW_COPY_AND_ASSIGN(AnnotationSetRefList); |
| 366 | }; |
| 367 | |
| 368 | struct AnnotationSetItem { |
| 369 | uint32_t size_; |
| 370 | uint32_t entries_[1]; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 371 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 372 | private: |
| 373 | DISALLOW_COPY_AND_ASSIGN(AnnotationSetItem); |
| 374 | }; |
| 375 | |
| 376 | struct AnnotationItem { |
| 377 | uint8_t visibility_; |
| 378 | uint8_t annotation_[1]; |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 379 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 380 | private: |
| 381 | DISALLOW_COPY_AND_ASSIGN(AnnotationItem); |
| 382 | }; |
| 383 | |
Jeff Hao | 13e748b | 2015-08-25 20:44:19 +0000 | [diff] [blame] | 384 | enum AnnotationResultStyle { // private |
| 385 | kAllObjects, |
| 386 | kPrimitivesOrObjects, |
| 387 | kAllRaw |
| 388 | }; |
| 389 | |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 390 | struct AnnotationValue; |
| 391 | |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 392 | // Returns the checksum of a file for comparison with GetLocationChecksum(). |
| 393 | // For .dex files, this is the header checksum. |
| 394 | // For zip files, this is the classes.dex zip entry CRC32 checksum. |
| 395 | // Return true if the checksum could be found, false otherwise. |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 396 | static bool GetChecksum(const char* filename, uint32_t* checksum, std::string* error_msg); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 397 | |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 398 | // Opens .dex file, backed by existing memory |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 399 | static std::unique_ptr<const DexFile> Open(const uint8_t* base, |
| 400 | size_t size, |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 401 | const std::string& location, |
| 402 | uint32_t location_checksum, |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 403 | const OatDexFile* oat_dex_file, |
Andreas Gampe | 3a2bd29 | 2016-01-26 17:23:47 -0800 | [diff] [blame] | 404 | bool verify, |
Aart Bik | 37d6a3b | 2016-06-21 18:30:10 -0700 | [diff] [blame] | 405 | bool verify_checksum, |
Andreas Gampe | 3a2bd29 | 2016-01-26 17:23:47 -0800 | [diff] [blame] | 406 | std::string* error_msg); |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 407 | |
Orion Hodson | a4c2a05 | 2016-08-17 10:51:42 +0100 | [diff] [blame] | 408 | // Opens .dex file that has been memory-mapped by the caller. |
| 409 | static std::unique_ptr<const DexFile> Open(const std::string& location, |
| 410 | uint32_t location_checkum, |
| 411 | std::unique_ptr<MemMap> mem_map, |
| 412 | bool verify, |
| 413 | bool verify_checksum, |
| 414 | std::string* error_msg); |
| 415 | |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 416 | // Opens all .dex files found in the file, guessing the container format based on file extension. |
| 417 | static bool Open(const char* filename, |
| 418 | const std::string& location, |
| 419 | bool verify_checksum, |
| 420 | std::string* error_msg, |
| 421 | std::vector<std::unique_ptr<const DexFile>>* dex_files); |
Orion Hodson | a4c2a05 | 2016-08-17 10:51:42 +0100 | [diff] [blame] | 422 | |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 423 | // Open a single dex file from an fd. |
| 424 | static std::unique_ptr<const DexFile> OpenDex(int fd, |
| 425 | const std::string& location, |
| 426 | bool verify_checksum, |
| 427 | std::string* error_msg); |
| 428 | |
| 429 | // Opens dex files from within a .jar, .zip, or .apk file |
| 430 | static bool OpenZip(int fd, |
| 431 | const std::string& location, |
| 432 | bool verify_checksum, |
| 433 | std::string* error_msg, |
| 434 | std::vector<std::unique_ptr<const DexFile>>* dex_files); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 435 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 436 | // Closes a .dex file. |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 437 | virtual ~DexFile(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 438 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 439 | const std::string& GetLocation() const { |
| 440 | return location_; |
| 441 | } |
| 442 | |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 443 | // For normal dex files, location and base location coincide. If a dex file is part of a multidex |
| 444 | // archive, the base location is the name of the originating jar/apk, stripped of any internal |
| 445 | // classes*.dex path. |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 446 | static std::string GetBaseLocation(const char* location) { |
| 447 | const char* pos = strrchr(location, kMultiDexSeparator); |
| 448 | if (pos == nullptr) { |
| 449 | return location; |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 450 | } else { |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 451 | return std::string(location, pos - location); |
| 452 | } |
| 453 | } |
| 454 | |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 455 | static std::string GetBaseLocation(const std::string& location) { |
| 456 | return GetBaseLocation(location.c_str()); |
| 457 | } |
| 458 | |
| 459 | // Returns the ':classes*.dex' part of the dex location. Returns an empty |
| 460 | // string if there is no multidex suffix for the given location. |
| 461 | // The kMultiDexSeparator is included in the returned suffix. |
| 462 | static std::string GetMultiDexSuffix(const std::string& location) { |
| 463 | size_t pos = location.rfind(kMultiDexSeparator); |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 464 | if (pos == std::string::npos) { |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 465 | return ""; |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 466 | } else { |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 467 | return location.substr(pos); |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 471 | std::string GetBaseLocation() const { |
| 472 | return GetBaseLocation(location_); |
| 473 | } |
| 474 | |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 475 | // For DexFiles directly from .dex files, this is the checksum from the DexFile::Header. |
| 476 | // For DexFiles opened from a zip files, this will be the ZipEntry CRC32 of classes.dex. |
| 477 | uint32_t GetLocationChecksum() const { |
| 478 | return location_checksum_; |
| 479 | } |
| 480 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 481 | const Header& GetHeader() const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 482 | DCHECK(header_ != nullptr) << GetLocation(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 483 | return *header_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 484 | } |
| 485 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 486 | // Decode the dex magic version |
Andreas Gampe | 76ed99d | 2016-03-28 18:31:29 -0700 | [diff] [blame] | 487 | uint32_t GetVersion() const { |
| 488 | return GetHeader().GetVersion(); |
| 489 | } |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 490 | |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 491 | // Returns true if the byte string points to the magic value. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 492 | static bool IsMagicValid(const uint8_t* magic); |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 493 | |
| 494 | // Returns true if the byte string after the magic is the correct value. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 495 | static bool IsVersionValid(const uint8_t* magic); |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 496 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 497 | // Returns the number of string identifiers in the .dex file. |
| 498 | size_t NumStringIds() const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 499 | DCHECK(header_ != nullptr) << GetLocation(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 500 | return header_->string_ids_size_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 501 | } |
| 502 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 503 | // Returns the StringId at the specified index. |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 504 | const StringId& GetStringId(dex::StringIndex idx) const { |
| 505 | DCHECK_LT(idx.index_, NumStringIds()) << GetLocation(); |
| 506 | return string_ids_[idx.index_]; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 507 | } |
| 508 | |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 509 | dex::StringIndex GetIndexForStringId(const StringId& string_id) const { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 510 | CHECK_GE(&string_id, string_ids_) << GetLocation(); |
| 511 | CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation(); |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 512 | return dex::StringIndex(&string_id - string_ids_); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | int32_t GetStringLength(const StringId& string_id) const; |
| 516 | |
Ian Rogers | dfb325e | 2013-10-30 01:00:44 -0700 | [diff] [blame] | 517 | // Returns a pointer to the UTF-8 string data referred to by the given string_id as well as the |
| 518 | // length of the string when decoded as a UTF-16 string. Note the UTF-16 length is not the same |
| 519 | // as the string length of the string data. |
| 520 | const char* GetStringDataAndUtf16Length(const StringId& string_id, uint32_t* utf16_length) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 521 | |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 522 | const char* GetStringData(const StringId& string_id) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 523 | |
Ian Rogers | dfb325e | 2013-10-30 01:00:44 -0700 | [diff] [blame] | 524 | // Index version of GetStringDataAndUtf16Length. |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 525 | const char* StringDataAndUtf16LengthByIdx(dex::StringIndex idx, uint32_t* utf16_length) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 526 | |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 527 | const char* StringDataByIdx(dex::StringIndex idx) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 528 | |
Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 529 | // Looks up a string id for a given modified utf8 string. |
| 530 | const StringId* FindStringId(const char* string) const; |
| 531 | |
Artem Udovichenko | d9786b0 | 2015-10-14 16:36:55 +0300 | [diff] [blame] | 532 | const TypeId* FindTypeId(const char* string) const; |
| 533 | |
Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 534 | // Looks up a string id for a given utf16 string. |
Vladimir Marko | a48aef4 | 2014-12-03 17:53:53 +0000 | [diff] [blame] | 535 | const StringId* FindStringId(const uint16_t* string, size_t length) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 536 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 537 | // Returns the number of type identifiers in the .dex file. |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 538 | uint32_t NumTypeIds() const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 539 | DCHECK(header_ != nullptr) << GetLocation(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 540 | return header_->type_ids_size_; |
Carl Shapiro | 5fafe2b | 2011-07-09 15:34:41 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 543 | // Returns the TypeId at the specified index. |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 544 | const TypeId& GetTypeId(dex::TypeIndex idx) const { |
| 545 | DCHECK_LT(idx.index_, NumTypeIds()) << GetLocation(); |
| 546 | return type_ids_[idx.index_]; |
Carl Shapiro | 5fafe2b | 2011-07-09 15:34:41 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 549 | dex::TypeIndex GetIndexForTypeId(const TypeId& type_id) const { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 550 | CHECK_GE(&type_id, type_ids_) << GetLocation(); |
| 551 | CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 552 | size_t result = &type_id - type_ids_; |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 553 | DCHECK_LT(result, 65536U) << GetLocation(); |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 554 | return dex::TypeIndex(static_cast<uint16_t>(result)); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | // Get the descriptor string associated with a given type index. |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 558 | const char* StringByTypeIdx(dex::TypeIndex idx, uint32_t* unicode_length) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 559 | |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 560 | const char* StringByTypeIdx(dex::TypeIndex idx) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 561 | |
| 562 | // Returns the type descriptor string of a type id. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 563 | const char* GetTypeDescriptor(const TypeId& type_id) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 564 | |
| 565 | // Looks up a type for the given string index |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 566 | const TypeId* FindTypeId(dex::StringIndex string_idx) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 567 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 568 | // Returns the number of field identifiers in the .dex file. |
| 569 | size_t NumFieldIds() const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 570 | DCHECK(header_ != nullptr) << GetLocation(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 571 | return header_->field_ids_size_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 572 | } |
| 573 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 574 | // Returns the FieldId at the specified index. |
| 575 | const FieldId& GetFieldId(uint32_t idx) const { |
Sebastien Hertz | b24bd99 | 2013-08-02 15:19:09 +0200 | [diff] [blame] | 576 | DCHECK_LT(idx, NumFieldIds()) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 577 | return field_ids_[idx]; |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Ian Rogers | 9b1a4f4 | 2011-11-14 18:35:10 -0800 | [diff] [blame] | 580 | uint32_t GetIndexForFieldId(const FieldId& field_id) const { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 581 | CHECK_GE(&field_id, field_ids_) << GetLocation(); |
| 582 | CHECK_LT(&field_id, field_ids_ + header_->field_ids_size_) << GetLocation(); |
Ian Rogers | 9b1a4f4 | 2011-11-14 18:35:10 -0800 | [diff] [blame] | 583 | return &field_id - field_ids_; |
| 584 | } |
| 585 | |
| 586 | // Looks up a field by its declaring class, name and type |
| 587 | const FieldId* FindFieldId(const DexFile::TypeId& declaring_klass, |
| 588 | const DexFile::StringId& name, |
| 589 | const DexFile::TypeId& type) const; |
| 590 | |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 591 | uint32_t FindCodeItemOffset(const DexFile::ClassDef& class_def, |
| 592 | uint32_t dex_method_idx) const; |
| 593 | |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 594 | // Returns the declaring class descriptor string of a field id. |
| 595 | const char* GetFieldDeclaringClassDescriptor(const FieldId& field_id) const { |
Brian Carlstrom | b9edb84 | 2011-08-28 16:31:06 -0700 | [diff] [blame] | 596 | const DexFile::TypeId& type_id = GetTypeId(field_id.class_idx_); |
| 597 | return GetTypeDescriptor(type_id); |
| 598 | } |
| 599 | |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 600 | // Returns the class descriptor string of a field id. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 601 | const char* GetFieldTypeDescriptor(const FieldId& field_id) const; |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 602 | |
Brian Carlstrom | b9edb84 | 2011-08-28 16:31:06 -0700 | [diff] [blame] | 603 | // Returns the name of a field id. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 604 | const char* GetFieldName(const FieldId& field_id) const; |
Brian Carlstrom | b9edb84 | 2011-08-28 16:31:06 -0700 | [diff] [blame] | 605 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 606 | // Returns the number of method identifiers in the .dex file. |
| 607 | size_t NumMethodIds() const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 608 | DCHECK(header_ != nullptr) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 609 | return header_->method_ids_size_; |
| 610 | } |
| 611 | |
| 612 | // Returns the MethodId at the specified index. |
| 613 | const MethodId& GetMethodId(uint32_t idx) const { |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 614 | DCHECK_LT(idx, NumMethodIds()) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 615 | return method_ids_[idx]; |
| 616 | } |
| 617 | |
| 618 | uint32_t GetIndexForMethodId(const MethodId& method_id) const { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 619 | CHECK_GE(&method_id, method_ids_) << GetLocation(); |
| 620 | CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 621 | return &method_id - method_ids_; |
| 622 | } |
| 623 | |
Ian Rogers | 9b1a4f4 | 2011-11-14 18:35:10 -0800 | [diff] [blame] | 624 | // Looks up a method by its declaring class, name and proto_id |
| 625 | const MethodId* FindMethodId(const DexFile::TypeId& declaring_klass, |
| 626 | const DexFile::StringId& name, |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 627 | const DexFile::ProtoId& signature) const; |
| 628 | |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 629 | // Returns the declaring class descriptor string of a method id. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 630 | const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const; |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 631 | |
jeffhao | 98eacac | 2011-09-14 16:11:53 -0700 | [diff] [blame] | 632 | // Returns the prototype of a method id. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 633 | const ProtoId& GetMethodPrototype(const MethodId& method_id) const { |
| 634 | return GetProtoId(method_id.proto_idx_); |
| 635 | } |
| 636 | |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 637 | // Returns a representation of the signature of a method id. |
| 638 | const Signature GetMethodSignature(const MethodId& method_id) const; |
jeffhao | 98eacac | 2011-09-14 16:11:53 -0700 | [diff] [blame] | 639 | |
Orion Hodson | b34bb19 | 2016-10-18 17:02:58 +0100 | [diff] [blame] | 640 | // Returns a representation of the signature of a proto id. |
| 641 | const Signature GetProtoSignature(const ProtoId& proto_id) const; |
| 642 | |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 643 | // Returns the name of a method id. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 644 | const char* GetMethodName(const MethodId& method_id) const; |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 645 | |
Calin Juravle | 68ad649 | 2015-08-18 17:08:12 +0100 | [diff] [blame] | 646 | // Returns the shorty of a method by its index. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 647 | const char* GetMethodShorty(uint32_t idx) const; |
Calin Juravle | 68ad649 | 2015-08-18 17:08:12 +0100 | [diff] [blame] | 648 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 649 | // Returns the shorty of a method id. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 650 | const char* GetMethodShorty(const MethodId& method_id) const; |
| 651 | const char* GetMethodShorty(const MethodId& method_id, uint32_t* length) const; |
| 652 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 653 | // Returns the number of class definitions in the .dex file. |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 654 | uint32_t NumClassDefs() const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 655 | DCHECK(header_ != nullptr) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 656 | return header_->class_defs_size_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | // Returns the ClassDef at the specified index. |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 660 | const ClassDef& GetClassDef(uint16_t idx) const { |
Sebastien Hertz | b24bd99 | 2013-08-02 15:19:09 +0200 | [diff] [blame] | 661 | DCHECK_LT(idx, NumClassDefs()) << GetLocation(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 662 | return class_defs_[idx]; |
| 663 | } |
| 664 | |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 665 | uint16_t GetIndexForClassDef(const ClassDef& class_def) const { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 666 | CHECK_GE(&class_def, class_defs_) << GetLocation(); |
| 667 | CHECK_LT(&class_def, class_defs_ + header_->class_defs_size_) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 668 | return &class_def - class_defs_; |
| 669 | } |
| 670 | |
| 671 | // Returns the class descriptor string of a class definition. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 672 | const char* GetClassDescriptor(const ClassDef& class_def) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 673 | |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 674 | // Looks up a class definition by its type index. |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 675 | const ClassDef* FindClassDef(dex::TypeIndex type_idx) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 676 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 677 | const TypeList* GetInterfacesList(const ClassDef& class_def) const { |
| 678 | if (class_def.interfaces_off_ == 0) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 679 | return nullptr; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 680 | } else { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 681 | const uint8_t* addr = begin_ + class_def.interfaces_off_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 682 | return reinterpret_cast<const TypeList*>(addr); |
| 683 | } |
| 684 | } |
| 685 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 686 | // Returns a pointer to the raw memory mapped class_data_item |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 687 | const uint8_t* GetClassData(const ClassDef& class_def) const { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 688 | if (class_def.class_data_off_ == 0) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 689 | return nullptr; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 690 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 691 | return begin_ + class_def.class_data_off_; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 692 | } |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 693 | } |
| 694 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 695 | // |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 696 | const CodeItem* GetCodeItem(const uint32_t code_off) const { |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 697 | DCHECK_LT(code_off, size_) << "Code item offset larger then maximum allowed offset"; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 698 | if (code_off == 0) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 699 | return nullptr; // native or abstract method |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 700 | } else { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 701 | const uint8_t* addr = begin_ + code_off; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 702 | return reinterpret_cast<const CodeItem*>(addr); |
| 703 | } |
| 704 | } |
| 705 | |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 706 | const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 707 | |
| 708 | // Returns the number of prototype identifiers in the .dex file. |
| 709 | size_t NumProtoIds() const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 710 | DCHECK(header_ != nullptr) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 711 | return header_->proto_ids_size_; |
| 712 | } |
| 713 | |
| 714 | // Returns the ProtoId at the specified index. |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 715 | const ProtoId& GetProtoId(uint16_t idx) const { |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 716 | DCHECK_LT(idx, NumProtoIds()) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 717 | return proto_ids_[idx]; |
| 718 | } |
| 719 | |
| 720 | uint16_t GetIndexForProtoId(const ProtoId& proto_id) const { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 721 | CHECK_GE(&proto_id, proto_ids_) << GetLocation(); |
| 722 | CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 723 | return &proto_id - proto_ids_; |
| 724 | } |
| 725 | |
| 726 | // Looks up a proto id for a given return type and signature type list |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 727 | const ProtoId* FindProtoId(dex::TypeIndex return_type_idx, |
| 728 | const dex::TypeIndex* signature_type_idxs, |
| 729 | uint32_t signature_length) const; |
| 730 | const ProtoId* FindProtoId(dex::TypeIndex return_type_idx, |
| 731 | const std::vector<dex::TypeIndex>& signature_type_idxs) const { |
Vladimir Marko | 5c96e6b | 2013-11-14 15:34:17 +0000 | [diff] [blame] | 732 | return FindProtoId(return_type_idx, &signature_type_idxs[0], signature_type_idxs.size()); |
| 733 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 734 | |
| 735 | // Given a signature place the type ids into the given vector, returns true on success |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 736 | bool CreateTypeList(const StringPiece& signature, |
| 737 | dex::TypeIndex* return_type_idx, |
| 738 | std::vector<dex::TypeIndex>* param_type_idxs) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 739 | |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 740 | // Create a Signature from the given string signature or return Signature::NoSignature if not |
| 741 | // possible. |
| 742 | const Signature CreateSignature(const StringPiece& signature) const; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 743 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 744 | // Returns the short form method descriptor for the given prototype. |
Vladimir Marko | 5c6a587 | 2016-06-27 13:50:16 +0100 | [diff] [blame] | 745 | const char* GetShorty(uint32_t proto_idx) const; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 746 | |
| 747 | const TypeList* GetProtoParameters(const ProtoId& proto_id) const { |
| 748 | if (proto_id.parameters_off_ == 0) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 749 | return nullptr; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 750 | } else { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 751 | const uint8_t* addr = begin_ + proto_id.parameters_off_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 752 | return reinterpret_cast<const TypeList*>(addr); |
| 753 | } |
| 754 | } |
| 755 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 756 | const uint8_t* GetEncodedStaticFieldValuesArray(const ClassDef& class_def) const { |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 757 | if (class_def.static_values_off_ == 0) { |
| 758 | return 0; |
| 759 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 760 | return begin_ + class_def.static_values_off_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 761 | } |
| 762 | } |
| 763 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 764 | static const TryItem* GetTryItems(const CodeItem& code_item, uint32_t offset); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 765 | |
| 766 | // Get the base of the encoded data for the given DexCode. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 767 | static const uint8_t* GetCatchHandlerData(const CodeItem& code_item, uint32_t offset) { |
| 768 | const uint8_t* handler_data = |
| 769 | reinterpret_cast<const uint8_t*>(GetTryItems(code_item, code_item.tries_size_)); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 770 | return handler_data + offset; |
| 771 | } |
| 772 | |
Ian Rogers | dbbc99d | 2013-04-18 16:51:54 -0700 | [diff] [blame] | 773 | // Find which try region is associated with the given address (ie dex pc). Returns -1 if none. |
| 774 | static int32_t FindTryItem(const CodeItem &code_item, uint32_t address); |
| 775 | |
| 776 | // Find the handler offset associated with the given address (ie dex pc). Returns -1 if none. |
| 777 | static int32_t FindCatchHandlerOffset(const CodeItem &code_item, uint32_t address); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 778 | |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 779 | // Get the pointer to the start of the debugging data |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 780 | const uint8_t* GetDebugInfoStream(const CodeItem* code_item) const { |
David Srbecky | 6852942 | 2015-07-07 19:13:29 +0100 | [diff] [blame] | 781 | // Check that the offset is in bounds. |
| 782 | // Note that although the specification says that 0 should be used if there |
| 783 | // is no debug information, some applications incorrectly use 0xFFFFFFFF. |
| 784 | if (code_item->debug_info_off_ == 0 || code_item->debug_info_off_ >= size_) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 785 | return nullptr; |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 786 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 787 | return begin_ + code_item->debug_info_off_; |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 788 | } |
| 789 | } |
| 790 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 791 | struct PositionInfo { |
| 792 | PositionInfo() |
| 793 | : address_(0), |
| 794 | line_(0), |
| 795 | source_file_(nullptr), |
| 796 | prologue_end_(false), |
| 797 | epilogue_begin_(false) { |
| 798 | } |
| 799 | |
| 800 | uint32_t address_; // In 16-bit code units. |
| 801 | uint32_t line_; // Source code line number starting at 1. |
| 802 | const char* source_file_; // nullptr if the file from ClassDef still applies. |
| 803 | bool prologue_end_; |
| 804 | bool epilogue_begin_; |
| 805 | }; |
| 806 | |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 807 | // Callback for "new position table entry". |
| 808 | // Returning true causes the decoder to stop early. |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 809 | typedef bool (*DexDebugNewPositionCb)(void* context, const PositionInfo& entry); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 810 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 811 | struct LocalInfo { |
| 812 | LocalInfo() |
| 813 | : name_(nullptr), |
| 814 | descriptor_(nullptr), |
| 815 | signature_(nullptr), |
| 816 | start_address_(0), |
| 817 | end_address_(0), |
| 818 | reg_(0), |
| 819 | is_live_(false) { |
| 820 | } |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 821 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 822 | const char* name_; // E.g., list. It can be nullptr if unknown. |
| 823 | const char* descriptor_; // E.g., Ljava/util/LinkedList; |
| 824 | const char* signature_; // E.g., java.util.LinkedList<java.lang.Integer> |
| 825 | uint32_t start_address_; // PC location where the local is first defined. |
| 826 | uint32_t end_address_; // PC location where the local is no longer defined. |
| 827 | uint16_t reg_; // Dex register which stores the values. |
| 828 | bool is_live_; // Is the local defined and live. |
| 829 | }; |
| 830 | |
| 831 | // Callback for "new locals table entry". |
| 832 | typedef void (*DexDebugNewLocalCb)(void* context, const LocalInfo& entry); |
| 833 | |
| 834 | static bool LineNumForPcCb(void* context, const PositionInfo& entry); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 835 | |
Jeff Hao | 13e748b | 2015-08-25 20:44:19 +0000 | [diff] [blame] | 836 | const AnnotationsDirectoryItem* GetAnnotationsDirectory(const ClassDef& class_def) const { |
| 837 | if (class_def.annotations_off_ == 0) { |
| 838 | return nullptr; |
| 839 | } else { |
| 840 | return reinterpret_cast<const AnnotationsDirectoryItem*>(begin_ + class_def.annotations_off_); |
| 841 | } |
| 842 | } |
| 843 | |
| 844 | const AnnotationSetItem* GetClassAnnotationSet(const AnnotationsDirectoryItem* anno_dir) const { |
| 845 | if (anno_dir->class_annotations_off_ == 0) { |
| 846 | return nullptr; |
| 847 | } else { |
| 848 | return reinterpret_cast<const AnnotationSetItem*>(begin_ + anno_dir->class_annotations_off_); |
| 849 | } |
| 850 | } |
| 851 | |
| 852 | const FieldAnnotationsItem* GetFieldAnnotations(const AnnotationsDirectoryItem* anno_dir) const { |
| 853 | if (anno_dir->fields_size_ == 0) { |
| 854 | return nullptr; |
| 855 | } else { |
| 856 | return reinterpret_cast<const FieldAnnotationsItem*>(&anno_dir[1]); |
| 857 | } |
| 858 | } |
| 859 | |
| 860 | const MethodAnnotationsItem* GetMethodAnnotations(const AnnotationsDirectoryItem* anno_dir) |
| 861 | const { |
| 862 | if (anno_dir->methods_size_ == 0) { |
| 863 | return nullptr; |
| 864 | } else { |
| 865 | // Skip past the header and field annotations. |
| 866 | const uint8_t* addr = reinterpret_cast<const uint8_t*>(&anno_dir[1]); |
| 867 | addr += anno_dir->fields_size_ * sizeof(FieldAnnotationsItem); |
| 868 | return reinterpret_cast<const MethodAnnotationsItem*>(addr); |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | const ParameterAnnotationsItem* GetParameterAnnotations(const AnnotationsDirectoryItem* anno_dir) |
| 873 | const { |
| 874 | if (anno_dir->parameters_size_ == 0) { |
| 875 | return nullptr; |
| 876 | } else { |
| 877 | // Skip past the header, field annotations, and method annotations. |
| 878 | const uint8_t* addr = reinterpret_cast<const uint8_t*>(&anno_dir[1]); |
| 879 | addr += anno_dir->fields_size_ * sizeof(FieldAnnotationsItem); |
| 880 | addr += anno_dir->methods_size_ * sizeof(MethodAnnotationsItem); |
| 881 | return reinterpret_cast<const ParameterAnnotationsItem*>(addr); |
| 882 | } |
| 883 | } |
| 884 | |
| 885 | const AnnotationSetItem* GetFieldAnnotationSetItem(const FieldAnnotationsItem& anno_item) const { |
| 886 | uint32_t offset = anno_item.annotations_off_; |
| 887 | if (offset == 0) { |
| 888 | return nullptr; |
| 889 | } else { |
| 890 | return reinterpret_cast<const AnnotationSetItem*>(begin_ + offset); |
| 891 | } |
| 892 | } |
| 893 | |
| 894 | const AnnotationSetItem* GetMethodAnnotationSetItem(const MethodAnnotationsItem& anno_item) |
| 895 | const { |
| 896 | uint32_t offset = anno_item.annotations_off_; |
| 897 | if (offset == 0) { |
| 898 | return nullptr; |
| 899 | } else { |
| 900 | return reinterpret_cast<const AnnotationSetItem*>(begin_ + offset); |
| 901 | } |
| 902 | } |
| 903 | |
| 904 | const AnnotationSetRefList* GetParameterAnnotationSetRefList( |
| 905 | const ParameterAnnotationsItem* anno_item) const { |
| 906 | uint32_t offset = anno_item->annotations_off_; |
| 907 | if (offset == 0) { |
| 908 | return nullptr; |
| 909 | } |
| 910 | return reinterpret_cast<const AnnotationSetRefList*>(begin_ + offset); |
| 911 | } |
| 912 | |
| 913 | const AnnotationItem* GetAnnotationItem(const AnnotationSetItem* set_item, uint32_t index) const { |
| 914 | DCHECK_LE(index, set_item->size_); |
| 915 | uint32_t offset = set_item->entries_[index]; |
| 916 | if (offset == 0) { |
| 917 | return nullptr; |
| 918 | } else { |
| 919 | return reinterpret_cast<const AnnotationItem*>(begin_ + offset); |
| 920 | } |
| 921 | } |
| 922 | |
| 923 | const AnnotationSetItem* GetSetRefItemItem(const AnnotationSetRefItem* anno_item) const { |
| 924 | uint32_t offset = anno_item->annotations_off_; |
| 925 | if (offset == 0) { |
| 926 | return nullptr; |
| 927 | } |
| 928 | return reinterpret_cast<const AnnotationSetItem*>(begin_ + offset); |
| 929 | } |
| 930 | |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 931 | // Debug info opcodes and constants |
| 932 | enum { |
| 933 | DBG_END_SEQUENCE = 0x00, |
| 934 | DBG_ADVANCE_PC = 0x01, |
| 935 | DBG_ADVANCE_LINE = 0x02, |
| 936 | DBG_START_LOCAL = 0x03, |
| 937 | DBG_START_LOCAL_EXTENDED = 0x04, |
| 938 | DBG_END_LOCAL = 0x05, |
| 939 | DBG_RESTART_LOCAL = 0x06, |
| 940 | DBG_SET_PROLOGUE_END = 0x07, |
| 941 | DBG_SET_EPILOGUE_BEGIN = 0x08, |
| 942 | DBG_SET_FILE = 0x09, |
| 943 | DBG_FIRST_SPECIAL = 0x0a, |
| 944 | DBG_LINE_BASE = -4, |
| 945 | DBG_LINE_RANGE = 15, |
| 946 | }; |
| 947 | |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 948 | struct LineNumFromPcContext { |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 949 | LineNumFromPcContext(uint32_t address, uint32_t line_num) |
| 950 | : address_(address), line_num_(line_num) {} |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 951 | uint32_t address_; |
| 952 | uint32_t line_num_; |
Brian Carlstrom | d2fbb2b | 2011-08-23 11:57:08 -0700 | [diff] [blame] | 953 | private: |
| 954 | DISALLOW_COPY_AND_ASSIGN(LineNumFromPcContext); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 955 | }; |
| 956 | |
Roland Levillain | 91d65e0 | 2016-01-19 15:59:16 +0000 | [diff] [blame] | 957 | // Returns false if there is no debugging information or if it cannot be decoded. |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 958 | bool DecodeDebugLocalInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx, |
| 959 | DexDebugNewLocalCb local_cb, void* context) const; |
| 960 | |
Roland Levillain | 91d65e0 | 2016-01-19 15:59:16 +0000 | [diff] [blame] | 961 | // Returns false if there is no debugging information or if it cannot be decoded. |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 962 | bool DecodeDebugPositionInfo(const CodeItem* code_item, DexDebugNewPositionCb position_cb, |
| 963 | void* context) const; |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 964 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 965 | const char* GetSourceFile(const ClassDef& class_def) const { |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 966 | if (!class_def.source_file_idx_.IsValid()) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 967 | return nullptr; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 968 | } else { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 969 | return StringDataByIdx(class_def.source_file_idx_); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 970 | } |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 971 | } |
| 972 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 973 | int GetPermissions() const; |
Ian Rogers | 1c849e5 | 2012-06-28 14:00:33 -0700 | [diff] [blame] | 974 | |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 975 | bool IsReadOnly() const; |
| 976 | |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 977 | bool EnableWrite() const; |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 978 | |
Brian Carlstrom | e0948e1 | 2013-08-29 09:36:15 -0700 | [diff] [blame] | 979 | bool DisableWrite() const; |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 980 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 981 | const uint8_t* Begin() const { |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 982 | return begin_; |
| 983 | } |
| 984 | |
| 985 | size_t Size() const { |
| 986 | return size_; |
| 987 | } |
| 988 | |
Andreas Gampe | 90e3404 | 2015-04-27 20:01:52 -0700 | [diff] [blame] | 989 | // Return the name of the index-th classes.dex in a multidex zip file. This is classes.dex for |
| 990 | // index == 0, and classes{index + 1}.dex else. |
| 991 | static std::string GetMultiDexClassesDexName(size_t index); |
| 992 | |
| 993 | // Return the (possibly synthetic) dex location for a multidex entry. This is dex_location for |
| 994 | // index == 0, and dex_location + multi-dex-separator + GetMultiDexClassesDexName(index) else. |
| 995 | static std::string GetMultiDexLocation(size_t index, const char* dex_location); |
Calin Juravle | 4e1d579 | 2014-07-15 23:56:47 +0100 | [diff] [blame] | 996 | |
| 997 | // Returns the canonical form of the given dex location. |
| 998 | // |
| 999 | // There are different flavors of "dex locations" as follows: |
| 1000 | // the file name of a dex file: |
| 1001 | // The actual file path that the dex file has on disk. |
| 1002 | // dex_location: |
| 1003 | // This acts as a key for the class linker to know which dex file to load. |
| 1004 | // It may correspond to either an old odex file or a particular dex file |
| 1005 | // inside an oat file. In the first case it will also match the file name |
| 1006 | // of the dex file. In the second case (oat) it will include the file name |
| 1007 | // and possibly some multidex annotation to uniquely identify it. |
| 1008 | // canonical_dex_location: |
| 1009 | // the dex_location where it's file name part has been made canonical. |
| 1010 | static std::string GetDexCanonicalLocation(const char* dex_location); |
| 1011 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 1012 | const OatDexFile* GetOatDexFile() const { |
| 1013 | return oat_dex_file_; |
Andreas Gampe | fd9eb39 | 2014-11-06 16:52:58 -0800 | [diff] [blame] | 1014 | } |
| 1015 | |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 1016 | // Used by oat writer. |
| 1017 | void SetOatDexFile(OatDexFile* oat_dex_file) const { |
| 1018 | oat_dex_file_ = oat_dex_file; |
| 1019 | } |
| 1020 | |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 1021 | // Utility methods for reading integral values from a buffer. |
| 1022 | static int32_t ReadSignedInt(const uint8_t* ptr, int zwidth); |
| 1023 | static uint32_t ReadUnsignedInt(const uint8_t* ptr, int zwidth, bool fill_on_right); |
| 1024 | static int64_t ReadSignedLong(const uint8_t* ptr, int zwidth); |
| 1025 | static uint64_t ReadUnsignedLong(const uint8_t* ptr, int zwidth, bool fill_on_right); |
| 1026 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1027 | // Returns a human-readable form of the method at an index. |
| 1028 | std::string PrettyMethod(uint32_t method_idx, bool with_signature = true) const; |
| 1029 | // Returns a human-readable form of the field at an index. |
| 1030 | std::string PrettyField(uint32_t field_idx, bool with_type = true) const; |
| 1031 | // Returns a human-readable form of the type at an index. |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1032 | std::string PrettyType(dex::TypeIndex type_idx) const; |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1033 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1034 | private: |
Aart Bik | 37d6a3b | 2016-06-21 18:30:10 -0700 | [diff] [blame] | 1035 | static std::unique_ptr<const DexFile> OpenFile(int fd, |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 1036 | const std::string& location, |
Aart Bik | 37d6a3b | 2016-06-21 18:30:10 -0700 | [diff] [blame] | 1037 | bool verify, |
| 1038 | bool verify_checksum, |
| 1039 | std::string* error_msg); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 1040 | |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 1041 | enum class ZipOpenErrorCode { // private |
| 1042 | kNoError, |
| 1043 | kEntryNotFound, |
| 1044 | kExtractToMemoryError, |
| 1045 | kDexFileError, |
| 1046 | kMakeReadOnlyError, |
| 1047 | kVerifyError |
| 1048 | }; |
| 1049 | |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 1050 | // Open all classesXXX.dex files from a zip archive. |
| 1051 | static bool OpenAllDexFilesFromZip(const ZipArchive& zip_archive, |
| 1052 | const std::string& location, |
| 1053 | bool verify_checksum, |
| 1054 | std::string* error_msg, |
| 1055 | std::vector<std::unique_ptr<const DexFile>>* dex_files); |
| 1056 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1057 | // Opens .dex file from the entry_name in a zip archive. error_code is undefined when non-null |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 1058 | // return. |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 1059 | static std::unique_ptr<const DexFile> OpenOneDexFileFromZip(const ZipArchive& zip_archive, |
| 1060 | const char* entry_name, |
| 1061 | const std::string& location, |
| 1062 | bool verify_checksum, |
| 1063 | std::string* error_msg, |
| 1064 | ZipOpenErrorCode* error_code); |
| 1065 | |
| 1066 | enum class VerifyResult { // private |
David Sehr | 9fddd36 | 2016-09-22 14:05:37 -0700 | [diff] [blame] | 1067 | kVerifyNotAttempted, |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 1068 | kVerifySucceeded, |
| 1069 | kVerifyFailed |
| 1070 | }; |
| 1071 | |
| 1072 | static std::unique_ptr<DexFile> OpenCommon(const uint8_t* base, |
| 1073 | size_t size, |
Aart Bik | 37d6a3b | 2016-06-21 18:30:10 -0700 | [diff] [blame] | 1074 | const std::string& location, |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 1075 | uint32_t location_checksum, |
| 1076 | const OatDexFile* oat_dex_file, |
| 1077 | bool verify, |
Aart Bik | 37d6a3b | 2016-06-21 18:30:10 -0700 | [diff] [blame] | 1078 | bool verify_checksum, |
| 1079 | std::string* error_msg, |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 1080 | VerifyResult* verify_result = nullptr); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 1081 | |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 1082 | |
| 1083 | // Opens a .dex file at the given address, optionally backed by a MemMap |
| 1084 | static std::unique_ptr<const DexFile> OpenMemory(const uint8_t* dex_file, |
| 1085 | size_t size, |
| 1086 | const std::string& location, |
| 1087 | uint32_t location_checksum, |
| 1088 | std::unique_ptr<MemMap> mem_map, |
| 1089 | const OatDexFile* oat_dex_file, |
| 1090 | std::string* error_msg); |
| 1091 | |
David Sehr | 733ddb2 | 2016-09-19 15:02:18 -0700 | [diff] [blame] | 1092 | DexFile(const uint8_t* base, |
| 1093 | size_t size, |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 1094 | const std::string& location, |
| 1095 | uint32_t location_checksum, |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 1096 | const OatDexFile* oat_dex_file); |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 1097 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1098 | // Top-level initializer that calls other Init methods. |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1099 | bool Init(std::string* error_msg); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1100 | |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 1101 | // Returns true if the header magic and version numbers are of the expected values. |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1102 | bool CheckMagicAndVersion(std::string* error_msg) const; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1103 | |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 1104 | // Check whether a location denotes a multidex dex file. This is a very simple check: returns |
| 1105 | // whether the string contains the separator character. |
| 1106 | static bool IsMultiDexLocation(const char* location); |
| 1107 | |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1108 | // The base address of the memory mapping. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1109 | const uint8_t* const begin_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1110 | |
| 1111 | // The size of the underlying memory allocation in bytes. |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1112 | const size_t size_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1113 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 1114 | // Typically the dex file name when available, alternatively some identifying string. |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 1115 | // |
| 1116 | // The ClassLinker will use this to match DexFiles the boot class |
| 1117 | // path to DexCache::GetLocation when loading from an image. |
| 1118 | const std::string location_; |
| 1119 | |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 1120 | const uint32_t location_checksum_; |
| 1121 | |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 1122 | // Manages the underlying memory allocation. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 1123 | std::unique_ptr<MemMap> mem_map_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1124 | |
| 1125 | // Points to the header section. |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1126 | const Header* const header_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1127 | |
| 1128 | // Points to the base of the string identifier list. |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1129 | const StringId* const string_ids_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1130 | |
| 1131 | // Points to the base of the type identifier list. |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1132 | const TypeId* const type_ids_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1133 | |
| 1134 | // Points to the base of the field identifier list. |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1135 | const FieldId* const field_ids_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1136 | |
| 1137 | // Points to the base of the method identifier list. |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1138 | const MethodId* const method_ids_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1139 | |
| 1140 | // Points to the base of the prototype identifier list. |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1141 | const ProtoId* const proto_ids_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 1142 | |
| 1143 | // Points to the base of the class definition list. |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1144 | const ClassDef* const class_defs_; |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1145 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 1146 | // If this dex file was loaded from an oat file, oat_dex_file_ contains a |
| 1147 | // pointer to the OatDexFile it was loaded from. Otherwise oat_dex_file_ is |
| 1148 | // null. |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 1149 | mutable const OatDexFile* oat_dex_file_; |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 1150 | |
| 1151 | friend class DexFileVerifierTest; |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 1152 | friend class OatWriter; |
Mathieu Chartier | 7617216 | 2016-01-26 14:54:06 -0800 | [diff] [blame] | 1153 | ART_FRIEND_TEST(ClassLinkerTest, RegisterDexFileName); // for constructor |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1154 | }; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1155 | |
| 1156 | struct DexFileReference { |
| 1157 | DexFileReference(const DexFile* file, uint32_t idx) : dex_file(file), index(idx) { } |
| 1158 | const DexFile* dex_file; |
| 1159 | uint32_t index; |
| 1160 | }; |
| 1161 | |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 1162 | std::ostream& operator<<(std::ostream& os, const DexFile& dex_file); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1163 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1164 | // Iterate over a dex file's ProtoId's paramters |
| 1165 | class DexFileParameterIterator { |
| 1166 | public: |
| 1167 | DexFileParameterIterator(const DexFile& dex_file, const DexFile::ProtoId& proto_id) |
| 1168 | : dex_file_(dex_file), size_(0), pos_(0) { |
| 1169 | type_list_ = dex_file_.GetProtoParameters(proto_id); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1170 | if (type_list_ != nullptr) { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1171 | size_ = type_list_->Size(); |
| 1172 | } |
| 1173 | } |
| 1174 | bool HasNext() const { return pos_ < size_; } |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1175 | size_t Size() const { return size_; } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1176 | void Next() { ++pos_; } |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1177 | dex::TypeIndex GetTypeIdx() { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1178 | return type_list_->GetTypeItem(pos_).type_idx_; |
| 1179 | } |
| 1180 | const char* GetDescriptor() { |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1181 | return dex_file_.StringByTypeIdx(dex::TypeIndex(GetTypeIdx())); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1182 | } |
| 1183 | private: |
| 1184 | const DexFile& dex_file_; |
| 1185 | const DexFile::TypeList* type_list_; |
| 1186 | uint32_t size_; |
| 1187 | uint32_t pos_; |
| 1188 | DISALLOW_IMPLICIT_CONSTRUCTORS(DexFileParameterIterator); |
| 1189 | }; |
| 1190 | |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 1191 | // Abstract the signature of a method. |
Ian Rogers | 03b6eaf | 2014-10-28 09:34:57 -0700 | [diff] [blame] | 1192 | class Signature : public ValueObject { |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 1193 | public: |
| 1194 | std::string ToString() const; |
| 1195 | |
| 1196 | static Signature NoSignature() { |
| 1197 | return Signature(); |
| 1198 | } |
| 1199 | |
Orion Hodson | 6c4921b | 2016-09-21 15:41:06 +0100 | [diff] [blame] | 1200 | bool IsVoid() const; |
| 1201 | uint32_t GetNumberOfParameters() const; |
| 1202 | |
Ian Rogers | dfb325e | 2013-10-30 01:00:44 -0700 | [diff] [blame] | 1203 | bool operator==(const Signature& rhs) const; |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 1204 | bool operator!=(const Signature& rhs) const { |
| 1205 | return !(*this == rhs); |
| 1206 | } |
| 1207 | |
Vladimir Marko | d9cffea | 2013-11-25 15:08:02 +0000 | [diff] [blame] | 1208 | bool operator==(const StringPiece& rhs) const; |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 1209 | |
| 1210 | private: |
| 1211 | Signature(const DexFile* dex, const DexFile::ProtoId& proto) : dex_file_(dex), proto_id_(&proto) { |
| 1212 | } |
| 1213 | |
| 1214 | Signature() : dex_file_(nullptr), proto_id_(nullptr) { |
| 1215 | } |
| 1216 | |
| 1217 | friend class DexFile; |
| 1218 | |
| 1219 | const DexFile* const dex_file_; |
| 1220 | const DexFile::ProtoId* const proto_id_; |
| 1221 | }; |
| 1222 | std::ostream& operator<<(std::ostream& os, const Signature& sig); |
| 1223 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1224 | // Iterate and decode class_data_item |
| 1225 | class ClassDataItemIterator { |
| 1226 | public: |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1227 | ClassDataItemIterator(const DexFile& dex_file, const uint8_t* raw_class_data_item) |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1228 | : dex_file_(dex_file), pos_(0), ptr_pos_(raw_class_data_item), last_idx_(0) { |
| 1229 | ReadClassDataHeader(); |
| 1230 | if (EndOfInstanceFieldsPos() > 0) { |
| 1231 | ReadClassDataField(); |
| 1232 | } else if (EndOfVirtualMethodsPos() > 0) { |
| 1233 | ReadClassDataMethod(); |
| 1234 | } |
| 1235 | } |
| 1236 | uint32_t NumStaticFields() const { |
| 1237 | return header_.static_fields_size_; |
| 1238 | } |
| 1239 | uint32_t NumInstanceFields() const { |
| 1240 | return header_.instance_fields_size_; |
| 1241 | } |
| 1242 | uint32_t NumDirectMethods() const { |
| 1243 | return header_.direct_methods_size_; |
| 1244 | } |
| 1245 | uint32_t NumVirtualMethods() const { |
| 1246 | return header_.virtual_methods_size_; |
| 1247 | } |
| 1248 | bool HasNextStaticField() const { |
| 1249 | return pos_ < EndOfStaticFieldsPos(); |
| 1250 | } |
| 1251 | bool HasNextInstanceField() const { |
| 1252 | return pos_ >= EndOfStaticFieldsPos() && pos_ < EndOfInstanceFieldsPos(); |
| 1253 | } |
| 1254 | bool HasNextDirectMethod() const { |
| 1255 | return pos_ >= EndOfInstanceFieldsPos() && pos_ < EndOfDirectMethodsPos(); |
| 1256 | } |
| 1257 | bool HasNextVirtualMethod() const { |
| 1258 | return pos_ >= EndOfDirectMethodsPos() && pos_ < EndOfVirtualMethodsPos(); |
| 1259 | } |
| 1260 | bool HasNext() const { |
| 1261 | return pos_ < EndOfVirtualMethodsPos(); |
| 1262 | } |
Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 1263 | inline void Next() { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1264 | pos_++; |
| 1265 | if (pos_ < EndOfStaticFieldsPos()) { |
| 1266 | last_idx_ = GetMemberIndex(); |
| 1267 | ReadClassDataField(); |
| 1268 | } else if (pos_ == EndOfStaticFieldsPos() && NumInstanceFields() > 0) { |
| 1269 | last_idx_ = 0; // transition to next array, reset last index |
| 1270 | ReadClassDataField(); |
| 1271 | } else if (pos_ < EndOfInstanceFieldsPos()) { |
| 1272 | last_idx_ = GetMemberIndex(); |
| 1273 | ReadClassDataField(); |
| 1274 | } else if (pos_ == EndOfInstanceFieldsPos() && NumDirectMethods() > 0) { |
| 1275 | last_idx_ = 0; // transition to next array, reset last index |
| 1276 | ReadClassDataMethod(); |
| 1277 | } else if (pos_ < EndOfDirectMethodsPos()) { |
| 1278 | last_idx_ = GetMemberIndex(); |
| 1279 | ReadClassDataMethod(); |
| 1280 | } else if (pos_ == EndOfDirectMethodsPos() && NumVirtualMethods() > 0) { |
| 1281 | last_idx_ = 0; // transition to next array, reset last index |
| 1282 | ReadClassDataMethod(); |
| 1283 | } else if (pos_ < EndOfVirtualMethodsPos()) { |
| 1284 | last_idx_ = GetMemberIndex(); |
| 1285 | ReadClassDataMethod(); |
| 1286 | } else { |
| 1287 | DCHECK(!HasNext()); |
| 1288 | } |
| 1289 | } |
| 1290 | uint32_t GetMemberIndex() const { |
| 1291 | if (pos_ < EndOfInstanceFieldsPos()) { |
| 1292 | return last_idx_ + field_.field_idx_delta_; |
| 1293 | } else { |
Sebastien Hertz | b24bd99 | 2013-08-02 15:19:09 +0200 | [diff] [blame] | 1294 | DCHECK_LT(pos_, EndOfVirtualMethodsPos()); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1295 | return last_idx_ + method_.method_idx_delta_; |
| 1296 | } |
| 1297 | } |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 1298 | uint32_t GetRawMemberAccessFlags() const { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1299 | if (pos_ < EndOfInstanceFieldsPos()) { |
| 1300 | return field_.access_flags_; |
| 1301 | } else { |
Sebastien Hertz | b24bd99 | 2013-08-02 15:19:09 +0200 | [diff] [blame] | 1302 | DCHECK_LT(pos_, EndOfVirtualMethodsPos()); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1303 | return method_.access_flags_; |
| 1304 | } |
| 1305 | } |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 1306 | uint32_t GetFieldAccessFlags() const { |
| 1307 | return GetRawMemberAccessFlags() & kAccValidFieldFlags; |
| 1308 | } |
| 1309 | uint32_t GetMethodAccessFlags() const { |
| 1310 | return GetRawMemberAccessFlags() & kAccValidMethodFlags; |
| 1311 | } |
| 1312 | bool MemberIsNative() const { |
| 1313 | return GetRawMemberAccessFlags() & kAccNative; |
| 1314 | } |
| 1315 | bool MemberIsFinal() const { |
| 1316 | return GetRawMemberAccessFlags() & kAccFinal; |
| 1317 | } |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 1318 | InvokeType GetMethodInvokeType(const DexFile::ClassDef& class_def) const { |
| 1319 | if (HasNextDirectMethod()) { |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 1320 | if ((GetRawMemberAccessFlags() & kAccStatic) != 0) { |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 1321 | return kStatic; |
| 1322 | } else { |
| 1323 | return kDirect; |
| 1324 | } |
| 1325 | } else { |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 1326 | DCHECK_EQ(GetRawMemberAccessFlags() & kAccStatic, 0U); |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 1327 | if ((class_def.access_flags_ & kAccInterface) != 0) { |
| 1328 | return kInterface; |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 1329 | } else if ((GetRawMemberAccessFlags() & kAccConstructor) != 0) { |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 1330 | return kSuper; |
| 1331 | } else { |
| 1332 | return kVirtual; |
| 1333 | } |
| 1334 | } |
| 1335 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1336 | const DexFile::CodeItem* GetMethodCodeItem() const { |
| 1337 | return dex_file_.GetCodeItem(method_.code_off_); |
| 1338 | } |
| 1339 | uint32_t GetMethodCodeItemOffset() const { |
| 1340 | return method_.code_off_; |
| 1341 | } |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 1342 | const uint8_t* DataPointer() const { |
| 1343 | return ptr_pos_; |
| 1344 | } |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1345 | const uint8_t* EndDataPointer() const { |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 1346 | CHECK(!HasNext()); |
| 1347 | return ptr_pos_; |
| 1348 | } |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 1349 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1350 | private: |
| 1351 | // A dex file's class_data_item is leb128 encoded, this structure holds a decoded form of the |
| 1352 | // header for a class_data_item |
| 1353 | struct ClassDataHeader { |
| 1354 | uint32_t static_fields_size_; // the number of static fields |
| 1355 | uint32_t instance_fields_size_; // the number of instance fields |
| 1356 | uint32_t direct_methods_size_; // the number of direct methods |
| 1357 | uint32_t virtual_methods_size_; // the number of virtual methods |
| 1358 | } header_; |
| 1359 | |
| 1360 | // Read and decode header from a class_data_item stream into header |
| 1361 | void ReadClassDataHeader(); |
| 1362 | |
| 1363 | uint32_t EndOfStaticFieldsPos() const { |
| 1364 | return header_.static_fields_size_; |
| 1365 | } |
| 1366 | uint32_t EndOfInstanceFieldsPos() const { |
| 1367 | return EndOfStaticFieldsPos() + header_.instance_fields_size_; |
| 1368 | } |
| 1369 | uint32_t EndOfDirectMethodsPos() const { |
| 1370 | return EndOfInstanceFieldsPos() + header_.direct_methods_size_; |
| 1371 | } |
| 1372 | uint32_t EndOfVirtualMethodsPos() const { |
| 1373 | return EndOfDirectMethodsPos() + header_.virtual_methods_size_; |
| 1374 | } |
| 1375 | |
| 1376 | // A decoded version of the field of a class_data_item |
| 1377 | struct ClassDataField { |
| 1378 | uint32_t field_idx_delta_; // delta of index into the field_ids array for FieldId |
| 1379 | uint32_t access_flags_; // access flags for the field |
| 1380 | ClassDataField() : field_idx_delta_(0), access_flags_(0) {} |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 1381 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1382 | private: |
| 1383 | DISALLOW_COPY_AND_ASSIGN(ClassDataField); |
Elliott Hughes | ee0fa76 | 2012-03-26 17:12:41 -0700 | [diff] [blame] | 1384 | }; |
| 1385 | ClassDataField field_; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1386 | |
| 1387 | // Read and decode a field from a class_data_item stream into field |
| 1388 | void ReadClassDataField(); |
| 1389 | |
| 1390 | // A decoded version of the method of a class_data_item |
| 1391 | struct ClassDataMethod { |
| 1392 | uint32_t method_idx_delta_; // delta of index into the method_ids array for MethodId |
| 1393 | uint32_t access_flags_; |
| 1394 | uint32_t code_off_; |
| 1395 | ClassDataMethod() : method_idx_delta_(0), access_flags_(0), code_off_(0) {} |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 1396 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1397 | private: |
| 1398 | DISALLOW_COPY_AND_ASSIGN(ClassDataMethod); |
Elliott Hughes | ee0fa76 | 2012-03-26 17:12:41 -0700 | [diff] [blame] | 1399 | }; |
| 1400 | ClassDataMethod method_; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1401 | |
| 1402 | // Read and decode a method from a class_data_item stream into method |
| 1403 | void ReadClassDataMethod(); |
| 1404 | |
| 1405 | const DexFile& dex_file_; |
| 1406 | size_t pos_; // integral number of items passed |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1407 | const uint8_t* ptr_pos_; // pointer into stream of class_data_item |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1408 | uint32_t last_idx_; // last read field or method index to apply delta to |
| 1409 | DISALLOW_IMPLICIT_CONSTRUCTORS(ClassDataItemIterator); |
| 1410 | }; |
| 1411 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1412 | class EncodedStaticFieldValueIterator { |
| 1413 | public: |
Shinichiro Hamaji | 82863f0 | 2015-11-05 16:51:33 +0900 | [diff] [blame] | 1414 | EncodedStaticFieldValueIterator(const DexFile& dex_file, |
| 1415 | const DexFile::ClassDef& class_def); |
| 1416 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1417 | bool HasNext() const { return pos_ < array_size_; } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1418 | |
| 1419 | void Next(); |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 1420 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1421 | enum ValueType { |
| 1422 | kByte = 0x00, |
| 1423 | kShort = 0x02, |
| 1424 | kChar = 0x03, |
| 1425 | kInt = 0x04, |
| 1426 | kLong = 0x06, |
| 1427 | kFloat = 0x10, |
| 1428 | kDouble = 0x11, |
| 1429 | kString = 0x17, |
| 1430 | kType = 0x18, |
| 1431 | kField = 0x19, |
| 1432 | kMethod = 0x1a, |
| 1433 | kEnum = 0x1b, |
| 1434 | kArray = 0x1c, |
| 1435 | kAnnotation = 0x1d, |
| 1436 | kNull = 0x1e, |
| 1437 | kBoolean = 0x1f |
| 1438 | }; |
| 1439 | |
Shinichiro Hamaji | 82863f0 | 2015-11-05 16:51:33 +0900 | [diff] [blame] | 1440 | ValueType GetValueType() const { return type_; } |
| 1441 | const jvalue& GetJavaValue() const { return jval_; } |
| 1442 | |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 1443 | protected: |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1444 | static constexpr uint8_t kEncodedValueTypeMask = 0x1f; // 0b11111 |
| 1445 | static constexpr uint8_t kEncodedValueArgShift = 5; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1446 | |
| 1447 | const DexFile& dex_file_; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1448 | size_t array_size_; // Size of array. |
| 1449 | size_t pos_; // Current position. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1450 | const uint8_t* ptr_; // Pointer into encoded data array. |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1451 | ValueType type_; // Type of current encoded value. |
| 1452 | jvalue jval_; // Value of current encoded value. |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 1453 | |
| 1454 | private: |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1455 | DISALLOW_IMPLICIT_CONSTRUCTORS(EncodedStaticFieldValueIterator); |
| 1456 | }; |
Brian Carlstrom | 88f3654 | 2012-10-16 23:24:21 -0700 | [diff] [blame] | 1457 | std::ostream& operator<<(std::ostream& os, const EncodedStaticFieldValueIterator::ValueType& code); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1458 | |
| 1459 | class CatchHandlerIterator { |
| 1460 | public: |
| 1461 | CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address); |
Logan Chien | 736df02 | 2012-04-27 16:25:57 +0800 | [diff] [blame] | 1462 | |
| 1463 | CatchHandlerIterator(const DexFile::CodeItem& code_item, |
| 1464 | const DexFile::TryItem& try_item); |
| 1465 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1466 | explicit CatchHandlerIterator(const uint8_t* handler_data) { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1467 | Init(handler_data); |
| 1468 | } |
| 1469 | |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1470 | dex::TypeIndex GetHandlerTypeIndex() const { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1471 | return handler_.type_idx_; |
| 1472 | } |
| 1473 | uint32_t GetHandlerAddress() const { |
| 1474 | return handler_.address_; |
| 1475 | } |
| 1476 | void Next(); |
| 1477 | bool HasNext() const { |
| 1478 | return remaining_count_ != -1 || catch_all_; |
| 1479 | } |
| 1480 | // End of this set of catch blocks, convenience method to locate next set of catch blocks |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1481 | const uint8_t* EndDataPointer() const { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1482 | CHECK(!HasNext()); |
| 1483 | return current_data_; |
| 1484 | } |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 1485 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1486 | private: |
Logan Chien | 736df02 | 2012-04-27 16:25:57 +0800 | [diff] [blame] | 1487 | void Init(const DexFile::CodeItem& code_item, int32_t offset); |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1488 | void Init(const uint8_t* handler_data); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1489 | |
| 1490 | struct CatchHandlerItem { |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1491 | dex::TypeIndex type_idx_; // type index of the caught exception type |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1492 | uint32_t address_; // handler address |
| 1493 | } handler_; |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1494 | const uint8_t* current_data_; // the current handler in dex file. |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1495 | int32_t remaining_count_; // number of handlers not read. |
| 1496 | bool catch_all_; // is there a handler that will catch all exceptions in case |
| 1497 | // that all typed handler does not match. |
| 1498 | }; |
| 1499 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1500 | } // namespace art |
| 1501 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 1502 | #endif // ART_RUNTIME_DEX_FILE_H_ |