blob: 275dcc5a03c5df1c201c5363eff657231468d218 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 Shapiro1fb86202011-06-27 17:43:13 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "dex_file.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070018
19#include <fcntl.h>
Brian Carlstrom1f870082011-08-23 16:02:11 -070020#include <limits.h>
Brian Carlstromb0460ea2011-07-29 10:08:05 -070021#include <stdio.h>
Ian Rogersd81871c2011-10-03 13:57:23 -070022#include <stdlib.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070023#include <string.h>
Brian Carlstromb0460ea2011-07-29 10:08:05 -070024#include <sys/file.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070025#include <sys/stat.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070026
Elliott Hughes07ed66b2012-12-12 18:34:25 -080027#include "base/logging.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080028#include "base/stringprintf.h"
Ian Rogers0571d352011-11-03 19:51:38 -070029#include "class_linker.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "dex_file-inl.h"
jeffhao10037c82012-01-23 15:06:23 -080031#include "dex_file_verifier.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070032#include "globals.h"
Ian Rogers0571d352011-11-03 19:51:38 -070033#include "leb128.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070034#include "mirror/art_field-inl.h"
35#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/string.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070037#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070038#include "safe_map.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070039#include "thread.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070040#include "UniquePtr.h"
Ian Rogersa6724902013-09-23 09:23:37 -070041#include "utf-inl.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070042#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070043#include "well_known_classes.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070044#include "zip_archive.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070045
46namespace art {
47
Brian Carlstromf615a612011-07-23 12:50:34 -070048const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
49const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070050
Ian Rogers8b2c0b92013-09-19 02:56:49 -070051DexFile::ClassPathEntry DexFile::FindInClassPath(const char* descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070052 const ClassPath& class_path) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070053 for (size_t i = 0; i != class_path.size(); ++i) {
54 const DexFile* dex_file = class_path[i];
55 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
56 if (dex_class_def != NULL) {
57 return ClassPathEntry(dex_file, dex_class_def);
58 }
59 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070060 // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
Brian Carlstrom7e93b502011-08-04 14:16:22 -070061 return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
62 reinterpret_cast<const DexFile::ClassDef*>(NULL));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070063}
64
Brian Carlstrom5b332c82012-02-01 15:02:31 -080065bool DexFile::GetChecksum(const std::string& filename, uint32_t& checksum) {
66 if (IsValidZipFilename(filename)) {
67 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
68 if (zip_archive.get() == NULL) {
69 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070070 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080071 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(kClassesDex));
72 if (zip_entry.get() == NULL) {
Ian Rogerse6060102013-05-16 12:01:04 -070073 LOG(ERROR) << "Zip archive '" << filename << "' doesn't contain " << kClassesDex;
Brian Carlstrom5b332c82012-02-01 15:02:31 -080074 return false;
75 }
76 checksum = zip_entry->GetCrc32();
77 return true;
Brian Carlstrom78128a62011-09-15 17:21:19 -070078 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080079 if (IsValidDexFilename(filename)) {
Brian Carlstrom1db858a2012-03-11 22:44:45 -070080 UniquePtr<const DexFile> dex_file(DexFile::OpenFile(filename, filename, false));
Brian Carlstrom5b332c82012-02-01 15:02:31 -080081 if (dex_file.get() == NULL) {
82 return false;
83 }
84 checksum = dex_file->GetHeader().checksum_;
85 return true;
86 }
Ian Rogerse6060102013-05-16 12:01:04 -070087 LOG(ERROR) << "Expected valid zip or dex file name: " << filename;
Brian Carlstrom5b332c82012-02-01 15:02:31 -080088 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070089}
90
Brian Carlstrom16192862011-09-12 17:50:06 -070091const DexFile* DexFile::Open(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -080092 const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070093 if (IsValidZipFilename(filename)) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080094 return DexFile::OpenZip(filename, location);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070095 }
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -070096 if (!IsValidDexFilename(filename)) {
97 LOG(WARNING) << "Attempting to open dex file with unknown extension '" << filename << "'";
98 }
Brian Carlstroma004aa92012-02-08 18:05:09 -080099 return DexFile::OpenFile(filename, location, true);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700100}
101
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800102int DexFile::GetPermissions() const {
103 if (mem_map_.get() == NULL) {
104 return 0;
105 } else {
106 return mem_map_->GetProtect();
107 }
108}
109
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200110bool DexFile::IsReadOnly() const {
111 return GetPermissions() == PROT_READ;
112}
113
Brian Carlstrome0948e12013-08-29 09:36:15 -0700114bool DexFile::EnableWrite() const {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200115 CHECK(IsReadOnly());
116 if (mem_map_.get() == NULL) {
117 return false;
118 } else {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700119 return mem_map_->Protect(PROT_READ | PROT_WRITE);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200120 }
121}
122
Brian Carlstrome0948e12013-08-29 09:36:15 -0700123bool DexFile::DisableWrite() const {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200124 CHECK(!IsReadOnly());
125 if (mem_map_.get() == NULL) {
126 return false;
127 } else {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700128 return mem_map_->Protect(PROT_READ);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200129 }
130}
131
Brian Carlstrom16192862011-09-12 17:50:06 -0700132const DexFile* DexFile::OpenFile(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800133 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800134 bool verify) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800135 CHECK(!location.empty()) << filename;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700136 int fd = open(filename.c_str(), O_RDONLY); // TODO: scoped_fd
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700137 if (fd == -1) {
138 PLOG(ERROR) << "open(\"" << filename << "\", O_RDONLY) failed";
139 return NULL;
140 }
141 struct stat sbuf;
142 memset(&sbuf, 0, sizeof(sbuf));
143 if (fstat(fd, &sbuf) == -1) {
144 PLOG(ERROR) << "fstat \"" << filename << "\" failed";
145 close(fd);
146 return NULL;
147 }
Ian Rogers7cfb93e2012-01-17 19:46:36 -0800148 if (S_ISDIR(sbuf.st_mode)) {
149 LOG(ERROR) << "attempt to mmap directory \"" << filename << "\"";
150 return NULL;
151 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700152 size_t length = sbuf.st_size;
Brian Carlstrom89521892011-12-07 22:05:07 -0800153 UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0));
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700154 if (map.get() == NULL) {
155 LOG(ERROR) << "mmap \"" << filename << "\" failed";
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700156 close(fd);
157 return NULL;
158 }
159 close(fd);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800160
161 if (map->Size() < sizeof(DexFile::Header)) {
162 LOG(ERROR) << "Failed to open dex file '" << filename << "' that is too short to have a header";
163 return NULL;
164 }
165
166 const Header* dex_header = reinterpret_cast<const Header*>(map->Begin());
167
168 const DexFile* dex_file = OpenMemory(location, dex_header->checksum_, map.release());
jeffhao54c1ceb2012-02-01 11:45:32 -0800169 if (dex_file == NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800170 LOG(ERROR) << "Failed to open dex file '" << filename << "' from memory";
jeffhao54c1ceb2012-02-01 11:45:32 -0800171 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800172 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800173
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700174 if (verify && !DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800175 LOG(ERROR) << "Failed to verify dex file '" << filename << "'";
jeffhao54c1ceb2012-02-01 11:45:32 -0800176 return NULL;
177 }
178
jeffhaof6174e82012-01-31 16:14:17 -0800179 return dex_file;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700180}
181
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700182const char* DexFile::kClassesDex = "classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700183
Brian Carlstrom16192862011-09-12 17:50:06 -0700184const DexFile* DexFile::OpenZip(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800185 const std::string& location) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700186 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
187 if (zip_archive.get() == NULL) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700188 LOG(ERROR) << "Failed to open " << filename << " when looking for classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700189 return NULL;
190 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800191 return DexFile::Open(*zip_archive.get(), location);
192}
193
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800194const DexFile* DexFile::OpenMemory(const std::string& location,
195 uint32_t location_checksum,
196 MemMap* mem_map) {
197 return OpenMemory(mem_map->Begin(),
198 mem_map->Size(),
199 location,
200 location_checksum,
201 mem_map);
202}
203
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800204const DexFile* DexFile::Open(const ZipArchive& zip_archive, const std::string& location) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800205 CHECK(!location.empty());
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800206 UniquePtr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex));
Elliott Hughes90a33692011-08-30 13:27:07 -0700207 if (zip_entry.get() == NULL) {
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700208 LOG(ERROR) << "Failed to find classes.dex within '" << location << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700209 return NULL;
210 }
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700211 UniquePtr<MemMap> map(zip_entry->ExtractToMemMap(kClassesDex));
Brian Carlstrom89521892011-12-07 22:05:07 -0800212 if (map.get() == NULL) {
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700213 LOG(ERROR) << "Failed to extract '" << kClassesDex << "' from '" << location << "'";
Brian Carlstrom89521892011-12-07 22:05:07 -0800214 return NULL;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700215 }
Brian Carlstrome0948e12013-08-29 09:36:15 -0700216 UniquePtr<const DexFile> dex_file(OpenMemory(location, zip_entry->GetCrc32(), map.release()));
217 if (dex_file.get() == NULL) {
jeffhao54c1ceb2012-02-01 11:45:32 -0800218 LOG(ERROR) << "Failed to open dex file '" << location << "' from memory";
219 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800220 }
Brian Carlstrome0948e12013-08-29 09:36:15 -0700221 if (!DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size())) {
jeffhao54c1ceb2012-02-01 11:45:32 -0800222 LOG(ERROR) << "Failed to verify dex file '" << location << "'";
223 return NULL;
224 }
Brian Carlstrome0948e12013-08-29 09:36:15 -0700225 if (!dex_file->DisableWrite()) {
226 LOG(ERROR) << "Failed to make dex file read only '" << location << "'";
227 return NULL;
228 }
229 CHECK(dex_file->IsReadOnly()) << location;
230 return dex_file.release();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700231}
232
Brian Carlstrom89521892011-12-07 22:05:07 -0800233const DexFile* DexFile::OpenMemory(const byte* base,
jeffhaof6174e82012-01-31 16:14:17 -0800234 size_t size,
Brian Carlstrom89521892011-12-07 22:05:07 -0800235 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800236 uint32_t location_checksum,
Brian Carlstrom89521892011-12-07 22:05:07 -0800237 MemMap* mem_map) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700238 CHECK_ALIGNED(base, 4); // various dex file structures must be word aligned
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800239 UniquePtr<DexFile> dex_file(new DexFile(base, size, location, location_checksum, mem_map));
Brian Carlstromf615a612011-07-23 12:50:34 -0700240 if (!dex_file->Init()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700241 return NULL;
242 } else {
Brian Carlstromf615a612011-07-23 12:50:34 -0700243 return dex_file.release();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700244 }
245}
246
Jesse Wilson6bf19152011-09-29 13:12:33 -0400247DexFile::~DexFile() {
Elliott Hughes8cef0b82011-10-11 19:24:00 -0700248 // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and
249 // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could
250 // re-attach, but cleaning up these global references is not obviously useful. It's not as if
251 // the global reference table is otherwise empty!
Jesse Wilson6bf19152011-09-29 13:12:33 -0400252}
253
Brian Carlstromf615a612011-07-23 12:50:34 -0700254bool DexFile::Init() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700255 InitMembers();
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800256 if (!CheckMagicAndVersion()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700257 return false;
258 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700259 return true;
260}
261
Brian Carlstromf615a612011-07-23 12:50:34 -0700262void DexFile::InitMembers() {
Ian Rogers30fab402012-01-23 15:43:46 -0800263 const byte* b = begin_;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700264 header_ = reinterpret_cast<const Header*>(b);
265 const Header* h = header_;
266 string_ids_ = reinterpret_cast<const StringId*>(b + h->string_ids_off_);
267 type_ids_ = reinterpret_cast<const TypeId*>(b + h->type_ids_off_);
268 field_ids_ = reinterpret_cast<const FieldId*>(b + h->field_ids_off_);
269 method_ids_ = reinterpret_cast<const MethodId*>(b + h->method_ids_off_);
270 proto_ids_ = reinterpret_cast<const ProtoId*>(b + h->proto_ids_off_);
271 class_defs_ = reinterpret_cast<const ClassDef*>(b + h->class_defs_off_);
272}
273
jeffhao10037c82012-01-23 15:06:23 -0800274bool DexFile::CheckMagicAndVersion() const {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800275 CHECK(header_->magic_ != NULL) << GetLocation();
276 if (!IsMagicValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800277 LOG(ERROR) << "Unrecognized magic number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800278 << " " << header_->magic_[0]
279 << " " << header_->magic_[1]
280 << " " << header_->magic_[2]
281 << " " << header_->magic_[3];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700282 return false;
283 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800284 if (!IsVersionValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800285 LOG(ERROR) << "Unrecognized version number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800286 << " " << header_->magic_[4]
287 << " " << header_->magic_[5]
288 << " " << header_->magic_[6]
289 << " " << header_->magic_[7];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700290 return false;
291 }
292 return true;
293}
294
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800295bool DexFile::IsMagicValid(const byte* magic) {
296 return (memcmp(magic, kDexMagic, sizeof(kDexMagic)) == 0);
297}
298
299bool DexFile::IsVersionValid(const byte* magic) {
300 const byte* version = &magic[sizeof(kDexMagic)];
301 return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0);
302}
303
Ian Rogersd81871c2011-10-03 13:57:23 -0700304uint32_t DexFile::GetVersion() const {
305 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]);
306 return atoi(version);
307}
308
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700309const DexFile::ClassDef* DexFile::FindClassDef(const char* descriptor) const {
310 size_t num_class_defs = NumClassDefs();
311 if (num_class_defs == 0) {
312 return NULL;
313 }
314 const StringId* string_id = FindStringId(descriptor);
315 if (string_id == NULL) {
316 return NULL;
317 }
318 const TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
319 if (type_id == NULL) {
320 return NULL;
321 }
322 uint16_t type_idx = GetIndexForTypeId(*type_id);
323 for (size_t i = 0; i < num_class_defs; ++i) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700324 const ClassDef& class_def = GetClassDef(i);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700325 if (class_def.class_idx_ == type_idx) {
326 return &class_def;
327 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700328 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700329 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700330}
331
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700332const DexFile::ClassDef* DexFile::FindClassDef(uint16_t type_idx) const {
333 size_t num_class_defs = NumClassDefs();
334 for (size_t i = 0; i < num_class_defs; ++i) {
335 const ClassDef& class_def = GetClassDef(i);
336 if (class_def.class_idx_ == type_idx) {
337 return &class_def;
338 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700339 }
340 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700341}
342
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800343const DexFile::FieldId* DexFile::FindFieldId(const DexFile::TypeId& declaring_klass,
344 const DexFile::StringId& name,
345 const DexFile::TypeId& type) const {
346 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
347 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
348 const uint32_t name_idx = GetIndexForStringId(name);
349 const uint16_t type_idx = GetIndexForTypeId(type);
Ian Rogersf8582c32013-05-29 16:33:03 -0700350 int32_t lo = 0;
351 int32_t hi = NumFieldIds() - 1;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800352 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700353 int32_t mid = (hi + lo) / 2;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800354 const DexFile::FieldId& field = GetFieldId(mid);
355 if (class_idx > field.class_idx_) {
356 lo = mid + 1;
357 } else if (class_idx < field.class_idx_) {
358 hi = mid - 1;
359 } else {
360 if (name_idx > field.name_idx_) {
361 lo = mid + 1;
362 } else if (name_idx < field.name_idx_) {
363 hi = mid - 1;
364 } else {
365 if (type_idx > field.type_idx_) {
366 lo = mid + 1;
367 } else if (type_idx < field.type_idx_) {
368 hi = mid - 1;
369 } else {
370 return &field;
371 }
372 }
373 }
374 }
375 return NULL;
376}
377
378const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass,
Ian Rogers0571d352011-11-03 19:51:38 -0700379 const DexFile::StringId& name,
380 const DexFile::ProtoId& signature) const {
381 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800382 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
Ian Rogers0571d352011-11-03 19:51:38 -0700383 const uint32_t name_idx = GetIndexForStringId(name);
384 const uint16_t proto_idx = GetIndexForProtoId(signature);
Ian Rogersf8582c32013-05-29 16:33:03 -0700385 int32_t lo = 0;
386 int32_t hi = NumMethodIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700387 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700388 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700389 const DexFile::MethodId& method = GetMethodId(mid);
390 if (class_idx > method.class_idx_) {
391 lo = mid + 1;
392 } else if (class_idx < method.class_idx_) {
393 hi = mid - 1;
394 } else {
395 if (name_idx > method.name_idx_) {
396 lo = mid + 1;
397 } else if (name_idx < method.name_idx_) {
398 hi = mid - 1;
399 } else {
400 if (proto_idx > method.proto_idx_) {
401 lo = mid + 1;
402 } else if (proto_idx < method.proto_idx_) {
403 hi = mid - 1;
404 } else {
405 return &method;
406 }
407 }
408 }
409 }
410 return NULL;
411}
412
Ian Rogers637c65b2013-05-31 11:46:00 -0700413const DexFile::StringId* DexFile::FindStringId(const char* string) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700414 int32_t lo = 0;
415 int32_t hi = NumStringIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700416 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700417 int32_t mid = (hi + lo) / 2;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800418 uint32_t length;
Ian Rogers0571d352011-11-03 19:51:38 -0700419 const DexFile::StringId& str_id = GetStringId(mid);
420 const char* str = GetStringDataAndLength(str_id, &length);
Ian Rogers637c65b2013-05-31 11:46:00 -0700421 int compare = CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(string, str);
422 if (compare > 0) {
423 lo = mid + 1;
424 } else if (compare < 0) {
425 hi = mid - 1;
426 } else {
427 return &str_id;
428 }
429 }
430 return NULL;
431}
432
433const DexFile::StringId* DexFile::FindStringId(const uint16_t* string) const {
434 int32_t lo = 0;
435 int32_t hi = NumStringIds() - 1;
436 while (hi >= lo) {
437 int32_t mid = (hi + lo) / 2;
438 uint32_t length;
439 const DexFile::StringId& str_id = GetStringId(mid);
440 const char* str = GetStringDataAndLength(str_id, &length);
441 int compare = CompareModifiedUtf8ToUtf16AsCodePointValues(str, string);
Ian Rogers0571d352011-11-03 19:51:38 -0700442 if (compare > 0) {
443 lo = mid + 1;
444 } else if (compare < 0) {
445 hi = mid - 1;
446 } else {
447 return &str_id;
448 }
449 }
450 return NULL;
451}
452
453const DexFile::TypeId* DexFile::FindTypeId(uint32_t string_idx) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700454 int32_t lo = 0;
455 int32_t hi = NumTypeIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700456 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700457 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700458 const TypeId& type_id = GetTypeId(mid);
459 if (string_idx > type_id.descriptor_idx_) {
460 lo = mid + 1;
461 } else if (string_idx < type_id.descriptor_idx_) {
462 hi = mid - 1;
463 } else {
464 return &type_id;
465 }
466 }
467 return NULL;
468}
469
470const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800471 const std::vector<uint16_t>& signature_type_idxs) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700472 int32_t lo = 0;
473 int32_t hi = NumProtoIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700474 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700475 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700476 const DexFile::ProtoId& proto = GetProtoId(mid);
477 int compare = return_type_idx - proto.return_type_idx_;
478 if (compare == 0) {
479 DexFileParameterIterator it(*this, proto);
480 size_t i = 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800481 while (it.HasNext() && i < signature_type_idxs.size() && compare == 0) {
482 compare = signature_type_idxs[i] - it.GetTypeIdx();
Ian Rogers0571d352011-11-03 19:51:38 -0700483 it.Next();
484 i++;
485 }
486 if (compare == 0) {
487 if (it.HasNext()) {
488 compare = -1;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800489 } else if (i < signature_type_idxs.size()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700490 compare = 1;
491 }
492 }
493 }
494 if (compare > 0) {
495 lo = mid + 1;
496 } else if (compare < 0) {
497 hi = mid - 1;
498 } else {
499 return &proto;
500 }
501 }
502 return NULL;
503}
504
505// Given a signature place the type ids into the given vector
Ian Rogersd91d6d62013-09-25 20:26:14 -0700506bool DexFile::CreateTypeList(const StringPiece& signature, uint16_t* return_type_idx,
507 std::vector<uint16_t>* param_type_idxs) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700508 if (signature[0] != '(') {
509 return false;
510 }
511 size_t offset = 1;
512 size_t end = signature.size();
513 bool process_return = false;
514 while (offset < end) {
515 char c = signature[offset];
516 offset++;
517 if (c == ')') {
518 process_return = true;
519 continue;
520 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700521 // TODO: avoid building a string.
Ian Rogers0571d352011-11-03 19:51:38 -0700522 std::string descriptor;
523 descriptor += c;
524 while (c == '[') { // process array prefix
525 if (offset >= end) { // expect some descriptor following [
526 return false;
527 }
528 c = signature[offset];
529 offset++;
530 descriptor += c;
531 }
532 if (c == 'L') { // process type descriptors
533 do {
534 if (offset >= end) { // unexpected early termination of descriptor
535 return false;
536 }
537 c = signature[offset];
538 offset++;
539 descriptor += c;
540 } while (c != ';');
541 }
Ian Rogers637c65b2013-05-31 11:46:00 -0700542 const DexFile::StringId* string_id = FindStringId(descriptor.c_str());
Ian Rogers0571d352011-11-03 19:51:38 -0700543 if (string_id == NULL) {
544 return false;
545 }
546 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
547 if (type_id == NULL) {
548 return false;
549 }
550 uint16_t type_idx = GetIndexForTypeId(*type_id);
551 if (!process_return) {
552 param_type_idxs->push_back(type_idx);
553 } else {
554 *return_type_idx = type_idx;
555 return offset == end; // return true if the signature had reached a sensible end
556 }
557 }
558 return false; // failed to correctly parse return type
559}
560
Ian Rogersd91d6d62013-09-25 20:26:14 -0700561const Signature DexFile::CreateSignature(const StringPiece& signature) const {
562 uint16_t return_type_idx;
563 std::vector<uint16_t> param_type_indices;
564 bool success = CreateTypeList(signature, &return_type_idx, &param_type_indices);
565 if (!success) {
566 return Signature::NoSignature();
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700567 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700568 const ProtoId* proto_id = FindProtoId(return_type_idx, param_type_indices);
569 if (proto_id == NULL) {
570 return Signature::NoSignature();
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700571 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700572 return Signature(this, *proto_id);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700573}
574
Brian Carlstromea46f952013-07-30 01:26:50 -0700575int32_t DexFile::GetLineNumFromPC(const mirror::ArtMethod* method, uint32_t rel_pc) const {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700576 // For native method, lineno should be -2 to indicate it is native. Note that
577 // "line number == -2" is how libcore tells from StackTraceElement.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700578 if (method->GetCodeItemOffset() == 0) {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700579 return -2;
580 }
581
TDYa127c8dc1012012-04-19 07:03:33 -0700582 const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset());
Elliott Hughescaf76542012-06-28 16:08:22 -0700583 DCHECK(code_item != NULL) << PrettyMethod(method) << " " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700584
585 // A method with no line number info should return -1
586 LineNumFromPcContext context(rel_pc, -1);
TDYa127c8dc1012012-04-19 07:03:33 -0700587 DecodeDebugInfo(code_item, method->IsStatic(), method->GetDexMethodIndex(), LineNumForPcCb,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800588 NULL, &context);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700589 return context.line_num_;
590}
591
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700592int32_t DexFile::FindTryItem(const CodeItem &code_item, uint32_t address) {
Ian Rogers0571d352011-11-03 19:51:38 -0700593 // Note: Signed type is important for max and min.
594 int32_t min = 0;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700595 int32_t max = code_item.tries_size_ - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700596
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700597 while (min <= max) {
598 int32_t mid = min + ((max - min) / 2);
599
600 const art::DexFile::TryItem* ti = GetTryItems(code_item, mid);
601 uint32_t start = ti->start_addr_;
602 uint32_t end = start + ti->insn_count_;
603
Ian Rogers0571d352011-11-03 19:51:38 -0700604 if (address < start) {
605 max = mid - 1;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700606 } else if (address >= end) {
607 min = mid + 1;
608 } else { // We have a winner!
609 return mid;
Ian Rogers0571d352011-11-03 19:51:38 -0700610 }
611 }
612 // No match.
613 return -1;
614}
615
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700616int32_t DexFile::FindCatchHandlerOffset(const CodeItem &code_item, uint32_t address) {
617 int32_t try_item = FindTryItem(code_item, address);
618 if (try_item == -1) {
619 return -1;
620 } else {
621 return DexFile::GetTryItems(code_item, try_item)->handler_off_;
622 }
623}
624
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800625void DexFile::DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800626 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
627 void* context, const byte* stream, LocalInfo* local_in_reg) const {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700628 uint32_t line = DecodeUnsignedLeb128(&stream);
629 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
630 uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_;
631 uint32_t address = 0;
Elliott Hughes30646832011-10-13 16:59:46 -0700632 bool need_locals = (local_cb != NULL);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700633
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800634 if (!is_static) {
Elliott Hughes30646832011-10-13 16:59:46 -0700635 if (need_locals) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800636 const char* descriptor = GetMethodDeclaringClassDescriptor(GetMethodId(method_idx));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700637 local_in_reg[arg_reg].name_ = "this";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800638 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800639 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700640 local_in_reg[arg_reg].start_address_ = 0;
641 local_in_reg[arg_reg].is_live_ = true;
642 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700643 arg_reg++;
644 }
645
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800646 DexFileParameterIterator it(*this, GetMethodPrototype(GetMethodId(method_idx)));
Ian Rogers0571d352011-11-03 19:51:38 -0700647 for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700648 if (arg_reg >= code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700649 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800650 << " >= " << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700651 return;
652 }
Elliott Hughes392b1242011-11-30 13:55:50 -0800653 uint32_t id = DecodeUnsignedLeb128P1(&stream);
Ian Rogers0571d352011-11-03 19:51:38 -0700654 const char* descriptor = it.GetDescriptor();
Elliott Hughes392b1242011-11-30 13:55:50 -0800655 if (need_locals && id != kDexNoIndex) {
Ian Rogers0571d352011-11-03 19:51:38 -0700656 const char* name = StringDataByIdx(id);
Elliott Hughes30646832011-10-13 16:59:46 -0700657 local_in_reg[arg_reg].name_ = name;
658 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800659 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700660 local_in_reg[arg_reg].start_address_ = address;
661 local_in_reg[arg_reg].is_live_ = true;
662 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700663 switch (*descriptor) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700664 case 'D':
665 case 'J':
666 arg_reg += 2;
667 break;
668 default:
669 arg_reg += 1;
670 break;
671 }
672 }
673
Ian Rogers0571d352011-11-03 19:51:38 -0700674 if (it.HasNext()) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800675 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700676 return;
677 }
678
679 for (;;) {
680 uint8_t opcode = *stream++;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700681 uint16_t reg;
jeffhaof8728872011-10-28 19:11:13 -0700682 uint16_t name_idx;
683 uint16_t descriptor_idx;
684 uint16_t signature_idx = 0;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700685
Shih-wei Liao195487c2011-08-20 13:29:04 -0700686 switch (opcode) {
687 case DBG_END_SEQUENCE:
688 return;
689
690 case DBG_ADVANCE_PC:
691 address += DecodeUnsignedLeb128(&stream);
692 break;
693
694 case DBG_ADVANCE_LINE:
Shih-wei Liao8a05d272011-10-15 18:45:43 -0700695 line += DecodeSignedLeb128(&stream);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700696 break;
697
698 case DBG_START_LOCAL:
699 case DBG_START_LOCAL_EXTENDED:
700 reg = DecodeUnsignedLeb128(&stream);
701 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700702 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800703 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700704 return;
705 }
706
jeffhaof8728872011-10-28 19:11:13 -0700707 name_idx = DecodeUnsignedLeb128P1(&stream);
708 descriptor_idx = DecodeUnsignedLeb128P1(&stream);
709 if (opcode == DBG_START_LOCAL_EXTENDED) {
710 signature_idx = DecodeUnsignedLeb128P1(&stream);
711 }
712
Shih-wei Liao195487c2011-08-20 13:29:04 -0700713 // Emit what was previously there, if anything
Elliott Hughes30646832011-10-13 16:59:46 -0700714 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800715 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700716
Ian Rogers0571d352011-11-03 19:51:38 -0700717 local_in_reg[reg].name_ = StringDataByIdx(name_idx);
718 local_in_reg[reg].descriptor_ = StringByTypeIdx(descriptor_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700719 if (opcode == DBG_START_LOCAL_EXTENDED) {
Ian Rogers0571d352011-11-03 19:51:38 -0700720 local_in_reg[reg].signature_ = StringDataByIdx(signature_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700721 }
722 local_in_reg[reg].start_address_ = address;
723 local_in_reg[reg].is_live_ = true;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700724 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700725 break;
726
727 case DBG_END_LOCAL:
728 reg = DecodeUnsignedLeb128(&stream);
729 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700730 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800731 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700732 return;
733 }
734
Elliott Hughes30646832011-10-13 16:59:46 -0700735 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800736 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Elliott Hughes30646832011-10-13 16:59:46 -0700737 local_in_reg[reg].is_live_ = false;
738 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700739 break;
740
741 case DBG_RESTART_LOCAL:
742 reg = DecodeUnsignedLeb128(&stream);
743 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700744 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800745 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700746 return;
747 }
748
Elliott Hughes30646832011-10-13 16:59:46 -0700749 if (need_locals) {
750 if (local_in_reg[reg].name_ == NULL || local_in_reg[reg].descriptor_ == NULL) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800751 LOG(ERROR) << "invalid stream - no name or descriptor in " << GetLocation();
Elliott Hughes30646832011-10-13 16:59:46 -0700752 return;
753 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700754
Elliott Hughes30646832011-10-13 16:59:46 -0700755 // If the register is live, the "restart" is superfluous,
756 // and we don't want to mess with the existing start address.
757 if (!local_in_reg[reg].is_live_) {
758 local_in_reg[reg].start_address_ = address;
759 local_in_reg[reg].is_live_ = true;
760 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700761 }
762 break;
763
764 case DBG_SET_PROLOGUE_END:
765 case DBG_SET_EPILOGUE_BEGIN:
766 case DBG_SET_FILE:
767 break;
768
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700769 default: {
770 int adjopcode = opcode - DBG_FIRST_SPECIAL;
771
Shih-wei Liao195487c2011-08-20 13:29:04 -0700772 address += adjopcode / DBG_LINE_RANGE;
773 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
774
Elliott Hughes2435a572012-02-17 16:07:41 -0800775 if (position_cb != NULL) {
776 if (position_cb(context, address, line)) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700777 // early exit
778 return;
779 }
780 }
781 break;
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700782 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700783 }
784 }
785}
786
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800787void DexFile::DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800788 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
789 void* context) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700790 const byte* stream = GetDebugInfoStream(code_item);
Brian Carlstrome0948e12013-08-29 09:36:15 -0700791 UniquePtr<LocalInfo[]> local_in_reg(local_cb != NULL ?
792 new LocalInfo[code_item->registers_size_] :
793 NULL);
Ian Rogers0571d352011-11-03 19:51:38 -0700794 if (stream != NULL) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700795 DecodeDebugInfo0(code_item, is_static, method_idx, position_cb, local_cb, context, stream, &local_in_reg[0]);
Ian Rogers0571d352011-11-03 19:51:38 -0700796 }
797 for (int reg = 0; reg < code_item->registers_size_; reg++) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700798 InvokeLocalCbIfLive(context, reg, code_item->insns_size_in_code_units_, &local_in_reg[0], local_cb);
Ian Rogers0571d352011-11-03 19:51:38 -0700799 }
800}
801
Elliott Hughes2435a572012-02-17 16:07:41 -0800802bool DexFile::LineNumForPcCb(void* raw_context, uint32_t address, uint32_t line_num) {
803 LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(raw_context);
Ian Rogers0571d352011-11-03 19:51:38 -0700804
805 // We know that this callback will be called in
806 // ascending address order, so keep going until we find
807 // a match or we've just gone past it.
808 if (address > context->address_) {
809 // The line number from the previous positions callback
810 // wil be the final result.
811 return true;
812 } else {
813 context->line_num_ = line_num;
814 return address == context->address_;
815 }
816}
817
Ian Rogersd91d6d62013-09-25 20:26:14 -0700818std::string Signature::ToString() const {
819 if (dex_file_ == nullptr) {
820 CHECK(proto_id_ == nullptr);
821 return "<no signature>";
822 }
823 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
824 std::string result;
825 if (params == nullptr) {
826 result += "()";
827 } else {
828 result += "(";
829 for (uint32_t i = 0; i < params->Size(); ++i) {
830 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_);
831 }
832 result += ")";
833 }
834 result += dex_file_->StringByTypeIdx(proto_id_->return_type_idx_);
835 return result;
836}
837
838std::ostream& operator<<(std::ostream& os, const Signature& sig) {
839 return os << sig.ToString();
840}
841
Ian Rogers0571d352011-11-03 19:51:38 -0700842// Decodes the header section from the class data bytes.
843void ClassDataItemIterator::ReadClassDataHeader() {
844 CHECK(ptr_pos_ != NULL);
845 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
846 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
847 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
848 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
849}
850
851void ClassDataItemIterator::ReadClassDataField() {
852 field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
853 field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700854 if (last_idx_ != 0 && field_.field_idx_delta_ == 0) {
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700855 LOG(WARNING) << "Duplicate field " << PrettyField(GetMemberIndex(), dex_file_)
856 << " in " << dex_file_.GetLocation();
857 }
Ian Rogers0571d352011-11-03 19:51:38 -0700858}
859
860void ClassDataItemIterator::ReadClassDataMethod() {
861 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
862 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
863 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700864 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) {
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700865 LOG(WARNING) << "Duplicate method " << PrettyMethod(GetMemberIndex(), dex_file_)
866 << " in " << dex_file_.GetLocation();
867 }
Ian Rogers0571d352011-11-03 19:51:38 -0700868}
869
870// Read a signed integer. "zwidth" is the zero-based byte count.
871static int32_t ReadSignedInt(const byte* ptr, int zwidth) {
872 int32_t val = 0;
873 for (int i = zwidth; i >= 0; --i) {
874 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
875 }
876 val >>= (3 - zwidth) * 8;
877 return val;
878}
879
880// Read an unsigned integer. "zwidth" is the zero-based byte count,
881// "fill_on_right" indicates which side we want to zero-fill from.
882static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth, bool fill_on_right) {
883 uint32_t val = 0;
884 if (!fill_on_right) {
885 for (int i = zwidth; i >= 0; --i) {
886 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
887 }
888 val >>= (3 - zwidth) * 8;
889 } else {
890 for (int i = zwidth; i >= 0; --i) {
891 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
892 }
893 }
894 return val;
895}
896
897// Read a signed long. "zwidth" is the zero-based byte count.
898static int64_t ReadSignedLong(const byte* ptr, int zwidth) {
899 int64_t val = 0;
900 for (int i = zwidth; i >= 0; --i) {
901 val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56);
902 }
903 val >>= (7 - zwidth) * 8;
904 return val;
905}
906
907// Read an unsigned long. "zwidth" is the zero-based byte count,
908// "fill_on_right" indicates which side we want to zero-fill from.
909static uint64_t ReadUnsignedLong(const byte* ptr, int zwidth, bool fill_on_right) {
910 uint64_t val = 0;
911 if (!fill_on_right) {
912 for (int i = zwidth; i >= 0; --i) {
913 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
914 }
915 val >>= (7 - zwidth) * 8;
916 } else {
917 for (int i = zwidth; i >= 0; --i) {
918 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
919 }
920 }
921 return val;
922}
923
924EncodedStaticFieldValueIterator::EncodedStaticFieldValueIterator(const DexFile& dex_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800925 mirror::DexCache* dex_cache,
926 mirror::ClassLoader* class_loader,
Ian Rogersca190662012-06-26 15:45:57 -0700927 ClassLinker* linker,
928 const DexFile::ClassDef& class_def)
Brian Carlstrom88f36542012-10-16 23:24:21 -0700929 : dex_file_(dex_file), dex_cache_(dex_cache), class_loader_(class_loader), linker_(linker),
930 array_size_(), pos_(-1), type_(kByte) {
Ian Rogers0571d352011-11-03 19:51:38 -0700931 ptr_ = dex_file.GetEncodedStaticFieldValuesArray(class_def);
932 if (ptr_ == NULL) {
933 array_size_ = 0;
934 } else {
935 array_size_ = DecodeUnsignedLeb128(&ptr_);
936 }
937 if (array_size_ > 0) {
938 Next();
939 }
940}
941
942void EncodedStaticFieldValueIterator::Next() {
943 pos_++;
944 if (pos_ >= array_size_) {
945 return;
946 }
947 byte value_type = *ptr_++;
948 byte value_arg = value_type >> kEncodedValueArgShift;
949 size_t width = value_arg + 1; // assume and correct later
Brian Carlstrom88f36542012-10-16 23:24:21 -0700950 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
Ian Rogers0571d352011-11-03 19:51:38 -0700951 switch (type_) {
952 case kBoolean:
953 jval_.i = (value_arg != 0) ? 1 : 0;
954 width = 0;
955 break;
956 case kByte:
957 jval_.i = ReadSignedInt(ptr_, value_arg);
958 CHECK(IsInt(8, jval_.i));
959 break;
960 case kShort:
961 jval_.i = ReadSignedInt(ptr_, value_arg);
962 CHECK(IsInt(16, jval_.i));
963 break;
964 case kChar:
965 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
966 CHECK(IsUint(16, jval_.i));
967 break;
968 case kInt:
969 jval_.i = ReadSignedInt(ptr_, value_arg);
970 break;
971 case kLong:
972 jval_.j = ReadSignedLong(ptr_, value_arg);
973 break;
974 case kFloat:
975 jval_.i = ReadUnsignedInt(ptr_, value_arg, true);
976 break;
977 case kDouble:
978 jval_.j = ReadUnsignedLong(ptr_, value_arg, true);
979 break;
980 case kString:
981 case kType:
Ian Rogers0571d352011-11-03 19:51:38 -0700982 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
983 break;
984 case kField:
Brian Carlstrom88f36542012-10-16 23:24:21 -0700985 case kMethod:
986 case kEnum:
Ian Rogers0571d352011-11-03 19:51:38 -0700987 case kArray:
988 case kAnnotation:
989 UNIMPLEMENTED(FATAL) << ": type " << type_;
990 break;
991 case kNull:
992 jval_.l = NULL;
993 width = 0;
994 break;
995 default:
996 LOG(FATAL) << "Unreached";
997 }
998 ptr_ += width;
999}
1000
Brian Carlstromea46f952013-07-30 01:26:50 -07001001void EncodedStaticFieldValueIterator::ReadValueToField(mirror::ArtField* field) const {
Ian Rogers0571d352011-11-03 19:51:38 -07001002 switch (type_) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001003 case kBoolean: field->SetBoolean(field->GetDeclaringClass(), jval_.z); break;
1004 case kByte: field->SetByte(field->GetDeclaringClass(), jval_.b); break;
1005 case kShort: field->SetShort(field->GetDeclaringClass(), jval_.s); break;
1006 case kChar: field->SetChar(field->GetDeclaringClass(), jval_.c); break;
1007 case kInt: field->SetInt(field->GetDeclaringClass(), jval_.i); break;
1008 case kLong: field->SetLong(field->GetDeclaringClass(), jval_.j); break;
1009 case kFloat: field->SetFloat(field->GetDeclaringClass(), jval_.f); break;
1010 case kDouble: field->SetDouble(field->GetDeclaringClass(), jval_.d); break;
1011 case kNull: field->SetObject(field->GetDeclaringClass(), NULL); break;
Ian Rogers0571d352011-11-03 19:51:38 -07001012 case kString: {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001013 mirror::String* resolved = linker_->ResolveString(dex_file_, jval_.i, dex_cache_);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001014 field->SetObject(field->GetDeclaringClass(), resolved);
Ian Rogers0571d352011-11-03 19:51:38 -07001015 break;
1016 }
Brian Carlstrom88f36542012-10-16 23:24:21 -07001017 case kType: {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001018 mirror::Class* resolved = linker_->ResolveType(dex_file_, jval_.i, dex_cache_, class_loader_);
mikaelpeltierebf6aa82012-11-07 14:02:15 +01001019 field->SetObject(field->GetDeclaringClass(), resolved);
Brian Carlstrom88f36542012-10-16 23:24:21 -07001020 break;
1021 }
Ian Rogers0571d352011-11-03 19:51:38 -07001022 default: UNIMPLEMENTED(FATAL) << ": type " << type_;
1023 }
1024}
1025
1026CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) {
1027 handler_.address_ = -1;
1028 int32_t offset = -1;
1029
1030 // Short-circuit the overwhelmingly common cases.
1031 switch (code_item.tries_size_) {
1032 case 0:
1033 break;
1034 case 1: {
1035 const DexFile::TryItem* tries = DexFile::GetTryItems(code_item, 0);
1036 uint32_t start = tries->start_addr_;
1037 if (address >= start) {
1038 uint32_t end = start + tries->insn_count_;
1039 if (address < end) {
1040 offset = tries->handler_off_;
1041 }
1042 }
1043 break;
1044 }
1045 default:
Ian Rogersdbbc99d2013-04-18 16:51:54 -07001046 offset = DexFile::FindCatchHandlerOffset(code_item, address);
Ian Rogers0571d352011-11-03 19:51:38 -07001047 }
Logan Chien736df022012-04-27 16:25:57 +08001048 Init(code_item, offset);
1049}
1050
1051CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item,
1052 const DexFile::TryItem& try_item) {
1053 handler_.address_ = -1;
1054 Init(code_item, try_item.handler_off_);
1055}
1056
1057void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item,
1058 int32_t offset) {
Ian Rogers0571d352011-11-03 19:51:38 -07001059 if (offset >= 0) {
Logan Chien736df022012-04-27 16:25:57 +08001060 Init(DexFile::GetCatchHandlerData(code_item, offset));
Ian Rogers0571d352011-11-03 19:51:38 -07001061 } else {
1062 // Not found, initialize as empty
1063 current_data_ = NULL;
1064 remaining_count_ = -1;
1065 catch_all_ = false;
1066 DCHECK(!HasNext());
1067 }
1068}
1069
1070void CatchHandlerIterator::Init(const byte* handler_data) {
1071 current_data_ = handler_data;
1072 remaining_count_ = DecodeSignedLeb128(&current_data_);
1073
1074 // If remaining_count_ is non-positive, then it is the negative of
1075 // the number of catch types, and the catches are followed by a
1076 // catch-all handler.
1077 if (remaining_count_ <= 0) {
1078 catch_all_ = true;
1079 remaining_count_ = -remaining_count_;
1080 } else {
1081 catch_all_ = false;
1082 }
1083 Next();
1084}
1085
1086void CatchHandlerIterator::Next() {
1087 if (remaining_count_ > 0) {
1088 handler_.type_idx_ = DecodeUnsignedLeb128(&current_data_);
1089 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1090 remaining_count_--;
1091 return;
1092 }
1093
1094 if (catch_all_) {
1095 handler_.type_idx_ = DexFile::kDexNoIndex16;
1096 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1097 catch_all_ = false;
1098 return;
1099 }
1100
1101 // no more handler
1102 remaining_count_ = -1;
1103}
1104
Carl Shapiro1fb86202011-06-27 17:43:13 -07001105} // namespace art