blob: 330a307df77607b533db27dcc75916e1f25679d5 [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"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080062 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
63 " 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 Carlstrom58ae9412011-10-04 00:56:06 -070078 " --host-prefix may be used to translate host paths to target paths during\n"
79 " cross compilation.\n"
80 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080081 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070082 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070083 fprintf(stderr,
84 " --output=<file> may be used to send the output to a file.\n"
85 " Example: --output=/tmp/oatdump.txt\n"
86 "\n");
Dave Allison404f59f2014-02-24 11:10:01 -080087 fprintf(stderr,
88 " --dump:[raw_mapping_table|raw_gc_map]\n"
89 " Example: --dump:raw_gc_map\n"
90 " Default: neither\n"
91 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070092 exit(EXIT_FAILURE);
93}
94
Ian Rogersff1ed472011-09-20 13:46:24 -070095const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080096 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070097 "kImtConflictMethod",
98 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -070099 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -0700100 "kRefsOnlySaveMethod",
101 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -0700102 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700103 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700104 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -0700105};
106
Elliott Hughese3c845c2012-02-28 17:23:01 -0800107class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700108 public:
Dave Allison404f59f2014-02-24 11:10:01 -0800109 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file, bool dump_raw_mapping_table, bool dump_raw_gc_map)
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700110 : host_prefix_(host_prefix),
111 oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800112 oat_dex_files_(oat_file.GetOatDexFiles()),
Dave Allison404f59f2014-02-24 11:10:01 -0800113 dump_raw_mapping_table_(dump_raw_mapping_table),
114 dump_raw_gc_map_(dump_raw_gc_map),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800115 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800116 AddAllOffsets();
117 }
118
119 void Dump(std::ostream& os) {
120 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700121
122 os << "MAGIC:\n";
123 os << oat_header.GetMagic() << "\n\n";
124
125 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800126 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700127
Elliott Hughesa72ec822012-03-05 17:12:22 -0800128 os << "INSTRUCTION SET:\n";
129 os << oat_header.GetInstructionSet() << "\n\n";
130
Dave Allison70202782013-10-22 17:52:19 -0700131 os << "INSTRUCTION SET FEATURES:\n";
132 os << oat_header.GetInstructionSetFeatures().GetFeatureString() << "\n\n";
133
Brian Carlstromaded5f72011-10-07 17:15:04 -0700134 os << "DEX FILE COUNT:\n";
135 os << oat_header.GetDexFileCount() << "\n\n";
136
137 os << "EXECUTABLE OFFSET:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800138 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700139
Brian Carlstrom28db0122012-10-18 16:20:41 -0700140 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
141 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
142
143 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800144 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700145
146 os << "IMAGE FILE LOCATION:\n";
147 const std::string image_file_location(oat_header.GetImageFileLocation());
148 os << image_file_location;
149 if (!image_file_location.empty() && !host_prefix_.empty()) {
150 os << " (" << host_prefix_ << image_file_location << ")";
151 }
152 os << "\n\n";
153
Ian Rogers30fab402012-01-23 15:43:46 -0800154 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800155 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700156
Ian Rogers30fab402012-01-23 15:43:46 -0800157 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800158 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700159
160 os << std::flush;
161
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800162 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
163 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700164 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800165 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700166 }
167 }
168
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800169 size_t ComputeSize(const void* oat_data) {
170 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
171 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
172 return 0; // Address not in oat file
173 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800174 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
175 reinterpret_cast<uintptr_t>(oat_file_.Begin());
176 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800177 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800178 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800179 return end_offset - begin_offset;
180 }
181
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700182 InstructionSet GetInstructionSet() {
183 return oat_file_.GetOatHeader().GetInstructionSet();
184 }
185
Ian Rogersef7d42f2014-01-06 12:55:46 -0800186 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800187 MethodHelper mh(m);
188 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
189 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700190 CHECK(oat_dex_file != nullptr);
191 std::string error_msg;
192 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
193 if (dex_file.get() == nullptr) {
194 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
195 << "': " << error_msg;
196 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700197 const DexFile::ClassDef* class_def =
198 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
199 if (class_def != NULL) {
200 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800201 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
202 CHECK(oat_class != NULL);
203 size_t method_index = m->GetMethodIndex();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800204 return oat_class->GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800205 }
206 }
207 }
208 return NULL;
209 }
210
Brian Carlstromaded5f72011-10-07 17:15:04 -0700211 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800212 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800213 // We don't know the length of the code for each method, but we need to know where to stop
214 // when disassembling. What we do know is that a region of code will be followed by some other
215 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
216 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800217 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
218 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800219 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700220 std::string error_msg;
221 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
222 if (dex_file.get() == nullptr) {
223 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
224 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800225 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800226 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800227 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800228 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
229 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
230 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
231 const byte* class_data = dex_file->GetClassData(class_def);
232 if (class_data != NULL) {
233 ClassDataItemIterator it(*dex_file, class_data);
234 SkipAllFields(it);
235 uint32_t class_method_index = 0;
236 while (it.HasNextDirectMethod()) {
237 AddOffsets(oat_class->GetOatMethod(class_method_index++));
238 it.Next();
239 }
240 while (it.HasNextVirtualMethod()) {
241 AddOffsets(oat_class->GetOatMethod(class_method_index++));
242 it.Next();
243 }
244 }
245 }
246 }
247
248 // If the last thing in the file is code for a method, there won't be an offset for the "next"
249 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
250 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800251 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800252 }
253
254 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800255 uint32_t code_offset = oat_method.GetCodeOffset();
256 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
257 code_offset &= ~0x1;
258 }
259 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800260 offsets_.insert(oat_method.GetMappingTableOffset());
261 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700262 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800263 }
264
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800265 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700266 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800267 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800268 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700269
270 // Create the verifier early.
271
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700272 std::string error_msg;
273 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800274 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700275 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700276 return;
277 }
278 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
279 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
280 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700281 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
282 CHECK(oat_class.get() != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700283 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
284 << " (" << oat_class->GetStatus() << ")"
285 << " (" << oat_class->GetType() << ")\n";
286 // TODO: include bitmap here if type is kOatClassBitmap?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800287 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
288 std::ostream indented_os(&indent_filter);
289 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700290 }
291
292 os << std::flush;
293 }
294
Elliott Hughese3c845c2012-02-28 17:23:01 -0800295 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700296 while (it.HasNextStaticField()) {
297 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700298 }
Ian Rogers0571d352011-11-03 19:51:38 -0700299 while (it.HasNextInstanceField()) {
300 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700301 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800302 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700303
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800304 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
305 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800306 const byte* class_data = dex_file.GetClassData(class_def);
307 if (class_data == NULL) { // empty class such as a marker interface?
308 return;
309 }
310 ClassDataItemIterator it(dex_file, class_data);
311 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800312 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700313 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800314 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700315 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800316 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
317 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700318 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700319 }
Ian Rogers0571d352011-11-03 19:51:38 -0700320 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800321 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700322 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800323 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
324 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700325 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700326 }
Ian Rogers0571d352011-11-03 19:51:38 -0700327 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700328 os << std::flush;
329 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800330
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700331 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
332 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800333 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800334 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
335 uint32_t method_access_flags) {
336 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700337 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
338 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800339 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
340 std::ostream indent1_os(&indent1_filter);
341 {
342 indent1_os << "DEX CODE:\n";
343 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
344 std::ostream indent2_os(&indent2_filter);
345 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700346 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800347 if (Runtime::Current() != NULL) {
348 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
349 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
350 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700351 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
352 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700353 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800354 {
355 indent1_os << "OAT DATA:\n";
356 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
357 std::ostream indent2_os(&indent2_filter);
358
359 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
360 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
361 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
362 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
363 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
364 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
365 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
366 DumpVmap(indent2_os, oat_method);
367 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
368 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800369 if (dump_raw_mapping_table_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800370 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
371 std::ostream indent3_os(&indent3_filter);
372 DumpMappingTable(indent3_os, oat_method);
373 }
374 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
375 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800376 if (dump_raw_gc_map_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800377 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
378 std::ostream indent3_os(&indent3_filter);
379 DumpGcMap(indent3_os, oat_method, code_item);
380 }
381 }
382 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800383 const void* code = oat_method.GetQuickCode();
384 uint32_t code_size = oat_method.GetQuickCodeSize();
385 if (code == nullptr) {
386 code = oat_method.GetPortableCode();
387 code_size = oat_method.GetPortableCodeSize();
388 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800389 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800390 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800391 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800392 code_size,
393 code != nullptr ? "..." : "");
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800394 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
395 std::ostream indent2_os(&indent2_filter);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700396
397 Runtime* runtime = Runtime::Current();
398 if (runtime != nullptr) {
399 ScopedObjectAccess soa(Thread::Current());
400 SirtRef<mirror::DexCache> dex_cache(
401 soa.Self(), runtime->GetClassLinker()->FindDexCache(dex_file));
402 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
403 verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def, code_item,
404 dex_method_idx, nullptr, method_access_flags, true, true);
405 verifier.Verify();
406 DumpCode(indent2_os, &verifier, oat_method, code_item);
407 } else {
408 DumpCode(indent2_os, nullptr, oat_method, code_item);
409 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800410 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700411 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800412
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800413 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
414 if (spill_mask == 0) {
415 return;
416 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800417 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800418 for (size_t i = 0; i < 32; i++) {
419 if ((spill_mask & (1 << i)) != 0) {
420 if (is_float) {
421 os << "fr" << i;
422 } else {
423 os << "r" << i;
424 }
425 spill_mask ^= 1 << i; // clear bit
426 if (spill_mask != 0) {
427 os << ", ";
428 } else {
429 break;
430 }
431 }
432 }
433 os << ")";
434 }
435
Ian Rogersb23a7722012-10-09 16:54:26 -0700436 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700437 const uint8_t* raw_table = oat_method.GetVmapTable();
438 if (raw_table != NULL) {
439 const VmapTable vmap_table(raw_table);
440 bool first = true;
441 bool processing_fp = false;
442 uint32_t spill_mask = oat_method.GetCoreSpillMask();
443 for (size_t i = 0; i < vmap_table.Size(); i++) {
444 uint16_t dex_reg = vmap_table[i];
445 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
446 processing_fp ? kFloatVReg : kIntVReg);
447 os << (first ? "v" : ", v") << dex_reg;
448 if (!processing_fp) {
449 os << "/r" << cpu_reg;
450 } else {
451 os << "/fr" << cpu_reg;
452 }
453 first = false;
454 if (!processing_fp && dex_reg == 0xFFFF) {
455 processing_fp = true;
456 spill_mask = oat_method.GetFpSpillMask();
457 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800458 }
Ian Rogers1809a722013-08-09 22:05:32 -0700459 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800460 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800461 }
462
Ian Rogersb23a7722012-10-09 16:54:26 -0700463 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800464 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700465 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700466 if (raw_table != NULL) {
467 const VmapTable vmap_table(raw_table);
468 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700469 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800470 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
471 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
472 : oat_method.GetCoreSpillMask();
473 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700474 } else {
475 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
476 oat_method.GetFpSpillMask(),
477 oat_method.GetFrameSizeInBytes(), reg);
478 os << "[sp + #" << offset << "]";
479 }
480 }
481 }
482
Ian Rogersef7d42f2014-01-06 12:55:46 -0800483 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
484 const DexFile::CodeItem* code_item,
485 size_t num_regs, const uint8_t* reg_bitmap) {
486 bool first = true;
487 for (size_t reg = 0; reg < num_regs; reg++) {
488 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
489 if (first) {
490 os << " v" << reg << " (";
491 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
492 os << ")";
493 first = false;
494 } else {
495 os << ", v" << reg << " (";
496 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
497 os << ")";
498 }
499 }
500 }
501 if (first) {
502 os << "No registers in GC map\n";
503 } else {
504 os << "\n";
505 }
506 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700507 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
508 const DexFile::CodeItem* code_item) {
509 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800510 if (gc_map_raw == nullptr) {
511 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800512 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800513 const void* quick_code = oat_method.GetQuickCode();
514 if (quick_code != nullptr) {
515 NativePcOffsetToReferenceMap map(gc_map_raw);
516 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
517 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
518 map.GetNativePcOffset(entry);
519 os << StringPrintf("%p", native_pc);
520 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800521 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800522 } else {
523 const void* portable_code = oat_method.GetPortableCode();
524 CHECK(portable_code != nullptr);
525 verifier::DexPcToReferenceMap map(gc_map_raw);
526 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
527 uint32_t dex_pc = map.GetDexPc(entry);
528 os << StringPrintf("0x%08x", dex_pc);
529 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
530 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800531 }
532 }
533
534 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800535 const void* quick_code = oat_method.GetQuickCode();
536 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800537 return;
538 }
Ian Rogers1809a722013-08-09 22:05:32 -0700539 MappingTable table(oat_method.GetMappingTable());
540 if (table.TotalSize() != 0) {
541 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
542 std::ostream indent_os(&indent_filter);
543 if (table.PcToDexSize() != 0) {
544 typedef MappingTable::PcToDexIterator It;
545 os << "suspend point mappings {\n";
546 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
547 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
548 }
549 os << "}\n";
550 }
551 if (table.DexToPcSize() != 0) {
552 typedef MappingTable::DexToPcIterator It;
553 os << "catch entry mappings {\n";
554 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
555 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
556 }
557 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800558 }
559 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800560 }
561
Ian Rogers1809a722013-08-09 22:05:32 -0700562 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
563 size_t offset, bool suspend_point_mapping) {
564 MappingTable table(oat_method.GetMappingTable());
565 if (suspend_point_mapping && table.PcToDexSize() > 0) {
566 typedef MappingTable::PcToDexIterator It;
567 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
568 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700569 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700570 return cur.DexPc();
571 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800572 }
Ian Rogers1809a722013-08-09 22:05:32 -0700573 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
574 typedef MappingTable::DexToPcIterator It;
575 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
576 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700577 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700578 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700579 }
580 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800581 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800582 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700583 }
584
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800585 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
586 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700587 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
588 if (gc_map_raw != NULL) {
589 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800590 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700591 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800592 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700593 bool first = true;
594 for (size_t reg = 0; reg < num_regs; reg++) {
595 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
596 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800597 os << "GC map objects: v" << reg << " (";
598 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700599 os << ")";
600 first = false;
601 } else {
602 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800603 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700604 os << ")";
605 }
606 }
607 }
608 if (!first) {
609 os << "\n";
610 }
611 }
612 }
613 }
614
Mathieu Chartier590fee92013-09-13 13:46:47 -0700615 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
616 const OatFile::OatMethod& oat_method,
617 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
618 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800619 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800620 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800621 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
622 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
623 if (kind != kUndefined) {
624 if (first) {
625 os << "VRegs: v";
626 first = false;
627 } else {
628 os << ", v";
629 }
630 os << reg << " (";
631 switch (kind) {
632 case kImpreciseConstant:
633 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
634 DescribeVReg(os, oat_method, code_item, reg, kind);
635 break;
636 case kConstant:
637 os << "Constant: " << kinds.at((reg * 2) + 1);
638 break;
639 default:
640 DescribeVReg(os, oat_method, code_item, reg, kind);
641 break;
642 }
643 os << ")";
644 }
645 }
646 if (!first) {
647 os << "\n";
648 }
649 }
650
651
Ian Rogersb23a7722012-10-09 16:54:26 -0700652 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
653 if (code_item != NULL) {
654 size_t i = 0;
655 while (i < code_item->insns_size_in_code_units_) {
656 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800657 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700658 i += instruction->SizeInCodeUnits();
659 }
660 }
661 }
662
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800663 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700664 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800665 uint32_t method_access_flags) {
666 if ((method_access_flags & kAccNative) == 0) {
667 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700668 SirtRef<mirror::DexCache> dex_cache(soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file));
669 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800670 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700671 class_loader, &class_def, code_item, NULL,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800672 method_access_flags);
673 }
674 }
675
Mathieu Chartier590fee92013-09-13 13:46:47 -0700676 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
677 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800678 const void* portable_code = oat_method.GetPortableCode();
679 const void* quick_code = oat_method.GetQuickCode();
680
681 size_t code_size = oat_method.GetQuickCodeSize();
682 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800683 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700684 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800685 } else if (quick_code != nullptr) {
686 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
687 size_t offset = 0;
688 while (offset < code_size) {
689 DumpMappingAtOffset(os, oat_method, offset, false);
690 offset += disassembler_->Dump(os, quick_native_pc + offset);
691 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
692 if (dex_pc != DexFile::kDexNoIndex) {
693 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
694 if (verifier != nullptr) {
695 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
696 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800697 }
698 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800699 } else {
700 CHECK(portable_code != nullptr);
701 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700702 }
703 }
704
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700705 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800706 const OatFile& oat_file_;
707 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Dave Allison404f59f2014-02-24 11:10:01 -0800708 bool dump_raw_mapping_table_;
709 bool dump_raw_gc_map_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800710 std::set<uintptr_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800711 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700712};
713
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800714class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700715 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800716 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers1d54e732013-05-02 21:10:01 -0700717 const std::string& host_prefix, gc::space::ImageSpace& image_space,
Dave Allison404f59f2014-02-24 11:10:01 -0800718 const ImageHeader& image_header, bool dump_raw_mapping_table,
719 bool dump_raw_gc_map)
Ian Rogersca190662012-06-26 15:45:57 -0700720 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
Dave Allison404f59f2014-02-24 11:10:01 -0800721 image_space_(image_space), image_header_(image_header),
722 dump_raw_mapping_table_(dump_raw_mapping_table),
723 dump_raw_gc_map_(dump_raw_gc_map) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700724
Ian Rogersb726dcb2012-09-05 08:57:23 -0700725 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800726 std::ostream& os = *os_;
727 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700728
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800729 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700730
Mathieu Chartier31e89252013-08-28 11:29:12 -0700731 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
732 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
733
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800734 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700735
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800736 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700737
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800738 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
739
740 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
741
742 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800743
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800744 {
745 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
746 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
747 std::ostream indent1_os(&indent1_filter);
748 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
749 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
750 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
751 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800752 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800753 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
754 if (image_root_object->IsObjectArray()) {
755 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
756 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800757 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -0800758 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800759 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800760 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -0800761 size_t run = 0;
762 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
763 if (value == image_root_object_array->Get(j)) {
764 run++;
765 } else {
766 break;
767 }
768 }
769 if (run == 0) {
770 indent2_os << StringPrintf("%d: ", i);
771 } else {
772 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
773 i = i + run;
774 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800775 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800776 PrettyObjectValue(indent2_os, value->GetClass(), value);
777 } else {
778 indent2_os << i << ": null\n";
779 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800780 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700781 }
782 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700783 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800784 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700785
Brian Carlstromaded5f72011-10-07 17:15:04 -0700786 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800787 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800788 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800789 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800790 if (!host_prefix_.empty()) {
791 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800792 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700793 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800794 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700795 std::string error_msg;
796 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700797 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700798 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700799 return;
800 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800801 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700802
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800803 stats_.oat_file_bytes = oat_file->Size();
804
Dave Allison404f59f2014-02-24 11:10:01 -0800805 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file, dump_raw_mapping_table_,
806 dump_raw_gc_map_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800807
Mathieu Chartier02e25112013-08-14 16:14:24 -0700808 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700809 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700810 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
811 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700812 }
813
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800814 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700815
816 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700817 gc::Heap* heap = Runtime::Current()->GetHeap();
818 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700819 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700820 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800821 {
822 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
823 heap->FlushAllocStack();
824 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -0800825 // Since FlushAllocStack() above resets the (active) allocation
826 // stack. Need to revoke the thread-local allocation stacks that
827 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800828 {
829 self->TransitionFromRunnableToSuspended(kNative);
830 ThreadList* thread_list = Runtime::Current()->GetThreadList();
831 thread_list->SuspendAll();
832 heap->RevokeAllThreadLocalAllocationStacks(self);
833 thread_list->ResumeAll();
834 self->TransitionFromSuspendedToRunnable();
835 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700836 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800837 {
838 std::ostream* saved_os = os_;
839 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
840 std::ostream indent_os(&indent_filter);
841 os_ = &indent_os;
842 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700843 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800844 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700845 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800846 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
847 indent_os << "\n";
848 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700849 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800850 // Dump the large objects separately.
851 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
852 indent_os << "\n";
853 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700854 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800855 os << "STATS:\n" << std::flush;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700856 UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700857 if (file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700858 std::string cache_location(GetDalvikCacheFilenameOrDie(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700859 file.reset(OS::OpenFileForReading(cache_location.c_str()));
860 if (file.get() == NULL) {
861 LOG(WARNING) << "Failed to find image in " << image_filename_
862 << " and " << cache_location;
863 }
864 }
865 if (file.get() != NULL) {
866 stats_.file_bytes = file->GetLength();
867 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800868 size_t header_bytes = sizeof(ImageHeader);
869 stats_.header_bytes = header_bytes;
870 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
871 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700872 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
873 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800874 stats_.Dump(os);
875 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800876
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800877 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800878
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800879 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700880 }
881
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700882 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800883 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700884 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800885 CHECK(type != NULL);
886 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800887 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800888 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800889 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800890 os << StringPrintf("%p String: %s\n", string,
891 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700892 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800893 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800894 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700895 } else if (type->IsArtFieldClass()) {
896 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800897 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700898 } else if (type->IsArtMethodClass()) {
899 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800900 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800901 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800902 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800903 }
904 }
905
Brian Carlstromea46f952013-07-30 01:26:50 -0700906 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700907 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800908 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700909 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800910 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700911 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800912 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700913 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800914 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700915 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800916 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700917 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800918 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700919 } else {
920 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800921 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700922 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800923 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700924 // Get the value, don't compute the type unless it is non-null as we don't want
925 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800926 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700927 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800928 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700929 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700930 // Grab the field type without causing resolution.
931 mirror::Class* field_type = fh.GetType(false);
932 if (field_type != NULL) {
933 PrettyObjectValue(os, field_type, value);
934 } else {
935 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
936 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700937 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800938 }
939 }
940
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800941 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700942 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800943 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800944 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800945 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800946 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700947 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800948 if (fields != NULL) {
949 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700950 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800951 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800952 }
953 }
954 }
955
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800956 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800957 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700958 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800959
Ian Rogersef7d42f2014-01-06 12:55:46 -0800960 const void* GetQuickOatCodeBegin(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 void* quick_code = m->GetEntryPointFromQuickCompiledCode();
963 if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
964 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800965 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700966 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800967 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700968 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800969 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800970 }
971
Ian Rogersef7d42f2014-01-06 12:55:46 -0800972 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700973 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800974 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
975 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700976 return 0;
977 }
978 return oat_code_begin[-1];
979 }
980
Ian Rogersef7d42f2014-01-06 12:55:46 -0800981 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700982 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800983 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700984 if (oat_code_begin == NULL) {
985 return NULL;
986 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800987 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700988 }
989
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800990 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700991 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700992 DCHECK(obj != NULL);
993 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800994 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700995 if (!state->InDumpSpace(obj)) {
996 return;
997 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700998
999 size_t object_bytes = obj->SizeOf();
1000 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1001 state->stats_.object_bytes += object_bytes;
1002 state->stats_.alignment_bytes += alignment_bytes;
1003
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001004 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001005 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001006 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001007 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1008 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001009 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001010 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001011 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1012 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -07001013 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001014 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001015 PrettyField(obj->AsArtField()).c_str());
1016 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001017 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001018 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001019 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001020 os << StringPrintf("%p: java.lang.String %s\n", obj,
1021 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001022 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001023 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001024 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001025 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1026 std::ostream indent_os(&indent_filter);
1027 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001028 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001029 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001030 int32_t length = obj_array->GetLength();
1031 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001032 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001033 size_t run = 0;
1034 for (int32_t j = i + 1; j < length; j++) {
1035 if (value == obj_array->Get(j)) {
1036 run++;
1037 } else {
1038 break;
1039 }
1040 }
1041 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001042 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001043 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001044 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001045 i = i + run;
1046 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001047 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001048 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001049 }
1050 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001051 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001052 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001053 indent_os << "STATICS:\n";
1054 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1055 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001056 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001057 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001058 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001059 }
1060 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001061 } else if (obj->IsArtMethod()) {
1062 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001063 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001064 // TODO: portable dumping.
1065 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1066 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001067 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001068 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1069 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1070 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001071 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001072 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001073 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001074 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1075 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001076 }
Ian Rogers19846512012-02-24 11:42:47 -08001077 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001078 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1079 MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001080 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001081 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001082 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07001083 // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
1084 // to the quick/portable to interpreter bridge.
1085 CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001086
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001087 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001088 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001089 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001090
Elliott Hughesa0e18062012-04-13 15:59:59 -07001091 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001092 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001093 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001094 state->stats_.gc_map_bytes += gc_map_bytes;
1095 }
1096
1097 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001098 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001099 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001100 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1101 }
1102
1103 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001104 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001105 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001106 state->stats_.vmap_table_bytes += vmap_table_bytes;
1107 }
1108
Ian Rogersef7d42f2014-01-06 12:55:46 -08001109 // TODO: portable dumping.
1110 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1111 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1112 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1113 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001114 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001115 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001116 if (method->IsConstructor()) {
1117 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001118 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001119 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001120 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001121 }
1122 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001123 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001124 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001125 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001126 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001127
Ian Rogersef7d42f2014-01-06 12:55:46 -08001128 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001129 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1130 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001131
1132 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001133 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001134
1135 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001136 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001137 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001138 }
1139 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001140 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001141 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001142
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001143 std::set<const void*> already_seen_;
1144 // Compute the size of the given data within the oat file and whether this is the first time
1145 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001146 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001147 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001148 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001149 already_seen_.insert(oat_data);
1150 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001151 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001152 }
1153 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001154 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001155
1156 public:
1157 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001158 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001159 size_t file_bytes;
1160
1161 size_t header_bytes;
1162 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001163 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001164 size_t alignment_bytes;
1165
1166 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001167 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001168 size_t managed_to_native_code_bytes;
1169 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001170 size_t class_initializer_code_bytes;
1171 size_t large_initializer_code_bytes;
1172 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001173
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001174 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001175 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001176 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001177
1178 size_t dex_instruction_bytes;
1179
Brian Carlstromea46f952013-07-30 01:26:50 -07001180 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001181 std::vector<size_t> method_outlier_size;
1182 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001183 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001184
1185 explicit Stats()
1186 : oat_file_bytes(0),
1187 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001188 header_bytes(0),
1189 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001190 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001191 alignment_bytes(0),
1192 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001193 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001194 managed_to_native_code_bytes(0),
1195 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001196 class_initializer_code_bytes(0),
1197 large_initializer_code_bytes(0),
1198 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001199 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001200 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001201 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001202 dex_instruction_bytes(0) {}
1203
Elliott Hughesa0e18062012-04-13 15:59:59 -07001204 struct SizeAndCount {
1205 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1206 size_t bytes;
1207 size_t count;
1208 };
1209 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1210 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001211
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001212 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001213 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1214 if (it != sizes_and_counts.end()) {
1215 it->second.bytes += object_bytes;
1216 it->second.count += 1;
1217 } else {
1218 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1219 }
1220 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001221
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001222 double PercentOfOatBytes(size_t size) {
1223 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1224 }
1225
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001226 double PercentOfFileBytes(size_t size) {
1227 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1228 }
1229
1230 double PercentOfObjectBytes(size_t size) {
1231 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1232 }
1233
Brian Carlstromea46f952013-07-30 01:26:50 -07001234 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001235 method_outlier_size.push_back(total_size);
1236 method_outlier_expansion.push_back(expansion);
1237 method_outlier.push_back(method);
1238 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001239
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001240 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001241 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001242 size_t sum_of_sizes = 0;
1243 size_t sum_of_sizes_squared = 0;
1244 size_t sum_of_expansion = 0;
1245 size_t sum_of_expansion_squared = 0;
1246 size_t n = method_outlier_size.size();
1247 for (size_t i = 0; i < n; i++) {
1248 size_t cur_size = method_outlier_size[i];
1249 sum_of_sizes += cur_size;
1250 sum_of_sizes_squared += cur_size * cur_size;
1251 double cur_expansion = method_outlier_expansion[i];
1252 sum_of_expansion += cur_expansion;
1253 sum_of_expansion_squared += cur_expansion * cur_expansion;
1254 }
1255 size_t size_mean = sum_of_sizes / n;
1256 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1257 double expansion_mean = sum_of_expansion / n;
1258 double expansion_variance =
1259 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1260
1261 // Dump methods whose size is a certain number of standard deviations from the mean
1262 size_t dumped_values = 0;
1263 size_t skipped_values = 0;
1264 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1265 size_t cur_size_variance = i * i * size_variance;
1266 bool first = true;
1267 for (size_t j = 0; j < n; j++) {
1268 size_t cur_size = method_outlier_size[j];
1269 if (cur_size > size_mean) {
1270 size_t cur_var = cur_size - size_mean;
1271 cur_var = cur_var * cur_var;
1272 if (cur_var > cur_size_variance) {
1273 if (dumped_values > 20) {
1274 if (i == 1) {
1275 skipped_values++;
1276 } else {
1277 i = 2; // jump to counting for 1 standard deviation
1278 break;
1279 }
1280 } else {
1281 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001282 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001283 first = false;
1284 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001285 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001286 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001287 method_outlier_size[j] = 0; // don't consider this method again
1288 dumped_values++;
1289 }
1290 }
1291 }
1292 }
1293 }
1294 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001295 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001296 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001297 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001298 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001299
1300 // Dump methods whose expansion is a certain number of standard deviations from the mean
1301 dumped_values = 0;
1302 skipped_values = 0;
1303 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1304 double cur_expansion_variance = i * i * expansion_variance;
1305 bool first = true;
1306 for (size_t j = 0; j < n; j++) {
1307 double cur_expansion = method_outlier_expansion[j];
1308 if (cur_expansion > expansion_mean) {
1309 size_t cur_var = cur_expansion - expansion_mean;
1310 cur_var = cur_var * cur_var;
1311 if (cur_var > cur_expansion_variance) {
1312 if (dumped_values > 20) {
1313 if (i == 1) {
1314 skipped_values++;
1315 } else {
1316 i = 2; // jump to counting for 1 standard deviation
1317 break;
1318 }
1319 } else {
1320 if (first) {
1321 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001322 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001323 first = false;
1324 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001325 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001326 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001327 method_outlier_expansion[j] = 0.0; // don't consider this method again
1328 dumped_values++;
1329 }
1330 }
1331 }
1332 }
1333 }
1334 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001335 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001336 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001337 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001338 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001339 }
1340
Ian Rogersb726dcb2012-09-05 08:57:23 -07001341 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001342 {
1343 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1344 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1345 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1346 std::ostream indent_os(&indent_filter);
1347 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1348 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001349 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001350 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1351 header_bytes, PercentOfFileBytes(header_bytes),
1352 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001353 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001354 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1355 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001356 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001357 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001358
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001359 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001360 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001361 for (const auto& sizes_and_count : sizes_and_counts) {
1362 const std::string& descriptor(sizes_and_count.first);
1363 double average = static_cast<double>(sizes_and_count.second.bytes) /
1364 static_cast<double>(sizes_and_count.second.count);
1365 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001366 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001367 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001368 descriptor.c_str(), sizes_and_count.second.bytes,
1369 sizes_and_count.second.count, average, percent);
1370 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001371 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001372 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001373 CHECK_EQ(object_bytes, object_bytes_total);
1374
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001375 os << StringPrintf("oat_file_bytes = %8zd\n"
1376 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1377 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1378 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1379 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1380 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1381 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001382 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001383 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1384 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001385 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1386 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1387 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1388 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001389 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001390 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001391 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001392 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1393 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001394 }
1395
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001396 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1397 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1398 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001399 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1400 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1401 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001402 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001403
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001404 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1405 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001406 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1407 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001408 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001409 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001410
1411 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001412 }
1413 } stats_;
1414
1415 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001416 enum {
1417 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1418 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1419 kLargeConstructorDexBytes = 4000,
1420 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1421 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1422 kLargeMethodDexBytes = 16000
1423 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001424 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001425 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001426 const std::string image_filename_;
1427 const std::string host_prefix_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001428 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001429 const ImageHeader& image_header_;
Dave Allison404f59f2014-02-24 11:10:01 -08001430 bool dump_raw_mapping_table_;
1431 bool dump_raw_gc_map_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001432
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001433 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001434};
1435
Elliott Hughes72395bf2012-04-24 13:45:26 -07001436static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001437 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001438
Brian Carlstrom78128a62011-09-15 17:21:19 -07001439 // Skip over argv[0].
1440 argv++;
1441 argc--;
1442
1443 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001444 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001445 usage();
1446 }
1447
Brian Carlstromaded5f72011-10-07 17:15:04 -07001448 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001449 const char* image_filename = NULL;
1450 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001451 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001452 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001453 std::ostream* os = &std::cout;
1454 UniquePtr<std::ofstream> out;
Dave Allison404f59f2014-02-24 11:10:01 -08001455 bool dump_raw_mapping_table = false;
1456 bool dump_raw_gc_map = false;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001457
1458 for (int i = 0; i < argc; i++) {
1459 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001460 if (option.starts_with("--oat-file=")) {
1461 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001462 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001463 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001464 } else if (option.starts_with("--boot-image=")) {
1465 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001466 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001467 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Dave Allison404f59f2014-02-24 11:10:01 -08001468 } else if (option.starts_with("--dump:")) {
1469 if (option == "--dump:raw_mapping_table") {
1470 dump_raw_mapping_table = true;
1471 } else if (option == "--dump:raw_gc_map") {
1472 dump_raw_gc_map = true;
1473 } else {
1474 fprintf(stderr, "Unknown argument %s\n", option.data());
1475 usage();
1476 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001477 } else if (option.starts_with("--output=")) {
1478 const char* filename = option.substr(strlen("--output=")).data();
1479 out.reset(new std::ofstream(filename));
1480 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001481 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001482 usage();
1483 }
1484 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001485 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001486 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001487 usage();
1488 }
1489 }
1490
Brian Carlstromaded5f72011-10-07 17:15:04 -07001491 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001492 fprintf(stderr, "Either --image or --oat must be specified\n");
1493 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001494 }
1495
Brian Carlstromaded5f72011-10-07 17:15:04 -07001496 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001497 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1498 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001499 }
1500
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001501 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001502 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1503 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001504 host_prefix.reset(new std::string(android_product_out));
1505 } else {
1506 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001507 }
1508 }
1509
Brian Carlstromaded5f72011-10-07 17:15:04 -07001510 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001511 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001512 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001513 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001514 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001515 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001516 return EXIT_FAILURE;
1517 }
Dave Allison404f59f2014-02-24 11:10:01 -08001518 OatDumper oat_dumper(*host_prefix.get(), *oat_file, dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001519 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001520 return EXIT_SUCCESS;
1521 }
1522
Brian Carlstrom78128a62011-09-15 17:21:19 -07001523 Runtime::Options options;
1524 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001525 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001526 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001527 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001528
1529 // We are more like a compiler than a run-time. We don't want to execute code.
Vladimir Marko51154732014-01-02 09:44:23 +00001530 struct OatDumpCompilerCallbacks : CompilerCallbacks {
1531 virtual bool MethodVerified(verifier::MethodVerifier* /*verifier*/) { return true; }
1532 virtual void ClassRejected(ClassReference /*ref*/) { }
1533 } callbacks;
1534 options.push_back(std::make_pair("compilercallbacks",
1535 static_cast<CompilerCallbacks*>(&callbacks)));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001536
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001537 if (boot_image_filename != NULL) {
1538 boot_image_option += "-Ximage:";
1539 boot_image_option += boot_image_filename;
1540 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001541 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001542 if (image_filename != NULL) {
1543 image_option += "-Ximage:";
1544 image_option += image_filename;
1545 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1546 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001547
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001548 if (!host_prefix->empty()) {
1549 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001550 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001551
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001552 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001553 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001554 return EXIT_FAILURE;
1555 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001556 UniquePtr<Runtime> runtime(Runtime::Current());
1557 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1558 // give it away now and then switch to a more managable ScopedObjectAccess.
1559 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1560 ScopedObjectAccess soa(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -07001561 gc::Heap* heap = Runtime::Current()->GetHeap();
1562 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001563 CHECK(image_space != NULL);
1564 const ImageHeader& image_header = image_space->GetImageHeader();
1565 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001566 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001567 return EXIT_FAILURE;
1568 }
Dave Allison404f59f2014-02-24 11:10:01 -08001569 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header,
1570 dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001571 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001572 return EXIT_SUCCESS;
1573}
1574
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001575} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001576
1577int main(int argc, char** argv) {
1578 return art::oatdump(argc, argv);
1579}