blob: c433f3dc48ffc3329464565017ba1fd69c9759a0 [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
Ian Rogers0571d352011-11-03 19:51:38 -070027#include "class_linker.h"
jeffhao10037c82012-01-23 15:06:23 -080028#include "dex_file_verifier.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070029#include "globals.h"
Ian Rogers0571d352011-11-03 19:51:38 -070030#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070031#include "logging.h"
32#include "object.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070033#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070034#include "safe_map.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070035#include "stringprintf.h"
36#include "thread.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070037#include "UniquePtr.h"
Ian Rogers0571d352011-11-03 19:51:38 -070038#include "utf.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070039#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070040#include "well_known_classes.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070041#include "zip_archive.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070042
43namespace art {
44
Brian Carlstromf615a612011-07-23 12:50:34 -070045const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
46const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070047
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070048DexFile::ClassPathEntry DexFile::FindInClassPath(const StringPiece& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070049 const ClassPath& class_path) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070050 for (size_t i = 0; i != class_path.size(); ++i) {
51 const DexFile* dex_file = class_path[i];
52 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
53 if (dex_class_def != NULL) {
54 return ClassPathEntry(dex_file, dex_class_def);
55 }
56 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070057 // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
Brian Carlstrom7e93b502011-08-04 14:16:22 -070058 return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
59 reinterpret_cast<const DexFile::ClassDef*>(NULL));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070060}
61
Brian Carlstrom5b332c82012-02-01 15:02:31 -080062bool DexFile::GetChecksum(const std::string& filename, uint32_t& checksum) {
63 if (IsValidZipFilename(filename)) {
64 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
65 if (zip_archive.get() == NULL) {
66 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070067 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080068 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(kClassesDex));
69 if (zip_entry.get() == NULL) {
70 return false;
71 }
72 checksum = zip_entry->GetCrc32();
73 return true;
Brian Carlstrom78128a62011-09-15 17:21:19 -070074 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080075 if (IsValidDexFilename(filename)) {
Brian Carlstrom1db858a2012-03-11 22:44:45 -070076 UniquePtr<const DexFile> dex_file(DexFile::OpenFile(filename, filename, false));
Brian Carlstrom5b332c82012-02-01 15:02:31 -080077 if (dex_file.get() == NULL) {
78 return false;
79 }
80 checksum = dex_file->GetHeader().checksum_;
81 return true;
82 }
83 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070084}
85
Brian Carlstrom16192862011-09-12 17:50:06 -070086const DexFile* DexFile::Open(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -080087 const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070088 if (IsValidZipFilename(filename)) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080089 return DexFile::OpenZip(filename, location);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070090 }
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -070091 if (!IsValidDexFilename(filename)) {
92 LOG(WARNING) << "Attempting to open dex file with unknown extension '" << filename << "'";
93 }
Brian Carlstroma004aa92012-02-08 18:05:09 -080094 return DexFile::OpenFile(filename, location, true);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070095}
96
Brian Carlstrom16192862011-09-12 17:50:06 -070097const DexFile* DexFile::OpenFile(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -080098 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -080099 bool verify) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800100 CHECK(!location.empty()) << filename;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700101 int fd = open(filename.c_str(), O_RDONLY); // TODO: scoped_fd
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700102 if (fd == -1) {
103 PLOG(ERROR) << "open(\"" << filename << "\", O_RDONLY) failed";
104 return NULL;
105 }
106 struct stat sbuf;
107 memset(&sbuf, 0, sizeof(sbuf));
108 if (fstat(fd, &sbuf) == -1) {
109 PLOG(ERROR) << "fstat \"" << filename << "\" failed";
110 close(fd);
111 return NULL;
112 }
Ian Rogers7cfb93e2012-01-17 19:46:36 -0800113 if (S_ISDIR(sbuf.st_mode)) {
114 LOG(ERROR) << "attempt to mmap directory \"" << filename << "\"";
115 return NULL;
116 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700117 size_t length = sbuf.st_size;
Brian Carlstrom89521892011-12-07 22:05:07 -0800118 UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0));
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700119 if (map.get() == NULL) {
120 LOG(ERROR) << "mmap \"" << filename << "\" failed";
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700121 close(fd);
122 return NULL;
123 }
124 close(fd);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800125
126 if (map->Size() < sizeof(DexFile::Header)) {
127 LOG(ERROR) << "Failed to open dex file '" << filename << "' that is too short to have a header";
128 return NULL;
129 }
130
131 const Header* dex_header = reinterpret_cast<const Header*>(map->Begin());
132
133 const DexFile* dex_file = OpenMemory(location, dex_header->checksum_, map.release());
jeffhao54c1ceb2012-02-01 11:45:32 -0800134 if (dex_file == NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800135 LOG(ERROR) << "Failed to open dex file '" << filename << "' from memory";
jeffhao54c1ceb2012-02-01 11:45:32 -0800136 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800137 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800138
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700139 if (verify && !DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800140 LOG(ERROR) << "Failed to verify dex file '" << filename << "'";
jeffhao54c1ceb2012-02-01 11:45:32 -0800141 return NULL;
142 }
143
jeffhaof6174e82012-01-31 16:14:17 -0800144 return dex_file;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700145}
146
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700147const char* DexFile::kClassesDex = "classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700148
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700149// Open classes.dex from within a .zip, .jar, .apk, ...
Brian Carlstrom16192862011-09-12 17:50:06 -0700150const DexFile* DexFile::OpenZip(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800151 const std::string& location) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700152 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
153 if (zip_archive.get() == NULL) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700154 LOG(ERROR) << "Failed to open " << filename << " when looking for classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700155 return NULL;
156 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800157 return DexFile::Open(*zip_archive.get(), location);
158}
159
160const DexFile* DexFile::Open(const ZipArchive& zip_archive, const std::string& location) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800161 CHECK(!location.empty());
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800162 UniquePtr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex));
Elliott Hughes90a33692011-08-30 13:27:07 -0700163 if (zip_entry.get() == NULL) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800164 LOG(ERROR) << "Failed to find classes.dex within " << location;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700165 return NULL;
166 }
167
Brian Carlstrom89521892011-12-07 22:05:07 -0800168 uint32_t length = zip_entry->GetUncompressedLength();
Elliott Hughes850162c2012-01-12 18:46:43 -0800169 std::string name("classes.dex extracted in memory from ");
170 name += location;
171 UniquePtr<MemMap> map(MemMap::MapAnonymous(name.c_str(), NULL, length, PROT_READ | PROT_WRITE));
Brian Carlstrom89521892011-12-07 22:05:07 -0800172 if (map.get() == NULL) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800173 LOG(ERROR) << "mmap classes.dex for \"" << location << "\" failed";
Brian Carlstrom89521892011-12-07 22:05:07 -0800174 return NULL;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700175 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800176
177 // Extract classes.dex
178 bool success = zip_entry->ExtractToMemory(*map.get());
179 if (!success) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800180 LOG(ERROR) << "Failed to extract classes.dex from '" << location << "' to memory";
Brian Carlstrom89521892011-12-07 22:05:07 -0800181 return NULL;
182 }
183
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800184 const DexFile* dex_file = OpenMemory(location, zip_entry->GetCrc32(), map.release());
jeffhao54c1ceb2012-02-01 11:45:32 -0800185 if (dex_file == NULL) {
186 LOG(ERROR) << "Failed to open dex file '" << location << "' from memory";
187 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800188 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800189
190 if (!DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) {
191 LOG(ERROR) << "Failed to verify dex file '" << location << "'";
192 return NULL;
193 }
194
jeffhaof6174e82012-01-31 16:14:17 -0800195 return dex_file;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700196}
197
Brian Carlstrom89521892011-12-07 22:05:07 -0800198const DexFile* DexFile::OpenMemory(const byte* base,
jeffhaof6174e82012-01-31 16:14:17 -0800199 size_t size,
Brian Carlstrom89521892011-12-07 22:05:07 -0800200 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800201 uint32_t location_checksum,
Brian Carlstrom89521892011-12-07 22:05:07 -0800202 MemMap* mem_map) {
203 CHECK_ALIGNED(base, 4); // various dex file structures must be word aligned
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800204 UniquePtr<DexFile> dex_file(new DexFile(base, size, location, location_checksum, mem_map));
Brian Carlstromf615a612011-07-23 12:50:34 -0700205 if (!dex_file->Init()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700206 return NULL;
207 } else {
Brian Carlstromf615a612011-07-23 12:50:34 -0700208 return dex_file.release();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700209 }
210}
211
Jesse Wilson6bf19152011-09-29 13:12:33 -0400212DexFile::~DexFile() {
Elliott Hughes8cef0b82011-10-11 19:24:00 -0700213 // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and
214 // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could
215 // re-attach, but cleaning up these global references is not obviously useful. It's not as if
216 // the global reference table is otherwise empty!
Jesse Wilson6bf19152011-09-29 13:12:33 -0400217}
218
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700219class ScopedJniMonitorLock {
220 public:
221 ScopedJniMonitorLock(JNIEnv* env, jobject locked) : env_(env), locked_(locked){
222 env->MonitorEnter(locked_);
Jesse Wilson6bf19152011-09-29 13:12:33 -0400223 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700224 ~ScopedJniMonitorLock() {
225 env_->MonitorExit(locked_);
226 }
227 private:
228 JNIEnv* const env_;
229 const jobject locked_;
230};
Jesse Wilson6bf19152011-09-29 13:12:33 -0400231
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700232jobject DexFile::GetDexObject(JNIEnv* env) const {
233 {
234 ScopedJniMonitorLock lock(env, WellKnownClasses::com_android_dex_Dex);
235 if (dex_object_ != NULL) {
236 return dex_object_;
237 }
238 }
Ian Rogers30fab402012-01-23 15:43:46 -0800239 void* address = const_cast<void*>(reinterpret_cast<const void*>(begin_));
jeffhaof6174e82012-01-31 16:14:17 -0800240 jobject byte_buffer = env->NewDirectByteBuffer(address, size_);
Jesse Wilson6bf19152011-09-29 13:12:33 -0400241 if (byte_buffer == NULL) {
242 return NULL;
243 }
244
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700245 ScopedJniMonitorLock lock(env, WellKnownClasses::com_android_dex_Dex);
246 // Re-test to see if someone beat us to the creation when we had the lock released.
247 if (dex_object_ != NULL) {
248 return dex_object_;
249 }
Jesse Wilson6bf19152011-09-29 13:12:33 -0400250 jvalue args[1];
251 args[0].l = byte_buffer;
Elliott Hugheseac76672012-05-24 21:56:51 -0700252 jobject local = env->CallStaticObjectMethodA(WellKnownClasses::com_android_dex_Dex,
253 WellKnownClasses::com_android_dex_Dex_create,
254 args);
Jesse Wilson6bf19152011-09-29 13:12:33 -0400255 if (local == NULL) {
256 return NULL;
257 }
258
259 dex_object_ = env->NewGlobalRef(local);
260 return dex_object_;
261}
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700262
Brian Carlstromf615a612011-07-23 12:50:34 -0700263bool DexFile::Init() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700264 InitMembers();
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800265 if (!CheckMagicAndVersion()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700266 return false;
267 }
268 InitIndex();
269 return true;
270}
271
Brian Carlstromf615a612011-07-23 12:50:34 -0700272void DexFile::InitMembers() {
Ian Rogers30fab402012-01-23 15:43:46 -0800273 const byte* b = begin_;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700274 header_ = reinterpret_cast<const Header*>(b);
275 const Header* h = header_;
276 string_ids_ = reinterpret_cast<const StringId*>(b + h->string_ids_off_);
277 type_ids_ = reinterpret_cast<const TypeId*>(b + h->type_ids_off_);
278 field_ids_ = reinterpret_cast<const FieldId*>(b + h->field_ids_off_);
279 method_ids_ = reinterpret_cast<const MethodId*>(b + h->method_ids_off_);
280 proto_ids_ = reinterpret_cast<const ProtoId*>(b + h->proto_ids_off_);
281 class_defs_ = reinterpret_cast<const ClassDef*>(b + h->class_defs_off_);
jeffhaof6174e82012-01-31 16:14:17 -0800282 DCHECK_EQ(size_, header_->file_size_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700283}
284
jeffhao10037c82012-01-23 15:06:23 -0800285bool DexFile::CheckMagicAndVersion() const {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800286 CHECK(header_->magic_ != NULL) << GetLocation();
287 if (!IsMagicValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800288 LOG(ERROR) << "Unrecognized magic number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800289 << " " << header_->magic_[0]
290 << " " << header_->magic_[1]
291 << " " << header_->magic_[2]
292 << " " << header_->magic_[3];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700293 return false;
294 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800295 if (!IsVersionValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800296 LOG(ERROR) << "Unrecognized version number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800297 << " " << header_->magic_[4]
298 << " " << header_->magic_[5]
299 << " " << header_->magic_[6]
300 << " " << header_->magic_[7];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700301 return false;
302 }
303 return true;
304}
305
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800306bool DexFile::IsMagicValid(const byte* magic) {
307 return (memcmp(magic, kDexMagic, sizeof(kDexMagic)) == 0);
308}
309
310bool DexFile::IsVersionValid(const byte* magic) {
311 const byte* version = &magic[sizeof(kDexMagic)];
312 return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0);
313}
314
Ian Rogersd81871c2011-10-03 13:57:23 -0700315uint32_t DexFile::GetVersion() const {
316 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]);
317 return atoi(version);
318}
319
Ian Rogers0571d352011-11-03 19:51:38 -0700320int32_t DexFile::GetStringLength(const StringId& string_id) const {
Ian Rogers30fab402012-01-23 15:43:46 -0800321 const byte* ptr = begin_ + string_id.string_data_off_;
Ian Rogers0571d352011-11-03 19:51:38 -0700322 return DecodeUnsignedLeb128(&ptr);
323}
324
325// Returns a pointer to the UTF-8 string data referred to by the given string_id.
Elliott Hughes45651fd2012-02-21 15:48:20 -0800326const char* DexFile::GetStringDataAndLength(const StringId& string_id, uint32_t* length) const {
Ian Rogers7b0c5b42012-02-16 15:29:07 -0800327 DCHECK(length != NULL) << GetLocation();
Ian Rogers30fab402012-01-23 15:43:46 -0800328 const byte* ptr = begin_ + string_id.string_data_off_;
Ian Rogers0571d352011-11-03 19:51:38 -0700329 *length = DecodeUnsignedLeb128(&ptr);
330 return reinterpret_cast<const char*>(ptr);
331}
332
Brian Carlstromf615a612011-07-23 12:50:34 -0700333void DexFile::InitIndex() {
Brian Carlstrom61e513c2011-12-09 15:30:06 -0800334 CHECK_EQ(index_.size(), 0U) << GetLocation();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700335 for (size_t i = 0; i < NumClassDefs(); ++i) {
336 const ClassDef& class_def = GetClassDef(i);
337 const char* descriptor = GetClassDescriptor(class_def);
Elliott Hughesa0e18062012-04-13 15:59:59 -0700338 index_.Put(descriptor, i);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700339 }
340}
341
Brian Carlstrome24fa612011-09-29 00:53:55 -0700342bool DexFile::FindClassDefIndex(const StringPiece& descriptor, uint32_t& idx) const {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700343 Index::const_iterator it = index_.find(descriptor);
344 if (it == index_.end()) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700345 return false;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700346 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700347 idx = it->second;
348 return true;
349}
350
351const DexFile::ClassDef* DexFile::FindClassDef(const StringPiece& descriptor) const {
352 uint32_t idx;
353 if (FindClassDefIndex(descriptor, idx)) {
354 return &GetClassDef(idx);
355 }
356 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700357}
358
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800359const DexFile::FieldId* DexFile::FindFieldId(const DexFile::TypeId& declaring_klass,
360 const DexFile::StringId& name,
361 const DexFile::TypeId& type) const {
362 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
363 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
364 const uint32_t name_idx = GetIndexForStringId(name);
365 const uint16_t type_idx = GetIndexForTypeId(type);
366 uint32_t lo = 0;
367 uint32_t hi = NumFieldIds() - 1;
368 while (hi >= lo) {
369 uint32_t mid = (hi + lo) / 2;
370 const DexFile::FieldId& field = GetFieldId(mid);
371 if (class_idx > field.class_idx_) {
372 lo = mid + 1;
373 } else if (class_idx < field.class_idx_) {
374 hi = mid - 1;
375 } else {
376 if (name_idx > field.name_idx_) {
377 lo = mid + 1;
378 } else if (name_idx < field.name_idx_) {
379 hi = mid - 1;
380 } else {
381 if (type_idx > field.type_idx_) {
382 lo = mid + 1;
383 } else if (type_idx < field.type_idx_) {
384 hi = mid - 1;
385 } else {
386 return &field;
387 }
388 }
389 }
390 }
391 return NULL;
392}
393
394const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass,
Ian Rogers0571d352011-11-03 19:51:38 -0700395 const DexFile::StringId& name,
396 const DexFile::ProtoId& signature) const {
397 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800398 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
Ian Rogers0571d352011-11-03 19:51:38 -0700399 const uint32_t name_idx = GetIndexForStringId(name);
400 const uint16_t proto_idx = GetIndexForProtoId(signature);
401 uint32_t lo = 0;
402 uint32_t hi = NumMethodIds() - 1;
403 while (hi >= lo) {
404 uint32_t mid = (hi + lo) / 2;
405 const DexFile::MethodId& method = GetMethodId(mid);
406 if (class_idx > method.class_idx_) {
407 lo = mid + 1;
408 } else if (class_idx < method.class_idx_) {
409 hi = mid - 1;
410 } else {
411 if (name_idx > method.name_idx_) {
412 lo = mid + 1;
413 } else if (name_idx < method.name_idx_) {
414 hi = mid - 1;
415 } else {
416 if (proto_idx > method.proto_idx_) {
417 lo = mid + 1;
418 } else if (proto_idx < method.proto_idx_) {
419 hi = mid - 1;
420 } else {
421 return &method;
422 }
423 }
424 }
425 }
426 return NULL;
427}
428
429const DexFile::StringId* DexFile::FindStringId(const std::string& string) const {
430 uint32_t lo = 0;
431 uint32_t hi = NumStringIds() - 1;
432 while (hi >= lo) {
433 uint32_t mid = (hi + lo) / 2;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800434 uint32_t length;
Ian Rogers0571d352011-11-03 19:51:38 -0700435 const DexFile::StringId& str_id = GetStringId(mid);
436 const char* str = GetStringDataAndLength(str_id, &length);
437 int compare = CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(string.c_str(), str);
438 if (compare > 0) {
439 lo = mid + 1;
440 } else if (compare < 0) {
441 hi = mid - 1;
442 } else {
443 return &str_id;
444 }
445 }
446 return NULL;
447}
448
449const DexFile::TypeId* DexFile::FindTypeId(uint32_t string_idx) const {
450 uint32_t lo = 0;
451 uint32_t hi = NumTypeIds() - 1;
452 while (hi >= lo) {
453 uint32_t mid = (hi + lo) / 2;
454 const TypeId& type_id = GetTypeId(mid);
455 if (string_idx > type_id.descriptor_idx_) {
456 lo = mid + 1;
457 } else if (string_idx < type_id.descriptor_idx_) {
458 hi = mid - 1;
459 } else {
460 return &type_id;
461 }
462 }
463 return NULL;
464}
465
466const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800467 const std::vector<uint16_t>& signature_type_idxs) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700468 uint32_t lo = 0;
469 uint32_t hi = NumProtoIds() - 1;
470 while (hi >= lo) {
471 uint32_t mid = (hi + lo) / 2;
472 const DexFile::ProtoId& proto = GetProtoId(mid);
473 int compare = return_type_idx - proto.return_type_idx_;
474 if (compare == 0) {
475 DexFileParameterIterator it(*this, proto);
476 size_t i = 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800477 while (it.HasNext() && i < signature_type_idxs.size() && compare == 0) {
478 compare = signature_type_idxs[i] - it.GetTypeIdx();
Ian Rogers0571d352011-11-03 19:51:38 -0700479 it.Next();
480 i++;
481 }
482 if (compare == 0) {
483 if (it.HasNext()) {
484 compare = -1;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800485 } else if (i < signature_type_idxs.size()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700486 compare = 1;
487 }
488 }
489 }
490 if (compare > 0) {
491 lo = mid + 1;
492 } else if (compare < 0) {
493 hi = mid - 1;
494 } else {
495 return &proto;
496 }
497 }
498 return NULL;
499}
500
501// Given a signature place the type ids into the given vector
502bool DexFile::CreateTypeList(uint16_t* return_type_idx, std::vector<uint16_t>* param_type_idxs,
503 const std::string& signature) const {
504 if (signature[0] != '(') {
505 return false;
506 }
507 size_t offset = 1;
508 size_t end = signature.size();
509 bool process_return = false;
510 while (offset < end) {
511 char c = signature[offset];
512 offset++;
513 if (c == ')') {
514 process_return = true;
515 continue;
516 }
517 std::string descriptor;
518 descriptor += c;
519 while (c == '[') { // process array prefix
520 if (offset >= end) { // expect some descriptor following [
521 return false;
522 }
523 c = signature[offset];
524 offset++;
525 descriptor += c;
526 }
527 if (c == 'L') { // process type descriptors
528 do {
529 if (offset >= end) { // unexpected early termination of descriptor
530 return false;
531 }
532 c = signature[offset];
533 offset++;
534 descriptor += c;
535 } while (c != ';');
536 }
537 const DexFile::StringId* string_id = FindStringId(descriptor);
538 if (string_id == NULL) {
539 return false;
540 }
541 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
542 if (type_id == NULL) {
543 return false;
544 }
545 uint16_t type_idx = GetIndexForTypeId(*type_id);
546 if (!process_return) {
547 param_type_idxs->push_back(type_idx);
548 } else {
549 *return_type_idx = type_idx;
550 return offset == end; // return true if the signature had reached a sensible end
551 }
552 }
553 return false; // failed to correctly parse return type
554}
555
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700556// Materializes the method descriptor for a method prototype. Method
557// descriptors are not stored directly in the dex file. Instead, one
558// must assemble the descriptor from references in the prototype.
Ian Rogers0571d352011-11-03 19:51:38 -0700559std::string DexFile::CreateMethodSignature(uint32_t proto_idx, int32_t* unicode_length) const {
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700560 const ProtoId& proto_id = GetProtoId(proto_idx);
561 std::string descriptor;
562 descriptor.push_back('(');
563 const TypeList* type_list = GetProtoParameters(proto_id);
564 size_t parameter_length = 0;
565 if (type_list != NULL) {
566 // A non-zero number of arguments. Append the type names.
567 for (size_t i = 0; i < type_list->Size(); ++i) {
568 const TypeItem& type_item = type_list->GetTypeItem(i);
569 uint32_t type_idx = type_item.type_idx_;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800570 uint32_t type_length;
Ian Rogers0571d352011-11-03 19:51:38 -0700571 const char* name = StringByTypeIdx(type_idx, &type_length);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700572 parameter_length += type_length;
573 descriptor.append(name);
574 }
575 }
576 descriptor.push_back(')');
577 uint32_t return_type_idx = proto_id.return_type_idx_;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800578 uint32_t return_type_length;
Ian Rogers0571d352011-11-03 19:51:38 -0700579 const char* name = StringByTypeIdx(return_type_idx, &return_type_length);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700580 descriptor.append(name);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700581 if (unicode_length != NULL) {
582 *unicode_length = parameter_length + return_type_length + 2; // 2 for ( and )
583 }
Elliott Hughes0c424cb2011-08-26 10:16:25 -0700584 return descriptor;
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700585}
586
Mathieu Chartier66f19252012-09-18 08:57:04 -0700587int32_t DexFile::GetLineNumFromPC(const AbstractMethod* method, uint32_t rel_pc) const {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700588 // For native method, lineno should be -2 to indicate it is native. Note that
589 // "line number == -2" is how libcore tells from StackTraceElement.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700590 if (method->GetCodeItemOffset() == 0) {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700591 return -2;
592 }
593
TDYa127c8dc1012012-04-19 07:03:33 -0700594 const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset());
Elliott Hughescaf76542012-06-28 16:08:22 -0700595 DCHECK(code_item != NULL) << PrettyMethod(method) << " " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700596
597 // A method with no line number info should return -1
598 LineNumFromPcContext context(rel_pc, -1);
TDYa127c8dc1012012-04-19 07:03:33 -0700599 DecodeDebugInfo(code_item, method->IsStatic(), method->GetDexMethodIndex(), LineNumForPcCb,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800600 NULL, &context);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700601 return context.line_num_;
602}
603
Ian Rogers0571d352011-11-03 19:51:38 -0700604int32_t DexFile::FindCatchHandlerOffset(const CodeItem &code_item, int32_t tries_size,
Elliott Hughesba8eee12012-01-24 20:25:24 -0800605 uint32_t address) {
Ian Rogers0571d352011-11-03 19:51:38 -0700606 // Note: Signed type is important for max and min.
607 int32_t min = 0;
608 int32_t max = tries_size - 1;
609
610 while (max >= min) {
611 int32_t mid = (min + max) / 2;
Elliott Hughes24edeb52012-06-18 15:29:46 -0700612 const TryItem* try_item = DexFile::GetTryItems(code_item, mid);
613 uint32_t start = try_item->start_addr_;
Ian Rogers0571d352011-11-03 19:51:38 -0700614 if (address < start) {
615 max = mid - 1;
616 } else {
Elliott Hughes24edeb52012-06-18 15:29:46 -0700617 uint32_t end = start + try_item->insn_count_;
Ian Rogers0571d352011-11-03 19:51:38 -0700618 if (address >= end) {
619 min = mid + 1;
620 } else { // We have a winner!
Elliott Hughes24edeb52012-06-18 15:29:46 -0700621 return (int32_t) try_item->handler_off_;
Ian Rogers0571d352011-11-03 19:51:38 -0700622 }
623 }
624 }
625 // No match.
626 return -1;
627}
628
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800629void DexFile::DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800630 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
631 void* context, const byte* stream, LocalInfo* local_in_reg) const {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700632 uint32_t line = DecodeUnsignedLeb128(&stream);
633 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
634 uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_;
635 uint32_t address = 0;
Elliott Hughes30646832011-10-13 16:59:46 -0700636 bool need_locals = (local_cb != NULL);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700637
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800638 if (!is_static) {
Elliott Hughes30646832011-10-13 16:59:46 -0700639 if (need_locals) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800640 const char* descriptor = GetMethodDeclaringClassDescriptor(GetMethodId(method_idx));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700641 local_in_reg[arg_reg].name_ = "this";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800642 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800643 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700644 local_in_reg[arg_reg].start_address_ = 0;
645 local_in_reg[arg_reg].is_live_ = true;
646 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700647 arg_reg++;
648 }
649
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800650 DexFileParameterIterator it(*this, GetMethodPrototype(GetMethodId(method_idx)));
Ian Rogers0571d352011-11-03 19:51:38 -0700651 for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700652 if (arg_reg >= code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700653 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800654 << " >= " << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700655 return;
656 }
Elliott Hughes392b1242011-11-30 13:55:50 -0800657 uint32_t id = DecodeUnsignedLeb128P1(&stream);
Ian Rogers0571d352011-11-03 19:51:38 -0700658 const char* descriptor = it.GetDescriptor();
Elliott Hughes392b1242011-11-30 13:55:50 -0800659 if (need_locals && id != kDexNoIndex) {
Ian Rogers0571d352011-11-03 19:51:38 -0700660 const char* name = StringDataByIdx(id);
Elliott Hughes30646832011-10-13 16:59:46 -0700661 local_in_reg[arg_reg].name_ = name;
662 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800663 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700664 local_in_reg[arg_reg].start_address_ = address;
665 local_in_reg[arg_reg].is_live_ = true;
666 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700667 switch (*descriptor) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700668 case 'D':
669 case 'J':
670 arg_reg += 2;
671 break;
672 default:
673 arg_reg += 1;
674 break;
675 }
676 }
677
Ian Rogers0571d352011-11-03 19:51:38 -0700678 if (it.HasNext()) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800679 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700680 return;
681 }
682
683 for (;;) {
684 uint8_t opcode = *stream++;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700685 uint16_t reg;
jeffhaof8728872011-10-28 19:11:13 -0700686 uint16_t name_idx;
687 uint16_t descriptor_idx;
688 uint16_t signature_idx = 0;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700689
Shih-wei Liao195487c2011-08-20 13:29:04 -0700690 switch (opcode) {
691 case DBG_END_SEQUENCE:
692 return;
693
694 case DBG_ADVANCE_PC:
695 address += DecodeUnsignedLeb128(&stream);
696 break;
697
698 case DBG_ADVANCE_LINE:
Shih-wei Liao8a05d272011-10-15 18:45:43 -0700699 line += DecodeSignedLeb128(&stream);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700700 break;
701
702 case DBG_START_LOCAL:
703 case DBG_START_LOCAL_EXTENDED:
704 reg = DecodeUnsignedLeb128(&stream);
705 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700706 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800707 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700708 return;
709 }
710
jeffhaof8728872011-10-28 19:11:13 -0700711 name_idx = DecodeUnsignedLeb128P1(&stream);
712 descriptor_idx = DecodeUnsignedLeb128P1(&stream);
713 if (opcode == DBG_START_LOCAL_EXTENDED) {
714 signature_idx = DecodeUnsignedLeb128P1(&stream);
715 }
716
Shih-wei Liao195487c2011-08-20 13:29:04 -0700717 // Emit what was previously there, if anything
Elliott Hughes30646832011-10-13 16:59:46 -0700718 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800719 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700720
Ian Rogers0571d352011-11-03 19:51:38 -0700721 local_in_reg[reg].name_ = StringDataByIdx(name_idx);
722 local_in_reg[reg].descriptor_ = StringByTypeIdx(descriptor_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700723 if (opcode == DBG_START_LOCAL_EXTENDED) {
Ian Rogers0571d352011-11-03 19:51:38 -0700724 local_in_reg[reg].signature_ = StringDataByIdx(signature_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700725 }
726 local_in_reg[reg].start_address_ = address;
727 local_in_reg[reg].is_live_ = true;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700728 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700729 break;
730
731 case DBG_END_LOCAL:
732 reg = DecodeUnsignedLeb128(&stream);
733 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700734 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800735 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700736 return;
737 }
738
Elliott Hughes30646832011-10-13 16:59:46 -0700739 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800740 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Elliott Hughes30646832011-10-13 16:59:46 -0700741 local_in_reg[reg].is_live_ = false;
742 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700743 break;
744
745 case DBG_RESTART_LOCAL:
746 reg = DecodeUnsignedLeb128(&stream);
747 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700748 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800749 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700750 return;
751 }
752
Elliott Hughes30646832011-10-13 16:59:46 -0700753 if (need_locals) {
754 if (local_in_reg[reg].name_ == NULL || local_in_reg[reg].descriptor_ == NULL) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800755 LOG(ERROR) << "invalid stream - no name or descriptor in " << GetLocation();
Elliott Hughes30646832011-10-13 16:59:46 -0700756 return;
757 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700758
Elliott Hughes30646832011-10-13 16:59:46 -0700759 // If the register is live, the "restart" is superfluous,
760 // and we don't want to mess with the existing start address.
761 if (!local_in_reg[reg].is_live_) {
762 local_in_reg[reg].start_address_ = address;
763 local_in_reg[reg].is_live_ = true;
764 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700765 }
766 break;
767
768 case DBG_SET_PROLOGUE_END:
769 case DBG_SET_EPILOGUE_BEGIN:
770 case DBG_SET_FILE:
771 break;
772
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700773 default: {
774 int adjopcode = opcode - DBG_FIRST_SPECIAL;
775
Shih-wei Liao195487c2011-08-20 13:29:04 -0700776 address += adjopcode / DBG_LINE_RANGE;
777 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
778
Elliott Hughes2435a572012-02-17 16:07:41 -0800779 if (position_cb != NULL) {
780 if (position_cb(context, address, line)) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700781 // early exit
782 return;
783 }
784 }
785 break;
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700786 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700787 }
788 }
789}
790
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800791void DexFile::DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800792 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
793 void* context) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700794 const byte* stream = GetDebugInfoStream(code_item);
Elliott Hughesee0fa762012-03-26 17:12:41 -0700795 UniquePtr<LocalInfo[]> local_in_reg(local_cb != NULL ? new LocalInfo[code_item->registers_size_] : NULL);
Ian Rogers0571d352011-11-03 19:51:38 -0700796 if (stream != NULL) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700797 DecodeDebugInfo0(code_item, is_static, method_idx, position_cb, local_cb, context, stream, &local_in_reg[0]);
Ian Rogers0571d352011-11-03 19:51:38 -0700798 }
799 for (int reg = 0; reg < code_item->registers_size_; reg++) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700800 InvokeLocalCbIfLive(context, reg, code_item->insns_size_in_code_units_, &local_in_reg[0], local_cb);
Ian Rogers0571d352011-11-03 19:51:38 -0700801 }
802}
803
Elliott Hughes2435a572012-02-17 16:07:41 -0800804bool DexFile::LineNumForPcCb(void* raw_context, uint32_t address, uint32_t line_num) {
805 LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(raw_context);
Ian Rogers0571d352011-11-03 19:51:38 -0700806
807 // We know that this callback will be called in
808 // ascending address order, so keep going until we find
809 // a match or we've just gone past it.
810 if (address > context->address_) {
811 // The line number from the previous positions callback
812 // wil be the final result.
813 return true;
814 } else {
815 context->line_num_ = line_num;
816 return address == context->address_;
817 }
818}
819
820// Decodes the header section from the class data bytes.
821void ClassDataItemIterator::ReadClassDataHeader() {
822 CHECK(ptr_pos_ != NULL);
823 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
824 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
825 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
826 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
827}
828
829void ClassDataItemIterator::ReadClassDataField() {
830 field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
831 field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700832 if (last_idx_ != 0 && field_.field_idx_delta_ == 0) {
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700833 LOG(WARNING) << "Duplicate field " << PrettyField(GetMemberIndex(), dex_file_)
834 << " in " << dex_file_.GetLocation();
835 }
Ian Rogers0571d352011-11-03 19:51:38 -0700836}
837
838void ClassDataItemIterator::ReadClassDataMethod() {
839 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
840 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
841 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700842 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) {
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700843 LOG(WARNING) << "Duplicate method " << PrettyMethod(GetMemberIndex(), dex_file_)
844 << " in " << dex_file_.GetLocation();
845 }
Ian Rogers0571d352011-11-03 19:51:38 -0700846}
847
848// Read a signed integer. "zwidth" is the zero-based byte count.
849static int32_t ReadSignedInt(const byte* ptr, int zwidth) {
850 int32_t val = 0;
851 for (int i = zwidth; i >= 0; --i) {
852 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
853 }
854 val >>= (3 - zwidth) * 8;
855 return val;
856}
857
858// Read an unsigned integer. "zwidth" is the zero-based byte count,
859// "fill_on_right" indicates which side we want to zero-fill from.
860static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth, bool fill_on_right) {
861 uint32_t val = 0;
862 if (!fill_on_right) {
863 for (int i = zwidth; i >= 0; --i) {
864 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
865 }
866 val >>= (3 - zwidth) * 8;
867 } else {
868 for (int i = zwidth; i >= 0; --i) {
869 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
870 }
871 }
872 return val;
873}
874
875// Read a signed long. "zwidth" is the zero-based byte count.
876static int64_t ReadSignedLong(const byte* ptr, int zwidth) {
877 int64_t val = 0;
878 for (int i = zwidth; i >= 0; --i) {
879 val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56);
880 }
881 val >>= (7 - zwidth) * 8;
882 return val;
883}
884
885// Read an unsigned long. "zwidth" is the zero-based byte count,
886// "fill_on_right" indicates which side we want to zero-fill from.
887static uint64_t ReadUnsignedLong(const byte* ptr, int zwidth, bool fill_on_right) {
888 uint64_t val = 0;
889 if (!fill_on_right) {
890 for (int i = zwidth; i >= 0; --i) {
891 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
892 }
893 val >>= (7 - zwidth) * 8;
894 } else {
895 for (int i = zwidth; i >= 0; --i) {
896 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
897 }
898 }
899 return val;
900}
901
902EncodedStaticFieldValueIterator::EncodedStaticFieldValueIterator(const DexFile& dex_file,
Ian Rogersca190662012-06-26 15:45:57 -0700903 DexCache* dex_cache,
Brian Carlstrom88f36542012-10-16 23:24:21 -0700904 ClassLoader* class_loader,
Ian Rogersca190662012-06-26 15:45:57 -0700905 ClassLinker* linker,
906 const DexFile::ClassDef& class_def)
Brian Carlstrom88f36542012-10-16 23:24:21 -0700907 : dex_file_(dex_file), dex_cache_(dex_cache), class_loader_(class_loader), linker_(linker),
908 array_size_(), pos_(-1), type_(kByte) {
Ian Rogers0571d352011-11-03 19:51:38 -0700909 ptr_ = dex_file.GetEncodedStaticFieldValuesArray(class_def);
910 if (ptr_ == NULL) {
911 array_size_ = 0;
912 } else {
913 array_size_ = DecodeUnsignedLeb128(&ptr_);
914 }
915 if (array_size_ > 0) {
916 Next();
917 }
918}
919
920void EncodedStaticFieldValueIterator::Next() {
921 pos_++;
922 if (pos_ >= array_size_) {
923 return;
924 }
925 byte value_type = *ptr_++;
926 byte value_arg = value_type >> kEncodedValueArgShift;
927 size_t width = value_arg + 1; // assume and correct later
Brian Carlstrom88f36542012-10-16 23:24:21 -0700928 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
Ian Rogers0571d352011-11-03 19:51:38 -0700929 switch (type_) {
930 case kBoolean:
931 jval_.i = (value_arg != 0) ? 1 : 0;
932 width = 0;
933 break;
934 case kByte:
935 jval_.i = ReadSignedInt(ptr_, value_arg);
936 CHECK(IsInt(8, jval_.i));
937 break;
938 case kShort:
939 jval_.i = ReadSignedInt(ptr_, value_arg);
940 CHECK(IsInt(16, jval_.i));
941 break;
942 case kChar:
943 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
944 CHECK(IsUint(16, jval_.i));
945 break;
946 case kInt:
947 jval_.i = ReadSignedInt(ptr_, value_arg);
948 break;
949 case kLong:
950 jval_.j = ReadSignedLong(ptr_, value_arg);
951 break;
952 case kFloat:
953 jval_.i = ReadUnsignedInt(ptr_, value_arg, true);
954 break;
955 case kDouble:
956 jval_.j = ReadUnsignedLong(ptr_, value_arg, true);
957 break;
958 case kString:
959 case kType:
Ian Rogers0571d352011-11-03 19:51:38 -0700960 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
961 break;
962 case kField:
Brian Carlstrom88f36542012-10-16 23:24:21 -0700963 case kMethod:
964 case kEnum:
Ian Rogers0571d352011-11-03 19:51:38 -0700965 case kArray:
966 case kAnnotation:
967 UNIMPLEMENTED(FATAL) << ": type " << type_;
968 break;
969 case kNull:
970 jval_.l = NULL;
971 width = 0;
972 break;
973 default:
974 LOG(FATAL) << "Unreached";
975 }
976 ptr_ += width;
977}
978
979void EncodedStaticFieldValueIterator::ReadValueToField(Field* field) const {
980 switch (type_) {
981 case kBoolean: field->SetBoolean(NULL, jval_.z); break;
982 case kByte: field->SetByte(NULL, jval_.b); break;
983 case kShort: field->SetShort(NULL, jval_.s); break;
984 case kChar: field->SetChar(NULL, jval_.c); break;
985 case kInt: field->SetInt(NULL, jval_.i); break;
986 case kLong: field->SetLong(NULL, jval_.j); break;
987 case kFloat: field->SetFloat(NULL, jval_.f); break;
988 case kDouble: field->SetDouble(NULL, jval_.d); break;
989 case kNull: field->SetObject(NULL, NULL); break;
990 case kString: {
991 String* resolved = linker_->ResolveString(dex_file_, jval_.i, dex_cache_);
992 field->SetObject(NULL, resolved);
993 break;
994 }
Brian Carlstrom88f36542012-10-16 23:24:21 -0700995 case kType: {
996 Class* resolved = linker_->ResolveType(dex_file_, jval_.i, dex_cache_, class_loader_);
997 field->SetObject(NULL, resolved);
998 break;
999 }
Ian Rogers0571d352011-11-03 19:51:38 -07001000 default: UNIMPLEMENTED(FATAL) << ": type " << type_;
1001 }
1002}
1003
1004CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) {
1005 handler_.address_ = -1;
1006 int32_t offset = -1;
1007
1008 // Short-circuit the overwhelmingly common cases.
1009 switch (code_item.tries_size_) {
1010 case 0:
1011 break;
1012 case 1: {
1013 const DexFile::TryItem* tries = DexFile::GetTryItems(code_item, 0);
1014 uint32_t start = tries->start_addr_;
1015 if (address >= start) {
1016 uint32_t end = start + tries->insn_count_;
1017 if (address < end) {
1018 offset = tries->handler_off_;
1019 }
1020 }
1021 break;
1022 }
1023 default:
1024 offset = DexFile::FindCatchHandlerOffset(code_item, code_item.tries_size_, address);
1025 }
Logan Chien736df022012-04-27 16:25:57 +08001026 Init(code_item, offset);
1027}
1028
1029CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item,
1030 const DexFile::TryItem& try_item) {
1031 handler_.address_ = -1;
1032 Init(code_item, try_item.handler_off_);
1033}
1034
1035void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item,
1036 int32_t offset) {
Ian Rogers0571d352011-11-03 19:51:38 -07001037 if (offset >= 0) {
Logan Chien736df022012-04-27 16:25:57 +08001038 Init(DexFile::GetCatchHandlerData(code_item, offset));
Ian Rogers0571d352011-11-03 19:51:38 -07001039 } else {
1040 // Not found, initialize as empty
1041 current_data_ = NULL;
1042 remaining_count_ = -1;
1043 catch_all_ = false;
1044 DCHECK(!HasNext());
1045 }
1046}
1047
1048void CatchHandlerIterator::Init(const byte* handler_data) {
1049 current_data_ = handler_data;
1050 remaining_count_ = DecodeSignedLeb128(&current_data_);
1051
1052 // If remaining_count_ is non-positive, then it is the negative of
1053 // the number of catch types, and the catches are followed by a
1054 // catch-all handler.
1055 if (remaining_count_ <= 0) {
1056 catch_all_ = true;
1057 remaining_count_ = -remaining_count_;
1058 } else {
1059 catch_all_ = false;
1060 }
1061 Next();
1062}
1063
1064void CatchHandlerIterator::Next() {
1065 if (remaining_count_ > 0) {
1066 handler_.type_idx_ = DecodeUnsignedLeb128(&current_data_);
1067 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1068 remaining_count_--;
1069 return;
1070 }
1071
1072 if (catch_all_) {
1073 handler_.type_idx_ = DexFile::kDexNoIndex16;
1074 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1075 catch_all_ = false;
1076 return;
1077 }
1078
1079 // no more handler
1080 remaining_count_ = -1;
1081}
1082
Carl Shapiro1fb86202011-06-27 17:43:13 -07001083} // namespace art