blob: 2a0d8265ae7d7092b1d972e719935aec92af4f6a [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"
Ian Rogersef7d42f2014-01-06 12:55:46 -080052#include "verifier/dex_gc_map.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080053#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070054#include "vmap_table.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070055
56namespace art {
57
58static void usage() {
59 fprintf(stderr,
60 "Usage: oatdump [options] ...\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080061 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
62 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070063 "\n");
64 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080065 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070066 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070067 "\n");
68 fprintf(stderr,
69 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080070 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070071 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070072 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070073 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080074 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070075 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070076 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070077 " --host-prefix may be used to translate host paths to target paths during\n"
78 " cross compilation.\n"
79 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080080 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070081 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070082 fprintf(stderr,
83 " --output=<file> may be used to send the output to a file.\n"
84 " Example: --output=/tmp/oatdump.txt\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 Carlstrome24fa612011-09-29 00:53:55 -070096 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070097 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070098 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070099};
100
Elliott Hughese3c845c2012-02-28 17:23:01 -0800101class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700102 public:
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700103 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file)
104 : host_prefix_(host_prefix),
105 oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800106 oat_dex_files_(oat_file.GetOatDexFiles()),
107 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;
141 if (!image_file_location.empty() && !host_prefix_.empty()) {
142 os << " (" << host_prefix_ << image_file_location << ")";
143 }
144 os << "\n\n";
145
Ian Rogers30fab402012-01-23 15:43:46 -0800146 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800147 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700148
Ian Rogers30fab402012-01-23 15:43:46 -0800149 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800150 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700151
152 os << std::flush;
153
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800154 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
155 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700156 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800157 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700158 }
159 }
160
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800161 size_t ComputeSize(const void* oat_data) {
162 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
163 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
164 return 0; // Address not in oat file
165 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800166 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
167 reinterpret_cast<uintptr_t>(oat_file_.Begin());
168 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800169 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800170 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800171 return end_offset - begin_offset;
172 }
173
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700174 InstructionSet GetInstructionSet() {
175 return oat_file_.GetOatHeader().GetInstructionSet();
176 }
177
Ian Rogersef7d42f2014-01-06 12:55:46 -0800178 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800179 MethodHelper mh(m);
180 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
181 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700182 CHECK(oat_dex_file != nullptr);
183 std::string error_msg;
184 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
185 if (dex_file.get() == nullptr) {
186 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
187 << "': " << error_msg;
188 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700189 const DexFile::ClassDef* class_def =
190 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
191 if (class_def != NULL) {
192 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800193 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
194 CHECK(oat_class != NULL);
195 size_t method_index = m->GetMethodIndex();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800196 return oat_class->GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800197 }
198 }
199 }
200 return NULL;
201 }
202
Brian Carlstromaded5f72011-10-07 17:15:04 -0700203 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800204 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800205 // We don't know the length of the code for each method, but we need to know where to stop
206 // when disassembling. What we do know is that a region of code will be followed by some other
207 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
208 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800209 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
210 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800211 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700212 std::string error_msg;
213 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
214 if (dex_file.get() == nullptr) {
215 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
216 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800217 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800218 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800219 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800220 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
221 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
222 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
223 const byte* class_data = dex_file->GetClassData(class_def);
224 if (class_data != NULL) {
225 ClassDataItemIterator it(*dex_file, class_data);
226 SkipAllFields(it);
227 uint32_t class_method_index = 0;
228 while (it.HasNextDirectMethod()) {
229 AddOffsets(oat_class->GetOatMethod(class_method_index++));
230 it.Next();
231 }
232 while (it.HasNextVirtualMethod()) {
233 AddOffsets(oat_class->GetOatMethod(class_method_index++));
234 it.Next();
235 }
236 }
237 }
238 }
239
240 // If the last thing in the file is code for a method, there won't be an offset for the "next"
241 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
242 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800243 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800244 }
245
246 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800247 uint32_t code_offset = oat_method.GetCodeOffset();
248 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
249 code_offset &= ~0x1;
250 }
251 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800252 offsets_.insert(oat_method.GetMappingTableOffset());
253 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700254 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800255 }
256
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800257 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700258 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800259 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800260 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700261
262 // Create the verifier early.
263
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700264 std::string error_msg;
265 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800266 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700267 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700268 return;
269 }
270 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
271 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
272 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700273 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
274 CHECK(oat_class.get() != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700275 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
276 << " (" << oat_class->GetStatus() << ")"
277 << " (" << oat_class->GetType() << ")\n";
278 // TODO: include bitmap here if type is kOatClassBitmap?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800279 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
280 std::ostream indented_os(&indent_filter);
281 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700282 }
283
284 os << std::flush;
285 }
286
Elliott Hughese3c845c2012-02-28 17:23:01 -0800287 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700288 while (it.HasNextStaticField()) {
289 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700290 }
Ian Rogers0571d352011-11-03 19:51:38 -0700291 while (it.HasNextInstanceField()) {
292 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700293 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800294 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700295
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800296 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
297 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800298 const byte* class_data = dex_file.GetClassData(class_def);
299 if (class_data == NULL) { // empty class such as a marker interface?
300 return;
301 }
302 ClassDataItemIterator it(dex_file, class_data);
303 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800304 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700305 while (it.HasNextDirectMethod()) {
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 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800313 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700314 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800315 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
316 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700317 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700318 }
Ian Rogers0571d352011-11-03 19:51:38 -0700319 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700320 os << std::flush;
321 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800322
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700323 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
324 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800325 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800326 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
327 uint32_t method_access_flags) {
328 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700329 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
330 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800331 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
332 std::ostream indent1_os(&indent1_filter);
333 {
334 indent1_os << "DEX CODE:\n";
335 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
336 std::ostream indent2_os(&indent2_filter);
337 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700338 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800339 if (Runtime::Current() != NULL) {
340 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
341 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
342 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700343 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
344 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700345 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800346 {
347 indent1_os << "OAT DATA:\n";
348 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
349 std::ostream indent2_os(&indent2_filter);
350
351 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
352 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
353 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
354 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
355 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
356 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
357 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
358 DumpVmap(indent2_os, oat_method);
359 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
360 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
361 const bool kDumpRawMappingTable = false;
362 if (kDumpRawMappingTable) {
363 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
364 std::ostream indent3_os(&indent3_filter);
365 DumpMappingTable(indent3_os, oat_method);
366 }
367 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
368 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
369 const bool kDumpRawGcMap = false;
370 if (kDumpRawGcMap) {
371 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
372 std::ostream indent3_os(&indent3_filter);
373 DumpGcMap(indent3_os, oat_method, code_item);
374 }
375 }
376 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800377 const void* code = oat_method.GetQuickCode();
378 uint32_t code_size = oat_method.GetQuickCodeSize();
379 if (code == nullptr) {
380 code = oat_method.GetPortableCode();
381 code_size = oat_method.GetPortableCodeSize();
382 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800383 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800384 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800385 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800386 code_size,
387 code != nullptr ? "..." : "");
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800388 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
389 std::ostream indent2_os(&indent2_filter);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700390
391 Runtime* runtime = Runtime::Current();
392 if (runtime != nullptr) {
393 ScopedObjectAccess soa(Thread::Current());
394 SirtRef<mirror::DexCache> dex_cache(
395 soa.Self(), runtime->GetClassLinker()->FindDexCache(dex_file));
396 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
397 verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def, code_item,
398 dex_method_idx, nullptr, method_access_flags, true, true);
399 verifier.Verify();
400 DumpCode(indent2_os, &verifier, oat_method, code_item);
401 } else {
402 DumpCode(indent2_os, nullptr, oat_method, code_item);
403 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800404 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700405 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800406
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800407 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
408 if (spill_mask == 0) {
409 return;
410 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800411 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800412 for (size_t i = 0; i < 32; i++) {
413 if ((spill_mask & (1 << i)) != 0) {
414 if (is_float) {
415 os << "fr" << i;
416 } else {
417 os << "r" << i;
418 }
419 spill_mask ^= 1 << i; // clear bit
420 if (spill_mask != 0) {
421 os << ", ";
422 } else {
423 break;
424 }
425 }
426 }
427 os << ")";
428 }
429
Ian Rogersb23a7722012-10-09 16:54:26 -0700430 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700431 const uint8_t* raw_table = oat_method.GetVmapTable();
432 if (raw_table != NULL) {
433 const VmapTable vmap_table(raw_table);
434 bool first = true;
435 bool processing_fp = false;
436 uint32_t spill_mask = oat_method.GetCoreSpillMask();
437 for (size_t i = 0; i < vmap_table.Size(); i++) {
438 uint16_t dex_reg = vmap_table[i];
439 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
440 processing_fp ? kFloatVReg : kIntVReg);
441 os << (first ? "v" : ", v") << dex_reg;
442 if (!processing_fp) {
443 os << "/r" << cpu_reg;
444 } else {
445 os << "/fr" << cpu_reg;
446 }
447 first = false;
448 if (!processing_fp && dex_reg == 0xFFFF) {
449 processing_fp = true;
450 spill_mask = oat_method.GetFpSpillMask();
451 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800452 }
Ian Rogers1809a722013-08-09 22:05:32 -0700453 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800454 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800455 }
456
Ian Rogersb23a7722012-10-09 16:54:26 -0700457 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800458 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700459 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700460 if (raw_table != NULL) {
461 const VmapTable vmap_table(raw_table);
462 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700463 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800464 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
465 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
466 : oat_method.GetCoreSpillMask();
467 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700468 } else {
469 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
470 oat_method.GetFpSpillMask(),
471 oat_method.GetFrameSizeInBytes(), reg);
472 os << "[sp + #" << offset << "]";
473 }
474 }
475 }
476
Ian Rogersef7d42f2014-01-06 12:55:46 -0800477 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
478 const DexFile::CodeItem* code_item,
479 size_t num_regs, const uint8_t* reg_bitmap) {
480 bool first = true;
481 for (size_t reg = 0; reg < num_regs; reg++) {
482 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
483 if (first) {
484 os << " v" << reg << " (";
485 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
486 os << ")";
487 first = false;
488 } else {
489 os << ", v" << reg << " (";
490 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
491 os << ")";
492 }
493 }
494 }
495 if (first) {
496 os << "No registers in GC map\n";
497 } else {
498 os << "\n";
499 }
500 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700501 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
502 const DexFile::CodeItem* code_item) {
503 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800504 if (gc_map_raw == nullptr) {
505 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800506 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800507 const void* quick_code = oat_method.GetQuickCode();
508 if (quick_code != nullptr) {
509 NativePcOffsetToReferenceMap map(gc_map_raw);
510 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
511 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
512 map.GetNativePcOffset(entry);
513 os << StringPrintf("%p", native_pc);
514 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800515 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800516 } else {
517 const void* portable_code = oat_method.GetPortableCode();
518 CHECK(portable_code != nullptr);
519 verifier::DexPcToReferenceMap map(gc_map_raw);
520 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
521 uint32_t dex_pc = map.GetDexPc(entry);
522 os << StringPrintf("0x%08x", dex_pc);
523 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
524 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800525 }
526 }
527
528 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800529 const void* quick_code = oat_method.GetQuickCode();
530 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800531 return;
532 }
Ian Rogers1809a722013-08-09 22:05:32 -0700533 MappingTable table(oat_method.GetMappingTable());
534 if (table.TotalSize() != 0) {
535 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
536 std::ostream indent_os(&indent_filter);
537 if (table.PcToDexSize() != 0) {
538 typedef MappingTable::PcToDexIterator It;
539 os << "suspend point mappings {\n";
540 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
541 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
542 }
543 os << "}\n";
544 }
545 if (table.DexToPcSize() != 0) {
546 typedef MappingTable::DexToPcIterator It;
547 os << "catch entry mappings {\n";
548 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
549 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
550 }
551 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800552 }
553 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800554 }
555
Ian Rogers1809a722013-08-09 22:05:32 -0700556 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
557 size_t offset, bool suspend_point_mapping) {
558 MappingTable table(oat_method.GetMappingTable());
559 if (suspend_point_mapping && table.PcToDexSize() > 0) {
560 typedef MappingTable::PcToDexIterator It;
561 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
562 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700563 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700564 return cur.DexPc();
565 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800566 }
Ian Rogers1809a722013-08-09 22:05:32 -0700567 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
568 typedef MappingTable::DexToPcIterator It;
569 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
570 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700571 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700572 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700573 }
574 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800575 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800576 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700577 }
578
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800579 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
580 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700581 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
582 if (gc_map_raw != NULL) {
583 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800584 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700585 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800586 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700587 bool first = true;
588 for (size_t reg = 0; reg < num_regs; reg++) {
589 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
590 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800591 os << "GC map objects: v" << reg << " (";
592 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700593 os << ")";
594 first = false;
595 } else {
596 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800597 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700598 os << ")";
599 }
600 }
601 }
602 if (!first) {
603 os << "\n";
604 }
605 }
606 }
607 }
608
Mathieu Chartier590fee92013-09-13 13:46:47 -0700609 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
610 const OatFile::OatMethod& oat_method,
611 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
612 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800613 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800614 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800615 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
616 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
617 if (kind != kUndefined) {
618 if (first) {
619 os << "VRegs: v";
620 first = false;
621 } else {
622 os << ", v";
623 }
624 os << reg << " (";
625 switch (kind) {
626 case kImpreciseConstant:
627 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
628 DescribeVReg(os, oat_method, code_item, reg, kind);
629 break;
630 case kConstant:
631 os << "Constant: " << kinds.at((reg * 2) + 1);
632 break;
633 default:
634 DescribeVReg(os, oat_method, code_item, reg, kind);
635 break;
636 }
637 os << ")";
638 }
639 }
640 if (!first) {
641 os << "\n";
642 }
643 }
644
645
Ian Rogersb23a7722012-10-09 16:54:26 -0700646 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
647 if (code_item != NULL) {
648 size_t i = 0;
649 while (i < code_item->insns_size_in_code_units_) {
650 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800651 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700652 i += instruction->SizeInCodeUnits();
653 }
654 }
655 }
656
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800657 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700658 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800659 uint32_t method_access_flags) {
660 if ((method_access_flags & kAccNative) == 0) {
661 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700662 SirtRef<mirror::DexCache> dex_cache(soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file));
663 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800664 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700665 class_loader, &class_def, code_item, NULL,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800666 method_access_flags);
667 }
668 }
669
Mathieu Chartier590fee92013-09-13 13:46:47 -0700670 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
671 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800672 const void* portable_code = oat_method.GetPortableCode();
673 const void* quick_code = oat_method.GetQuickCode();
674
675 size_t code_size = oat_method.GetQuickCodeSize();
676 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800677 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700678 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800679 } else if (quick_code != nullptr) {
680 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
681 size_t offset = 0;
682 while (offset < code_size) {
683 DumpMappingAtOffset(os, oat_method, offset, false);
684 offset += disassembler_->Dump(os, quick_native_pc + offset);
685 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
686 if (dex_pc != DexFile::kDexNoIndex) {
687 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
688 if (verifier != nullptr) {
689 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
690 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800691 }
692 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800693 } else {
694 CHECK(portable_code != nullptr);
695 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700696 }
697 }
698
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700699 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800700 const OatFile& oat_file_;
701 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800702 std::set<uintptr_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800703 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700704};
705
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800706class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700707 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800708 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers1d54e732013-05-02 21:10:01 -0700709 const std::string& host_prefix, gc::space::ImageSpace& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700710 const ImageHeader& image_header)
711 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
712 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700713
Ian Rogersb726dcb2012-09-05 08:57:23 -0700714 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800715 std::ostream& os = *os_;
716 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700717
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800718 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700719
Mathieu Chartier31e89252013-08-28 11:29:12 -0700720 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
721 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
722
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800723 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700724
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800725 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700726
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800727 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
728
729 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
730
731 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800732
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800733 {
734 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
735 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
736 std::ostream indent1_os(&indent1_filter);
737 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
738 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
739 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
740 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800741 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800742 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
743 if (image_root_object->IsObjectArray()) {
744 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
745 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800746 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -0800747 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800748 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800749 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -0800750 size_t run = 0;
751 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
752 if (value == image_root_object_array->Get(j)) {
753 run++;
754 } else {
755 break;
756 }
757 }
758 if (run == 0) {
759 indent2_os << StringPrintf("%d: ", i);
760 } else {
761 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
762 i = i + run;
763 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800764 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800765 PrettyObjectValue(indent2_os, value->GetClass(), value);
766 } else {
767 indent2_os << i << ": null\n";
768 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800769 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700770 }
771 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700772 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800773 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700774
Brian Carlstromaded5f72011-10-07 17:15:04 -0700775 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800776 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800777 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800778 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800779 if (!host_prefix_.empty()) {
780 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800781 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700782 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800783 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700784 std::string error_msg;
785 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700786 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700787 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700788 return;
789 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800790 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700791
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800792 stats_.oat_file_bytes = oat_file->Size();
793
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700794 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800795
Mathieu Chartier02e25112013-08-14 16:14:24 -0700796 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700797 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700798 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
799 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700800 }
801
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800802 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700803
804 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700805 gc::Heap* heap = Runtime::Current()->GetHeap();
806 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700807 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700808 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700809 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700810 heap->FlushAllocStack();
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -0800811 // Since FlushAllocStack() above resets the (active) allocation
812 // stack. Need to revoke the thread-local allocation stacks that
813 // point into it.
814 heap->RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700815 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800816 {
817 std::ostream* saved_os = os_;
818 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
819 std::ostream indent_os(&indent_filter);
820 os_ = &indent_os;
821 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700822 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800823 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700824 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800825 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
826 indent_os << "\n";
827 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700828 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800829 // Dump the large objects separately.
830 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
831 indent_os << "\n";
832 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700833 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800834 os << "STATS:\n" << std::flush;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700835 UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700836 if (file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700837 std::string cache_location(GetDalvikCacheFilenameOrDie(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700838 file.reset(OS::OpenFileForReading(cache_location.c_str()));
839 if (file.get() == NULL) {
840 LOG(WARNING) << "Failed to find image in " << image_filename_
841 << " and " << cache_location;
842 }
843 }
844 if (file.get() != NULL) {
845 stats_.file_bytes = file->GetLength();
846 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800847 size_t header_bytes = sizeof(ImageHeader);
848 stats_.header_bytes = header_bytes;
849 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
850 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700851 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
852 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800853 stats_.Dump(os);
854 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800855
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800856 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800857
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800858 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700859 }
860
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700861 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800862 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700863 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800864 CHECK(type != NULL);
865 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800866 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800867 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800868 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800869 os << StringPrintf("%p String: %s\n", string,
870 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700871 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800872 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800873 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700874 } else if (type->IsArtFieldClass()) {
875 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800876 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700877 } else if (type->IsArtMethodClass()) {
878 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800879 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800880 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800881 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800882 }
883 }
884
Brian Carlstromea46f952013-07-30 01:26:50 -0700885 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700886 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800887 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700888 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800889 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700890 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800891 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700892 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800893 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700894 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800895 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700896 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800897 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700898 } else {
899 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800900 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700901 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800902 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700903 // Get the value, don't compute the type unless it is non-null as we don't want
904 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800905 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700906 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800907 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700908 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700909 // Grab the field type without causing resolution.
910 mirror::Class* field_type = fh.GetType(false);
911 if (field_type != NULL) {
912 PrettyObjectValue(os, field_type, value);
913 } else {
914 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
915 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700916 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800917 }
918 }
919
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800920 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700921 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800922 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800923 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800924 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800925 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700926 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800927 if (fields != NULL) {
928 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700929 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800930 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800931 }
932 }
933 }
934
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800935 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800936 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700937 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800938
Ian Rogersef7d42f2014-01-06 12:55:46 -0800939 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700940 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800941 const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
942 if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
943 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800944 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700945 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800946 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700947 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800948 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800949 }
950
Ian Rogersef7d42f2014-01-06 12:55:46 -0800951 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700952 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800953 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
954 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700955 return 0;
956 }
957 return oat_code_begin[-1];
958 }
959
Ian Rogersef7d42f2014-01-06 12:55:46 -0800960 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700961 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800962 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700963 if (oat_code_begin == NULL) {
964 return NULL;
965 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800966 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700967 }
968
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800969 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700970 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700971 DCHECK(obj != NULL);
972 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800973 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700974 if (!state->InDumpSpace(obj)) {
975 return;
976 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700977
978 size_t object_bytes = obj->SizeOf();
979 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
980 state->stats_.object_bytes += object_bytes;
981 state->stats_.alignment_bytes += alignment_bytes;
982
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800983 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800984 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800985 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800986 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
987 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800988 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800989 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800990 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
991 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -0700992 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700993 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700994 PrettyField(obj->AsArtField()).c_str());
995 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700996 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700997 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800998 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800999 os << StringPrintf("%p: java.lang.String %s\n", obj,
1000 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001001 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001002 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001003 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001004 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1005 std::ostream indent_os(&indent_filter);
1006 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001007 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001008 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001009 int32_t length = obj_array->GetLength();
1010 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001011 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001012 size_t run = 0;
1013 for (int32_t j = i + 1; j < length; j++) {
1014 if (value == obj_array->Get(j)) {
1015 run++;
1016 } else {
1017 break;
1018 }
1019 }
1020 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001021 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001022 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001023 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001024 i = i + run;
1025 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001026 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001027 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001028 }
1029 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001030 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001031 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001032 indent_os << "STATICS:\n";
1033 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1034 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001035 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001036 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001037 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001038 }
1039 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001040 } else if (obj->IsArtMethod()) {
1041 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001042 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001043 // TODO: portable dumping.
1044 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1045 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001046 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001047 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1048 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1049 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001050 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001051 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001052 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001053 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1054 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001055 }
Ian Rogers19846512012-02-24 11:42:47 -08001056 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001057 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1058 MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001059 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001060 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001061 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07001062 // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
1063 // to the quick/portable to interpreter bridge.
1064 CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001065
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001066 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001067 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001068 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001069
Elliott Hughesa0e18062012-04-13 15:59:59 -07001070 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001071 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001072 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001073 state->stats_.gc_map_bytes += gc_map_bytes;
1074 }
1075
1076 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001077 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001078 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001079 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1080 }
1081
1082 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001083 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001084 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001085 state->stats_.vmap_table_bytes += vmap_table_bytes;
1086 }
1087
Ian Rogersef7d42f2014-01-06 12:55:46 -08001088 // TODO: portable dumping.
1089 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1090 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1091 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1092 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001093 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001094 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001095 if (method->IsConstructor()) {
1096 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001097 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001098 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001099 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001100 }
1101 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001102 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001103 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001104 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001105 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001106
Ian Rogersef7d42f2014-01-06 12:55:46 -08001107 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001108 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1109 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001110
1111 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001112 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001113
1114 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001115 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001116 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001117 }
1118 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001119 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001120 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001121
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001122 std::set<const void*> already_seen_;
1123 // Compute the size of the given data within the oat file and whether this is the first time
1124 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001125 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001126 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001127 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001128 already_seen_.insert(oat_data);
1129 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001130 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001131 }
1132 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001133 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001134
1135 public:
1136 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001137 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001138 size_t file_bytes;
1139
1140 size_t header_bytes;
1141 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001142 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001143 size_t alignment_bytes;
1144
1145 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001146 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001147 size_t managed_to_native_code_bytes;
1148 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001149 size_t class_initializer_code_bytes;
1150 size_t large_initializer_code_bytes;
1151 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001152
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001153 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001154 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001155 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001156
1157 size_t dex_instruction_bytes;
1158
Brian Carlstromea46f952013-07-30 01:26:50 -07001159 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001160 std::vector<size_t> method_outlier_size;
1161 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001162 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001163
1164 explicit Stats()
1165 : oat_file_bytes(0),
1166 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001167 header_bytes(0),
1168 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001169 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001170 alignment_bytes(0),
1171 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001172 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001173 managed_to_native_code_bytes(0),
1174 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001175 class_initializer_code_bytes(0),
1176 large_initializer_code_bytes(0),
1177 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001178 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001179 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001180 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001181 dex_instruction_bytes(0) {}
1182
Elliott Hughesa0e18062012-04-13 15:59:59 -07001183 struct SizeAndCount {
1184 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1185 size_t bytes;
1186 size_t count;
1187 };
1188 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1189 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001190
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001191 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001192 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1193 if (it != sizes_and_counts.end()) {
1194 it->second.bytes += object_bytes;
1195 it->second.count += 1;
1196 } else {
1197 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1198 }
1199 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001200
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001201 double PercentOfOatBytes(size_t size) {
1202 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1203 }
1204
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001205 double PercentOfFileBytes(size_t size) {
1206 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1207 }
1208
1209 double PercentOfObjectBytes(size_t size) {
1210 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1211 }
1212
Brian Carlstromea46f952013-07-30 01:26:50 -07001213 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001214 method_outlier_size.push_back(total_size);
1215 method_outlier_expansion.push_back(expansion);
1216 method_outlier.push_back(method);
1217 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001218
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001219 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001220 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001221 size_t sum_of_sizes = 0;
1222 size_t sum_of_sizes_squared = 0;
1223 size_t sum_of_expansion = 0;
1224 size_t sum_of_expansion_squared = 0;
1225 size_t n = method_outlier_size.size();
1226 for (size_t i = 0; i < n; i++) {
1227 size_t cur_size = method_outlier_size[i];
1228 sum_of_sizes += cur_size;
1229 sum_of_sizes_squared += cur_size * cur_size;
1230 double cur_expansion = method_outlier_expansion[i];
1231 sum_of_expansion += cur_expansion;
1232 sum_of_expansion_squared += cur_expansion * cur_expansion;
1233 }
1234 size_t size_mean = sum_of_sizes / n;
1235 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1236 double expansion_mean = sum_of_expansion / n;
1237 double expansion_variance =
1238 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1239
1240 // Dump methods whose size is a certain number of standard deviations from the mean
1241 size_t dumped_values = 0;
1242 size_t skipped_values = 0;
1243 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1244 size_t cur_size_variance = i * i * size_variance;
1245 bool first = true;
1246 for (size_t j = 0; j < n; j++) {
1247 size_t cur_size = method_outlier_size[j];
1248 if (cur_size > size_mean) {
1249 size_t cur_var = cur_size - size_mean;
1250 cur_var = cur_var * cur_var;
1251 if (cur_var > cur_size_variance) {
1252 if (dumped_values > 20) {
1253 if (i == 1) {
1254 skipped_values++;
1255 } else {
1256 i = 2; // jump to counting for 1 standard deviation
1257 break;
1258 }
1259 } else {
1260 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001261 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001262 first = false;
1263 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001264 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001265 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001266 method_outlier_size[j] = 0; // don't consider this method again
1267 dumped_values++;
1268 }
1269 }
1270 }
1271 }
1272 }
1273 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001274 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001275 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001276 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001277 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001278
1279 // Dump methods whose expansion is a certain number of standard deviations from the mean
1280 dumped_values = 0;
1281 skipped_values = 0;
1282 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1283 double cur_expansion_variance = i * i * expansion_variance;
1284 bool first = true;
1285 for (size_t j = 0; j < n; j++) {
1286 double cur_expansion = method_outlier_expansion[j];
1287 if (cur_expansion > expansion_mean) {
1288 size_t cur_var = cur_expansion - expansion_mean;
1289 cur_var = cur_var * cur_var;
1290 if (cur_var > cur_expansion_variance) {
1291 if (dumped_values > 20) {
1292 if (i == 1) {
1293 skipped_values++;
1294 } else {
1295 i = 2; // jump to counting for 1 standard deviation
1296 break;
1297 }
1298 } else {
1299 if (first) {
1300 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001301 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001302 first = false;
1303 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001304 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001305 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001306 method_outlier_expansion[j] = 0.0; // don't consider this method again
1307 dumped_values++;
1308 }
1309 }
1310 }
1311 }
1312 }
1313 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001314 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001315 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001316 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001317 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001318 }
1319
Ian Rogersb726dcb2012-09-05 08:57:23 -07001320 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001321 {
1322 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1323 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1324 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1325 std::ostream indent_os(&indent_filter);
1326 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1327 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001328 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001329 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1330 header_bytes, PercentOfFileBytes(header_bytes),
1331 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001332 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001333 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1334 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001335 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001336 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001337
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001338 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001339 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001340 for (const auto& sizes_and_count : sizes_and_counts) {
1341 const std::string& descriptor(sizes_and_count.first);
1342 double average = static_cast<double>(sizes_and_count.second.bytes) /
1343 static_cast<double>(sizes_and_count.second.count);
1344 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001345 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001346 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001347 descriptor.c_str(), sizes_and_count.second.bytes,
1348 sizes_and_count.second.count, average, percent);
1349 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001350 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001351 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001352 CHECK_EQ(object_bytes, object_bytes_total);
1353
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001354 os << StringPrintf("oat_file_bytes = %8zd\n"
1355 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1356 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1357 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1358 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1359 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1360 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001361 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001362 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1363 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001364 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1365 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1366 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1367 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001368 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001369 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001370 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001371 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1372 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001373 }
1374
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001375 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1376 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1377 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001378 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1379 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1380 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001381 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001382
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001383 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1384 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001385 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1386 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001387 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001388 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001389
1390 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001391 }
1392 } stats_;
1393
1394 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001395 enum {
1396 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1397 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1398 kLargeConstructorDexBytes = 4000,
1399 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1400 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1401 kLargeMethodDexBytes = 16000
1402 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001403 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001404 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001405 const std::string image_filename_;
1406 const std::string host_prefix_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001407 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001408 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001409
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001410 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001411};
1412
Elliott Hughes72395bf2012-04-24 13:45:26 -07001413static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001414 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001415
Brian Carlstrom78128a62011-09-15 17:21:19 -07001416 // Skip over argv[0].
1417 argv++;
1418 argc--;
1419
1420 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001421 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001422 usage();
1423 }
1424
Brian Carlstromaded5f72011-10-07 17:15:04 -07001425 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001426 const char* image_filename = NULL;
1427 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001428 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001429 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001430 std::ostream* os = &std::cout;
1431 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001432
1433 for (int i = 0; i < argc; i++) {
1434 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001435 if (option.starts_with("--oat-file=")) {
1436 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001437 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001438 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001439 } else if (option.starts_with("--boot-image=")) {
1440 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001441 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001442 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001443 } else if (option.starts_with("--output=")) {
1444 const char* filename = option.substr(strlen("--output=")).data();
1445 out.reset(new std::ofstream(filename));
1446 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001447 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001448 usage();
1449 }
1450 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001451 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001452 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001453 usage();
1454 }
1455 }
1456
Brian Carlstromaded5f72011-10-07 17:15:04 -07001457 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001458 fprintf(stderr, "Either --image or --oat must be specified\n");
1459 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001460 }
1461
Brian Carlstromaded5f72011-10-07 17:15:04 -07001462 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001463 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1464 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001465 }
1466
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001467 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001468 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1469 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001470 host_prefix.reset(new std::string(android_product_out));
1471 } else {
1472 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001473 }
1474 }
1475
Brian Carlstromaded5f72011-10-07 17:15:04 -07001476 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001477 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001478 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001479 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001480 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001481 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001482 return EXIT_FAILURE;
1483 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001484 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001485 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001486 return EXIT_SUCCESS;
1487 }
1488
Brian Carlstrom78128a62011-09-15 17:21:19 -07001489 Runtime::Options options;
1490 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001491 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001492 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001493 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001494
1495 // We are more like a compiler than a run-time. We don't want to execute code.
Vladimir Marko51154732014-01-02 09:44:23 +00001496 struct OatDumpCompilerCallbacks : CompilerCallbacks {
1497 virtual bool MethodVerified(verifier::MethodVerifier* /*verifier*/) { return true; }
1498 virtual void ClassRejected(ClassReference /*ref*/) { }
1499 } callbacks;
1500 options.push_back(std::make_pair("compilercallbacks",
1501 static_cast<CompilerCallbacks*>(&callbacks)));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001502
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001503 if (boot_image_filename != NULL) {
1504 boot_image_option += "-Ximage:";
1505 boot_image_option += boot_image_filename;
1506 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001507 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001508 if (image_filename != NULL) {
1509 image_option += "-Ximage:";
1510 image_option += image_filename;
1511 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1512 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001513
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001514 if (!host_prefix->empty()) {
1515 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001516 }
Brian Carlstrom78128a62011-09-15 17:21:19 -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());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001527
Ian Rogers1d54e732013-05-02 21:10:01 -07001528 gc::Heap* heap = Runtime::Current()->GetHeap();
1529 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001530 CHECK(image_space != NULL);
1531 const ImageHeader& image_header = image_space->GetImageHeader();
1532 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001533 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001534 return EXIT_FAILURE;
1535 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001536 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
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}