Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 17 | #include "dex_file.h" |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 18 | |
| 19 | #include <fcntl.h> |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 20 | #include <limits.h> |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 21 | #include <stdio.h> |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 22 | #include <stdlib.h> |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 23 | #include <string.h> |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 24 | #include <sys/file.h> |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 25 | #include <sys/mman.h> |
| 26 | #include <sys/stat.h> |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 27 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 28 | #include <map> |
| 29 | |
| 30 | #include "UniquePtr.h" |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 31 | #include "class_linker.h" |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 32 | #include "dex_file_verifier.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 33 | #include "globals.h" |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 34 | #include "leb128.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 35 | #include "logging.h" |
| 36 | #include "object.h" |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 37 | #include "os.h" |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 38 | #include "stringprintf.h" |
| 39 | #include "thread.h" |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 40 | #include "utf.h" |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 41 | #include "utils.h" |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 42 | #include "zip_archive.h" |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 43 | |
| 44 | namespace art { |
| 45 | |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 46 | const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' }; |
| 47 | const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' }; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 48 | |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 49 | DexFile::ClassPathEntry DexFile::FindInClassPath(const StringPiece& descriptor, |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 50 | const ClassPath& class_path) { |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 51 | for (size_t i = 0; i != class_path.size(); ++i) { |
| 52 | const DexFile* dex_file = class_path[i]; |
| 53 | const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor); |
| 54 | if (dex_class_def != NULL) { |
| 55 | return ClassPathEntry(dex_file, dex_class_def); |
| 56 | } |
| 57 | } |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 58 | // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved |
Brian Carlstrom | 7e93b50 | 2011-08-04 14:16:22 -0700 | [diff] [blame] | 59 | return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL), |
| 60 | reinterpret_cast<const DexFile::ClassDef*>(NULL)); |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 63 | void DexFile::OpenDexFiles(const std::vector<const char*>& dex_filenames, |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 64 | std::vector<const DexFile*>& dex_files, |
| 65 | const std::string& strip_location_prefix) { |
| 66 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 67 | const char* dex_filename = dex_filenames[i]; |
| 68 | const DexFile* dex_file = Open(dex_filename, strip_location_prefix); |
| 69 | if (dex_file == NULL) { |
| 70 | fprintf(stderr, "could not open .dex from file %s\n", dex_filename); |
| 71 | exit(EXIT_FAILURE); |
| 72 | } |
| 73 | dex_files.push_back(dex_file); |
| 74 | } |
| 75 | } |
| 76 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 77 | const DexFile* DexFile::Open(const std::string& filename, |
| 78 | const std::string& strip_location_prefix) { |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 79 | if (IsValidZipFilename(filename)) { |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 80 | return DexFile::OpenZip(filename, strip_location_prefix); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 81 | } |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 82 | if (!IsValidDexFilename(filename)) { |
| 83 | LOG(WARNING) << "Attempting to open dex file with unknown extension '" << filename << "'"; |
| 84 | } |
| 85 | return DexFile::OpenFile(filename, filename, strip_location_prefix); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 86 | } |
| 87 | |
jeffhao | b4df514 | 2011-09-19 20:25:32 -0700 | [diff] [blame] | 88 | void DexFile::ChangePermissions(int prot) const { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 89 | if (mprotect(mem_map_->Begin(), mem_map_->Size(), prot) != 0) { |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 90 | PLOG(FATAL) << "Failed to change dex file permissions to " << prot << " for " << GetLocation(); |
jeffhao | b4df514 | 2011-09-19 20:25:32 -0700 | [diff] [blame] | 91 | } |
| 92 | } |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 93 | |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 94 | const std::string StripLocationPrefix(const std::string& original_location, |
| 95 | const std::string& strip_location_prefix) { |
| 96 | StringPiece location = original_location; |
| 97 | if (!location.starts_with(strip_location_prefix)) { |
| 98 | LOG(ERROR) << location << " does not start with " << strip_location_prefix; |
| 99 | return ""; |
| 100 | } |
| 101 | location.remove_prefix(strip_location_prefix.size()); |
| 102 | return location.ToString(); |
| 103 | } |
| 104 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 105 | const DexFile* DexFile::OpenFile(const std::string& filename, |
| 106 | const std::string& original_location, |
| 107 | const std::string& strip_location_prefix) { |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 108 | std::string location(StripLocationPrefix(original_location, strip_location_prefix)); |
| 109 | if (location.empty()) { |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 110 | return NULL; |
| 111 | } |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 112 | |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 113 | int fd = open(filename.c_str(), O_RDONLY); // TODO: scoped_fd |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 114 | if (fd == -1) { |
| 115 | PLOG(ERROR) << "open(\"" << filename << "\", O_RDONLY) failed"; |
| 116 | return NULL; |
| 117 | } |
| 118 | struct stat sbuf; |
| 119 | memset(&sbuf, 0, sizeof(sbuf)); |
| 120 | if (fstat(fd, &sbuf) == -1) { |
| 121 | PLOG(ERROR) << "fstat \"" << filename << "\" failed"; |
| 122 | close(fd); |
| 123 | return NULL; |
| 124 | } |
Ian Rogers | 7cfb93e | 2012-01-17 19:46:36 -0800 | [diff] [blame] | 125 | if (S_ISDIR(sbuf.st_mode)) { |
| 126 | LOG(ERROR) << "attempt to mmap directory \"" << filename << "\""; |
| 127 | return NULL; |
| 128 | } |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 129 | size_t length = sbuf.st_size; |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 130 | UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0)); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 131 | if (map.get() == NULL) { |
| 132 | LOG(ERROR) << "mmap \"" << filename << "\" failed"; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 133 | close(fd); |
| 134 | return NULL; |
| 135 | } |
| 136 | close(fd); |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 137 | const DexFile* dex_file = OpenMemory(location, map.release()); |
jeffhao | 54c1ceb | 2012-02-01 11:45:32 -0800 | [diff] [blame] | 138 | if (dex_file == NULL) { |
| 139 | LOG(ERROR) << "Failed to open dex file '" << location << "' from memory"; |
| 140 | return NULL; |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 141 | } |
jeffhao | 54c1ceb | 2012-02-01 11:45:32 -0800 | [diff] [blame] | 142 | |
| 143 | if (!DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) { |
| 144 | LOG(ERROR) << "Failed to verify dex file '" << location << "'"; |
| 145 | return NULL; |
| 146 | } |
| 147 | |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 148 | return dex_file; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 151 | const char* DexFile::kClassesDex = "classes.dex"; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 152 | |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 153 | // Open classes.dex from within a .zip, .jar, .apk, ... |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 154 | const DexFile* DexFile::OpenZip(const std::string& filename, |
| 155 | const std::string& strip_location_prefix) { |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 156 | std::string location(StripLocationPrefix(filename, strip_location_prefix)); |
| 157 | if (location.empty()) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 158 | return NULL; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 159 | } |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 160 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 161 | UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename)); |
| 162 | if (zip_archive.get() == NULL) { |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 163 | LOG(ERROR) << "Failed to open " << filename << " when looking for classes.dex"; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 164 | return NULL; |
| 165 | } |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 166 | return DexFile::Open(*zip_archive.get(), location); |
| 167 | } |
| 168 | |
| 169 | const DexFile* DexFile::Open(const ZipArchive& zip_archive, const std::string& location) { |
| 170 | UniquePtr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex)); |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 171 | if (zip_entry.get() == NULL) { |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 172 | LOG(ERROR) << "Failed to find classes.dex within " << location; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 173 | return NULL; |
| 174 | } |
| 175 | |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 176 | uint32_t length = zip_entry->GetUncompressedLength(); |
Elliott Hughes | 850162c | 2012-01-12 18:46:43 -0800 | [diff] [blame] | 177 | std::string name("classes.dex extracted in memory from "); |
| 178 | name += location; |
| 179 | UniquePtr<MemMap> map(MemMap::MapAnonymous(name.c_str(), NULL, length, PROT_READ | PROT_WRITE)); |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 180 | if (map.get() == NULL) { |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 181 | LOG(ERROR) << "mmap classes.dex for \"" << location << "\" failed"; |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 182 | return NULL; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 183 | } |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 184 | |
| 185 | // Extract classes.dex |
| 186 | bool success = zip_entry->ExtractToMemory(*map.get()); |
| 187 | if (!success) { |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 188 | LOG(ERROR) << "Failed to extract classes.dex from '" << location << "' to memory"; |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 189 | return NULL; |
| 190 | } |
| 191 | |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 192 | const DexFile* dex_file = OpenMemory(location, map.release()); |
jeffhao | 54c1ceb | 2012-02-01 11:45:32 -0800 | [diff] [blame] | 193 | if (dex_file == NULL) { |
| 194 | LOG(ERROR) << "Failed to open dex file '" << location << "' from memory"; |
| 195 | return NULL; |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 196 | } |
jeffhao | 54c1ceb | 2012-02-01 11:45:32 -0800 | [diff] [blame] | 197 | |
| 198 | if (!DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) { |
| 199 | LOG(ERROR) << "Failed to verify dex file '" << location << "'"; |
| 200 | return NULL; |
| 201 | } |
| 202 | |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 203 | return dex_file; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 206 | const DexFile* DexFile::OpenMemory(const byte* base, |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 207 | size_t size, |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 208 | const std::string& location, |
| 209 | MemMap* mem_map) { |
| 210 | CHECK_ALIGNED(base, 4); // various dex file structures must be word aligned |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 211 | UniquePtr<DexFile> dex_file(new DexFile(base, size, location, mem_map)); |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 212 | if (!dex_file->Init()) { |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 213 | return NULL; |
| 214 | } else { |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 215 | return dex_file.release(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | |
Jesse Wilson | 6bf1915 | 2011-09-29 13:12:33 -0400 | [diff] [blame] | 219 | DexFile::~DexFile() { |
Elliott Hughes | 8cef0b8 | 2011-10-11 19:24:00 -0700 | [diff] [blame] | 220 | // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and |
| 221 | // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could |
| 222 | // re-attach, but cleaning up these global references is not obviously useful. It's not as if |
| 223 | // the global reference table is otherwise empty! |
Jesse Wilson | 6bf1915 | 2011-09-29 13:12:33 -0400 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | jobject DexFile::GetDexObject(JNIEnv* env) const { |
| 227 | MutexLock mu(dex_object_lock_); |
| 228 | if (dex_object_ != NULL) { |
| 229 | return dex_object_; |
| 230 | } |
| 231 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 232 | void* address = const_cast<void*>(reinterpret_cast<const void*>(begin_)); |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 233 | jobject byte_buffer = env->NewDirectByteBuffer(address, size_); |
Jesse Wilson | 6bf1915 | 2011-09-29 13:12:33 -0400 | [diff] [blame] | 234 | if (byte_buffer == NULL) { |
| 235 | return NULL; |
| 236 | } |
| 237 | |
| 238 | jclass c = env->FindClass("com/android/dex/Dex"); |
| 239 | if (c == NULL) { |
| 240 | return NULL; |
| 241 | } |
| 242 | |
| 243 | jmethodID mid = env->GetStaticMethodID(c, "create", "(Ljava/nio/ByteBuffer;)Lcom/android/dex/Dex;"); |
| 244 | if (mid == NULL) { |
| 245 | return NULL; |
| 246 | } |
| 247 | |
| 248 | jvalue args[1]; |
| 249 | args[0].l = byte_buffer; |
| 250 | jobject local = env->CallStaticObjectMethodA(c, mid, args); |
| 251 | if (local == NULL) { |
| 252 | return NULL; |
| 253 | } |
| 254 | |
| 255 | dex_object_ = env->NewGlobalRef(local); |
| 256 | return dex_object_; |
| 257 | } |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 258 | |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 259 | bool DexFile::Init() { |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 260 | InitMembers(); |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 261 | if (!CheckMagicAndVersion()) { |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 262 | return false; |
| 263 | } |
| 264 | InitIndex(); |
| 265 | return true; |
| 266 | } |
| 267 | |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 268 | void DexFile::InitMembers() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 269 | const byte* b = begin_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 270 | header_ = reinterpret_cast<const Header*>(b); |
| 271 | const Header* h = header_; |
| 272 | string_ids_ = reinterpret_cast<const StringId*>(b + h->string_ids_off_); |
| 273 | type_ids_ = reinterpret_cast<const TypeId*>(b + h->type_ids_off_); |
| 274 | field_ids_ = reinterpret_cast<const FieldId*>(b + h->field_ids_off_); |
| 275 | method_ids_ = reinterpret_cast<const MethodId*>(b + h->method_ids_off_); |
| 276 | proto_ids_ = reinterpret_cast<const ProtoId*>(b + h->proto_ids_off_); |
| 277 | class_defs_ = reinterpret_cast<const ClassDef*>(b + h->class_defs_off_); |
jeffhao | f6174e8 | 2012-01-31 16:14:17 -0800 | [diff] [blame] | 278 | DCHECK_EQ(size_, header_->file_size_); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 279 | } |
| 280 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 281 | bool DexFile::CheckMagicAndVersion() const { |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 282 | CHECK(header_->magic_ != NULL) << GetLocation(); |
| 283 | if (!IsMagicValid(header_->magic_)) { |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 284 | LOG(ERROR) << "Unrecognized magic number in " << GetLocation() << ":" |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 285 | << " " << header_->magic_[0] |
| 286 | << " " << header_->magic_[1] |
| 287 | << " " << header_->magic_[2] |
| 288 | << " " << header_->magic_[3]; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 289 | return false; |
| 290 | } |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 291 | if (!IsVersionValid(header_->magic_)) { |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 292 | LOG(ERROR) << "Unrecognized version number in " << GetLocation() << ":" |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 293 | << " " << header_->magic_[4] |
| 294 | << " " << header_->magic_[5] |
| 295 | << " " << header_->magic_[6] |
| 296 | << " " << header_->magic_[7]; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 297 | return false; |
| 298 | } |
| 299 | return true; |
| 300 | } |
| 301 | |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 302 | bool DexFile::IsMagicValid(const byte* magic) { |
| 303 | return (memcmp(magic, kDexMagic, sizeof(kDexMagic)) == 0); |
| 304 | } |
| 305 | |
| 306 | bool DexFile::IsVersionValid(const byte* magic) { |
| 307 | const byte* version = &magic[sizeof(kDexMagic)]; |
| 308 | return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0); |
| 309 | } |
| 310 | |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 311 | uint32_t DexFile::GetVersion() const { |
| 312 | const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]); |
| 313 | return atoi(version); |
| 314 | } |
| 315 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 316 | int32_t DexFile::GetStringLength(const StringId& string_id) const { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 317 | const byte* ptr = begin_ + string_id.string_data_off_; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 318 | return DecodeUnsignedLeb128(&ptr); |
| 319 | } |
| 320 | |
| 321 | // Returns a pointer to the UTF-8 string data referred to by the given string_id. |
| 322 | const char* DexFile::GetStringDataAndLength(const StringId& string_id, int32_t* length) const { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 323 | CHECK(length != NULL) << GetLocation(); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 324 | const byte* ptr = begin_ + string_id.string_data_off_; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 325 | *length = DecodeUnsignedLeb128(&ptr); |
| 326 | return reinterpret_cast<const char*>(ptr); |
| 327 | } |
| 328 | |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 329 | void DexFile::InitIndex() { |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 330 | CHECK_EQ(index_.size(), 0U) << GetLocation(); |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 331 | for (size_t i = 0; i < NumClassDefs(); ++i) { |
| 332 | const ClassDef& class_def = GetClassDef(i); |
| 333 | const char* descriptor = GetClassDescriptor(class_def); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 334 | index_[descriptor] = i; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 335 | } |
| 336 | } |
| 337 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 338 | bool DexFile::FindClassDefIndex(const StringPiece& descriptor, uint32_t& idx) const { |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 339 | Index::const_iterator it = index_.find(descriptor); |
| 340 | if (it == index_.end()) { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 341 | return false; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 342 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 343 | idx = it->second; |
| 344 | return true; |
| 345 | } |
| 346 | |
| 347 | const DexFile::ClassDef* DexFile::FindClassDef(const StringPiece& descriptor) const { |
| 348 | uint32_t idx; |
| 349 | if (FindClassDefIndex(descriptor, idx)) { |
| 350 | return &GetClassDef(idx); |
| 351 | } |
| 352 | return NULL; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 353 | } |
| 354 | |
Ian Rogers | 9b1a4f4 | 2011-11-14 18:35:10 -0800 | [diff] [blame] | 355 | const DexFile::FieldId* DexFile::FindFieldId(const DexFile::TypeId& declaring_klass, |
| 356 | const DexFile::StringId& name, |
| 357 | const DexFile::TypeId& type) const { |
| 358 | // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx |
| 359 | const uint16_t class_idx = GetIndexForTypeId(declaring_klass); |
| 360 | const uint32_t name_idx = GetIndexForStringId(name); |
| 361 | const uint16_t type_idx = GetIndexForTypeId(type); |
| 362 | uint32_t lo = 0; |
| 363 | uint32_t hi = NumFieldIds() - 1; |
| 364 | while (hi >= lo) { |
| 365 | uint32_t mid = (hi + lo) / 2; |
| 366 | const DexFile::FieldId& field = GetFieldId(mid); |
| 367 | if (class_idx > field.class_idx_) { |
| 368 | lo = mid + 1; |
| 369 | } else if (class_idx < field.class_idx_) { |
| 370 | hi = mid - 1; |
| 371 | } else { |
| 372 | if (name_idx > field.name_idx_) { |
| 373 | lo = mid + 1; |
| 374 | } else if (name_idx < field.name_idx_) { |
| 375 | hi = mid - 1; |
| 376 | } else { |
| 377 | if (type_idx > field.type_idx_) { |
| 378 | lo = mid + 1; |
| 379 | } else if (type_idx < field.type_idx_) { |
| 380 | hi = mid - 1; |
| 381 | } else { |
| 382 | return &field; |
| 383 | } |
| 384 | } |
| 385 | } |
| 386 | } |
| 387 | return NULL; |
| 388 | } |
| 389 | |
| 390 | const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass, |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 391 | const DexFile::StringId& name, |
| 392 | const DexFile::ProtoId& signature) const { |
| 393 | // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx |
Ian Rogers | 9b1a4f4 | 2011-11-14 18:35:10 -0800 | [diff] [blame] | 394 | const uint16_t class_idx = GetIndexForTypeId(declaring_klass); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 395 | const uint32_t name_idx = GetIndexForStringId(name); |
| 396 | const uint16_t proto_idx = GetIndexForProtoId(signature); |
| 397 | uint32_t lo = 0; |
| 398 | uint32_t hi = NumMethodIds() - 1; |
| 399 | while (hi >= lo) { |
| 400 | uint32_t mid = (hi + lo) / 2; |
| 401 | const DexFile::MethodId& method = GetMethodId(mid); |
| 402 | if (class_idx > method.class_idx_) { |
| 403 | lo = mid + 1; |
| 404 | } else if (class_idx < method.class_idx_) { |
| 405 | hi = mid - 1; |
| 406 | } else { |
| 407 | if (name_idx > method.name_idx_) { |
| 408 | lo = mid + 1; |
| 409 | } else if (name_idx < method.name_idx_) { |
| 410 | hi = mid - 1; |
| 411 | } else { |
| 412 | if (proto_idx > method.proto_idx_) { |
| 413 | lo = mid + 1; |
| 414 | } else if (proto_idx < method.proto_idx_) { |
| 415 | hi = mid - 1; |
| 416 | } else { |
| 417 | return &method; |
| 418 | } |
| 419 | } |
| 420 | } |
| 421 | } |
| 422 | return NULL; |
| 423 | } |
| 424 | |
| 425 | const DexFile::StringId* DexFile::FindStringId(const std::string& string) const { |
| 426 | uint32_t lo = 0; |
| 427 | uint32_t hi = NumStringIds() - 1; |
| 428 | while (hi >= lo) { |
| 429 | uint32_t mid = (hi + lo) / 2; |
| 430 | int32_t length; |
| 431 | const DexFile::StringId& str_id = GetStringId(mid); |
| 432 | const char* str = GetStringDataAndLength(str_id, &length); |
| 433 | int compare = CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(string.c_str(), str); |
| 434 | if (compare > 0) { |
| 435 | lo = mid + 1; |
| 436 | } else if (compare < 0) { |
| 437 | hi = mid - 1; |
| 438 | } else { |
| 439 | return &str_id; |
| 440 | } |
| 441 | } |
| 442 | return NULL; |
| 443 | } |
| 444 | |
| 445 | const DexFile::TypeId* DexFile::FindTypeId(uint32_t string_idx) const { |
| 446 | uint32_t lo = 0; |
| 447 | uint32_t hi = NumTypeIds() - 1; |
| 448 | while (hi >= lo) { |
| 449 | uint32_t mid = (hi + lo) / 2; |
| 450 | const TypeId& type_id = GetTypeId(mid); |
| 451 | if (string_idx > type_id.descriptor_idx_) { |
| 452 | lo = mid + 1; |
| 453 | } else if (string_idx < type_id.descriptor_idx_) { |
| 454 | hi = mid - 1; |
| 455 | } else { |
| 456 | return &type_id; |
| 457 | } |
| 458 | } |
| 459 | return NULL; |
| 460 | } |
| 461 | |
| 462 | const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx, |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 463 | const std::vector<uint16_t>& signature_type_idxs) const { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 464 | uint32_t lo = 0; |
| 465 | uint32_t hi = NumProtoIds() - 1; |
| 466 | while (hi >= lo) { |
| 467 | uint32_t mid = (hi + lo) / 2; |
| 468 | const DexFile::ProtoId& proto = GetProtoId(mid); |
| 469 | int compare = return_type_idx - proto.return_type_idx_; |
| 470 | if (compare == 0) { |
| 471 | DexFileParameterIterator it(*this, proto); |
| 472 | size_t i = 0; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 473 | while (it.HasNext() && i < signature_type_idxs.size() && compare == 0) { |
| 474 | compare = signature_type_idxs[i] - it.GetTypeIdx(); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 475 | it.Next(); |
| 476 | i++; |
| 477 | } |
| 478 | if (compare == 0) { |
| 479 | if (it.HasNext()) { |
| 480 | compare = -1; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 481 | } else if (i < signature_type_idxs.size()) { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 482 | compare = 1; |
| 483 | } |
| 484 | } |
| 485 | } |
| 486 | if (compare > 0) { |
| 487 | lo = mid + 1; |
| 488 | } else if (compare < 0) { |
| 489 | hi = mid - 1; |
| 490 | } else { |
| 491 | return &proto; |
| 492 | } |
| 493 | } |
| 494 | return NULL; |
| 495 | } |
| 496 | |
| 497 | // Given a signature place the type ids into the given vector |
| 498 | bool DexFile::CreateTypeList(uint16_t* return_type_idx, std::vector<uint16_t>* param_type_idxs, |
| 499 | const std::string& signature) const { |
| 500 | if (signature[0] != '(') { |
| 501 | return false; |
| 502 | } |
| 503 | size_t offset = 1; |
| 504 | size_t end = signature.size(); |
| 505 | bool process_return = false; |
| 506 | while (offset < end) { |
| 507 | char c = signature[offset]; |
| 508 | offset++; |
| 509 | if (c == ')') { |
| 510 | process_return = true; |
| 511 | continue; |
| 512 | } |
| 513 | std::string descriptor; |
| 514 | descriptor += c; |
| 515 | while (c == '[') { // process array prefix |
| 516 | if (offset >= end) { // expect some descriptor following [ |
| 517 | return false; |
| 518 | } |
| 519 | c = signature[offset]; |
| 520 | offset++; |
| 521 | descriptor += c; |
| 522 | } |
| 523 | if (c == 'L') { // process type descriptors |
| 524 | do { |
| 525 | if (offset >= end) { // unexpected early termination of descriptor |
| 526 | return false; |
| 527 | } |
| 528 | c = signature[offset]; |
| 529 | offset++; |
| 530 | descriptor += c; |
| 531 | } while (c != ';'); |
| 532 | } |
| 533 | const DexFile::StringId* string_id = FindStringId(descriptor); |
| 534 | if (string_id == NULL) { |
| 535 | return false; |
| 536 | } |
| 537 | const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id)); |
| 538 | if (type_id == NULL) { |
| 539 | return false; |
| 540 | } |
| 541 | uint16_t type_idx = GetIndexForTypeId(*type_id); |
| 542 | if (!process_return) { |
| 543 | param_type_idxs->push_back(type_idx); |
| 544 | } else { |
| 545 | *return_type_idx = type_idx; |
| 546 | return offset == end; // return true if the signature had reached a sensible end |
| 547 | } |
| 548 | } |
| 549 | return false; // failed to correctly parse return type |
| 550 | } |
| 551 | |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 552 | // Materializes the method descriptor for a method prototype. Method |
| 553 | // descriptors are not stored directly in the dex file. Instead, one |
| 554 | // must assemble the descriptor from references in the prototype. |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 555 | std::string DexFile::CreateMethodSignature(uint32_t proto_idx, int32_t* unicode_length) const { |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 556 | const ProtoId& proto_id = GetProtoId(proto_idx); |
| 557 | std::string descriptor; |
| 558 | descriptor.push_back('('); |
| 559 | const TypeList* type_list = GetProtoParameters(proto_id); |
| 560 | size_t parameter_length = 0; |
| 561 | if (type_list != NULL) { |
| 562 | // A non-zero number of arguments. Append the type names. |
| 563 | for (size_t i = 0; i < type_list->Size(); ++i) { |
| 564 | const TypeItem& type_item = type_list->GetTypeItem(i); |
| 565 | uint32_t type_idx = type_item.type_idx_; |
| 566 | int32_t type_length; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 567 | const char* name = StringByTypeIdx(type_idx, &type_length); |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 568 | parameter_length += type_length; |
| 569 | descriptor.append(name); |
| 570 | } |
| 571 | } |
| 572 | descriptor.push_back(')'); |
| 573 | uint32_t return_type_idx = proto_id.return_type_idx_; |
| 574 | int32_t return_type_length; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 575 | const char* name = StringByTypeIdx(return_type_idx, &return_type_length); |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 576 | descriptor.append(name); |
Brian Carlstrom | 20cfffa | 2011-08-26 02:31:27 -0700 | [diff] [blame] | 577 | if (unicode_length != NULL) { |
| 578 | *unicode_length = parameter_length + return_type_length + 2; // 2 for ( and ) |
| 579 | } |
Elliott Hughes | 0c424cb | 2011-08-26 10:16:25 -0700 | [diff] [blame] | 580 | return descriptor; |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 581 | } |
| 582 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 583 | |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 584 | int32_t DexFile::GetLineNumFromPC(const Method* method, uint32_t rel_pc) const { |
Shih-wei Liao | ff0f9be | 2011-08-29 15:43:53 -0700 | [diff] [blame] | 585 | // For native method, lineno should be -2 to indicate it is native. Note that |
| 586 | // "line number == -2" is how libcore tells from StackTraceElement. |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 587 | if (method->GetCodeItemOffset() == 0) { |
Shih-wei Liao | ff0f9be | 2011-08-29 15:43:53 -0700 | [diff] [blame] | 588 | return -2; |
| 589 | } |
| 590 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 591 | const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset()); |
Brian Carlstrom | 61e513c | 2011-12-09 15:30:06 -0800 | [diff] [blame] | 592 | DCHECK(code_item != NULL) << GetLocation(); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 593 | |
| 594 | // A method with no line number info should return -1 |
| 595 | LineNumFromPcContext context(rel_pc, -1); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 596 | DecodeDebugInfo(code_item, method->IsStatic(), method->GetDexMethodIndex(), LineNumForPcCb, |
| 597 | NULL, &context); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 598 | return context.line_num_; |
| 599 | } |
| 600 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 601 | int32_t DexFile::FindCatchHandlerOffset(const CodeItem &code_item, int32_t tries_size, |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 602 | uint32_t address) { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 603 | // Note: Signed type is important for max and min. |
| 604 | int32_t min = 0; |
| 605 | int32_t max = tries_size - 1; |
| 606 | |
| 607 | while (max >= min) { |
| 608 | int32_t mid = (min + max) / 2; |
| 609 | const TryItem* pTry = DexFile::GetTryItems(code_item, mid); |
| 610 | uint32_t start = pTry->start_addr_; |
| 611 | if (address < start) { |
| 612 | max = mid - 1; |
| 613 | } else { |
| 614 | uint32_t end = start + pTry->insn_count_; |
| 615 | if (address >= end) { |
| 616 | min = mid + 1; |
| 617 | } else { // We have a winner! |
| 618 | return (int32_t) pTry->handler_off_; |
| 619 | } |
| 620 | } |
| 621 | } |
| 622 | // No match. |
| 623 | return -1; |
| 624 | } |
| 625 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 626 | void DexFile::DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx, |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 627 | DexDebugNewPositionCb posCb, DexDebugNewLocalCb local_cb, |
| 628 | void* cnxt, const byte* stream, LocalInfo* local_in_reg) const { |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 629 | uint32_t line = DecodeUnsignedLeb128(&stream); |
| 630 | uint32_t parameters_size = DecodeUnsignedLeb128(&stream); |
| 631 | uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_; |
| 632 | uint32_t address = 0; |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 633 | bool need_locals = (local_cb != NULL); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 634 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 635 | if (!is_static) { |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 636 | if (need_locals) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 637 | const char* descriptor = GetMethodDeclaringClassDescriptor(GetMethodId(method_idx)); |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 638 | local_in_reg[arg_reg].name_ = "this"; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 639 | local_in_reg[arg_reg].descriptor_ = descriptor; |
Elliott Hughes | 392b124 | 2011-11-30 13:55:50 -0800 | [diff] [blame] | 640 | local_in_reg[arg_reg].signature_ = NULL; |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 641 | local_in_reg[arg_reg].start_address_ = 0; |
| 642 | local_in_reg[arg_reg].is_live_ = true; |
| 643 | } |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 644 | arg_reg++; |
| 645 | } |
| 646 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 647 | DexFileParameterIterator it(*this, GetMethodPrototype(GetMethodId(method_idx))); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 648 | for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) { |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 649 | if (arg_reg >= code_item->registers_size_) { |
jeffhao | f872887 | 2011-10-28 19:11:13 -0700 | [diff] [blame] | 650 | LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 651 | << " >= " << code_item->registers_size_ << ") in " << GetLocation(); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 652 | return; |
| 653 | } |
Elliott Hughes | 392b124 | 2011-11-30 13:55:50 -0800 | [diff] [blame] | 654 | uint32_t id = DecodeUnsignedLeb128P1(&stream); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 655 | const char* descriptor = it.GetDescriptor(); |
Elliott Hughes | 392b124 | 2011-11-30 13:55:50 -0800 | [diff] [blame] | 656 | if (need_locals && id != kDexNoIndex) { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 657 | const char* name = StringDataByIdx(id); |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 658 | local_in_reg[arg_reg].name_ = name; |
| 659 | local_in_reg[arg_reg].descriptor_ = descriptor; |
Elliott Hughes | 392b124 | 2011-11-30 13:55:50 -0800 | [diff] [blame] | 660 | local_in_reg[arg_reg].signature_ = NULL; |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 661 | local_in_reg[arg_reg].start_address_ = address; |
| 662 | local_in_reg[arg_reg].is_live_ = true; |
| 663 | } |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 664 | switch (*descriptor) { |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 665 | case 'D': |
| 666 | case 'J': |
| 667 | arg_reg += 2; |
| 668 | break; |
| 669 | default: |
| 670 | arg_reg += 1; |
| 671 | break; |
| 672 | } |
| 673 | } |
| 674 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 675 | if (it.HasNext()) { |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 676 | LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation(); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 677 | return; |
| 678 | } |
| 679 | |
| 680 | for (;;) { |
| 681 | uint8_t opcode = *stream++; |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 682 | uint16_t reg; |
jeffhao | f872887 | 2011-10-28 19:11:13 -0700 | [diff] [blame] | 683 | uint16_t name_idx; |
| 684 | uint16_t descriptor_idx; |
| 685 | uint16_t signature_idx = 0; |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 686 | |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 687 | switch (opcode) { |
| 688 | case DBG_END_SEQUENCE: |
| 689 | return; |
| 690 | |
| 691 | case DBG_ADVANCE_PC: |
| 692 | address += DecodeUnsignedLeb128(&stream); |
| 693 | break; |
| 694 | |
| 695 | case DBG_ADVANCE_LINE: |
Shih-wei Liao | 8a05d27 | 2011-10-15 18:45:43 -0700 | [diff] [blame] | 696 | line += DecodeSignedLeb128(&stream); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 697 | break; |
| 698 | |
| 699 | case DBG_START_LOCAL: |
| 700 | case DBG_START_LOCAL_EXTENDED: |
| 701 | reg = DecodeUnsignedLeb128(&stream); |
| 702 | if (reg > code_item->registers_size_) { |
jeffhao | f872887 | 2011-10-28 19:11:13 -0700 | [diff] [blame] | 703 | LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > " |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 704 | << code_item->registers_size_ << ") in " << GetLocation(); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 705 | return; |
| 706 | } |
| 707 | |
jeffhao | f872887 | 2011-10-28 19:11:13 -0700 | [diff] [blame] | 708 | name_idx = DecodeUnsignedLeb128P1(&stream); |
| 709 | descriptor_idx = DecodeUnsignedLeb128P1(&stream); |
| 710 | if (opcode == DBG_START_LOCAL_EXTENDED) { |
| 711 | signature_idx = DecodeUnsignedLeb128P1(&stream); |
| 712 | } |
| 713 | |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 714 | // Emit what was previously there, if anything |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 715 | if (need_locals) { |
| 716 | InvokeLocalCbIfLive(cnxt, reg, address, local_in_reg, local_cb); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 717 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 718 | local_in_reg[reg].name_ = StringDataByIdx(name_idx); |
| 719 | local_in_reg[reg].descriptor_ = StringByTypeIdx(descriptor_idx); |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 720 | if (opcode == DBG_START_LOCAL_EXTENDED) { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 721 | local_in_reg[reg].signature_ = StringDataByIdx(signature_idx); |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 722 | } |
| 723 | local_in_reg[reg].start_address_ = address; |
| 724 | local_in_reg[reg].is_live_ = true; |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 725 | } |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 726 | break; |
| 727 | |
| 728 | case DBG_END_LOCAL: |
| 729 | reg = DecodeUnsignedLeb128(&stream); |
| 730 | if (reg > code_item->registers_size_) { |
jeffhao | f872887 | 2011-10-28 19:11:13 -0700 | [diff] [blame] | 731 | LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > " |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 732 | << code_item->registers_size_ << ") in " << GetLocation(); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 733 | return; |
| 734 | } |
| 735 | |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 736 | if (need_locals) { |
| 737 | InvokeLocalCbIfLive(cnxt, reg, address, local_in_reg, local_cb); |
| 738 | local_in_reg[reg].is_live_ = false; |
| 739 | } |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 740 | break; |
| 741 | |
| 742 | case DBG_RESTART_LOCAL: |
| 743 | reg = DecodeUnsignedLeb128(&stream); |
| 744 | if (reg > code_item->registers_size_) { |
jeffhao | f872887 | 2011-10-28 19:11:13 -0700 | [diff] [blame] | 745 | LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > " |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 746 | << code_item->registers_size_ << ") in " << GetLocation(); |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 747 | return; |
| 748 | } |
| 749 | |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 750 | if (need_locals) { |
| 751 | if (local_in_reg[reg].name_ == NULL || local_in_reg[reg].descriptor_ == NULL) { |
Brian Carlstrom | 2aab947 | 2011-12-12 15:21:43 -0800 | [diff] [blame] | 752 | LOG(ERROR) << "invalid stream - no name or descriptor in " << GetLocation(); |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 753 | return; |
| 754 | } |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 755 | |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 756 | // If the register is live, the "restart" is superfluous, |
| 757 | // and we don't want to mess with the existing start address. |
| 758 | if (!local_in_reg[reg].is_live_) { |
| 759 | local_in_reg[reg].start_address_ = address; |
| 760 | local_in_reg[reg].is_live_ = true; |
| 761 | } |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 762 | } |
| 763 | break; |
| 764 | |
| 765 | case DBG_SET_PROLOGUE_END: |
| 766 | case DBG_SET_EPILOGUE_BEGIN: |
| 767 | case DBG_SET_FILE: |
| 768 | break; |
| 769 | |
Shih-wei Liao | 8e1b4ff | 2011-10-15 15:43:51 -0700 | [diff] [blame] | 770 | default: { |
| 771 | int adjopcode = opcode - DBG_FIRST_SPECIAL; |
| 772 | |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 773 | address += adjopcode / DBG_LINE_RANGE; |
| 774 | line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE); |
| 775 | |
| 776 | if (posCb != NULL) { |
| 777 | if (posCb(cnxt, address, line)) { |
| 778 | // early exit |
| 779 | return; |
| 780 | } |
| 781 | } |
| 782 | break; |
Shih-wei Liao | 8e1b4ff | 2011-10-15 15:43:51 -0700 | [diff] [blame] | 783 | } |
Shih-wei Liao | 195487c | 2011-08-20 13:29:04 -0700 | [diff] [blame] | 784 | } |
| 785 | } |
| 786 | } |
| 787 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 788 | void DexFile::DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx, |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 789 | DexDebugNewPositionCb posCb, DexDebugNewLocalCb local_cb, |
| 790 | void* cnxt) const { |
| 791 | const byte* stream = GetDebugInfoStream(code_item); |
| 792 | LocalInfo local_in_reg[code_item->registers_size_]; |
| 793 | |
| 794 | if (stream != NULL) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 795 | DecodeDebugInfo0(code_item, is_static, method_idx, posCb, local_cb, cnxt, stream, local_in_reg); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 796 | } |
| 797 | for (int reg = 0; reg < code_item->registers_size_; reg++) { |
| 798 | InvokeLocalCbIfLive(cnxt, reg, code_item->insns_size_in_code_units_, local_in_reg, local_cb); |
| 799 | } |
| 800 | } |
| 801 | |
| 802 | bool DexFile::LineNumForPcCb(void* cnxt, uint32_t address, uint32_t line_num) { |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 803 | LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(cnxt); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 804 | |
| 805 | // We know that this callback will be called in |
| 806 | // ascending address order, so keep going until we find |
| 807 | // a match or we've just gone past it. |
| 808 | if (address > context->address_) { |
| 809 | // The line number from the previous positions callback |
| 810 | // wil be the final result. |
| 811 | return true; |
| 812 | } else { |
| 813 | context->line_num_ = line_num; |
| 814 | return address == context->address_; |
| 815 | } |
| 816 | } |
| 817 | |
| 818 | // Decodes the header section from the class data bytes. |
| 819 | void ClassDataItemIterator::ReadClassDataHeader() { |
| 820 | CHECK(ptr_pos_ != NULL); |
| 821 | header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 822 | header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 823 | header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 824 | header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 825 | } |
| 826 | |
| 827 | void ClassDataItemIterator::ReadClassDataField() { |
| 828 | field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 829 | field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 830 | } |
| 831 | |
| 832 | void ClassDataItemIterator::ReadClassDataMethod() { |
| 833 | method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 834 | method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 835 | method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 836 | } |
| 837 | |
| 838 | // Read a signed integer. "zwidth" is the zero-based byte count. |
| 839 | static int32_t ReadSignedInt(const byte* ptr, int zwidth) { |
| 840 | int32_t val = 0; |
| 841 | for (int i = zwidth; i >= 0; --i) { |
| 842 | val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24); |
| 843 | } |
| 844 | val >>= (3 - zwidth) * 8; |
| 845 | return val; |
| 846 | } |
| 847 | |
| 848 | // Read an unsigned integer. "zwidth" is the zero-based byte count, |
| 849 | // "fill_on_right" indicates which side we want to zero-fill from. |
| 850 | static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth, bool fill_on_right) { |
| 851 | uint32_t val = 0; |
| 852 | if (!fill_on_right) { |
| 853 | for (int i = zwidth; i >= 0; --i) { |
| 854 | val = (val >> 8) | (((uint32_t)*ptr++) << 24); |
| 855 | } |
| 856 | val >>= (3 - zwidth) * 8; |
| 857 | } else { |
| 858 | for (int i = zwidth; i >= 0; --i) { |
| 859 | val = (val >> 8) | (((uint32_t)*ptr++) << 24); |
| 860 | } |
| 861 | } |
| 862 | return val; |
| 863 | } |
| 864 | |
| 865 | // Read a signed long. "zwidth" is the zero-based byte count. |
| 866 | static int64_t ReadSignedLong(const byte* ptr, int zwidth) { |
| 867 | int64_t val = 0; |
| 868 | for (int i = zwidth; i >= 0; --i) { |
| 869 | val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56); |
| 870 | } |
| 871 | val >>= (7 - zwidth) * 8; |
| 872 | return val; |
| 873 | } |
| 874 | |
| 875 | // Read an unsigned long. "zwidth" is the zero-based byte count, |
| 876 | // "fill_on_right" indicates which side we want to zero-fill from. |
| 877 | static uint64_t ReadUnsignedLong(const byte* ptr, int zwidth, bool fill_on_right) { |
| 878 | uint64_t val = 0; |
| 879 | if (!fill_on_right) { |
| 880 | for (int i = zwidth; i >= 0; --i) { |
| 881 | val = (val >> 8) | (((uint64_t)*ptr++) << 56); |
| 882 | } |
| 883 | val >>= (7 - zwidth) * 8; |
| 884 | } else { |
| 885 | for (int i = zwidth; i >= 0; --i) { |
| 886 | val = (val >> 8) | (((uint64_t)*ptr++) << 56); |
| 887 | } |
| 888 | } |
| 889 | return val; |
| 890 | } |
| 891 | |
| 892 | EncodedStaticFieldValueIterator::EncodedStaticFieldValueIterator(const DexFile& dex_file, |
| 893 | DexCache* dex_cache, ClassLinker* linker, const DexFile::ClassDef& class_def) : |
| 894 | dex_file_(dex_file), dex_cache_(dex_cache), linker_(linker), array_size_(), pos_(-1), type_(0) { |
| 895 | ptr_ = dex_file.GetEncodedStaticFieldValuesArray(class_def); |
| 896 | if (ptr_ == NULL) { |
| 897 | array_size_ = 0; |
| 898 | } else { |
| 899 | array_size_ = DecodeUnsignedLeb128(&ptr_); |
| 900 | } |
| 901 | if (array_size_ > 0) { |
| 902 | Next(); |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | void EncodedStaticFieldValueIterator::Next() { |
| 907 | pos_++; |
| 908 | if (pos_ >= array_size_) { |
| 909 | return; |
| 910 | } |
| 911 | byte value_type = *ptr_++; |
| 912 | byte value_arg = value_type >> kEncodedValueArgShift; |
| 913 | size_t width = value_arg + 1; // assume and correct later |
| 914 | type_ = value_type & kEncodedValueTypeMask; |
| 915 | switch (type_) { |
| 916 | case kBoolean: |
| 917 | jval_.i = (value_arg != 0) ? 1 : 0; |
| 918 | width = 0; |
| 919 | break; |
| 920 | case kByte: |
| 921 | jval_.i = ReadSignedInt(ptr_, value_arg); |
| 922 | CHECK(IsInt(8, jval_.i)); |
| 923 | break; |
| 924 | case kShort: |
| 925 | jval_.i = ReadSignedInt(ptr_, value_arg); |
| 926 | CHECK(IsInt(16, jval_.i)); |
| 927 | break; |
| 928 | case kChar: |
| 929 | jval_.i = ReadUnsignedInt(ptr_, value_arg, false); |
| 930 | CHECK(IsUint(16, jval_.i)); |
| 931 | break; |
| 932 | case kInt: |
| 933 | jval_.i = ReadSignedInt(ptr_, value_arg); |
| 934 | break; |
| 935 | case kLong: |
| 936 | jval_.j = ReadSignedLong(ptr_, value_arg); |
| 937 | break; |
| 938 | case kFloat: |
| 939 | jval_.i = ReadUnsignedInt(ptr_, value_arg, true); |
| 940 | break; |
| 941 | case kDouble: |
| 942 | jval_.j = ReadUnsignedLong(ptr_, value_arg, true); |
| 943 | break; |
| 944 | case kString: |
| 945 | case kType: |
| 946 | case kMethod: |
| 947 | case kEnum: |
| 948 | jval_.i = ReadUnsignedInt(ptr_, value_arg, false); |
| 949 | break; |
| 950 | case kField: |
| 951 | case kArray: |
| 952 | case kAnnotation: |
| 953 | UNIMPLEMENTED(FATAL) << ": type " << type_; |
| 954 | break; |
| 955 | case kNull: |
| 956 | jval_.l = NULL; |
| 957 | width = 0; |
| 958 | break; |
| 959 | default: |
| 960 | LOG(FATAL) << "Unreached"; |
| 961 | } |
| 962 | ptr_ += width; |
| 963 | } |
| 964 | |
| 965 | void EncodedStaticFieldValueIterator::ReadValueToField(Field* field) const { |
| 966 | switch (type_) { |
| 967 | case kBoolean: field->SetBoolean(NULL, jval_.z); break; |
| 968 | case kByte: field->SetByte(NULL, jval_.b); break; |
| 969 | case kShort: field->SetShort(NULL, jval_.s); break; |
| 970 | case kChar: field->SetChar(NULL, jval_.c); break; |
| 971 | case kInt: field->SetInt(NULL, jval_.i); break; |
| 972 | case kLong: field->SetLong(NULL, jval_.j); break; |
| 973 | case kFloat: field->SetFloat(NULL, jval_.f); break; |
| 974 | case kDouble: field->SetDouble(NULL, jval_.d); break; |
| 975 | case kNull: field->SetObject(NULL, NULL); break; |
| 976 | case kString: { |
| 977 | String* resolved = linker_->ResolveString(dex_file_, jval_.i, dex_cache_); |
| 978 | field->SetObject(NULL, resolved); |
| 979 | break; |
| 980 | } |
| 981 | default: UNIMPLEMENTED(FATAL) << ": type " << type_; |
| 982 | } |
| 983 | } |
| 984 | |
| 985 | CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) { |
| 986 | handler_.address_ = -1; |
| 987 | int32_t offset = -1; |
| 988 | |
| 989 | // Short-circuit the overwhelmingly common cases. |
| 990 | switch (code_item.tries_size_) { |
| 991 | case 0: |
| 992 | break; |
| 993 | case 1: { |
| 994 | const DexFile::TryItem* tries = DexFile::GetTryItems(code_item, 0); |
| 995 | uint32_t start = tries->start_addr_; |
| 996 | if (address >= start) { |
| 997 | uint32_t end = start + tries->insn_count_; |
| 998 | if (address < end) { |
| 999 | offset = tries->handler_off_; |
| 1000 | } |
| 1001 | } |
| 1002 | break; |
| 1003 | } |
| 1004 | default: |
| 1005 | offset = DexFile::FindCatchHandlerOffset(code_item, code_item.tries_size_, address); |
| 1006 | } |
| 1007 | if (offset >= 0) { |
| 1008 | const byte* handler_data = DexFile::GetCatchHandlerData(code_item, offset); |
| 1009 | Init(handler_data); |
| 1010 | } else { |
| 1011 | // Not found, initialize as empty |
| 1012 | current_data_ = NULL; |
| 1013 | remaining_count_ = -1; |
| 1014 | catch_all_ = false; |
| 1015 | DCHECK(!HasNext()); |
| 1016 | } |
| 1017 | } |
| 1018 | |
| 1019 | void CatchHandlerIterator::Init(const byte* handler_data) { |
| 1020 | current_data_ = handler_data; |
| 1021 | remaining_count_ = DecodeSignedLeb128(¤t_data_); |
| 1022 | |
| 1023 | // If remaining_count_ is non-positive, then it is the negative of |
| 1024 | // the number of catch types, and the catches are followed by a |
| 1025 | // catch-all handler. |
| 1026 | if (remaining_count_ <= 0) { |
| 1027 | catch_all_ = true; |
| 1028 | remaining_count_ = -remaining_count_; |
| 1029 | } else { |
| 1030 | catch_all_ = false; |
| 1031 | } |
| 1032 | Next(); |
| 1033 | } |
| 1034 | |
| 1035 | void CatchHandlerIterator::Next() { |
| 1036 | if (remaining_count_ > 0) { |
| 1037 | handler_.type_idx_ = DecodeUnsignedLeb128(¤t_data_); |
| 1038 | handler_.address_ = DecodeUnsignedLeb128(¤t_data_); |
| 1039 | remaining_count_--; |
| 1040 | return; |
| 1041 | } |
| 1042 | |
| 1043 | if (catch_all_) { |
| 1044 | handler_.type_idx_ = DexFile::kDexNoIndex16; |
| 1045 | handler_.address_ = DecodeUnsignedLeb128(¤t_data_); |
| 1046 | catch_all_ = false; |
| 1047 | return; |
| 1048 | } |
| 1049 | |
| 1050 | // no more handler |
| 1051 | remaining_count_ = -1; |
| 1052 | } |
| 1053 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1054 | } // namespace art |