blob: bbeb80261707110773f5ff6dbdd12c935f23ffaf [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"
Vladimir Marko51154732014-01-02 09:44:23 +000029#include "compiler_callbacks.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080031#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080032#include "disassembler.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080033#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070034#include "gc/space/image_space.h"
35#include "gc/space/large_object_space.h"
36#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070037#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080038#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070039#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070040#include "mirror/art_field-inl.h"
41#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/array-inl.h"
43#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/object-inl.h"
45#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080046#include "oat.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080047#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080048#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070049#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070050#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070051#include "scoped_thread_state_change.h"
Mathieu Chartierc22c59e2014-02-24 15:16:06 -080052#include "thread_list.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080053#include "verifier/dex_gc_map.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080054#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070055#include "vmap_table.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070056
57namespace art {
58
59static void usage() {
60 fprintf(stderr,
61 "Usage: oatdump [options] ...\n"
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +000062 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080063 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070064 "\n");
65 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080066 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070067 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070068 "\n");
69 fprintf(stderr,
70 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080071 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070072 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070073 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070074 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080075 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070076 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070077 fprintf(stderr,
Brian Carlstrom27ec9612011-09-19 20:20:38 -070078 " --output=<file> may be used to send the output to a file.\n"
79 " Example: --output=/tmp/oatdump.txt\n"
80 "\n");
Dave Allison404f59f2014-02-24 11:10:01 -080081 fprintf(stderr,
82 " --dump:[raw_mapping_table|raw_gc_map]\n"
83 " Example: --dump:raw_gc_map\n"
84 " Default: neither\n"
85 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070086 exit(EXIT_FAILURE);
87}
88
Ian Rogersff1ed472011-09-20 13:46:24 -070089const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080090 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070091 "kImtConflictMethod",
92 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -070093 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070094 "kRefsOnlySaveMethod",
95 "kRefsAndArgsSaveMethod",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070096 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070097 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070098};
99
Elliott Hughese3c845c2012-02-28 17:23:01 -0800100class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700101 public:
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000102 explicit OatDumper(const OatFile& oat_file, bool dump_raw_mapping_table, bool dump_raw_gc_map)
103 : oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800104 oat_dex_files_(oat_file.GetOatDexFiles()),
Dave Allison404f59f2014-02-24 11:10:01 -0800105 dump_raw_mapping_table_(dump_raw_mapping_table),
106 dump_raw_gc_map_(dump_raw_gc_map),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800107 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800108 AddAllOffsets();
109 }
110
111 void Dump(std::ostream& os) {
112 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700113
114 os << "MAGIC:\n";
115 os << oat_header.GetMagic() << "\n\n";
116
117 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800118 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700119
Elliott Hughesa72ec822012-03-05 17:12:22 -0800120 os << "INSTRUCTION SET:\n";
121 os << oat_header.GetInstructionSet() << "\n\n";
122
Dave Allison70202782013-10-22 17:52:19 -0700123 os << "INSTRUCTION SET FEATURES:\n";
124 os << oat_header.GetInstructionSetFeatures().GetFeatureString() << "\n\n";
125
Brian Carlstromaded5f72011-10-07 17:15:04 -0700126 os << "DEX FILE COUNT:\n";
127 os << oat_header.GetDexFileCount() << "\n\n";
128
129 os << "EXECUTABLE OFFSET:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800130 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700131
Brian Carlstrom28db0122012-10-18 16:20:41 -0700132 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
133 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
134
135 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800136 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700137
138 os << "IMAGE FILE LOCATION:\n";
139 const std::string image_file_location(oat_header.GetImageFileLocation());
140 os << image_file_location;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700141 os << "\n\n";
142
Ian Rogers30fab402012-01-23 15:43:46 -0800143 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800144 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700145
Ian Rogers30fab402012-01-23 15:43:46 -0800146 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800147 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700148
149 os << std::flush;
150
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800151 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
152 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700153 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800154 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700155 }
156 }
157
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800158 size_t ComputeSize(const void* oat_data) {
159 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
160 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
161 return 0; // Address not in oat file
162 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800163 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
164 reinterpret_cast<uintptr_t>(oat_file_.Begin());
165 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800166 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800167 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800168 return end_offset - begin_offset;
169 }
170
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700171 InstructionSet GetInstructionSet() {
172 return oat_file_.GetOatHeader().GetInstructionSet();
173 }
174
Ian Rogersef7d42f2014-01-06 12:55:46 -0800175 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800176 MethodHelper mh(m);
177 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
178 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700179 CHECK(oat_dex_file != nullptr);
180 std::string error_msg;
181 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
182 if (dex_file.get() == nullptr) {
183 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
184 << "': " << error_msg;
185 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700186 const DexFile::ClassDef* class_def =
187 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
188 if (class_def != NULL) {
189 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800190 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
191 CHECK(oat_class != NULL);
192 size_t method_index = m->GetMethodIndex();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800193 return oat_class->GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800194 }
195 }
196 }
197 return NULL;
198 }
199
Brian Carlstromaded5f72011-10-07 17:15:04 -0700200 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800201 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800202 // We don't know the length of the code for each method, but we need to know where to stop
203 // when disassembling. What we do know is that a region of code will be followed by some other
204 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
205 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800206 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
207 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800208 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700209 std::string error_msg;
210 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
211 if (dex_file.get() == nullptr) {
212 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
213 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800214 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800215 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800216 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800217 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
218 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
219 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
220 const byte* class_data = dex_file->GetClassData(class_def);
221 if (class_data != NULL) {
222 ClassDataItemIterator it(*dex_file, class_data);
223 SkipAllFields(it);
224 uint32_t class_method_index = 0;
225 while (it.HasNextDirectMethod()) {
226 AddOffsets(oat_class->GetOatMethod(class_method_index++));
227 it.Next();
228 }
229 while (it.HasNextVirtualMethod()) {
230 AddOffsets(oat_class->GetOatMethod(class_method_index++));
231 it.Next();
232 }
233 }
234 }
235 }
236
237 // If the last thing in the file is code for a method, there won't be an offset for the "next"
238 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
239 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800240 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800241 }
242
243 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800244 uint32_t code_offset = oat_method.GetCodeOffset();
245 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
246 code_offset &= ~0x1;
247 }
248 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800249 offsets_.insert(oat_method.GetMappingTableOffset());
250 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700251 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800252 }
253
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800254 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700255 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800256 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800257 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700258
259 // Create the verifier early.
260
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700261 std::string error_msg;
262 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800263 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700264 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700265 return;
266 }
267 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
268 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
269 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700270 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
271 CHECK(oat_class.get() != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700272 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
273 << " (" << oat_class->GetStatus() << ")"
274 << " (" << oat_class->GetType() << ")\n";
275 // TODO: include bitmap here if type is kOatClassBitmap?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800276 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
277 std::ostream indented_os(&indent_filter);
278 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700279 }
280
281 os << std::flush;
282 }
283
Elliott Hughese3c845c2012-02-28 17:23:01 -0800284 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700285 while (it.HasNextStaticField()) {
286 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700287 }
Ian Rogers0571d352011-11-03 19:51:38 -0700288 while (it.HasNextInstanceField()) {
289 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700290 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800291 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700292
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800293 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
294 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800295 const byte* class_data = dex_file.GetClassData(class_def);
296 if (class_data == NULL) { // empty class such as a marker interface?
297 return;
298 }
299 ClassDataItemIterator it(dex_file, class_data);
300 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800301 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700302 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800303 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700304 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800305 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
306 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700307 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700308 }
Ian Rogers0571d352011-11-03 19:51:38 -0700309 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800310 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700311 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800312 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
313 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700314 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700315 }
Ian Rogers0571d352011-11-03 19:51:38 -0700316 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700317 os << std::flush;
318 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800319
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700320 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
321 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800322 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800323 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
324 uint32_t method_access_flags) {
325 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700326 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
327 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800328 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
329 std::ostream indent1_os(&indent1_filter);
330 {
331 indent1_os << "DEX CODE:\n";
332 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
333 std::ostream indent2_os(&indent2_filter);
334 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700335 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800336 if (Runtime::Current() != NULL) {
337 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
338 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
339 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700340 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
341 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700342 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800343 {
344 indent1_os << "OAT DATA:\n";
345 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
346 std::ostream indent2_os(&indent2_filter);
347
348 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
349 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
350 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
351 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
352 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
353 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
354 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
355 DumpVmap(indent2_os, oat_method);
356 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
357 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800358 if (dump_raw_mapping_table_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800359 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
360 std::ostream indent3_os(&indent3_filter);
361 DumpMappingTable(indent3_os, oat_method);
362 }
363 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
364 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800365 if (dump_raw_gc_map_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800366 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
367 std::ostream indent3_os(&indent3_filter);
368 DumpGcMap(indent3_os, oat_method, code_item);
369 }
370 }
371 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800372 const void* code = oat_method.GetQuickCode();
373 uint32_t code_size = oat_method.GetQuickCodeSize();
374 if (code == nullptr) {
375 code = oat_method.GetPortableCode();
376 code_size = oat_method.GetPortableCodeSize();
377 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800378 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800379 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800380 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800381 code_size,
382 code != nullptr ? "..." : "");
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800383 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
384 std::ostream indent2_os(&indent2_filter);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700385
386 Runtime* runtime = Runtime::Current();
387 if (runtime != nullptr) {
388 ScopedObjectAccess soa(Thread::Current());
389 SirtRef<mirror::DexCache> dex_cache(
390 soa.Self(), runtime->GetClassLinker()->FindDexCache(dex_file));
391 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
392 verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def, code_item,
393 dex_method_idx, nullptr, method_access_flags, true, true);
394 verifier.Verify();
395 DumpCode(indent2_os, &verifier, oat_method, code_item);
396 } else {
397 DumpCode(indent2_os, nullptr, oat_method, code_item);
398 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800399 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700400 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800401
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800402 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
403 if (spill_mask == 0) {
404 return;
405 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800406 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800407 for (size_t i = 0; i < 32; i++) {
408 if ((spill_mask & (1 << i)) != 0) {
409 if (is_float) {
410 os << "fr" << i;
411 } else {
412 os << "r" << i;
413 }
414 spill_mask ^= 1 << i; // clear bit
415 if (spill_mask != 0) {
416 os << ", ";
417 } else {
418 break;
419 }
420 }
421 }
422 os << ")";
423 }
424
Ian Rogersb23a7722012-10-09 16:54:26 -0700425 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700426 const uint8_t* raw_table = oat_method.GetVmapTable();
427 if (raw_table != NULL) {
428 const VmapTable vmap_table(raw_table);
429 bool first = true;
430 bool processing_fp = false;
431 uint32_t spill_mask = oat_method.GetCoreSpillMask();
432 for (size_t i = 0; i < vmap_table.Size(); i++) {
433 uint16_t dex_reg = vmap_table[i];
434 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
435 processing_fp ? kFloatVReg : kIntVReg);
436 os << (first ? "v" : ", v") << dex_reg;
437 if (!processing_fp) {
438 os << "/r" << cpu_reg;
439 } else {
440 os << "/fr" << cpu_reg;
441 }
442 first = false;
443 if (!processing_fp && dex_reg == 0xFFFF) {
444 processing_fp = true;
445 spill_mask = oat_method.GetFpSpillMask();
446 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800447 }
Ian Rogers1809a722013-08-09 22:05:32 -0700448 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800449 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800450 }
451
Ian Rogersb23a7722012-10-09 16:54:26 -0700452 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800453 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700454 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700455 if (raw_table != NULL) {
456 const VmapTable vmap_table(raw_table);
457 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700458 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800459 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
460 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
461 : oat_method.GetCoreSpillMask();
462 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700463 } else {
464 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
465 oat_method.GetFpSpillMask(),
466 oat_method.GetFrameSizeInBytes(), reg);
467 os << "[sp + #" << offset << "]";
468 }
469 }
470 }
471
Ian Rogersef7d42f2014-01-06 12:55:46 -0800472 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
473 const DexFile::CodeItem* code_item,
474 size_t num_regs, const uint8_t* reg_bitmap) {
475 bool first = true;
476 for (size_t reg = 0; reg < num_regs; reg++) {
477 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
478 if (first) {
479 os << " v" << reg << " (";
480 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
481 os << ")";
482 first = false;
483 } else {
484 os << ", v" << reg << " (";
485 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
486 os << ")";
487 }
488 }
489 }
490 if (first) {
491 os << "No registers in GC map\n";
492 } else {
493 os << "\n";
494 }
495 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700496 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
497 const DexFile::CodeItem* code_item) {
498 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800499 if (gc_map_raw == nullptr) {
500 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800501 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800502 const void* quick_code = oat_method.GetQuickCode();
503 if (quick_code != nullptr) {
504 NativePcOffsetToReferenceMap map(gc_map_raw);
505 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
506 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
507 map.GetNativePcOffset(entry);
508 os << StringPrintf("%p", native_pc);
509 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800510 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800511 } else {
512 const void* portable_code = oat_method.GetPortableCode();
513 CHECK(portable_code != nullptr);
514 verifier::DexPcToReferenceMap map(gc_map_raw);
515 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
516 uint32_t dex_pc = map.GetDexPc(entry);
517 os << StringPrintf("0x%08x", dex_pc);
518 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
519 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800520 }
521 }
522
523 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800524 const void* quick_code = oat_method.GetQuickCode();
525 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800526 return;
527 }
Ian Rogers1809a722013-08-09 22:05:32 -0700528 MappingTable table(oat_method.GetMappingTable());
529 if (table.TotalSize() != 0) {
530 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
531 std::ostream indent_os(&indent_filter);
532 if (table.PcToDexSize() != 0) {
533 typedef MappingTable::PcToDexIterator It;
534 os << "suspend point mappings {\n";
535 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
536 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
537 }
538 os << "}\n";
539 }
540 if (table.DexToPcSize() != 0) {
541 typedef MappingTable::DexToPcIterator It;
542 os << "catch entry mappings {\n";
543 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
544 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
545 }
546 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800547 }
548 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800549 }
550
Ian Rogers1809a722013-08-09 22:05:32 -0700551 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
552 size_t offset, bool suspend_point_mapping) {
553 MappingTable table(oat_method.GetMappingTable());
554 if (suspend_point_mapping && table.PcToDexSize() > 0) {
555 typedef MappingTable::PcToDexIterator It;
556 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
557 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700558 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700559 return cur.DexPc();
560 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800561 }
Ian Rogers1809a722013-08-09 22:05:32 -0700562 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
563 typedef MappingTable::DexToPcIterator It;
564 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
565 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700566 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700567 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700568 }
569 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800570 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800571 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700572 }
573
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800574 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
575 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700576 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
577 if (gc_map_raw != NULL) {
578 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800579 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700580 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800581 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700582 bool first = true;
583 for (size_t reg = 0; reg < num_regs; reg++) {
584 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
585 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800586 os << "GC map objects: v" << reg << " (";
587 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700588 os << ")";
589 first = false;
590 } else {
591 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800592 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700593 os << ")";
594 }
595 }
596 }
597 if (!first) {
598 os << "\n";
599 }
600 }
601 }
602 }
603
Mathieu Chartier590fee92013-09-13 13:46:47 -0700604 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
605 const OatFile::OatMethod& oat_method,
606 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
607 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800608 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800609 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800610 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
611 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
612 if (kind != kUndefined) {
613 if (first) {
614 os << "VRegs: v";
615 first = false;
616 } else {
617 os << ", v";
618 }
619 os << reg << " (";
620 switch (kind) {
621 case kImpreciseConstant:
622 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
623 DescribeVReg(os, oat_method, code_item, reg, kind);
624 break;
625 case kConstant:
626 os << "Constant: " << kinds.at((reg * 2) + 1);
627 break;
628 default:
629 DescribeVReg(os, oat_method, code_item, reg, kind);
630 break;
631 }
632 os << ")";
633 }
634 }
635 if (!first) {
636 os << "\n";
637 }
638 }
639
640
Ian Rogersb23a7722012-10-09 16:54:26 -0700641 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
642 if (code_item != NULL) {
643 size_t i = 0;
644 while (i < code_item->insns_size_in_code_units_) {
645 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800646 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700647 i += instruction->SizeInCodeUnits();
648 }
649 }
650 }
651
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800652 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700653 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800654 uint32_t method_access_flags) {
655 if ((method_access_flags & kAccNative) == 0) {
656 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700657 SirtRef<mirror::DexCache> dex_cache(soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file));
658 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800659 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700660 class_loader, &class_def, code_item, NULL,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800661 method_access_flags);
662 }
663 }
664
Mathieu Chartier590fee92013-09-13 13:46:47 -0700665 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
666 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800667 const void* portable_code = oat_method.GetPortableCode();
668 const void* quick_code = oat_method.GetQuickCode();
669
670 size_t code_size = oat_method.GetQuickCodeSize();
671 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800672 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700673 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800674 } else if (quick_code != nullptr) {
675 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
676 size_t offset = 0;
677 while (offset < code_size) {
678 DumpMappingAtOffset(os, oat_method, offset, false);
679 offset += disassembler_->Dump(os, quick_native_pc + offset);
680 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
681 if (dex_pc != DexFile::kDexNoIndex) {
682 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
683 if (verifier != nullptr) {
684 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
685 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800686 }
687 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800688 } else {
689 CHECK(portable_code != nullptr);
690 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700691 }
692 }
693
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800694 const OatFile& oat_file_;
695 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Dave Allison404f59f2014-02-24 11:10:01 -0800696 bool dump_raw_mapping_table_;
697 bool dump_raw_gc_map_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800698 std::set<uintptr_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800699 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700700};
701
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800702class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700703 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800704 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000705 gc::space::ImageSpace& image_space,
Dave Allison404f59f2014-02-24 11:10:01 -0800706 const ImageHeader& image_header, bool dump_raw_mapping_table,
707 bool dump_raw_gc_map)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000708 : os_(os), image_filename_(image_filename),
Dave Allison404f59f2014-02-24 11:10:01 -0800709 image_space_(image_space), image_header_(image_header),
710 dump_raw_mapping_table_(dump_raw_mapping_table),
711 dump_raw_gc_map_(dump_raw_gc_map) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700712
Ian Rogersb726dcb2012-09-05 08:57:23 -0700713 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800714 std::ostream& os = *os_;
715 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700716
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800717 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700718
Mathieu Chartier31e89252013-08-28 11:29:12 -0700719 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
720 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
721
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800722 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700723
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800724 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700725
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800726 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
727
728 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
729
730 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800731
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800732 {
733 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
734 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
735 std::ostream indent1_os(&indent1_filter);
736 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
737 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
738 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
739 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800740 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800741 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
742 if (image_root_object->IsObjectArray()) {
743 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
744 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800745 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -0800746 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800747 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800748 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -0800749 size_t run = 0;
750 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
751 if (value == image_root_object_array->Get(j)) {
752 run++;
753 } else {
754 break;
755 }
756 }
757 if (run == 0) {
758 indent2_os << StringPrintf("%d: ", i);
759 } else {
760 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
761 i = i + run;
762 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800763 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800764 PrettyObjectValue(indent2_os, value->GetClass(), value);
765 } else {
766 indent2_os << i << ": null\n";
767 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800768 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700769 }
770 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700771 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800772 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700773
Brian Carlstromaded5f72011-10-07 17:15:04 -0700774 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000775 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename_);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800776 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800777 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700778 std::string error_msg;
779 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700780 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700781 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700782 return;
783 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800784 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700785
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800786 stats_.oat_file_bytes = oat_file->Size();
787
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000788 oat_dumper_.reset(new OatDumper(*oat_file, dump_raw_mapping_table_,
Dave Allison404f59f2014-02-24 11:10:01 -0800789 dump_raw_gc_map_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800790
Mathieu Chartier02e25112013-08-14 16:14:24 -0700791 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700792 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700793 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
794 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700795 }
796
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800797 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700798
799 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700800 gc::Heap* heap = Runtime::Current()->GetHeap();
801 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700802 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700803 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800804 {
805 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
806 heap->FlushAllocStack();
807 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -0800808 // Since FlushAllocStack() above resets the (active) allocation
809 // stack. Need to revoke the thread-local allocation stacks that
810 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800811 {
812 self->TransitionFromRunnableToSuspended(kNative);
813 ThreadList* thread_list = Runtime::Current()->GetThreadList();
814 thread_list->SuspendAll();
815 heap->RevokeAllThreadLocalAllocationStacks(self);
816 thread_list->ResumeAll();
817 self->TransitionFromSuspendedToRunnable();
818 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700819 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800820 {
821 std::ostream* saved_os = os_;
822 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
823 std::ostream indent_os(&indent_filter);
824 os_ = &indent_os;
825 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700826 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800827 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700828 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800829 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
830 indent_os << "\n";
831 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700832 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800833 // Dump the large objects separately.
834 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
835 indent_os << "\n";
836 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700837 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800838 os << "STATS:\n" << std::flush;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700839 UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700840 if (file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700841 std::string cache_location(GetDalvikCacheFilenameOrDie(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700842 file.reset(OS::OpenFileForReading(cache_location.c_str()));
843 if (file.get() == NULL) {
844 LOG(WARNING) << "Failed to find image in " << image_filename_
845 << " and " << cache_location;
846 }
847 }
848 if (file.get() != NULL) {
849 stats_.file_bytes = file->GetLength();
850 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800851 size_t header_bytes = sizeof(ImageHeader);
852 stats_.header_bytes = header_bytes;
853 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
854 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700855 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
856 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800857 stats_.Dump(os);
858 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800859
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800860 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800861
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800862 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700863 }
864
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700865 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800866 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700867 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800868 CHECK(type != NULL);
869 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800870 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800871 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800872 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800873 os << StringPrintf("%p String: %s\n", string,
874 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700875 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800876 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800877 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700878 } else if (type->IsArtFieldClass()) {
879 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800880 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700881 } else if (type->IsArtMethodClass()) {
882 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800883 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800884 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800885 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800886 }
887 }
888
Brian Carlstromea46f952013-07-30 01:26:50 -0700889 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700890 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800891 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700892 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800893 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700894 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800895 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700896 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800897 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700898 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800899 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700900 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800901 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700902 } else {
903 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800904 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700905 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800906 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700907 // Get the value, don't compute the type unless it is non-null as we don't want
908 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800909 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700910 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800911 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700912 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700913 // Grab the field type without causing resolution.
914 mirror::Class* field_type = fh.GetType(false);
915 if (field_type != NULL) {
916 PrettyObjectValue(os, field_type, value);
917 } else {
918 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
919 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700920 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800921 }
922 }
923
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800924 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700925 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800926 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800927 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800928 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800929 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700930 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800931 if (fields != NULL) {
932 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700933 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800934 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800935 }
936 }
937 }
938
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800939 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800940 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700941 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800942
Ian Rogersef7d42f2014-01-06 12:55:46 -0800943 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700944 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800945 const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
946 if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
947 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800948 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700949 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800950 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700951 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800952 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800953 }
954
Ian Rogersef7d42f2014-01-06 12:55:46 -0800955 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700956 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800957 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
958 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700959 return 0;
960 }
961 return oat_code_begin[-1];
962 }
963
Ian Rogersef7d42f2014-01-06 12:55:46 -0800964 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700965 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800966 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700967 if (oat_code_begin == NULL) {
968 return NULL;
969 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800970 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700971 }
972
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800973 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700974 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700975 DCHECK(obj != NULL);
976 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800977 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700978 if (!state->InDumpSpace(obj)) {
979 return;
980 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700981
982 size_t object_bytes = obj->SizeOf();
983 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
984 state->stats_.object_bytes += object_bytes;
985 state->stats_.alignment_bytes += alignment_bytes;
986
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800987 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800988 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800989 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800990 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
991 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800992 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800993 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800994 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
995 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -0700996 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700997 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700998 PrettyField(obj->AsArtField()).c_str());
999 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001000 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001001 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001002 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001003 os << StringPrintf("%p: java.lang.String %s\n", obj,
1004 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001005 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001006 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001007 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001008 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1009 std::ostream indent_os(&indent_filter);
1010 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001011 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001012 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001013 int32_t length = obj_array->GetLength();
1014 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001015 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001016 size_t run = 0;
1017 for (int32_t j = i + 1; j < length; j++) {
1018 if (value == obj_array->Get(j)) {
1019 run++;
1020 } else {
1021 break;
1022 }
1023 }
1024 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001025 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001026 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001027 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001028 i = i + run;
1029 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001030 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001031 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001032 }
1033 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001034 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001035 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001036 indent_os << "STATICS:\n";
1037 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1038 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001039 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001040 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001041 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001042 }
1043 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001044 } else if (obj->IsArtMethod()) {
1045 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001046 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001047 // TODO: portable dumping.
1048 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1049 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001050 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001051 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1052 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1053 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001054 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001055 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001056 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001057 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1058 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001059 }
Ian Rogers19846512012-02-24 11:42:47 -08001060 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001061 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1062 MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001063 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001064 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001065 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07001066 // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
1067 // to the quick/portable to interpreter bridge.
1068 CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001069
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001070 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001071 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001072 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001073
Elliott Hughesa0e18062012-04-13 15:59:59 -07001074 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001075 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001076 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001077 state->stats_.gc_map_bytes += gc_map_bytes;
1078 }
1079
1080 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001081 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001082 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001083 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1084 }
1085
1086 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001087 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001088 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001089 state->stats_.vmap_table_bytes += vmap_table_bytes;
1090 }
1091
Ian Rogersef7d42f2014-01-06 12:55:46 -08001092 // TODO: portable dumping.
1093 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1094 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1095 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1096 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001097 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001098 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001099 if (method->IsConstructor()) {
1100 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001101 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001102 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001103 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001104 }
1105 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001106 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001107 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001108 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001109 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001110
Ian Rogersef7d42f2014-01-06 12:55:46 -08001111 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001112 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1113 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001114
1115 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001116 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001117
1118 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001119 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001120 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001121 }
1122 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001123 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001124 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001125
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001126 std::set<const void*> already_seen_;
1127 // Compute the size of the given data within the oat file and whether this is the first time
1128 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001129 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001130 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001131 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001132 already_seen_.insert(oat_data);
1133 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001134 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001135 }
1136 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001137 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001138
1139 public:
1140 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001141 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001142 size_t file_bytes;
1143
1144 size_t header_bytes;
1145 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001146 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001147 size_t alignment_bytes;
1148
1149 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001150 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001151 size_t managed_to_native_code_bytes;
1152 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001153 size_t class_initializer_code_bytes;
1154 size_t large_initializer_code_bytes;
1155 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001156
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001157 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001158 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001159 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001160
1161 size_t dex_instruction_bytes;
1162
Brian Carlstromea46f952013-07-30 01:26:50 -07001163 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001164 std::vector<size_t> method_outlier_size;
1165 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001166 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001167
1168 explicit Stats()
1169 : oat_file_bytes(0),
1170 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001171 header_bytes(0),
1172 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001173 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001174 alignment_bytes(0),
1175 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001176 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001177 managed_to_native_code_bytes(0),
1178 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001179 class_initializer_code_bytes(0),
1180 large_initializer_code_bytes(0),
1181 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001182 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001183 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001184 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001185 dex_instruction_bytes(0) {}
1186
Elliott Hughesa0e18062012-04-13 15:59:59 -07001187 struct SizeAndCount {
1188 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1189 size_t bytes;
1190 size_t count;
1191 };
1192 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1193 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001194
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001195 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001196 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1197 if (it != sizes_and_counts.end()) {
1198 it->second.bytes += object_bytes;
1199 it->second.count += 1;
1200 } else {
1201 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1202 }
1203 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001204
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001205 double PercentOfOatBytes(size_t size) {
1206 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1207 }
1208
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001209 double PercentOfFileBytes(size_t size) {
1210 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1211 }
1212
1213 double PercentOfObjectBytes(size_t size) {
1214 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1215 }
1216
Brian Carlstromea46f952013-07-30 01:26:50 -07001217 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001218 method_outlier_size.push_back(total_size);
1219 method_outlier_expansion.push_back(expansion);
1220 method_outlier.push_back(method);
1221 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001222
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001223 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001224 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001225 size_t sum_of_sizes = 0;
1226 size_t sum_of_sizes_squared = 0;
1227 size_t sum_of_expansion = 0;
1228 size_t sum_of_expansion_squared = 0;
1229 size_t n = method_outlier_size.size();
1230 for (size_t i = 0; i < n; i++) {
1231 size_t cur_size = method_outlier_size[i];
1232 sum_of_sizes += cur_size;
1233 sum_of_sizes_squared += cur_size * cur_size;
1234 double cur_expansion = method_outlier_expansion[i];
1235 sum_of_expansion += cur_expansion;
1236 sum_of_expansion_squared += cur_expansion * cur_expansion;
1237 }
1238 size_t size_mean = sum_of_sizes / n;
1239 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1240 double expansion_mean = sum_of_expansion / n;
1241 double expansion_variance =
1242 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1243
1244 // Dump methods whose size is a certain number of standard deviations from the mean
1245 size_t dumped_values = 0;
1246 size_t skipped_values = 0;
1247 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1248 size_t cur_size_variance = i * i * size_variance;
1249 bool first = true;
1250 for (size_t j = 0; j < n; j++) {
1251 size_t cur_size = method_outlier_size[j];
1252 if (cur_size > size_mean) {
1253 size_t cur_var = cur_size - size_mean;
1254 cur_var = cur_var * cur_var;
1255 if (cur_var > cur_size_variance) {
1256 if (dumped_values > 20) {
1257 if (i == 1) {
1258 skipped_values++;
1259 } else {
1260 i = 2; // jump to counting for 1 standard deviation
1261 break;
1262 }
1263 } else {
1264 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001265 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001266 first = false;
1267 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001268 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001269 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001270 method_outlier_size[j] = 0; // don't consider this method again
1271 dumped_values++;
1272 }
1273 }
1274 }
1275 }
1276 }
1277 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001278 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001279 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001280 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001281 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001282
1283 // Dump methods whose expansion is a certain number of standard deviations from the mean
1284 dumped_values = 0;
1285 skipped_values = 0;
1286 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1287 double cur_expansion_variance = i * i * expansion_variance;
1288 bool first = true;
1289 for (size_t j = 0; j < n; j++) {
1290 double cur_expansion = method_outlier_expansion[j];
1291 if (cur_expansion > expansion_mean) {
1292 size_t cur_var = cur_expansion - expansion_mean;
1293 cur_var = cur_var * cur_var;
1294 if (cur_var > cur_expansion_variance) {
1295 if (dumped_values > 20) {
1296 if (i == 1) {
1297 skipped_values++;
1298 } else {
1299 i = 2; // jump to counting for 1 standard deviation
1300 break;
1301 }
1302 } else {
1303 if (first) {
1304 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001305 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001306 first = false;
1307 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001308 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001309 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001310 method_outlier_expansion[j] = 0.0; // don't consider this method again
1311 dumped_values++;
1312 }
1313 }
1314 }
1315 }
1316 }
1317 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001318 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001319 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001320 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001321 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001322 }
1323
Ian Rogersb726dcb2012-09-05 08:57:23 -07001324 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001325 {
1326 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1327 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1328 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1329 std::ostream indent_os(&indent_filter);
1330 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1331 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001332 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001333 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1334 header_bytes, PercentOfFileBytes(header_bytes),
1335 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001336 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001337 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1338 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001339 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001340 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001341
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001342 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001343 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001344 for (const auto& sizes_and_count : sizes_and_counts) {
1345 const std::string& descriptor(sizes_and_count.first);
1346 double average = static_cast<double>(sizes_and_count.second.bytes) /
1347 static_cast<double>(sizes_and_count.second.count);
1348 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001349 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001350 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001351 descriptor.c_str(), sizes_and_count.second.bytes,
1352 sizes_and_count.second.count, average, percent);
1353 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001354 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001355 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001356 CHECK_EQ(object_bytes, object_bytes_total);
1357
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001358 os << StringPrintf("oat_file_bytes = %8zd\n"
1359 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1360 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1361 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1362 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1363 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1364 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001365 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001366 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1367 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001368 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1369 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1370 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1371 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001372 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001373 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001374 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001375 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1376 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001377 }
1378
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001379 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1380 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1381 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001382 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1383 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1384 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001385 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001386
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001387 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1388 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001389 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1390 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001391 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001392 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001393
1394 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001395 }
1396 } stats_;
1397
1398 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001399 enum {
1400 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1401 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1402 kLargeConstructorDexBytes = 4000,
1403 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1404 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1405 kLargeMethodDexBytes = 16000
1406 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001407 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001408 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001409 const std::string image_filename_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001410 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001411 const ImageHeader& image_header_;
Dave Allison404f59f2014-02-24 11:10:01 -08001412 bool dump_raw_mapping_table_;
1413 bool dump_raw_gc_map_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001414
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001415 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001416};
1417
Elliott Hughes72395bf2012-04-24 13:45:26 -07001418static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001419 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001420
Brian Carlstrom78128a62011-09-15 17:21:19 -07001421 // Skip over argv[0].
1422 argv++;
1423 argc--;
1424
1425 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001426 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001427 usage();
1428 }
1429
Brian Carlstromaded5f72011-10-07 17:15:04 -07001430 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001431 const char* image_filename = NULL;
1432 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001433 std::string elf_filename_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001434 std::ostream* os = &std::cout;
1435 UniquePtr<std::ofstream> out;
Dave Allison404f59f2014-02-24 11:10:01 -08001436 bool dump_raw_mapping_table = false;
1437 bool dump_raw_gc_map = false;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001438
1439 for (int i = 0; i < argc; i++) {
1440 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001441 if (option.starts_with("--oat-file=")) {
1442 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001443 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001444 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001445 } else if (option.starts_with("--boot-image=")) {
1446 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Dave Allison404f59f2014-02-24 11:10:01 -08001447 } else if (option.starts_with("--dump:")) {
1448 if (option == "--dump:raw_mapping_table") {
1449 dump_raw_mapping_table = true;
1450 } else if (option == "--dump:raw_gc_map") {
1451 dump_raw_gc_map = true;
1452 } else {
1453 fprintf(stderr, "Unknown argument %s\n", option.data());
1454 usage();
1455 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001456 } else if (option.starts_with("--output=")) {
1457 const char* filename = option.substr(strlen("--output=")).data();
1458 out.reset(new std::ofstream(filename));
1459 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001460 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001461 usage();
1462 }
1463 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001464 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001465 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001466 usage();
1467 }
1468 }
1469
Brian Carlstromaded5f72011-10-07 17:15:04 -07001470 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001471 fprintf(stderr, "Either --image or --oat must be specified\n");
1472 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001473 }
1474
Brian Carlstromaded5f72011-10-07 17:15:04 -07001475 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001476 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1477 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001478 }
1479
1480 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001481 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001482 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001483 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001484 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001485 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001486 return EXIT_FAILURE;
1487 }
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +00001488 OatDumper oat_dumper(*oat_file, dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001489 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001490 return EXIT_SUCCESS;
1491 }
1492
Brian Carlstrom78128a62011-09-15 17:21:19 -07001493 Runtime::Options options;
1494 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001495 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001496 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001497 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001498
1499 // We are more like a compiler than a run-time. We don't want to execute code.
Vladimir Marko51154732014-01-02 09:44:23 +00001500 struct OatDumpCompilerCallbacks : CompilerCallbacks {
1501 virtual bool MethodVerified(verifier::MethodVerifier* /*verifier*/) { return true; }
1502 virtual void ClassRejected(ClassReference /*ref*/) { }
1503 } callbacks;
1504 options.push_back(std::make_pair("compilercallbacks",
1505 static_cast<CompilerCallbacks*>(&callbacks)));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001506
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001507 if (boot_image_filename != NULL) {
1508 boot_image_option += "-Ximage:";
1509 boot_image_option += boot_image_filename;
1510 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001511 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001512 if (image_filename != NULL) {
1513 image_option += "-Ximage:";
1514 image_option += image_filename;
1515 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1516 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001517
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001518 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001519 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001520 return EXIT_FAILURE;
1521 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001522 UniquePtr<Runtime> runtime(Runtime::Current());
1523 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1524 // give it away now and then switch to a more managable ScopedObjectAccess.
1525 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1526 ScopedObjectAccess soa(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -07001527 gc::Heap* heap = Runtime::Current()->GetHeap();
1528 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001529 CHECK(image_space != NULL);
1530 const ImageHeader& image_header = image_space->GetImageHeader();
1531 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001532 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001533 return EXIT_FAILURE;
1534 }
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +00001535 ImageDumper image_dumper(os, image_filename, *image_space, image_header,
Dave Allison404f59f2014-02-24 11:10:01 -08001536 dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001537 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001538 return EXIT_SUCCESS;
1539}
1540
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001541} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001542
1543int main(int argc, char** argv) {
1544 return art::oatdump(argc, argv);
1545}