blob: 3a32ff14bdafb37bdd4f67e1882ea13e5760073a [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 */
Brian Carlstrom78128a62011-09-15 17:21:19 -070016
17#include <stdio.h>
18#include <stdlib.h>
19
Brian Carlstrom27ec9612011-09-19 20:20:38 -070020#include <fstream>
21#include <iostream>
Brian Carlstrom78128a62011-09-15 17:21:19 -070022#include <string>
23#include <vector>
24
Elliott Hughese222ee02012-12-13 14:41:43 -080025#include "base/stringpiece.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/unix_file/fd_file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070027#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080030#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080031#include "disassembler.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080032#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070033#include "gc/space/image_space.h"
34#include "gc/space/large_object_space.h"
35#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070036#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080037#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070038#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070039#include "mirror/art_field-inl.h"
40#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/array-inl.h"
42#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/object-inl.h"
44#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080045#include "oat.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080046#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080047#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070048#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070049#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070050#include "scoped_thread_state_change.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080051#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070052#include "vmap_table.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070053
54namespace art {
55
56static void usage() {
57 fprintf(stderr,
58 "Usage: oatdump [options] ...\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080059 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
60 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070061 "\n");
62 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080063 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070064 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070065 "\n");
66 fprintf(stderr,
67 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080068 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070069 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070070 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070071 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080072 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070073 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070074 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070075 " --host-prefix may be used to translate host paths to target paths during\n"
76 " cross compilation.\n"
77 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080078 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070079 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070080 fprintf(stderr,
81 " --output=<file> may be used to send the output to a file.\n"
82 " Example: --output=/tmp/oatdump.txt\n"
83 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070084 exit(EXIT_FAILURE);
85}
86
Ian Rogersff1ed472011-09-20 13:46:24 -070087const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080088 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070089 "kImtConflictMethod",
90 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -070091 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070092 "kRefsOnlySaveMethod",
93 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070094 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070095 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070096 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070097};
98
Elliott Hughese3c845c2012-02-28 17:23:01 -080099class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700100 public:
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700101 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file)
102 : host_prefix_(host_prefix),
103 oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800104 oat_dex_files_(oat_file.GetOatDexFiles()),
105 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800106 AddAllOffsets();
107 }
108
109 void Dump(std::ostream& os) {
110 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700111
112 os << "MAGIC:\n";
113 os << oat_header.GetMagic() << "\n\n";
114
115 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800116 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700117
Elliott Hughesa72ec822012-03-05 17:12:22 -0800118 os << "INSTRUCTION SET:\n";
119 os << oat_header.GetInstructionSet() << "\n\n";
120
Brian Carlstromaded5f72011-10-07 17:15:04 -0700121 os << "DEX FILE COUNT:\n";
122 os << oat_header.GetDexFileCount() << "\n\n";
123
124 os << "EXECUTABLE OFFSET:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800125 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700126
Brian Carlstrom28db0122012-10-18 16:20:41 -0700127 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
128 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
129
130 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800131 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700132
133 os << "IMAGE FILE LOCATION:\n";
134 const std::string image_file_location(oat_header.GetImageFileLocation());
135 os << image_file_location;
136 if (!image_file_location.empty() && !host_prefix_.empty()) {
137 os << " (" << host_prefix_ << image_file_location << ")";
138 }
139 os << "\n\n";
140
Ian Rogers30fab402012-01-23 15:43:46 -0800141 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800142 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700143
Ian Rogers30fab402012-01-23 15:43:46 -0800144 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800145 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700146
147 os << std::flush;
148
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800149 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
150 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700151 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800152 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700153 }
154 }
155
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800156 size_t ComputeSize(const void* oat_data) {
157 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
158 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
159 return 0; // Address not in oat file
160 }
161 uint32_t begin_offset = reinterpret_cast<size_t>(oat_data) -
162 reinterpret_cast<size_t>(oat_file_.Begin());
163 typedef std::set<uint32_t>::iterator It;
164 It it = offsets_.upper_bound(begin_offset);
165 CHECK(it != offsets_.end());
166 uint32_t end_offset = *it;
167 return end_offset - begin_offset;
168 }
169
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700170 InstructionSet GetInstructionSet() {
171 return oat_file_.GetOatHeader().GetInstructionSet();
172 }
173
Brian Carlstromea46f952013-07-30 01:26:50 -0700174 const void* GetOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800175 MethodHelper mh(m);
176 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
177 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700178 CHECK(oat_dex_file != nullptr);
179 std::string error_msg;
180 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
181 if (dex_file.get() == nullptr) {
182 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
183 << "': " << error_msg;
184 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700185 const DexFile::ClassDef* class_def =
186 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
187 if (class_def != NULL) {
188 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800189 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
190 CHECK(oat_class != NULL);
191 size_t method_index = m->GetMethodIndex();
192 return oat_class->GetOatMethod(method_index).GetCode();
193 }
194 }
195 }
196 return NULL;
197 }
198
Brian Carlstromaded5f72011-10-07 17:15:04 -0700199 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800200 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800201 // We don't know the length of the code for each method, but we need to know where to stop
202 // when disassembling. What we do know is that a region of code will be followed by some other
203 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
204 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800205 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
206 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800207 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700208 std::string error_msg;
209 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
210 if (dex_file.get() == nullptr) {
211 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
212 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800213 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800214 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800215 offsets_.insert(reinterpret_cast<uint32_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800216 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
217 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
218 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
219 const byte* class_data = dex_file->GetClassData(class_def);
220 if (class_data != NULL) {
221 ClassDataItemIterator it(*dex_file, class_data);
222 SkipAllFields(it);
223 uint32_t class_method_index = 0;
224 while (it.HasNextDirectMethod()) {
225 AddOffsets(oat_class->GetOatMethod(class_method_index++));
226 it.Next();
227 }
228 while (it.HasNextVirtualMethod()) {
229 AddOffsets(oat_class->GetOatMethod(class_method_index++));
230 it.Next();
231 }
232 }
233 }
234 }
235
236 // If the last thing in the file is code for a method, there won't be an offset for the "next"
237 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
238 // for the end of the file.
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800239 offsets_.insert(static_cast<uint32_t>(oat_file_.Size()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800240 }
241
242 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800243 uint32_t code_offset = oat_method.GetCodeOffset();
244 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
245 code_offset &= ~0x1;
246 }
247 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800248 offsets_.insert(oat_method.GetMappingTableOffset());
249 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700250 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800251 }
252
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800253 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700254 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800255 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800256 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700257 std::string error_msg;
258 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800259 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700260 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700261 return;
262 }
263 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
264 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
265 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700266 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
267 CHECK(oat_class.get() != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700268 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
269 << " (" << oat_class->GetStatus() << ")"
270 << " (" << oat_class->GetType() << ")\n";
271 // TODO: include bitmap here if type is kOatClassBitmap?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800272 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
273 std::ostream indented_os(&indent_filter);
274 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700275 }
276
277 os << std::flush;
278 }
279
Elliott Hughese3c845c2012-02-28 17:23:01 -0800280 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700281 while (it.HasNextStaticField()) {
282 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700283 }
Ian Rogers0571d352011-11-03 19:51:38 -0700284 while (it.HasNextInstanceField()) {
285 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700286 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800287 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700288
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800289 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
290 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800291 const byte* class_data = dex_file.GetClassData(class_def);
292 if (class_data == NULL) { // empty class such as a marker interface?
293 return;
294 }
295 ClassDataItemIterator it(dex_file, class_data);
296 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800297 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700298 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800299 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700300 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800301 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
302 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700303 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700304 }
Ian Rogers0571d352011-11-03 19:51:38 -0700305 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800306 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700307 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800308 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
309 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700310 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700311 }
Ian Rogers0571d352011-11-03 19:51:38 -0700312 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700313 os << std::flush;
314 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800315
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700316 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
317 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800318 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800319 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
320 uint32_t method_access_flags) {
321 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700322 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
323 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800324 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
325 std::ostream indent1_os(&indent1_filter);
326 {
327 indent1_os << "DEX CODE:\n";
328 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
329 std::ostream indent2_os(&indent2_filter);
330 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700331 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800332 if (Runtime::Current() != NULL) {
333 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
334 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
335 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700336 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
337 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700338 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800339 {
340 indent1_os << "OAT DATA:\n";
341 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
342 std::ostream indent2_os(&indent2_filter);
343
344 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
345 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
346 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
347 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
348 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
349 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
350 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
351 DumpVmap(indent2_os, oat_method);
352 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
353 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
354 const bool kDumpRawMappingTable = false;
355 if (kDumpRawMappingTable) {
356 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
357 std::ostream indent3_os(&indent3_filter);
358 DumpMappingTable(indent3_os, oat_method);
359 }
360 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
361 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
362 const bool kDumpRawGcMap = false;
363 if (kDumpRawGcMap) {
364 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
365 std::ostream indent3_os(&indent3_filter);
366 DumpGcMap(indent3_os, oat_method, code_item);
367 }
368 }
369 {
370 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
371 oat_method.GetCode(),
372 oat_method.GetCodeOffset(),
373 oat_method.GetCodeSize(),
374 oat_method.GetCode() != NULL ? "..." : "");
375 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
376 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700377 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def, code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800378 method_access_flags);
379 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700380 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800381
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800382 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
383 if (spill_mask == 0) {
384 return;
385 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800386 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800387 for (size_t i = 0; i < 32; i++) {
388 if ((spill_mask & (1 << i)) != 0) {
389 if (is_float) {
390 os << "fr" << i;
391 } else {
392 os << "r" << i;
393 }
394 spill_mask ^= 1 << i; // clear bit
395 if (spill_mask != 0) {
396 os << ", ";
397 } else {
398 break;
399 }
400 }
401 }
402 os << ")";
403 }
404
Ian Rogersb23a7722012-10-09 16:54:26 -0700405 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700406 const uint8_t* raw_table = oat_method.GetVmapTable();
407 if (raw_table != NULL) {
408 const VmapTable vmap_table(raw_table);
409 bool first = true;
410 bool processing_fp = false;
411 uint32_t spill_mask = oat_method.GetCoreSpillMask();
412 for (size_t i = 0; i < vmap_table.Size(); i++) {
413 uint16_t dex_reg = vmap_table[i];
414 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
415 processing_fp ? kFloatVReg : kIntVReg);
416 os << (first ? "v" : ", v") << dex_reg;
417 if (!processing_fp) {
418 os << "/r" << cpu_reg;
419 } else {
420 os << "/fr" << cpu_reg;
421 }
422 first = false;
423 if (!processing_fp && dex_reg == 0xFFFF) {
424 processing_fp = true;
425 spill_mask = oat_method.GetFpSpillMask();
426 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800427 }
Ian Rogers1809a722013-08-09 22:05:32 -0700428 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800429 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800430 }
431
Ian Rogersb23a7722012-10-09 16:54:26 -0700432 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800433 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700434 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700435 if (raw_table != NULL) {
436 const VmapTable vmap_table(raw_table);
437 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700438 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800439 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
440 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
441 : oat_method.GetCoreSpillMask();
442 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700443 } else {
444 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
445 oat_method.GetFpSpillMask(),
446 oat_method.GetFrameSizeInBytes(), reg);
447 os << "[sp + #" << offset << "]";
448 }
449 }
450 }
451
452 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
453 const DexFile::CodeItem* code_item) {
454 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800455 if (gc_map_raw == NULL) {
456 return;
457 }
Ian Rogers0c7abda2012-09-19 13:33:42 -0700458 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogersb23a7722012-10-09 16:54:26 -0700459 const void* code = oat_method.GetCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800460 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
Ian Rogersbb6723f2012-09-21 09:49:06 -0700461 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) +
462 map.GetNativePcOffset(entry);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800463 os << StringPrintf("%p", native_pc);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800464 size_t num_regs = map.RegWidth() * 8;
465 const uint8_t* reg_bitmap = map.GetBitMap(entry);
466 bool first = true;
467 for (size_t reg = 0; reg < num_regs; reg++) {
468 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
469 if (first) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700470 os << " v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800471 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700472 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800473 first = false;
474 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700475 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800476 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700477 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800478 }
479 }
480 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700481 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800482 }
483 }
484
485 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800486 const void* code = oat_method.GetCode();
Ian Rogers1809a722013-08-09 22:05:32 -0700487 if (code == NULL) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800488 return;
489 }
Ian Rogers1809a722013-08-09 22:05:32 -0700490 MappingTable table(oat_method.GetMappingTable());
491 if (table.TotalSize() != 0) {
492 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
493 std::ostream indent_os(&indent_filter);
494 if (table.PcToDexSize() != 0) {
495 typedef MappingTable::PcToDexIterator It;
496 os << "suspend point mappings {\n";
497 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
498 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
499 }
500 os << "}\n";
501 }
502 if (table.DexToPcSize() != 0) {
503 typedef MappingTable::DexToPcIterator It;
504 os << "catch entry mappings {\n";
505 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
506 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
507 }
508 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800509 }
510 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800511 }
512
Ian Rogers1809a722013-08-09 22:05:32 -0700513 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
514 size_t offset, bool suspend_point_mapping) {
515 MappingTable table(oat_method.GetMappingTable());
516 if (suspend_point_mapping && table.PcToDexSize() > 0) {
517 typedef MappingTable::PcToDexIterator It;
518 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
519 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700520 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700521 return cur.DexPc();
522 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800523 }
Ian Rogers1809a722013-08-09 22:05:32 -0700524 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
525 typedef MappingTable::DexToPcIterator It;
526 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
527 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700528 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700529 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700530 }
531 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800532 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800533 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700534 }
535
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800536 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
537 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700538 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
539 if (gc_map_raw != NULL) {
540 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800541 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700542 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800543 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700544 bool first = true;
545 for (size_t reg = 0; reg < num_regs; reg++) {
546 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
547 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800548 os << "GC map objects: v" << reg << " (";
549 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700550 os << ")";
551 first = false;
552 } else {
553 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800554 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700555 os << ")";
556 }
557 }
558 }
559 if (!first) {
560 os << "\n";
561 }
562 }
563 }
564 }
565
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800566 void DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method,
567 uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700568 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800569 uint32_t method_access_flags, uint32_t dex_pc) {
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800570 static UniquePtr<verifier::MethodVerifier> verifier;
571 static const DexFile* verified_dex_file = NULL;
572 static uint32_t verified_dex_method_idx = DexFile::kDexNoIndex;
573 if (dex_file != verified_dex_file || verified_dex_method_idx != dex_method_idx) {
574 ScopedObjectAccess soa(Thread::Current());
575 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
576 mirror::ClassLoader* class_loader = NULL;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700577 verifier.reset(new verifier::MethodVerifier(dex_file, dex_cache, class_loader, &class_def,
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800578 code_item, dex_method_idx, NULL,
Jeff Haoee988952013-04-16 14:23:47 -0700579 method_access_flags, true, true));
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800580 verifier->Verify();
581 verified_dex_file = dex_file;
582 verified_dex_method_idx = dex_method_idx;
583 }
584 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800585 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800586 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
587 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
588 if (kind != kUndefined) {
589 if (first) {
590 os << "VRegs: v";
591 first = false;
592 } else {
593 os << ", v";
594 }
595 os << reg << " (";
596 switch (kind) {
597 case kImpreciseConstant:
598 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
599 DescribeVReg(os, oat_method, code_item, reg, kind);
600 break;
601 case kConstant:
602 os << "Constant: " << kinds.at((reg * 2) + 1);
603 break;
604 default:
605 DescribeVReg(os, oat_method, code_item, reg, kind);
606 break;
607 }
608 os << ")";
609 }
610 }
611 if (!first) {
612 os << "\n";
613 }
614 }
615
616
Ian Rogersb23a7722012-10-09 16:54:26 -0700617 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
618 if (code_item != NULL) {
619 size_t i = 0;
620 while (i < code_item->insns_size_in_code_units_) {
621 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800622 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700623 i += instruction->SizeInCodeUnits();
624 }
625 }
626 }
627
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800628 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700629 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800630 uint32_t method_access_flags) {
631 if ((method_access_flags & kAccNative) == 0) {
632 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800633 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
634 mirror::ClassLoader* class_loader = NULL;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800635 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700636 class_loader, &class_def, code_item, NULL,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800637 method_access_flags);
638 }
639 }
640
641 void DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method,
642 uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700643 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800644 uint32_t method_access_flags) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700645 const void* code = oat_method.GetCode();
646 size_t code_size = oat_method.GetCodeSize();
647 if (code == NULL || code_size == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800648 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700649 return;
650 }
651 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code);
652 size_t offset = 0;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800653 const bool kDumpVRegs = (Runtime::Current() != NULL);
Ian Rogersb23a7722012-10-09 16:54:26 -0700654 while (offset < code_size) {
655 DumpMappingAtOffset(os, oat_method, offset, false);
656 offset += disassembler_->Dump(os, native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800657 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
658 if (dex_pc != DexFile::kDexNoIndex) {
659 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
660 if (kDumpVRegs) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700661 DumpVRegsAtDexPc(os, oat_method, dex_method_idx, dex_file, class_def, code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800662 method_access_flags, dex_pc);
663 }
664 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700665 }
666 }
667
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700668 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800669 const OatFile& oat_file_;
670 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800671 std::set<uint32_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800672 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700673};
674
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800675class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700676 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800677 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers1d54e732013-05-02 21:10:01 -0700678 const std::string& host_prefix, gc::space::ImageSpace& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700679 const ImageHeader& image_header)
680 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
681 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700682
Ian Rogersb726dcb2012-09-05 08:57:23 -0700683 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800684 std::ostream& os = *os_;
685 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700686
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800687 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700688
Mathieu Chartier31e89252013-08-28 11:29:12 -0700689 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
690 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
691
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800692 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700693
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800694 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700695
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800696 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
697
698 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
699
700 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800701
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800702 {
703 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
704 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
705 std::ostream indent1_os(&indent1_filter);
706 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
707 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
708 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
709 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800710 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800711 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
712 if (image_root_object->IsObjectArray()) {
713 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
714 std::ostream indent2_os(&indent2_filter);
715 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800716 mirror::ObjectArray<mirror::Object>* image_root_object_array
717 = down_cast<mirror::ObjectArray<mirror::Object>*>(image_root_object);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800718 // = image_root_object->AsObjectArray<Object>();
719 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800720 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800721 if (value != NULL) {
722 indent2_os << i << ": ";
723 PrettyObjectValue(indent2_os, value->GetClass(), value);
724 } else {
725 indent2_os << i << ": null\n";
726 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800727 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700728 }
729 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700730 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800731 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700732
Brian Carlstromaded5f72011-10-07 17:15:04 -0700733 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800734 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800735 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800736 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800737 if (!host_prefix_.empty()) {
738 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800739 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700740 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800741 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700742 std::string error_msg;
743 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700744 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700745 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700746 return;
747 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800748 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700749
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800750 stats_.oat_file_bytes = oat_file->Size();
751
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700752 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800753
Mathieu Chartier02e25112013-08-14 16:14:24 -0700754 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700755 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700756 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
757 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700758 }
759
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800760 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700761
762 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700763 gc::Heap* heap = Runtime::Current()->GetHeap();
764 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700765 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700766 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700767 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700768 heap->FlushAllocStack();
769 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800770 {
771 std::ostream* saved_os = os_;
772 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
773 std::ostream indent_os(&indent_filter);
774 os_ = &indent_os;
775 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700776 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800777 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700778 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800779 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
780 indent_os << "\n";
781 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700782 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800783 // Dump the large objects separately.
784 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
785 indent_os << "\n";
786 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700787 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800788 os << "STATS:\n" << std::flush;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700789 UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700790 if (file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700791 std::string cache_location(GetDalvikCacheFilenameOrDie(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700792 file.reset(OS::OpenFileForReading(cache_location.c_str()));
793 if (file.get() == NULL) {
794 LOG(WARNING) << "Failed to find image in " << image_filename_
795 << " and " << cache_location;
796 }
797 }
798 if (file.get() != NULL) {
799 stats_.file_bytes = file->GetLength();
800 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800801 size_t header_bytes = sizeof(ImageHeader);
802 stats_.header_bytes = header_bytes;
803 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
804 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700805 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
806 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800807 stats_.Dump(os);
808 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800809
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800810 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800811
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800812 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700813 }
814
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700815 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800816 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700817 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800818 CHECK(type != NULL);
819 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800820 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800821 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800822 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800823 os << StringPrintf("%p String: %s\n", string,
824 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700825 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800826 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800827 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700828 } else if (type->IsArtFieldClass()) {
829 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800830 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700831 } else if (type->IsArtMethodClass()) {
832 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800833 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800834 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800835 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800836 }
837 }
838
Brian Carlstromea46f952013-07-30 01:26:50 -0700839 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700840 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800841 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700842 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800843 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700844 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800845 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700846 if (type->IsPrimitiveLong()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800847 os << StringPrintf("%lld (0x%llx)\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700848 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800849 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700850 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800851 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700852 } else {
853 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800854 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700855 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800856 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700857 // Get the value, don't compute the type unless it is non-null as we don't want
858 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800859 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700860 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800861 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700862 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700863 // Grab the field type without causing resolution.
864 mirror::Class* field_type = fh.GetType(false);
865 if (field_type != NULL) {
866 PrettyObjectValue(os, field_type, value);
867 } else {
868 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
869 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700870 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800871 }
872 }
873
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800874 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700875 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800876 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800877 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800878 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800879 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700880 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800881 if (fields != NULL) {
882 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700883 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800884 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800885 }
886 }
887 }
888
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800889 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800890 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700891 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800892
Brian Carlstromea46f952013-07-30 01:26:50 -0700893 const void* GetOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700894 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700895 const void* code = m->GetEntryPointFromCompiledCode();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700896 if (code == GetResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800897 code = oat_dumper_->GetOatCode(m);
898 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700899 if (oat_dumper_->GetInstructionSet() == kThumb2) {
900 code = reinterpret_cast<void*>(reinterpret_cast<uint32_t>(code) & ~0x1);
901 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800902 return code;
903 }
904
Brian Carlstromea46f952013-07-30 01:26:50 -0700905 uint32_t GetOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700906 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700907 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetOatCodeBegin(m));
908 if (oat_code_begin == NULL) {
909 return 0;
910 }
911 return oat_code_begin[-1];
912 }
913
Brian Carlstromea46f952013-07-30 01:26:50 -0700914 const void* GetOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700915 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700916 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetOatCodeBegin(m));
917 if (oat_code_begin == NULL) {
918 return NULL;
919 }
920 return oat_code_begin + GetOatCodeSize(m);
921 }
922
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800923 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700924 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700925 DCHECK(obj != NULL);
926 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800927 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700928 if (!state->InDumpSpace(obj)) {
929 return;
930 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700931
932 size_t object_bytes = obj->SizeOf();
933 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
934 state->stats_.object_bytes += object_bytes;
935 state->stats_.alignment_bytes += alignment_bytes;
936
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800937 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800938 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800939 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800940 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
941 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800942 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800943 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800944 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
945 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -0700946 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700947 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700948 PrettyField(obj->AsArtField()).c_str());
949 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700950 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700951 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800952 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800953 os << StringPrintf("%p: java.lang.String %s\n", obj,
954 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800955 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800956 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800957 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800958 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
959 std::ostream indent_os(&indent_filter);
960 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -0800961 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800962 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -0800963 int32_t length = obj_array->GetLength();
964 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800965 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800966 size_t run = 0;
967 for (int32_t j = i + 1; j < length; j++) {
968 if (value == obj_array->Get(j)) {
969 run++;
970 } else {
971 break;
972 }
973 }
974 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800975 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800976 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800977 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -0800978 i = i + run;
979 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800980 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800981 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -0800982 }
983 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700984 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800985 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800986 indent_os << "STATICS:\n";
987 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
988 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -0800989 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700990 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800991 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -0800992 }
993 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700994 } else if (obj->IsArtMethod()) {
995 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700996 if (method->IsNative()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700997 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700998 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800999 bool first_occurrence;
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001000 const void* oat_code = state->GetOatCodeBegin(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001001 uint32_t oat_code_size = state->GetOatCodeSize(method);
1002 state->ComputeOatSize(oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001003 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001004 state->stats_.native_to_managed_code_bytes += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001005 }
Jeff Haoaa4a7932013-05-13 11:28:27 -07001006 if (oat_code != method->GetEntryPointFromCompiledCode()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001007 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001008 }
Ian Rogers19846512012-02-24 11:42:47 -08001009 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001010 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1011 MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001012 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001013 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001014 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07001015 // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
1016 // to the quick/portable to interpreter bridge.
1017 CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001018
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001019 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001020 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001021 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001022
Elliott Hughesa0e18062012-04-13 15:59:59 -07001023 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001024 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001025 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001026 state->stats_.gc_map_bytes += gc_map_bytes;
1027 }
1028
1029 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001030 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001031 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001032 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1033 }
1034
1035 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001036 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001037 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001038 state->stats_.vmap_table_bytes += vmap_table_bytes;
1039 }
1040
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001041 const void* oat_code_begin = state->GetOatCodeBegin(method);
1042 const void* oat_code_end = state->GetOatCodeEnd(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001043 uint32_t oat_code_size = state->GetOatCodeSize(method);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001044 state->ComputeOatSize(oat_code_begin, &first_occurrence);
1045 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001046 state->stats_.managed_code_bytes += oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001047 if (method->IsConstructor()) {
1048 if (method->IsStatic()) {
1049 state->stats_.class_initializer_code_bytes += oat_code_size;
1050 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1051 state->stats_.large_initializer_code_bytes += oat_code_size;
1052 }
1053 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1054 state->stats_.large_method_code_bytes += oat_code_size;
1055 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001056 }
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001057 state->stats_.managed_code_bytes_ignoring_deduplication += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001058
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001059 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1060 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1061 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001062
1063 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Jeff Hao74180ca2013-03-27 15:29:11 -07001064 vmap_table_bytes + oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001065
1066 double expansion =
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001067 static_cast<double>(oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001068 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001069 }
1070 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001071 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001072 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001073
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001074 std::set<const void*> already_seen_;
1075 // Compute the size of the given data within the oat file and whether this is the first time
1076 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001077 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001078 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001079 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001080 already_seen_.insert(oat_data);
1081 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001082 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001083 }
1084 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001085 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001086
1087 public:
1088 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001089 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001090 size_t file_bytes;
1091
1092 size_t header_bytes;
1093 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001094 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001095 size_t alignment_bytes;
1096
1097 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001098 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001099 size_t managed_to_native_code_bytes;
1100 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001101 size_t class_initializer_code_bytes;
1102 size_t large_initializer_code_bytes;
1103 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001104
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001105 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001106 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001107 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001108
1109 size_t dex_instruction_bytes;
1110
Brian Carlstromea46f952013-07-30 01:26:50 -07001111 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001112 std::vector<size_t> method_outlier_size;
1113 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001114 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001115
1116 explicit Stats()
1117 : oat_file_bytes(0),
1118 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001119 header_bytes(0),
1120 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001121 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001122 alignment_bytes(0),
1123 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001124 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001125 managed_to_native_code_bytes(0),
1126 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001127 class_initializer_code_bytes(0),
1128 large_initializer_code_bytes(0),
1129 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001130 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001131 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001132 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001133 dex_instruction_bytes(0) {}
1134
Elliott Hughesa0e18062012-04-13 15:59:59 -07001135 struct SizeAndCount {
1136 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1137 size_t bytes;
1138 size_t count;
1139 };
1140 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1141 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001142
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001143 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001144 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1145 if (it != sizes_and_counts.end()) {
1146 it->second.bytes += object_bytes;
1147 it->second.count += 1;
1148 } else {
1149 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1150 }
1151 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001152
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001153 double PercentOfOatBytes(size_t size) {
1154 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1155 }
1156
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001157 double PercentOfFileBytes(size_t size) {
1158 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1159 }
1160
1161 double PercentOfObjectBytes(size_t size) {
1162 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1163 }
1164
Brian Carlstromea46f952013-07-30 01:26:50 -07001165 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001166 method_outlier_size.push_back(total_size);
1167 method_outlier_expansion.push_back(expansion);
1168 method_outlier.push_back(method);
1169 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001170
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001171 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001172 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001173 size_t sum_of_sizes = 0;
1174 size_t sum_of_sizes_squared = 0;
1175 size_t sum_of_expansion = 0;
1176 size_t sum_of_expansion_squared = 0;
1177 size_t n = method_outlier_size.size();
1178 for (size_t i = 0; i < n; i++) {
1179 size_t cur_size = method_outlier_size[i];
1180 sum_of_sizes += cur_size;
1181 sum_of_sizes_squared += cur_size * cur_size;
1182 double cur_expansion = method_outlier_expansion[i];
1183 sum_of_expansion += cur_expansion;
1184 sum_of_expansion_squared += cur_expansion * cur_expansion;
1185 }
1186 size_t size_mean = sum_of_sizes / n;
1187 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1188 double expansion_mean = sum_of_expansion / n;
1189 double expansion_variance =
1190 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1191
1192 // Dump methods whose size is a certain number of standard deviations from the mean
1193 size_t dumped_values = 0;
1194 size_t skipped_values = 0;
1195 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1196 size_t cur_size_variance = i * i * size_variance;
1197 bool first = true;
1198 for (size_t j = 0; j < n; j++) {
1199 size_t cur_size = method_outlier_size[j];
1200 if (cur_size > size_mean) {
1201 size_t cur_var = cur_size - size_mean;
1202 cur_var = cur_var * cur_var;
1203 if (cur_var > cur_size_variance) {
1204 if (dumped_values > 20) {
1205 if (i == 1) {
1206 skipped_values++;
1207 } else {
1208 i = 2; // jump to counting for 1 standard deviation
1209 break;
1210 }
1211 } else {
1212 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001213 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001214 first = false;
1215 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001216 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001217 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001218 method_outlier_size[j] = 0; // don't consider this method again
1219 dumped_values++;
1220 }
1221 }
1222 }
1223 }
1224 }
1225 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001226 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001227 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001228 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001229 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001230
1231 // Dump methods whose expansion is a certain number of standard deviations from the mean
1232 dumped_values = 0;
1233 skipped_values = 0;
1234 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1235 double cur_expansion_variance = i * i * expansion_variance;
1236 bool first = true;
1237 for (size_t j = 0; j < n; j++) {
1238 double cur_expansion = method_outlier_expansion[j];
1239 if (cur_expansion > expansion_mean) {
1240 size_t cur_var = cur_expansion - expansion_mean;
1241 cur_var = cur_var * cur_var;
1242 if (cur_var > cur_expansion_variance) {
1243 if (dumped_values > 20) {
1244 if (i == 1) {
1245 skipped_values++;
1246 } else {
1247 i = 2; // jump to counting for 1 standard deviation
1248 break;
1249 }
1250 } else {
1251 if (first) {
1252 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001253 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001254 first = false;
1255 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001256 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001257 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001258 method_outlier_expansion[j] = 0.0; // don't consider this method again
1259 dumped_values++;
1260 }
1261 }
1262 }
1263 }
1264 }
1265 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001266 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001267 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001268 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001269 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001270 }
1271
Ian Rogersb726dcb2012-09-05 08:57:23 -07001272 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001273 {
1274 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1275 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1276 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1277 std::ostream indent_os(&indent_filter);
1278 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1279 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001280 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001281 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1282 header_bytes, PercentOfFileBytes(header_bytes),
1283 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001284 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001285 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1286 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001287 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001288 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001289
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001290 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001291 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001292 for (const auto& sizes_and_count : sizes_and_counts) {
1293 const std::string& descriptor(sizes_and_count.first);
1294 double average = static_cast<double>(sizes_and_count.second.bytes) /
1295 static_cast<double>(sizes_and_count.second.count);
1296 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001297 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001298 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001299 descriptor.c_str(), sizes_and_count.second.bytes,
1300 sizes_and_count.second.count, average, percent);
1301 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001302 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001303 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001304 CHECK_EQ(object_bytes, object_bytes_total);
1305
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001306 os << StringPrintf("oat_file_bytes = %8zd\n"
1307 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1308 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1309 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1310 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1311 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1312 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001313 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001314 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1315 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001316 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1317 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1318 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1319 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001320 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001321 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001322 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001323 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1324 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001325 }
1326
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001327 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1328 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1329 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001330 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1331 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1332 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001333 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001334
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001335 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1336 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001337 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1338 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001339 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001340 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001341
1342 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001343 }
1344 } stats_;
1345
1346 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001347 enum {
1348 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1349 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1350 kLargeConstructorDexBytes = 4000,
1351 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1352 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1353 kLargeMethodDexBytes = 16000
1354 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001355 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001356 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001357 const std::string image_filename_;
1358 const std::string host_prefix_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001359 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001360 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001361
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001362 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001363};
1364
Elliott Hughes72395bf2012-04-24 13:45:26 -07001365static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001366 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001367
Brian Carlstrom78128a62011-09-15 17:21:19 -07001368 // Skip over argv[0].
1369 argv++;
1370 argc--;
1371
1372 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001373 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001374 usage();
1375 }
1376
Brian Carlstromaded5f72011-10-07 17:15:04 -07001377 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001378 const char* image_filename = NULL;
1379 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001380 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001381 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001382 std::ostream* os = &std::cout;
1383 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001384
1385 for (int i = 0; i < argc; i++) {
1386 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001387 if (option.starts_with("--oat-file=")) {
1388 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001389 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001390 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001391 } else if (option.starts_with("--boot-image=")) {
1392 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001393 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001394 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001395 } else if (option.starts_with("--output=")) {
1396 const char* filename = option.substr(strlen("--output=")).data();
1397 out.reset(new std::ofstream(filename));
1398 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001399 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001400 usage();
1401 }
1402 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001403 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001404 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001405 usage();
1406 }
1407 }
1408
Brian Carlstromaded5f72011-10-07 17:15:04 -07001409 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001410 fprintf(stderr, "Either --image or --oat must be specified\n");
1411 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001412 }
1413
Brian Carlstromaded5f72011-10-07 17:15:04 -07001414 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001415 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1416 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001417 }
1418
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001419 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001420 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1421 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001422 host_prefix.reset(new std::string(android_product_out));
1423 } else {
1424 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001425 }
1426 }
1427
Brian Carlstromaded5f72011-10-07 17:15:04 -07001428 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001429 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001430 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001431 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001432 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001433 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001434 return EXIT_FAILURE;
1435 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001436 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001437 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001438 return EXIT_SUCCESS;
1439 }
1440
Brian Carlstrom78128a62011-09-15 17:21:19 -07001441 Runtime::Options options;
1442 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001443 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001444 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001445 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001446
1447 // We are more like a compiler than a run-time. We don't want to execute code.
1448 options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));
1449
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001450 if (boot_image_filename != NULL) {
1451 boot_image_option += "-Ximage:";
1452 boot_image_option += boot_image_filename;
1453 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001454 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001455 if (image_filename != NULL) {
1456 image_option += "-Ximage:";
1457 image_option += image_filename;
1458 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1459 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001460
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001461 if (!host_prefix->empty()) {
1462 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001463 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001464
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001465 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001466 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001467 return EXIT_FAILURE;
1468 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001469 UniquePtr<Runtime> runtime(Runtime::Current());
1470 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1471 // give it away now and then switch to a more managable ScopedObjectAccess.
1472 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1473 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001474
Ian Rogers1d54e732013-05-02 21:10:01 -07001475 gc::Heap* heap = Runtime::Current()->GetHeap();
1476 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001477 CHECK(image_space != NULL);
1478 const ImageHeader& image_header = image_space->GetImageHeader();
1479 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001480 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001481 return EXIT_FAILURE;
1482 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001483 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001484 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001485 return EXIT_SUCCESS;
1486}
1487
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001488} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001489
1490int main(int argc, char** argv) {
1491 return art::oatdump(argc, argv);
1492}