blob: dad083cc3f259b14d741ee5b17271363519db9a7 [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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "mirror/abstract_method-inl.h"
35#include "mirror/field.h"
36#include "mirror/field-inl.h"
37#include "mirror/string.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070038#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070039#include "safe_map.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070040#include "thread.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070041#include "UniquePtr.h"
Ian Rogers0571d352011-11-03 19:51:38 -070042#include "utf.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070043#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070044#include "well_known_classes.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070045#include "zip_archive.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070046
47namespace art {
48
Brian Carlstromf615a612011-07-23 12:50:34 -070049const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
50const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070051
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070052DexFile::ClassPathEntry DexFile::FindInClassPath(const StringPiece& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070053 const ClassPath& class_path) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070054 for (size_t i = 0; i != class_path.size(); ++i) {
55 const DexFile* dex_file = class_path[i];
56 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
57 if (dex_class_def != NULL) {
58 return ClassPathEntry(dex_file, dex_class_def);
59 }
60 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070061 // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
Brian Carlstrom7e93b502011-08-04 14:16:22 -070062 return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
63 reinterpret_cast<const DexFile::ClassDef*>(NULL));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070064}
65
Brian Carlstrom5b332c82012-02-01 15:02:31 -080066bool DexFile::GetChecksum(const std::string& filename, uint32_t& checksum) {
67 if (IsValidZipFilename(filename)) {
68 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
69 if (zip_archive.get() == NULL) {
70 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070071 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080072 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(kClassesDex));
73 if (zip_entry.get() == NULL) {
Ian Rogerse6060102013-05-16 12:01:04 -070074 LOG(ERROR) << "Zip archive '" << filename << "' doesn't contain " << kClassesDex;
Brian Carlstrom5b332c82012-02-01 15:02:31 -080075 return false;
76 }
77 checksum = zip_entry->GetCrc32();
78 return true;
Brian Carlstrom78128a62011-09-15 17:21:19 -070079 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080080 if (IsValidDexFilename(filename)) {
Brian Carlstrom1db858a2012-03-11 22:44:45 -070081 UniquePtr<const DexFile> dex_file(DexFile::OpenFile(filename, filename, false));
Brian Carlstrom5b332c82012-02-01 15:02:31 -080082 if (dex_file.get() == NULL) {
83 return false;
84 }
85 checksum = dex_file->GetHeader().checksum_;
86 return true;
87 }
Ian Rogerse6060102013-05-16 12:01:04 -070088 LOG(ERROR) << "Expected valid zip or dex file name: " << filename;
Brian Carlstrom5b332c82012-02-01 15:02:31 -080089 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070090}
91
Brian Carlstrom16192862011-09-12 17:50:06 -070092const DexFile* DexFile::Open(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -080093 const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070094 if (IsValidZipFilename(filename)) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080095 return DexFile::OpenZip(filename, location);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070096 }
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -070097 if (!IsValidDexFilename(filename)) {
98 LOG(WARNING) << "Attempting to open dex file with unknown extension '" << filename << "'";
99 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800100 return DexFile::OpenFile(filename, location, true);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700101}
102
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800103int DexFile::GetPermissions() const {
104 if (mem_map_.get() == NULL) {
105 return 0;
106 } else {
107 return mem_map_->GetProtect();
108 }
109}
110
Brian Carlstrom16192862011-09-12 17:50:06 -0700111const DexFile* DexFile::OpenFile(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800112 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800113 bool verify) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800114 CHECK(!location.empty()) << filename;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700115 int fd = open(filename.c_str(), O_RDONLY); // TODO: scoped_fd
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700116 if (fd == -1) {
117 PLOG(ERROR) << "open(\"" << filename << "\", O_RDONLY) failed";
118 return NULL;
119 }
120 struct stat sbuf;
121 memset(&sbuf, 0, sizeof(sbuf));
122 if (fstat(fd, &sbuf) == -1) {
123 PLOG(ERROR) << "fstat \"" << filename << "\" failed";
124 close(fd);
125 return NULL;
126 }
Ian Rogers7cfb93e2012-01-17 19:46:36 -0800127 if (S_ISDIR(sbuf.st_mode)) {
128 LOG(ERROR) << "attempt to mmap directory \"" << filename << "\"";
129 return NULL;
130 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700131 size_t length = sbuf.st_size;
Brian Carlstrom89521892011-12-07 22:05:07 -0800132 UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0));
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700133 if (map.get() == NULL) {
134 LOG(ERROR) << "mmap \"" << filename << "\" failed";
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700135 close(fd);
136 return NULL;
137 }
138 close(fd);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800139
140 if (map->Size() < sizeof(DexFile::Header)) {
141 LOG(ERROR) << "Failed to open dex file '" << filename << "' that is too short to have a header";
142 return NULL;
143 }
144
145 const Header* dex_header = reinterpret_cast<const Header*>(map->Begin());
146
147 const DexFile* dex_file = OpenMemory(location, dex_header->checksum_, map.release());
jeffhao54c1ceb2012-02-01 11:45:32 -0800148 if (dex_file == NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800149 LOG(ERROR) << "Failed to open dex file '" << filename << "' from memory";
jeffhao54c1ceb2012-02-01 11:45:32 -0800150 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800151 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800152
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700153 if (verify && !DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800154 LOG(ERROR) << "Failed to verify dex file '" << filename << "'";
jeffhao54c1ceb2012-02-01 11:45:32 -0800155 return NULL;
156 }
157
jeffhaof6174e82012-01-31 16:14:17 -0800158 return dex_file;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700159}
160
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700161const char* DexFile::kClassesDex = "classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700162
Brian Carlstrom16192862011-09-12 17:50:06 -0700163const DexFile* DexFile::OpenZip(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800164 const std::string& location) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700165 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
166 if (zip_archive.get() == NULL) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700167 LOG(ERROR) << "Failed to open " << filename << " when looking for classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700168 return NULL;
169 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800170 return DexFile::Open(*zip_archive.get(), location);
171}
172
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800173const DexFile* DexFile::OpenMemory(const std::string& location,
174 uint32_t location_checksum,
175 MemMap* mem_map) {
176 return OpenMemory(mem_map->Begin(),
177 mem_map->Size(),
178 location,
179 location_checksum,
180 mem_map);
181}
182
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800183const DexFile* DexFile::Open(const ZipArchive& zip_archive, const std::string& location) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800184 CHECK(!location.empty());
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800185 UniquePtr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex));
Elliott Hughes90a33692011-08-30 13:27:07 -0700186 if (zip_entry.get() == NULL) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800187 LOG(ERROR) << "Failed to find classes.dex within " << location;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700188 return NULL;
189 }
190
Brian Carlstrom89521892011-12-07 22:05:07 -0800191 uint32_t length = zip_entry->GetUncompressedLength();
Elliott Hughes850162c2012-01-12 18:46:43 -0800192 std::string name("classes.dex extracted in memory from ");
193 name += location;
194 UniquePtr<MemMap> map(MemMap::MapAnonymous(name.c_str(), NULL, length, PROT_READ | PROT_WRITE));
Brian Carlstrom89521892011-12-07 22:05:07 -0800195 if (map.get() == NULL) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800196 LOG(ERROR) << "mmap classes.dex for \"" << location << "\" failed";
Brian Carlstrom89521892011-12-07 22:05:07 -0800197 return NULL;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700198 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800199
200 // Extract classes.dex
201 bool success = zip_entry->ExtractToMemory(*map.get());
202 if (!success) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800203 LOG(ERROR) << "Failed to extract classes.dex from '" << location << "' to memory";
Brian Carlstrom89521892011-12-07 22:05:07 -0800204 return NULL;
205 }
206
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800207 const DexFile* dex_file = OpenMemory(location, zip_entry->GetCrc32(), map.release());
jeffhao54c1ceb2012-02-01 11:45:32 -0800208 if (dex_file == NULL) {
209 LOG(ERROR) << "Failed to open dex file '" << location << "' from memory";
210 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800211 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800212
213 if (!DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) {
214 LOG(ERROR) << "Failed to verify dex file '" << location << "'";
215 return NULL;
216 }
217
jeffhaof6174e82012-01-31 16:14:17 -0800218 return dex_file;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700219}
220
Brian Carlstrom89521892011-12-07 22:05:07 -0800221const DexFile* DexFile::OpenMemory(const byte* base,
jeffhaof6174e82012-01-31 16:14:17 -0800222 size_t size,
Brian Carlstrom89521892011-12-07 22:05:07 -0800223 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800224 uint32_t location_checksum,
Brian Carlstrom89521892011-12-07 22:05:07 -0800225 MemMap* mem_map) {
226 CHECK_ALIGNED(base, 4); // various dex file structures must be word aligned
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800227 UniquePtr<DexFile> dex_file(new DexFile(base, size, location, location_checksum, mem_map));
Brian Carlstromf615a612011-07-23 12:50:34 -0700228 if (!dex_file->Init()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700229 return NULL;
230 } else {
Brian Carlstromf615a612011-07-23 12:50:34 -0700231 return dex_file.release();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700232 }
233}
234
Jesse Wilson6bf19152011-09-29 13:12:33 -0400235DexFile::~DexFile() {
Elliott Hughes8cef0b82011-10-11 19:24:00 -0700236 // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and
237 // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could
238 // re-attach, but cleaning up these global references is not obviously useful. It's not as if
239 // the global reference table is otherwise empty!
Jesse Wilson6bf19152011-09-29 13:12:33 -0400240}
241
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700242class ScopedJniMonitorLock {
243 public:
244 ScopedJniMonitorLock(JNIEnv* env, jobject locked) : env_(env), locked_(locked){
245 env->MonitorEnter(locked_);
Jesse Wilson6bf19152011-09-29 13:12:33 -0400246 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700247 ~ScopedJniMonitorLock() {
248 env_->MonitorExit(locked_);
249 }
250 private:
251 JNIEnv* const env_;
252 const jobject locked_;
253};
Jesse Wilson6bf19152011-09-29 13:12:33 -0400254
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700255jobject DexFile::GetDexObject(JNIEnv* env) const {
256 {
257 ScopedJniMonitorLock lock(env, WellKnownClasses::com_android_dex_Dex);
258 if (dex_object_ != NULL) {
259 return dex_object_;
260 }
261 }
Ian Rogers30fab402012-01-23 15:43:46 -0800262 void* address = const_cast<void*>(reinterpret_cast<const void*>(begin_));
jeffhaof6174e82012-01-31 16:14:17 -0800263 jobject byte_buffer = env->NewDirectByteBuffer(address, size_);
Jesse Wilson6bf19152011-09-29 13:12:33 -0400264 if (byte_buffer == NULL) {
265 return NULL;
266 }
267
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700268 ScopedJniMonitorLock lock(env, WellKnownClasses::com_android_dex_Dex);
269 // Re-test to see if someone beat us to the creation when we had the lock released.
270 if (dex_object_ != NULL) {
271 return dex_object_;
272 }
Jesse Wilson6bf19152011-09-29 13:12:33 -0400273 jvalue args[1];
274 args[0].l = byte_buffer;
Elliott Hugheseac76672012-05-24 21:56:51 -0700275 jobject local = env->CallStaticObjectMethodA(WellKnownClasses::com_android_dex_Dex,
276 WellKnownClasses::com_android_dex_Dex_create,
277 args);
Jesse Wilson6bf19152011-09-29 13:12:33 -0400278 if (local == NULL) {
279 return NULL;
280 }
281
282 dex_object_ = env->NewGlobalRef(local);
283 return dex_object_;
284}
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700285
Brian Carlstromf615a612011-07-23 12:50:34 -0700286bool DexFile::Init() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700287 InitMembers();
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800288 if (!CheckMagicAndVersion()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700289 return false;
290 }
291 InitIndex();
292 return true;
293}
294
Brian Carlstromf615a612011-07-23 12:50:34 -0700295void DexFile::InitMembers() {
Ian Rogers30fab402012-01-23 15:43:46 -0800296 const byte* b = begin_;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700297 header_ = reinterpret_cast<const Header*>(b);
298 const Header* h = header_;
299 string_ids_ = reinterpret_cast<const StringId*>(b + h->string_ids_off_);
300 type_ids_ = reinterpret_cast<const TypeId*>(b + h->type_ids_off_);
301 field_ids_ = reinterpret_cast<const FieldId*>(b + h->field_ids_off_);
302 method_ids_ = reinterpret_cast<const MethodId*>(b + h->method_ids_off_);
303 proto_ids_ = reinterpret_cast<const ProtoId*>(b + h->proto_ids_off_);
304 class_defs_ = reinterpret_cast<const ClassDef*>(b + h->class_defs_off_);
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700305 DCHECK_EQ(size_, header_->file_size_) << GetLocation();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700306}
307
jeffhao10037c82012-01-23 15:06:23 -0800308bool DexFile::CheckMagicAndVersion() const {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800309 CHECK(header_->magic_ != NULL) << GetLocation();
310 if (!IsMagicValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800311 LOG(ERROR) << "Unrecognized magic number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800312 << " " << header_->magic_[0]
313 << " " << header_->magic_[1]
314 << " " << header_->magic_[2]
315 << " " << header_->magic_[3];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700316 return false;
317 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800318 if (!IsVersionValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800319 LOG(ERROR) << "Unrecognized version number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800320 << " " << header_->magic_[4]
321 << " " << header_->magic_[5]
322 << " " << header_->magic_[6]
323 << " " << header_->magic_[7];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700324 return false;
325 }
326 return true;
327}
328
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800329bool DexFile::IsMagicValid(const byte* magic) {
330 return (memcmp(magic, kDexMagic, sizeof(kDexMagic)) == 0);
331}
332
333bool DexFile::IsVersionValid(const byte* magic) {
334 const byte* version = &magic[sizeof(kDexMagic)];
335 return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0);
336}
337
Ian Rogersd81871c2011-10-03 13:57:23 -0700338uint32_t DexFile::GetVersion() const {
339 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]);
340 return atoi(version);
341}
342
Brian Carlstromf615a612011-07-23 12:50:34 -0700343void DexFile::InitIndex() {
Brian Carlstrom61e513c2011-12-09 15:30:06 -0800344 CHECK_EQ(index_.size(), 0U) << GetLocation();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700345 for (size_t i = 0; i < NumClassDefs(); ++i) {
346 const ClassDef& class_def = GetClassDef(i);
347 const char* descriptor = GetClassDescriptor(class_def);
Elliott Hughesa0e18062012-04-13 15:59:59 -0700348 index_.Put(descriptor, i);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700349 }
350}
351
Brian Carlstrome24fa612011-09-29 00:53:55 -0700352bool DexFile::FindClassDefIndex(const StringPiece& descriptor, uint32_t& idx) const {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700353 Index::const_iterator it = index_.find(descriptor);
354 if (it == index_.end()) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700355 return false;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700356 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700357 idx = it->second;
358 return true;
359}
360
361const DexFile::ClassDef* DexFile::FindClassDef(const StringPiece& descriptor) const {
362 uint32_t idx;
363 if (FindClassDefIndex(descriptor, idx)) {
364 return &GetClassDef(idx);
365 }
366 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700367}
368
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800369const DexFile::FieldId* DexFile::FindFieldId(const DexFile::TypeId& declaring_klass,
370 const DexFile::StringId& name,
371 const DexFile::TypeId& type) const {
372 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
373 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
374 const uint32_t name_idx = GetIndexForStringId(name);
375 const uint16_t type_idx = GetIndexForTypeId(type);
Ian Rogersf8582c32013-05-29 16:33:03 -0700376 int32_t lo = 0;
377 int32_t hi = NumFieldIds() - 1;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800378 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700379 int32_t mid = (hi + lo) / 2;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800380 const DexFile::FieldId& field = GetFieldId(mid);
381 if (class_idx > field.class_idx_) {
382 lo = mid + 1;
383 } else if (class_idx < field.class_idx_) {
384 hi = mid - 1;
385 } else {
386 if (name_idx > field.name_idx_) {
387 lo = mid + 1;
388 } else if (name_idx < field.name_idx_) {
389 hi = mid - 1;
390 } else {
391 if (type_idx > field.type_idx_) {
392 lo = mid + 1;
393 } else if (type_idx < field.type_idx_) {
394 hi = mid - 1;
395 } else {
396 return &field;
397 }
398 }
399 }
400 }
401 return NULL;
402}
403
404const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass,
Ian Rogers0571d352011-11-03 19:51:38 -0700405 const DexFile::StringId& name,
406 const DexFile::ProtoId& signature) const {
407 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800408 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
Ian Rogers0571d352011-11-03 19:51:38 -0700409 const uint32_t name_idx = GetIndexForStringId(name);
410 const uint16_t proto_idx = GetIndexForProtoId(signature);
Ian Rogersf8582c32013-05-29 16:33:03 -0700411 int32_t lo = 0;
412 int32_t hi = NumMethodIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700413 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700414 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700415 const DexFile::MethodId& method = GetMethodId(mid);
416 if (class_idx > method.class_idx_) {
417 lo = mid + 1;
418 } else if (class_idx < method.class_idx_) {
419 hi = mid - 1;
420 } else {
421 if (name_idx > method.name_idx_) {
422 lo = mid + 1;
423 } else if (name_idx < method.name_idx_) {
424 hi = mid - 1;
425 } else {
426 if (proto_idx > method.proto_idx_) {
427 lo = mid + 1;
428 } else if (proto_idx < method.proto_idx_) {
429 hi = mid - 1;
430 } else {
431 return &method;
432 }
433 }
434 }
435 }
436 return NULL;
437}
438
Ian Rogers637c65b2013-05-31 11:46:00 -0700439const DexFile::StringId* DexFile::FindStringId(const char* string) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700440 int32_t lo = 0;
441 int32_t hi = NumStringIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700442 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700443 int32_t mid = (hi + lo) / 2;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800444 uint32_t length;
Ian Rogers0571d352011-11-03 19:51:38 -0700445 const DexFile::StringId& str_id = GetStringId(mid);
446 const char* str = GetStringDataAndLength(str_id, &length);
Ian Rogers637c65b2013-05-31 11:46:00 -0700447 int compare = CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(string, str);
448 if (compare > 0) {
449 lo = mid + 1;
450 } else if (compare < 0) {
451 hi = mid - 1;
452 } else {
453 return &str_id;
454 }
455 }
456 return NULL;
457}
458
459const DexFile::StringId* DexFile::FindStringId(const uint16_t* string) const {
460 int32_t lo = 0;
461 int32_t hi = NumStringIds() - 1;
462 while (hi >= lo) {
463 int32_t mid = (hi + lo) / 2;
464 uint32_t length;
465 const DexFile::StringId& str_id = GetStringId(mid);
466 const char* str = GetStringDataAndLength(str_id, &length);
467 int compare = CompareModifiedUtf8ToUtf16AsCodePointValues(str, string);
Ian Rogers0571d352011-11-03 19:51:38 -0700468 if (compare > 0) {
469 lo = mid + 1;
470 } else if (compare < 0) {
471 hi = mid - 1;
472 } else {
473 return &str_id;
474 }
475 }
476 return NULL;
477}
478
479const DexFile::TypeId* DexFile::FindTypeId(uint32_t string_idx) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700480 int32_t lo = 0;
481 int32_t hi = NumTypeIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700482 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700483 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700484 const TypeId& type_id = GetTypeId(mid);
485 if (string_idx > type_id.descriptor_idx_) {
486 lo = mid + 1;
487 } else if (string_idx < type_id.descriptor_idx_) {
488 hi = mid - 1;
489 } else {
490 return &type_id;
491 }
492 }
493 return NULL;
494}
495
496const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800497 const std::vector<uint16_t>& signature_type_idxs) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700498 int32_t lo = 0;
499 int32_t hi = NumProtoIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700500 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700501 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700502 const DexFile::ProtoId& proto = GetProtoId(mid);
503 int compare = return_type_idx - proto.return_type_idx_;
504 if (compare == 0) {
505 DexFileParameterIterator it(*this, proto);
506 size_t i = 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800507 while (it.HasNext() && i < signature_type_idxs.size() && compare == 0) {
508 compare = signature_type_idxs[i] - it.GetTypeIdx();
Ian Rogers0571d352011-11-03 19:51:38 -0700509 it.Next();
510 i++;
511 }
512 if (compare == 0) {
513 if (it.HasNext()) {
514 compare = -1;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800515 } else if (i < signature_type_idxs.size()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700516 compare = 1;
517 }
518 }
519 }
520 if (compare > 0) {
521 lo = mid + 1;
522 } else if (compare < 0) {
523 hi = mid - 1;
524 } else {
525 return &proto;
526 }
527 }
528 return NULL;
529}
530
531// Given a signature place the type ids into the given vector
532bool DexFile::CreateTypeList(uint16_t* return_type_idx, std::vector<uint16_t>* param_type_idxs,
533 const std::string& signature) const {
534 if (signature[0] != '(') {
535 return false;
536 }
537 size_t offset = 1;
538 size_t end = signature.size();
539 bool process_return = false;
540 while (offset < end) {
541 char c = signature[offset];
542 offset++;
543 if (c == ')') {
544 process_return = true;
545 continue;
546 }
547 std::string descriptor;
548 descriptor += c;
549 while (c == '[') { // process array prefix
550 if (offset >= end) { // expect some descriptor following [
551 return false;
552 }
553 c = signature[offset];
554 offset++;
555 descriptor += c;
556 }
557 if (c == 'L') { // process type descriptors
558 do {
559 if (offset >= end) { // unexpected early termination of descriptor
560 return false;
561 }
562 c = signature[offset];
563 offset++;
564 descriptor += c;
565 } while (c != ';');
566 }
Ian Rogers637c65b2013-05-31 11:46:00 -0700567 const DexFile::StringId* string_id = FindStringId(descriptor.c_str());
Ian Rogers0571d352011-11-03 19:51:38 -0700568 if (string_id == NULL) {
569 return false;
570 }
571 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
572 if (type_id == NULL) {
573 return false;
574 }
575 uint16_t type_idx = GetIndexForTypeId(*type_id);
576 if (!process_return) {
577 param_type_idxs->push_back(type_idx);
578 } else {
579 *return_type_idx = type_idx;
580 return offset == end; // return true if the signature had reached a sensible end
581 }
582 }
583 return false; // failed to correctly parse return type
584}
585
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700586// Materializes the method descriptor for a method prototype. Method
587// descriptors are not stored directly in the dex file. Instead, one
588// must assemble the descriptor from references in the prototype.
Ian Rogers0571d352011-11-03 19:51:38 -0700589std::string DexFile::CreateMethodSignature(uint32_t proto_idx, int32_t* unicode_length) const {
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700590 const ProtoId& proto_id = GetProtoId(proto_idx);
591 std::string descriptor;
592 descriptor.push_back('(');
593 const TypeList* type_list = GetProtoParameters(proto_id);
594 size_t parameter_length = 0;
595 if (type_list != NULL) {
596 // A non-zero number of arguments. Append the type names.
597 for (size_t i = 0; i < type_list->Size(); ++i) {
598 const TypeItem& type_item = type_list->GetTypeItem(i);
599 uint32_t type_idx = type_item.type_idx_;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800600 uint32_t type_length;
Ian Rogers0571d352011-11-03 19:51:38 -0700601 const char* name = StringByTypeIdx(type_idx, &type_length);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700602 parameter_length += type_length;
603 descriptor.append(name);
604 }
605 }
606 descriptor.push_back(')');
607 uint32_t return_type_idx = proto_id.return_type_idx_;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800608 uint32_t return_type_length;
Ian Rogers0571d352011-11-03 19:51:38 -0700609 const char* name = StringByTypeIdx(return_type_idx, &return_type_length);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700610 descriptor.append(name);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700611 if (unicode_length != NULL) {
612 *unicode_length = parameter_length + return_type_length + 2; // 2 for ( and )
613 }
Elliott Hughes0c424cb2011-08-26 10:16:25 -0700614 return descriptor;
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700615}
616
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800617int32_t DexFile::GetLineNumFromPC(const mirror::AbstractMethod* method, uint32_t rel_pc) const {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700618 // For native method, lineno should be -2 to indicate it is native. Note that
619 // "line number == -2" is how libcore tells from StackTraceElement.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700620 if (method->GetCodeItemOffset() == 0) {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700621 return -2;
622 }
623
TDYa127c8dc1012012-04-19 07:03:33 -0700624 const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset());
Elliott Hughescaf76542012-06-28 16:08:22 -0700625 DCHECK(code_item != NULL) << PrettyMethod(method) << " " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700626
627 // A method with no line number info should return -1
628 LineNumFromPcContext context(rel_pc, -1);
TDYa127c8dc1012012-04-19 07:03:33 -0700629 DecodeDebugInfo(code_item, method->IsStatic(), method->GetDexMethodIndex(), LineNumForPcCb,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800630 NULL, &context);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700631 return context.line_num_;
632}
633
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700634int32_t DexFile::FindTryItem(const CodeItem &code_item, uint32_t address) {
Ian Rogers0571d352011-11-03 19:51:38 -0700635 // Note: Signed type is important for max and min.
636 int32_t min = 0;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700637 int32_t max = code_item.tries_size_ - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700638
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700639 while (min <= max) {
640 int32_t mid = min + ((max - min) / 2);
641
642 const art::DexFile::TryItem* ti = GetTryItems(code_item, mid);
643 uint32_t start = ti->start_addr_;
644 uint32_t end = start + ti->insn_count_;
645
Ian Rogers0571d352011-11-03 19:51:38 -0700646 if (address < start) {
647 max = mid - 1;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700648 } else if (address >= end) {
649 min = mid + 1;
650 } else { // We have a winner!
651 return mid;
Ian Rogers0571d352011-11-03 19:51:38 -0700652 }
653 }
654 // No match.
655 return -1;
656}
657
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700658int32_t DexFile::FindCatchHandlerOffset(const CodeItem &code_item, uint32_t address) {
659 int32_t try_item = FindTryItem(code_item, address);
660 if (try_item == -1) {
661 return -1;
662 } else {
663 return DexFile::GetTryItems(code_item, try_item)->handler_off_;
664 }
665}
666
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800667void DexFile::DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800668 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
669 void* context, const byte* stream, LocalInfo* local_in_reg) const {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700670 uint32_t line = DecodeUnsignedLeb128(&stream);
671 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
672 uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_;
673 uint32_t address = 0;
Elliott Hughes30646832011-10-13 16:59:46 -0700674 bool need_locals = (local_cb != NULL);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700675
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800676 if (!is_static) {
Elliott Hughes30646832011-10-13 16:59:46 -0700677 if (need_locals) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800678 const char* descriptor = GetMethodDeclaringClassDescriptor(GetMethodId(method_idx));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700679 local_in_reg[arg_reg].name_ = "this";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800680 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800681 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700682 local_in_reg[arg_reg].start_address_ = 0;
683 local_in_reg[arg_reg].is_live_ = true;
684 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700685 arg_reg++;
686 }
687
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800688 DexFileParameterIterator it(*this, GetMethodPrototype(GetMethodId(method_idx)));
Ian Rogers0571d352011-11-03 19:51:38 -0700689 for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700690 if (arg_reg >= code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700691 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800692 << " >= " << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700693 return;
694 }
Elliott Hughes392b1242011-11-30 13:55:50 -0800695 uint32_t id = DecodeUnsignedLeb128P1(&stream);
Ian Rogers0571d352011-11-03 19:51:38 -0700696 const char* descriptor = it.GetDescriptor();
Elliott Hughes392b1242011-11-30 13:55:50 -0800697 if (need_locals && id != kDexNoIndex) {
Ian Rogers0571d352011-11-03 19:51:38 -0700698 const char* name = StringDataByIdx(id);
Elliott Hughes30646832011-10-13 16:59:46 -0700699 local_in_reg[arg_reg].name_ = name;
700 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800701 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700702 local_in_reg[arg_reg].start_address_ = address;
703 local_in_reg[arg_reg].is_live_ = true;
704 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700705 switch (*descriptor) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700706 case 'D':
707 case 'J':
708 arg_reg += 2;
709 break;
710 default:
711 arg_reg += 1;
712 break;
713 }
714 }
715
Ian Rogers0571d352011-11-03 19:51:38 -0700716 if (it.HasNext()) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800717 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700718 return;
719 }
720
721 for (;;) {
722 uint8_t opcode = *stream++;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700723 uint16_t reg;
jeffhaof8728872011-10-28 19:11:13 -0700724 uint16_t name_idx;
725 uint16_t descriptor_idx;
726 uint16_t signature_idx = 0;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700727
Shih-wei Liao195487c2011-08-20 13:29:04 -0700728 switch (opcode) {
729 case DBG_END_SEQUENCE:
730 return;
731
732 case DBG_ADVANCE_PC:
733 address += DecodeUnsignedLeb128(&stream);
734 break;
735
736 case DBG_ADVANCE_LINE:
Shih-wei Liao8a05d272011-10-15 18:45:43 -0700737 line += DecodeSignedLeb128(&stream);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700738 break;
739
740 case DBG_START_LOCAL:
741 case DBG_START_LOCAL_EXTENDED:
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
jeffhaof8728872011-10-28 19:11:13 -0700749 name_idx = DecodeUnsignedLeb128P1(&stream);
750 descriptor_idx = DecodeUnsignedLeb128P1(&stream);
751 if (opcode == DBG_START_LOCAL_EXTENDED) {
752 signature_idx = DecodeUnsignedLeb128P1(&stream);
753 }
754
Shih-wei Liao195487c2011-08-20 13:29:04 -0700755 // Emit what was previously there, if anything
Elliott Hughes30646832011-10-13 16:59:46 -0700756 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800757 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700758
Ian Rogers0571d352011-11-03 19:51:38 -0700759 local_in_reg[reg].name_ = StringDataByIdx(name_idx);
760 local_in_reg[reg].descriptor_ = StringByTypeIdx(descriptor_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700761 if (opcode == DBG_START_LOCAL_EXTENDED) {
Ian Rogers0571d352011-11-03 19:51:38 -0700762 local_in_reg[reg].signature_ = StringDataByIdx(signature_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700763 }
764 local_in_reg[reg].start_address_ = address;
765 local_in_reg[reg].is_live_ = true;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700766 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700767 break;
768
769 case DBG_END_LOCAL:
770 reg = DecodeUnsignedLeb128(&stream);
771 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700772 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800773 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700774 return;
775 }
776
Elliott Hughes30646832011-10-13 16:59:46 -0700777 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800778 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Elliott Hughes30646832011-10-13 16:59:46 -0700779 local_in_reg[reg].is_live_ = false;
780 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700781 break;
782
783 case DBG_RESTART_LOCAL:
784 reg = DecodeUnsignedLeb128(&stream);
785 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700786 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800787 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700788 return;
789 }
790
Elliott Hughes30646832011-10-13 16:59:46 -0700791 if (need_locals) {
792 if (local_in_reg[reg].name_ == NULL || local_in_reg[reg].descriptor_ == NULL) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800793 LOG(ERROR) << "invalid stream - no name or descriptor in " << GetLocation();
Elliott Hughes30646832011-10-13 16:59:46 -0700794 return;
795 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700796
Elliott Hughes30646832011-10-13 16:59:46 -0700797 // If the register is live, the "restart" is superfluous,
798 // and we don't want to mess with the existing start address.
799 if (!local_in_reg[reg].is_live_) {
800 local_in_reg[reg].start_address_ = address;
801 local_in_reg[reg].is_live_ = true;
802 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700803 }
804 break;
805
806 case DBG_SET_PROLOGUE_END:
807 case DBG_SET_EPILOGUE_BEGIN:
808 case DBG_SET_FILE:
809 break;
810
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700811 default: {
812 int adjopcode = opcode - DBG_FIRST_SPECIAL;
813
Shih-wei Liao195487c2011-08-20 13:29:04 -0700814 address += adjopcode / DBG_LINE_RANGE;
815 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
816
Elliott Hughes2435a572012-02-17 16:07:41 -0800817 if (position_cb != NULL) {
818 if (position_cb(context, address, line)) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700819 // early exit
820 return;
821 }
822 }
823 break;
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700824 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700825 }
826 }
827}
828
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800829void DexFile::DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800830 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
831 void* context) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700832 const byte* stream = GetDebugInfoStream(code_item);
Elliott Hughesee0fa762012-03-26 17:12:41 -0700833 UniquePtr<LocalInfo[]> local_in_reg(local_cb != NULL ? new LocalInfo[code_item->registers_size_] : NULL);
Ian Rogers0571d352011-11-03 19:51:38 -0700834 if (stream != NULL) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700835 DecodeDebugInfo0(code_item, is_static, method_idx, position_cb, local_cb, context, stream, &local_in_reg[0]);
Ian Rogers0571d352011-11-03 19:51:38 -0700836 }
837 for (int reg = 0; reg < code_item->registers_size_; reg++) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700838 InvokeLocalCbIfLive(context, reg, code_item->insns_size_in_code_units_, &local_in_reg[0], local_cb);
Ian Rogers0571d352011-11-03 19:51:38 -0700839 }
840}
841
Elliott Hughes2435a572012-02-17 16:07:41 -0800842bool DexFile::LineNumForPcCb(void* raw_context, uint32_t address, uint32_t line_num) {
843 LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(raw_context);
Ian Rogers0571d352011-11-03 19:51:38 -0700844
845 // We know that this callback will be called in
846 // ascending address order, so keep going until we find
847 // a match or we've just gone past it.
848 if (address > context->address_) {
849 // The line number from the previous positions callback
850 // wil be the final result.
851 return true;
852 } else {
853 context->line_num_ = line_num;
854 return address == context->address_;
855 }
856}
857
858// Decodes the header section from the class data bytes.
859void ClassDataItemIterator::ReadClassDataHeader() {
860 CHECK(ptr_pos_ != NULL);
861 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
862 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
863 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
864 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
865}
866
867void ClassDataItemIterator::ReadClassDataField() {
868 field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
869 field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700870 if (last_idx_ != 0 && field_.field_idx_delta_ == 0) {
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700871 LOG(WARNING) << "Duplicate field " << PrettyField(GetMemberIndex(), dex_file_)
872 << " in " << dex_file_.GetLocation();
873 }
Ian Rogers0571d352011-11-03 19:51:38 -0700874}
875
876void ClassDataItemIterator::ReadClassDataMethod() {
877 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
878 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
879 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700880 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) {
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700881 LOG(WARNING) << "Duplicate method " << PrettyMethod(GetMemberIndex(), dex_file_)
882 << " in " << dex_file_.GetLocation();
883 }
Ian Rogers0571d352011-11-03 19:51:38 -0700884}
885
886// Read a signed integer. "zwidth" is the zero-based byte count.
887static int32_t ReadSignedInt(const byte* ptr, int zwidth) {
888 int32_t val = 0;
889 for (int i = zwidth; i >= 0; --i) {
890 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
891 }
892 val >>= (3 - zwidth) * 8;
893 return val;
894}
895
896// Read an unsigned integer. "zwidth" is the zero-based byte count,
897// "fill_on_right" indicates which side we want to zero-fill from.
898static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth, bool fill_on_right) {
899 uint32_t val = 0;
900 if (!fill_on_right) {
901 for (int i = zwidth; i >= 0; --i) {
902 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
903 }
904 val >>= (3 - zwidth) * 8;
905 } else {
906 for (int i = zwidth; i >= 0; --i) {
907 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
908 }
909 }
910 return val;
911}
912
913// Read a signed long. "zwidth" is the zero-based byte count.
914static int64_t ReadSignedLong(const byte* ptr, int zwidth) {
915 int64_t val = 0;
916 for (int i = zwidth; i >= 0; --i) {
917 val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56);
918 }
919 val >>= (7 - zwidth) * 8;
920 return val;
921}
922
923// Read an unsigned long. "zwidth" is the zero-based byte count,
924// "fill_on_right" indicates which side we want to zero-fill from.
925static uint64_t ReadUnsignedLong(const byte* ptr, int zwidth, bool fill_on_right) {
926 uint64_t val = 0;
927 if (!fill_on_right) {
928 for (int i = zwidth; i >= 0; --i) {
929 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
930 }
931 val >>= (7 - zwidth) * 8;
932 } else {
933 for (int i = zwidth; i >= 0; --i) {
934 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
935 }
936 }
937 return val;
938}
939
940EncodedStaticFieldValueIterator::EncodedStaticFieldValueIterator(const DexFile& dex_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800941 mirror::DexCache* dex_cache,
942 mirror::ClassLoader* class_loader,
Ian Rogersca190662012-06-26 15:45:57 -0700943 ClassLinker* linker,
944 const DexFile::ClassDef& class_def)
Brian Carlstrom88f36542012-10-16 23:24:21 -0700945 : dex_file_(dex_file), dex_cache_(dex_cache), class_loader_(class_loader), linker_(linker),
946 array_size_(), pos_(-1), type_(kByte) {
Ian Rogers0571d352011-11-03 19:51:38 -0700947 ptr_ = dex_file.GetEncodedStaticFieldValuesArray(class_def);
948 if (ptr_ == NULL) {
949 array_size_ = 0;
950 } else {
951 array_size_ = DecodeUnsignedLeb128(&ptr_);
952 }
953 if (array_size_ > 0) {
954 Next();
955 }
956}
957
958void EncodedStaticFieldValueIterator::Next() {
959 pos_++;
960 if (pos_ >= array_size_) {
961 return;
962 }
963 byte value_type = *ptr_++;
964 byte value_arg = value_type >> kEncodedValueArgShift;
965 size_t width = value_arg + 1; // assume and correct later
Brian Carlstrom88f36542012-10-16 23:24:21 -0700966 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
Ian Rogers0571d352011-11-03 19:51:38 -0700967 switch (type_) {
968 case kBoolean:
969 jval_.i = (value_arg != 0) ? 1 : 0;
970 width = 0;
971 break;
972 case kByte:
973 jval_.i = ReadSignedInt(ptr_, value_arg);
974 CHECK(IsInt(8, jval_.i));
975 break;
976 case kShort:
977 jval_.i = ReadSignedInt(ptr_, value_arg);
978 CHECK(IsInt(16, jval_.i));
979 break;
980 case kChar:
981 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
982 CHECK(IsUint(16, jval_.i));
983 break;
984 case kInt:
985 jval_.i = ReadSignedInt(ptr_, value_arg);
986 break;
987 case kLong:
988 jval_.j = ReadSignedLong(ptr_, value_arg);
989 break;
990 case kFloat:
991 jval_.i = ReadUnsignedInt(ptr_, value_arg, true);
992 break;
993 case kDouble:
994 jval_.j = ReadUnsignedLong(ptr_, value_arg, true);
995 break;
996 case kString:
997 case kType:
Ian Rogers0571d352011-11-03 19:51:38 -0700998 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
999 break;
1000 case kField:
Brian Carlstrom88f36542012-10-16 23:24:21 -07001001 case kMethod:
1002 case kEnum:
Ian Rogers0571d352011-11-03 19:51:38 -07001003 case kArray:
1004 case kAnnotation:
1005 UNIMPLEMENTED(FATAL) << ": type " << type_;
1006 break;
1007 case kNull:
1008 jval_.l = NULL;
1009 width = 0;
1010 break;
1011 default:
1012 LOG(FATAL) << "Unreached";
1013 }
1014 ptr_ += width;
1015}
1016
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001017void EncodedStaticFieldValueIterator::ReadValueToField(mirror::Field* field) const {
Ian Rogers0571d352011-11-03 19:51:38 -07001018 switch (type_) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001019 case kBoolean: field->SetBoolean(field->GetDeclaringClass(), jval_.z); break;
1020 case kByte: field->SetByte(field->GetDeclaringClass(), jval_.b); break;
1021 case kShort: field->SetShort(field->GetDeclaringClass(), jval_.s); break;
1022 case kChar: field->SetChar(field->GetDeclaringClass(), jval_.c); break;
1023 case kInt: field->SetInt(field->GetDeclaringClass(), jval_.i); break;
1024 case kLong: field->SetLong(field->GetDeclaringClass(), jval_.j); break;
1025 case kFloat: field->SetFloat(field->GetDeclaringClass(), jval_.f); break;
1026 case kDouble: field->SetDouble(field->GetDeclaringClass(), jval_.d); break;
1027 case kNull: field->SetObject(field->GetDeclaringClass(), NULL); break;
Ian Rogers0571d352011-11-03 19:51:38 -07001028 case kString: {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001029 mirror::String* resolved = linker_->ResolveString(dex_file_, jval_.i, dex_cache_);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001030 field->SetObject(field->GetDeclaringClass(), resolved);
Ian Rogers0571d352011-11-03 19:51:38 -07001031 break;
1032 }
Brian Carlstrom88f36542012-10-16 23:24:21 -07001033 case kType: {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001034 mirror::Class* resolved = linker_->ResolveType(dex_file_, jval_.i, dex_cache_, class_loader_);
mikaelpeltierebf6aa82012-11-07 14:02:15 +01001035 field->SetObject(field->GetDeclaringClass(), resolved);
Brian Carlstrom88f36542012-10-16 23:24:21 -07001036 break;
1037 }
Ian Rogers0571d352011-11-03 19:51:38 -07001038 default: UNIMPLEMENTED(FATAL) << ": type " << type_;
1039 }
1040}
1041
1042CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) {
1043 handler_.address_ = -1;
1044 int32_t offset = -1;
1045
1046 // Short-circuit the overwhelmingly common cases.
1047 switch (code_item.tries_size_) {
1048 case 0:
1049 break;
1050 case 1: {
1051 const DexFile::TryItem* tries = DexFile::GetTryItems(code_item, 0);
1052 uint32_t start = tries->start_addr_;
1053 if (address >= start) {
1054 uint32_t end = start + tries->insn_count_;
1055 if (address < end) {
1056 offset = tries->handler_off_;
1057 }
1058 }
1059 break;
1060 }
1061 default:
Ian Rogersdbbc99d2013-04-18 16:51:54 -07001062 offset = DexFile::FindCatchHandlerOffset(code_item, address);
Ian Rogers0571d352011-11-03 19:51:38 -07001063 }
Logan Chien736df022012-04-27 16:25:57 +08001064 Init(code_item, offset);
1065}
1066
1067CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item,
1068 const DexFile::TryItem& try_item) {
1069 handler_.address_ = -1;
1070 Init(code_item, try_item.handler_off_);
1071}
1072
1073void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item,
1074 int32_t offset) {
Ian Rogers0571d352011-11-03 19:51:38 -07001075 if (offset >= 0) {
Logan Chien736df022012-04-27 16:25:57 +08001076 Init(DexFile::GetCatchHandlerData(code_item, offset));
Ian Rogers0571d352011-11-03 19:51:38 -07001077 } else {
1078 // Not found, initialize as empty
1079 current_data_ = NULL;
1080 remaining_count_ = -1;
1081 catch_all_ = false;
1082 DCHECK(!HasNext());
1083 }
1084}
1085
1086void CatchHandlerIterator::Init(const byte* handler_data) {
1087 current_data_ = handler_data;
1088 remaining_count_ = DecodeSignedLeb128(&current_data_);
1089
1090 // If remaining_count_ is non-positive, then it is the negative of
1091 // the number of catch types, and the catches are followed by a
1092 // catch-all handler.
1093 if (remaining_count_ <= 0) {
1094 catch_all_ = true;
1095 remaining_count_ = -remaining_count_;
1096 } else {
1097 catch_all_ = false;
1098 }
1099 Next();
1100}
1101
1102void CatchHandlerIterator::Next() {
1103 if (remaining_count_ > 0) {
1104 handler_.type_idx_ = DecodeUnsignedLeb128(&current_data_);
1105 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1106 remaining_count_--;
1107 return;
1108 }
1109
1110 if (catch_all_) {
1111 handler_.type_idx_ = DexFile::kDexNoIndex16;
1112 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1113 catch_all_ = false;
1114 return;
1115 }
1116
1117 // no more handler
1118 remaining_count_ = -1;
1119}
1120
Carl Shapiro1fb86202011-06-27 17:43:13 -07001121} // namespace art