blob: 1a67952e47fbc7f2c9ca7b4bedcaf107f23db551 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstrom78128a62011-09-15 17:21:19 -070016
17#include <stdio.h>
18#include <stdlib.h>
19
Brian Carlstrom27ec9612011-09-19 20:20:38 -070020#include <fstream>
21#include <iostream>
Brian Carlstrom78128a62011-09-15 17:21:19 -070022#include <string>
23#include <vector>
24
Elliott Hughese222ee02012-12-13 14:41:43 -080025#include "base/stringpiece.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/unix_file/fd_file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070027#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080030#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080031#include "disassembler.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080032#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070033#include "gc/space/image_space.h"
34#include "gc/space/large_object_space.h"
35#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070036#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080037#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070038#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070039#include "mirror/art_field-inl.h"
40#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/array-inl.h"
42#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/object-inl.h"
44#include "mirror/object_array-inl.h"
Brian Carlstromc0a1b182014-03-04 23:19:06 -080045#include "noop_compiler_callbacks.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080046#include "oat.h"
Vladimir Marko8a630572014-04-09 18:45:35 +010047#include "oat_file-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080048#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080049#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070050#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070051#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070052#include "scoped_thread_state_change.h"
Mathieu Chartierc22c59e2014-02-24 15:16:06 -080053#include "thread_list.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080054#include "verifier/dex_gc_map.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080055#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070056#include "vmap_table.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070057
58namespace art {
59
60static void usage() {
61 fprintf(stderr,
62 "Usage: oatdump [options] ...\n"
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +000063 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080064 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070065 "\n");
66 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080067 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070068 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070069 "\n");
70 fprintf(stderr,
71 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080072 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070073 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070074 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070075 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080076 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070077 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070078 fprintf(stderr,
Brian Carlstrom27ec9612011-09-19 20:20:38 -070079 " --output=<file> may be used to send the output to a file.\n"
80 " Example: --output=/tmp/oatdump.txt\n"
81 "\n");
Dave Allison404f59f2014-02-24 11:10:01 -080082 fprintf(stderr,
83 " --dump:[raw_mapping_table|raw_gc_map]\n"
84 " Example: --dump:raw_gc_map\n"
85 " Default: neither\n"
86 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070087 exit(EXIT_FAILURE);
88}
89
Ian Rogersff1ed472011-09-20 13:46:24 -070090const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080091 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070092 "kImtConflictMethod",
93 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -070094 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070095 "kRefsOnlySaveMethod",
96 "kRefsAndArgsSaveMethod",
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:
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000103 explicit OatDumper(const OatFile& oat_file, bool dump_raw_mapping_table, bool dump_raw_gc_map)
104 : oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800105 oat_dex_files_(oat_file.GetOatDexFiles()),
Dave Allison404f59f2014-02-24 11:10:01 -0800106 dump_raw_mapping_table_(dump_raw_mapping_table),
107 dump_raw_gc_map_(dump_raw_gc_map),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800108 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800109 AddAllOffsets();
110 }
111
112 void Dump(std::ostream& os) {
113 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700114
115 os << "MAGIC:\n";
116 os << oat_header.GetMagic() << "\n\n";
117
118 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800119 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700120
Elliott Hughesa72ec822012-03-05 17:12:22 -0800121 os << "INSTRUCTION SET:\n";
122 os << oat_header.GetInstructionSet() << "\n\n";
123
Dave Allison70202782013-10-22 17:52:19 -0700124 os << "INSTRUCTION SET FEATURES:\n";
125 os << oat_header.GetInstructionSetFeatures().GetFeatureString() << "\n\n";
126
Brian Carlstromaded5f72011-10-07 17:15:04 -0700127 os << "DEX FILE COUNT:\n";
128 os << oat_header.GetDexFileCount() << "\n\n";
129
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800130#define DUMP_OAT_HEADER_OFFSET(label, offset) \
131 os << label " OFFSET:\n"; \
132 os << StringPrintf("0x%08x", oat_header.offset()); \
133 if (oat_header.offset() != 0) { \
134 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
135 } \
136 os << StringPrintf("\n\n");
137
138 DUMP_OAT_HEADER_OFFSET("EXECUTABLE", GetExecutableOffset);
139 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO INTERPRETER BRIDGE",
140 GetInterpreterToInterpreterBridgeOffset);
141 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE",
142 GetInterpreterToCompiledCodeBridgeOffset);
143 DUMP_OAT_HEADER_OFFSET("JNI DLSYM LOOKUP",
144 GetJniDlsymLookupOffset);
145 DUMP_OAT_HEADER_OFFSET("PORTABLE IMT CONFLICT TRAMPOLINE",
146 GetPortableImtConflictTrampolineOffset);
147 DUMP_OAT_HEADER_OFFSET("PORTABLE RESOLUTION TRAMPOLINE",
148 GetPortableResolutionTrampolineOffset);
149 DUMP_OAT_HEADER_OFFSET("PORTABLE TO INTERPRETER BRIDGE",
150 GetPortableToInterpreterBridgeOffset);
151 DUMP_OAT_HEADER_OFFSET("QUICK GENERIC JNI TRAMPOLINE",
152 GetQuickGenericJniTrampolineOffset);
153 DUMP_OAT_HEADER_OFFSET("QUICK IMT CONFLICT TRAMPOLINE",
154 GetQuickImtConflictTrampolineOffset);
155 DUMP_OAT_HEADER_OFFSET("QUICK RESOLUTION TRAMPOLINE",
156 GetQuickResolutionTrampolineOffset);
157 DUMP_OAT_HEADER_OFFSET("QUICK TO INTERPRETER BRIDGE",
158 GetQuickToInterpreterBridgeOffset);
159#undef DUMP_OAT_HEADER_OFFSET
Brian Carlstromaded5f72011-10-07 17:15:04 -0700160
Brian Carlstrom28db0122012-10-18 16:20:41 -0700161 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
162 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
163
164 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800165 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700166
167 os << "IMAGE FILE LOCATION:\n";
168 const std::string image_file_location(oat_header.GetImageFileLocation());
169 os << image_file_location;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700170 os << "\n\n";
171
Ian Rogers30fab402012-01-23 15:43:46 -0800172 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800173 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700174
Ian Rogers30fab402012-01-23 15:43:46 -0800175 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800176 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700177
178 os << std::flush;
179
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800180 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
181 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700182 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800183 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700184 }
185 }
186
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800187 size_t ComputeSize(const void* oat_data) {
188 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
189 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
190 return 0; // Address not in oat file
191 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800192 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
193 reinterpret_cast<uintptr_t>(oat_file_.Begin());
194 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800195 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800196 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800197 return end_offset - begin_offset;
198 }
199
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700200 InstructionSet GetInstructionSet() {
201 return oat_file_.GetOatHeader().GetInstructionSet();
202 }
203
Ian Rogersef7d42f2014-01-06 12:55:46 -0800204 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800205 MethodHelper mh(m);
206 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
207 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700208 CHECK(oat_dex_file != nullptr);
209 std::string error_msg;
210 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
211 if (dex_file.get() == nullptr) {
212 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
213 << "': " << error_msg;
214 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700215 const DexFile::ClassDef* class_def =
216 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
217 if (class_def != NULL) {
218 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100219 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800220 size_t method_index = m->GetMethodIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100221 return oat_class.GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800222 }
223 }
224 }
225 return NULL;
226 }
227
Brian Carlstromaded5f72011-10-07 17:15:04 -0700228 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800229 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800230 // We don't know the length of the code for each method, but we need to know where to stop
231 // when disassembling. What we do know is that a region of code will be followed by some other
232 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
233 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800234 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
235 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800236 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700237 std::string error_msg;
238 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
239 if (dex_file.get() == nullptr) {
240 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
241 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800242 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800243 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800244 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800245 for (size_t class_def_index = 0;
246 class_def_index < dex_file->NumClassDefs();
247 class_def_index++) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800248 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100249 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800250 const byte* class_data = dex_file->GetClassData(class_def);
251 if (class_data != NULL) {
252 ClassDataItemIterator it(*dex_file, class_data);
253 SkipAllFields(it);
254 uint32_t class_method_index = 0;
255 while (it.HasNextDirectMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100256 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800257 it.Next();
258 }
259 while (it.HasNextVirtualMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100260 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800261 it.Next();
262 }
263 }
264 }
265 }
266
267 // If the last thing in the file is code for a method, there won't be an offset for the "next"
268 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
269 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800270 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800271 }
272
273 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800274 uint32_t code_offset = oat_method.GetCodeOffset();
275 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
276 code_offset &= ~0x1;
277 }
278 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800279 offsets_.insert(oat_method.GetMappingTableOffset());
280 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700281 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800282 }
283
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800284 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700285 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800286 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800287 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700288
289 // Create the verifier early.
290
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700291 std::string error_msg;
292 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800293 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700294 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700295 return;
296 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800297 for (size_t class_def_index = 0;
298 class_def_index < dex_file->NumClassDefs();
299 class_def_index++) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700300 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
301 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100302 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700303 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100304 << " (" << oat_class.GetStatus() << ")"
305 << " (" << oat_class.GetType() << ")\n";
306 // TODO: include bitmap here if type is kOatClassSomeCompiled?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800307 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
308 std::ostream indented_os(&indent_filter);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100309 DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700310 }
311
312 os << std::flush;
313 }
314
Elliott Hughese3c845c2012-02-28 17:23:01 -0800315 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700316 while (it.HasNextStaticField()) {
317 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700318 }
Ian Rogers0571d352011-11-03 19:51:38 -0700319 while (it.HasNextInstanceField()) {
320 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700321 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800322 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700323
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800324 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
325 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800326 const byte* class_data = dex_file.GetClassData(class_def);
327 if (class_data == NULL) { // empty class such as a marker interface?
328 return;
329 }
330 ClassDataItemIterator it(dex_file, class_data);
331 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800332 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700333 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800334 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700335 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800336 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
337 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700338 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700339 }
Ian Rogers0571d352011-11-03 19:51:38 -0700340 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800341 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700342 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800343 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
344 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700345 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700346 }
Ian Rogers0571d352011-11-03 19:51:38 -0700347 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700348 os << std::flush;
349 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800350
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700351 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
352 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800353 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800354 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
355 uint32_t method_access_flags) {
356 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700357 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
358 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800359 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
360 std::ostream indent1_os(&indent1_filter);
361 {
362 indent1_os << "DEX CODE:\n";
363 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
364 std::ostream indent2_os(&indent2_filter);
365 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700366 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800367 if (Runtime::Current() != NULL) {
368 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
369 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
370 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700371 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
372 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700373 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800374 {
375 indent1_os << "OAT DATA:\n";
376 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
377 std::ostream indent2_os(&indent2_filter);
378
379 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
380 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
381 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
382 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
383 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
384 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
385 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
386 DumpVmap(indent2_os, oat_method);
387 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
388 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800389 if (dump_raw_mapping_table_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800390 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
391 std::ostream indent3_os(&indent3_filter);
392 DumpMappingTable(indent3_os, oat_method);
393 }
394 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
395 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800396 if (dump_raw_gc_map_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800397 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
398 std::ostream indent3_os(&indent3_filter);
399 DumpGcMap(indent3_os, oat_method, code_item);
400 }
401 }
402 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800403 const void* code = oat_method.GetQuickCode();
404 uint32_t code_size = oat_method.GetQuickCodeSize();
405 if (code == nullptr) {
406 code = oat_method.GetPortableCode();
407 code_size = oat_method.GetPortableCodeSize();
408 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800409 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800410 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800411 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800412 code_size,
413 code != nullptr ? "..." : "");
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800414 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
415 std::ostream indent2_os(&indent2_filter);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700416
417 Runtime* runtime = Runtime::Current();
418 if (runtime != nullptr) {
419 ScopedObjectAccess soa(Thread::Current());
420 SirtRef<mirror::DexCache> dex_cache(
421 soa.Self(), runtime->GetClassLinker()->FindDexCache(dex_file));
422 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800423 verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def,
424 code_item, dex_method_idx, nullptr, method_access_flags,
425 true, true);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700426 verifier.Verify();
427 DumpCode(indent2_os, &verifier, oat_method, code_item);
428 } else {
429 DumpCode(indent2_os, nullptr, oat_method, code_item);
430 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800431 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700432 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800433
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800434 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
435 if (spill_mask == 0) {
436 return;
437 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800438 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800439 for (size_t i = 0; i < 32; i++) {
440 if ((spill_mask & (1 << i)) != 0) {
441 if (is_float) {
442 os << "fr" << i;
443 } else {
444 os << "r" << i;
445 }
446 spill_mask ^= 1 << i; // clear bit
447 if (spill_mask != 0) {
448 os << ", ";
449 } else {
450 break;
451 }
452 }
453 }
454 os << ")";
455 }
456
Ian Rogersb23a7722012-10-09 16:54:26 -0700457 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700458 const uint8_t* raw_table = oat_method.GetVmapTable();
459 if (raw_table != NULL) {
460 const VmapTable vmap_table(raw_table);
461 bool first = true;
462 bool processing_fp = false;
463 uint32_t spill_mask = oat_method.GetCoreSpillMask();
464 for (size_t i = 0; i < vmap_table.Size(); i++) {
465 uint16_t dex_reg = vmap_table[i];
466 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
467 processing_fp ? kFloatVReg : kIntVReg);
468 os << (first ? "v" : ", v") << dex_reg;
469 if (!processing_fp) {
470 os << "/r" << cpu_reg;
471 } else {
472 os << "/fr" << cpu_reg;
473 }
474 first = false;
475 if (!processing_fp && dex_reg == 0xFFFF) {
476 processing_fp = true;
477 spill_mask = oat_method.GetFpSpillMask();
478 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800479 }
Ian Rogers1809a722013-08-09 22:05:32 -0700480 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800481 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800482 }
483
Ian Rogersb23a7722012-10-09 16:54:26 -0700484 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800485 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700486 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700487 if (raw_table != NULL) {
488 const VmapTable vmap_table(raw_table);
489 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700490 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800491 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
492 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
493 : oat_method.GetCoreSpillMask();
494 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700495 } else {
496 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
497 oat_method.GetFpSpillMask(),
498 oat_method.GetFrameSizeInBytes(), reg);
499 os << "[sp + #" << offset << "]";
500 }
501 }
502 }
503
Ian Rogersef7d42f2014-01-06 12:55:46 -0800504 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
505 const DexFile::CodeItem* code_item,
506 size_t num_regs, const uint8_t* reg_bitmap) {
507 bool first = true;
508 for (size_t reg = 0; reg < num_regs; reg++) {
509 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
510 if (first) {
511 os << " v" << reg << " (";
512 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
513 os << ")";
514 first = false;
515 } else {
516 os << ", v" << reg << " (";
517 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
518 os << ")";
519 }
520 }
521 }
522 if (first) {
523 os << "No registers in GC map\n";
524 } else {
525 os << "\n";
526 }
527 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700528 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
529 const DexFile::CodeItem* code_item) {
530 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800531 if (gc_map_raw == nullptr) {
532 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800533 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800534 const void* quick_code = oat_method.GetQuickCode();
535 if (quick_code != nullptr) {
536 NativePcOffsetToReferenceMap map(gc_map_raw);
537 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
538 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
539 map.GetNativePcOffset(entry);
540 os << StringPrintf("%p", native_pc);
541 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800542 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800543 } else {
544 const void* portable_code = oat_method.GetPortableCode();
545 CHECK(portable_code != nullptr);
546 verifier::DexPcToReferenceMap map(gc_map_raw);
547 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
548 uint32_t dex_pc = map.GetDexPc(entry);
549 os << StringPrintf("0x%08x", dex_pc);
550 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
551 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800552 }
553 }
554
555 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800556 const void* quick_code = oat_method.GetQuickCode();
557 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800558 return;
559 }
Ian Rogers1809a722013-08-09 22:05:32 -0700560 MappingTable table(oat_method.GetMappingTable());
561 if (table.TotalSize() != 0) {
562 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
563 std::ostream indent_os(&indent_filter);
564 if (table.PcToDexSize() != 0) {
565 typedef MappingTable::PcToDexIterator It;
566 os << "suspend point mappings {\n";
567 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
568 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
569 }
570 os << "}\n";
571 }
572 if (table.DexToPcSize() != 0) {
573 typedef MappingTable::DexToPcIterator It;
574 os << "catch entry mappings {\n";
575 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
576 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
577 }
578 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800579 }
580 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800581 }
582
Ian Rogers1809a722013-08-09 22:05:32 -0700583 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
584 size_t offset, bool suspend_point_mapping) {
585 MappingTable table(oat_method.GetMappingTable());
586 if (suspend_point_mapping && table.PcToDexSize() > 0) {
587 typedef MappingTable::PcToDexIterator It;
588 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
589 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700590 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700591 return cur.DexPc();
592 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800593 }
Ian Rogers1809a722013-08-09 22:05:32 -0700594 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
595 typedef MappingTable::DexToPcIterator It;
596 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
597 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700598 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700599 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700600 }
601 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800602 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800603 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700604 }
605
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800606 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
607 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700608 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
609 if (gc_map_raw != NULL) {
610 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800611 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700612 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800613 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700614 bool first = true;
615 for (size_t reg = 0; reg < num_regs; reg++) {
616 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
617 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800618 os << "GC map objects: v" << reg << " (";
619 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700620 os << ")";
621 first = false;
622 } else {
623 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800624 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700625 os << ")";
626 }
627 }
628 }
629 if (!first) {
630 os << "\n";
631 }
632 }
633 }
634 }
635
Mathieu Chartier590fee92013-09-13 13:46:47 -0700636 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
637 const OatFile::OatMethod& oat_method,
638 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
639 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800640 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800641 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800642 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
643 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
644 if (kind != kUndefined) {
645 if (first) {
646 os << "VRegs: v";
647 first = false;
648 } else {
649 os << ", v";
650 }
651 os << reg << " (";
652 switch (kind) {
653 case kImpreciseConstant:
654 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
655 DescribeVReg(os, oat_method, code_item, reg, kind);
656 break;
657 case kConstant:
658 os << "Constant: " << kinds.at((reg * 2) + 1);
659 break;
660 default:
661 DescribeVReg(os, oat_method, code_item, reg, kind);
662 break;
663 }
664 os << ")";
665 }
666 }
667 if (!first) {
668 os << "\n";
669 }
670 }
671
672
Ian Rogersb23a7722012-10-09 16:54:26 -0700673 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
674 if (code_item != NULL) {
675 size_t i = 0;
676 while (i < code_item->insns_size_in_code_units_) {
677 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800678 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700679 i += instruction->SizeInCodeUnits();
680 }
681 }
682 }
683
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800684 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700685 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800686 uint32_t method_access_flags) {
687 if ((method_access_flags & kAccNative) == 0) {
688 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800689 SirtRef<mirror::DexCache> dex_cache(
690 soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700691 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800692 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700693 class_loader, &class_def, code_item, NULL,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800694 method_access_flags);
695 }
696 }
697
Mathieu Chartier590fee92013-09-13 13:46:47 -0700698 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
699 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800700 const void* portable_code = oat_method.GetPortableCode();
701 const void* quick_code = oat_method.GetQuickCode();
702
703 size_t code_size = oat_method.GetQuickCodeSize();
704 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800705 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700706 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800707 } else if (quick_code != nullptr) {
708 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
709 size_t offset = 0;
710 while (offset < code_size) {
711 DumpMappingAtOffset(os, oat_method, offset, false);
712 offset += disassembler_->Dump(os, quick_native_pc + offset);
713 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
714 if (dex_pc != DexFile::kDexNoIndex) {
715 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
716 if (verifier != nullptr) {
717 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
718 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800719 }
720 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800721 } else {
722 CHECK(portable_code != nullptr);
723 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700724 }
725 }
726
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800727 const OatFile& oat_file_;
728 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Dave Allison404f59f2014-02-24 11:10:01 -0800729 bool dump_raw_mapping_table_;
730 bool dump_raw_gc_map_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800731 std::set<uintptr_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800732 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700733};
734
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800735class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700736 public:
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800737 explicit ImageDumper(std::ostream* os, gc::space::ImageSpace& image_space,
Dave Allison404f59f2014-02-24 11:10:01 -0800738 const ImageHeader& image_header, bool dump_raw_mapping_table,
739 bool dump_raw_gc_map)
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800740 : os_(os), image_space_(image_space), image_header_(image_header),
Dave Allison404f59f2014-02-24 11:10:01 -0800741 dump_raw_mapping_table_(dump_raw_mapping_table),
742 dump_raw_gc_map_(dump_raw_gc_map) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700743
Ian Rogersb726dcb2012-09-05 08:57:23 -0700744 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800745 std::ostream& os = *os_;
746 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700747
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800748 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700749
Mathieu Chartier31e89252013-08-28 11:29:12 -0700750 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
751 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
752
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800753 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700754
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800755 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700756
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800757 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
758
759 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
760
761 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800762
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800763 {
764 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
765 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
766 std::ostream indent1_os(&indent1_filter);
767 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
768 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
769 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
770 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800771 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800772 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
773 if (image_root_object->IsObjectArray()) {
774 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
775 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800776 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -0800777 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800778 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800779 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -0800780 size_t run = 0;
781 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
782 if (value == image_root_object_array->Get(j)) {
783 run++;
784 } else {
785 break;
786 }
787 }
788 if (run == 0) {
789 indent2_os << StringPrintf("%d: ", i);
790 } else {
791 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
792 i = i + run;
793 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800794 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800795 PrettyObjectValue(indent2_os, value->GetClass(), value);
796 } else {
797 indent2_os << i << ": null\n";
798 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800799 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700800 }
801 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700802 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800803 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700804
Brian Carlstromaded5f72011-10-07 17:15:04 -0700805 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800806 std::string image_filename = image_space_.GetImageFilename();
807 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800808 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800809 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700810 std::string error_msg;
811 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700812 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700813 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700814 return;
815 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800816 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700817
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800818 stats_.oat_file_bytes = oat_file->Size();
819
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000820 oat_dumper_.reset(new OatDumper(*oat_file, dump_raw_mapping_table_,
Dave Allison404f59f2014-02-24 11:10:01 -0800821 dump_raw_gc_map_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800822
Mathieu Chartier02e25112013-08-14 16:14:24 -0700823 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700824 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700825 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
826 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700827 }
828
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800829 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700830
831 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700832 gc::Heap* heap = Runtime::Current()->GetHeap();
833 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700834 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700835 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800836 {
837 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
838 heap->FlushAllocStack();
839 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -0800840 // Since FlushAllocStack() above resets the (active) allocation
841 // stack. Need to revoke the thread-local allocation stacks that
842 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800843 {
844 self->TransitionFromRunnableToSuspended(kNative);
845 ThreadList* thread_list = Runtime::Current()->GetThreadList();
846 thread_list->SuspendAll();
847 heap->RevokeAllThreadLocalAllocationStacks(self);
848 thread_list->ResumeAll();
849 self->TransitionFromSuspendedToRunnable();
850 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700851 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800852 {
853 std::ostream* saved_os = os_;
854 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
855 std::ostream indent_os(&indent_filter);
856 os_ = &indent_os;
857 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700858 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800859 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700860 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800861 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
862 indent_os << "\n";
863 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700864 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800865 // Dump the large objects separately.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700866 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800867 indent_os << "\n";
868 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700869 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800870 os << "STATS:\n" << std::flush;
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800871 UniquePtr<File> file(OS::OpenFileForReading(image_filename.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700872 if (file.get() == NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800873 LOG(WARNING) << "Failed to find image in " << image_filename;
Brian Carlstrom6f277752013-09-30 17:56:45 -0700874 }
875 if (file.get() != NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800876 stats_.file_bytes = file->GetLength();
Brian Carlstrom6f277752013-09-30 17:56:45 -0700877 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800878 size_t header_bytes = sizeof(ImageHeader);
879 stats_.header_bytes = header_bytes;
880 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
881 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700882 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
883 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800884 stats_.Dump(os);
885 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800886
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800887 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800888
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800889 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700890 }
891
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700892 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800893 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700894 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800895 CHECK(type != NULL);
896 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800897 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800898 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800899 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800900 os << StringPrintf("%p String: %s\n", string,
901 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700902 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800903 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800904 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700905 } else if (type->IsArtFieldClass()) {
906 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800907 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700908 } else if (type->IsArtMethodClass()) {
909 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800910 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800911 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800912 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800913 }
914 }
915
Brian Carlstromea46f952013-07-30 01:26:50 -0700916 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700917 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800918 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700919 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800920 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700921 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800922 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700923 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800924 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700925 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800926 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700927 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800928 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700929 } else {
930 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800931 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700932 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800933 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700934 // Get the value, don't compute the type unless it is non-null as we don't want
935 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800936 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700937 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800938 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700939 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700940 // Grab the field type without causing resolution.
941 mirror::Class* field_type = fh.GetType(false);
942 if (field_type != NULL) {
943 PrettyObjectValue(os, field_type, value);
944 } else {
945 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
946 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700947 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800948 }
949 }
950
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800951 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700952 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800953 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800954 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800955 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800956 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700957 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800958 if (fields != NULL) {
959 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700960 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800961 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800962 }
963 }
964 }
965
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800966 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800967 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700968 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800969
Ian Rogersef7d42f2014-01-06 12:55:46 -0800970 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700971 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800972 const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
973 if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
974 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800975 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700976 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800977 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700978 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800979 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800980 }
981
Ian Rogersef7d42f2014-01-06 12:55:46 -0800982 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700983 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800984 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
985 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700986 return 0;
987 }
988 return oat_code_begin[-1];
989 }
990
Ian Rogersef7d42f2014-01-06 12:55:46 -0800991 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700992 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800993 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700994 if (oat_code_begin == NULL) {
995 return NULL;
996 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800997 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700998 }
999
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001000 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001001 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001002 DCHECK(obj != NULL);
1003 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001004 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001005 if (!state->InDumpSpace(obj)) {
1006 return;
1007 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001008
1009 size_t object_bytes = obj->SizeOf();
1010 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1011 state->stats_.object_bytes += object_bytes;
1012 state->stats_.alignment_bytes += alignment_bytes;
1013
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001014 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001015 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001016 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001017 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1018 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001019 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001020 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001021 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1022 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -07001023 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001024 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001025 PrettyField(obj->AsArtField()).c_str());
1026 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001027 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001028 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001029 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001030 os << StringPrintf("%p: java.lang.String %s\n", obj,
1031 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001032 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001033 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001034 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001035 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1036 std::ostream indent_os(&indent_filter);
1037 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001038 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001039 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001040 int32_t length = obj_array->GetLength();
1041 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001042 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001043 size_t run = 0;
1044 for (int32_t j = i + 1; j < length; j++) {
1045 if (value == obj_array->Get(j)) {
1046 run++;
1047 } else {
1048 break;
1049 }
1050 }
1051 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001052 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001053 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001054 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001055 i = i + run;
1056 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001057 mirror::Class* value_class =
1058 (value == NULL) ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001059 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001060 }
1061 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001062 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001063 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001064 indent_os << "STATICS:\n";
1065 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1066 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001067 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001068 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001069 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001070 }
1071 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001072 } else if (obj->IsArtMethod()) {
1073 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001074 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001075 // TODO: portable dumping.
1076 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1077 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001078 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001079 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1080 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1081 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001082 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001083 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001084 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001085 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1086 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001087 }
Ian Rogers19846512012-02-24 11:42:47 -08001088 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001089 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1090 MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001091 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001092 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001093 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001094 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001095 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001096 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001097
Elliott Hughesa0e18062012-04-13 15:59:59 -07001098 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001099 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001100 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001101 state->stats_.gc_map_bytes += gc_map_bytes;
1102 }
1103
1104 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001105 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001106 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001107 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1108 }
1109
1110 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001111 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001112 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001113 state->stats_.vmap_table_bytes += vmap_table_bytes;
1114 }
1115
Ian Rogersef7d42f2014-01-06 12:55:46 -08001116 // TODO: portable dumping.
1117 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1118 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1119 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1120 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001121 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001122 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001123 if (method->IsConstructor()) {
1124 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001125 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001126 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001127 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001128 }
1129 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001130 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001131 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001132 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001133 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001134
Ian Rogersef7d42f2014-01-06 12:55:46 -08001135 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001136 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1137 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001138
1139 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001140 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001141
1142 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001143 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001144 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001145 }
1146 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001147 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001148 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001149
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001150 std::set<const void*> already_seen_;
1151 // Compute the size of the given data within the oat file and whether this is the first time
1152 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001153 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001154 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001155 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001156 already_seen_.insert(oat_data);
1157 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001158 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001159 }
1160 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001161 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001162
1163 public:
1164 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001165 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001166 size_t file_bytes;
1167
1168 size_t header_bytes;
1169 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001170 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001171 size_t alignment_bytes;
1172
1173 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001174 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001175 size_t managed_to_native_code_bytes;
1176 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001177 size_t class_initializer_code_bytes;
1178 size_t large_initializer_code_bytes;
1179 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001180
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001181 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001182 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001183 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001184
1185 size_t dex_instruction_bytes;
1186
Brian Carlstromea46f952013-07-30 01:26:50 -07001187 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001188 std::vector<size_t> method_outlier_size;
1189 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001190 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001191
1192 explicit Stats()
1193 : oat_file_bytes(0),
1194 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001195 header_bytes(0),
1196 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001197 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001198 alignment_bytes(0),
1199 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001200 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001201 managed_to_native_code_bytes(0),
1202 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001203 class_initializer_code_bytes(0),
1204 large_initializer_code_bytes(0),
1205 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001206 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001207 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001208 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001209 dex_instruction_bytes(0) {}
1210
Elliott Hughesa0e18062012-04-13 15:59:59 -07001211 struct SizeAndCount {
1212 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1213 size_t bytes;
1214 size_t count;
1215 };
1216 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1217 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001218
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001219 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001220 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1221 if (it != sizes_and_counts.end()) {
1222 it->second.bytes += object_bytes;
1223 it->second.count += 1;
1224 } else {
1225 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1226 }
1227 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001228
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001229 double PercentOfOatBytes(size_t size) {
1230 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1231 }
1232
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001233 double PercentOfFileBytes(size_t size) {
1234 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1235 }
1236
1237 double PercentOfObjectBytes(size_t size) {
1238 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1239 }
1240
Brian Carlstromea46f952013-07-30 01:26:50 -07001241 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001242 method_outlier_size.push_back(total_size);
1243 method_outlier_expansion.push_back(expansion);
1244 method_outlier.push_back(method);
1245 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001246
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001247 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001248 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001249 size_t sum_of_sizes = 0;
1250 size_t sum_of_sizes_squared = 0;
1251 size_t sum_of_expansion = 0;
1252 size_t sum_of_expansion_squared = 0;
1253 size_t n = method_outlier_size.size();
1254 for (size_t i = 0; i < n; i++) {
1255 size_t cur_size = method_outlier_size[i];
1256 sum_of_sizes += cur_size;
1257 sum_of_sizes_squared += cur_size * cur_size;
1258 double cur_expansion = method_outlier_expansion[i];
1259 sum_of_expansion += cur_expansion;
1260 sum_of_expansion_squared += cur_expansion * cur_expansion;
1261 }
1262 size_t size_mean = sum_of_sizes / n;
1263 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1264 double expansion_mean = sum_of_expansion / n;
1265 double expansion_variance =
1266 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1267
1268 // Dump methods whose size is a certain number of standard deviations from the mean
1269 size_t dumped_values = 0;
1270 size_t skipped_values = 0;
1271 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1272 size_t cur_size_variance = i * i * size_variance;
1273 bool first = true;
1274 for (size_t j = 0; j < n; j++) {
1275 size_t cur_size = method_outlier_size[j];
1276 if (cur_size > size_mean) {
1277 size_t cur_var = cur_size - size_mean;
1278 cur_var = cur_var * cur_var;
1279 if (cur_var > cur_size_variance) {
1280 if (dumped_values > 20) {
1281 if (i == 1) {
1282 skipped_values++;
1283 } else {
1284 i = 2; // jump to counting for 1 standard deviation
1285 break;
1286 }
1287 } else {
1288 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001289 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001290 first = false;
1291 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001292 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001293 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001294 method_outlier_size[j] = 0; // don't consider this method again
1295 dumped_values++;
1296 }
1297 }
1298 }
1299 }
1300 }
1301 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001302 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001303 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001304 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001305 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001306
1307 // Dump methods whose expansion is a certain number of standard deviations from the mean
1308 dumped_values = 0;
1309 skipped_values = 0;
1310 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1311 double cur_expansion_variance = i * i * expansion_variance;
1312 bool first = true;
1313 for (size_t j = 0; j < n; j++) {
1314 double cur_expansion = method_outlier_expansion[j];
1315 if (cur_expansion > expansion_mean) {
1316 size_t cur_var = cur_expansion - expansion_mean;
1317 cur_var = cur_var * cur_var;
1318 if (cur_var > cur_expansion_variance) {
1319 if (dumped_values > 20) {
1320 if (i == 1) {
1321 skipped_values++;
1322 } else {
1323 i = 2; // jump to counting for 1 standard deviation
1324 break;
1325 }
1326 } else {
1327 if (first) {
1328 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001329 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001330 first = false;
1331 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001332 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001333 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001334 method_outlier_expansion[j] = 0.0; // don't consider this method again
1335 dumped_values++;
1336 }
1337 }
1338 }
1339 }
1340 }
1341 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001342 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001343 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001344 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001345 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001346 }
1347
Ian Rogersb726dcb2012-09-05 08:57:23 -07001348 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001349 {
1350 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1351 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1352 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1353 std::ostream indent_os(&indent_filter);
1354 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1355 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001356 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001357 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1358 header_bytes, PercentOfFileBytes(header_bytes),
1359 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001360 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001361 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1362 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001363 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001364 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001365
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001366 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001367 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001368 for (const auto& sizes_and_count : sizes_and_counts) {
1369 const std::string& descriptor(sizes_and_count.first);
1370 double average = static_cast<double>(sizes_and_count.second.bytes) /
1371 static_cast<double>(sizes_and_count.second.count);
1372 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001373 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001374 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001375 descriptor.c_str(), sizes_and_count.second.bytes,
1376 sizes_and_count.second.count, average, percent);
1377 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001378 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001379 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001380 CHECK_EQ(object_bytes, object_bytes_total);
1381
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001382 os << StringPrintf("oat_file_bytes = %8zd\n"
1383 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1384 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1385 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1386 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1387 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1388 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001389 oat_file_bytes,
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001390 managed_code_bytes,
1391 PercentOfOatBytes(managed_code_bytes),
1392 managed_to_native_code_bytes,
1393 PercentOfOatBytes(managed_to_native_code_bytes),
1394 native_to_managed_code_bytes,
1395 PercentOfOatBytes(native_to_managed_code_bytes),
1396 class_initializer_code_bytes,
1397 PercentOfOatBytes(class_initializer_code_bytes),
1398 large_initializer_code_bytes,
1399 PercentOfOatBytes(large_initializer_code_bytes),
1400 large_method_code_bytes,
1401 PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001402 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001403 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001404 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001405 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1406 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001407 }
1408
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001409 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1410 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1411 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001412 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1413 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1414 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001415 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001416
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001417 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1418 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001419 static_cast<double>(managed_code_bytes) /
1420 static_cast<double>(dex_instruction_bytes),
Elliott Hughesc073b072012-05-24 19:29:17 -07001421 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001422 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001423 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001424
1425 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001426 }
1427 } stats_;
1428
1429 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001430 enum {
1431 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1432 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1433 kLargeConstructorDexBytes = 4000,
1434 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1435 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1436 kLargeMethodDexBytes = 16000
1437 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001438 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001439 std::ostream* os_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001440 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001441 const ImageHeader& image_header_;
Dave Allison404f59f2014-02-24 11:10:01 -08001442 bool dump_raw_mapping_table_;
1443 bool dump_raw_gc_map_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001444
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001445 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001446};
1447
Elliott Hughes72395bf2012-04-24 13:45:26 -07001448static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001449 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001450
Brian Carlstrom78128a62011-09-15 17:21:19 -07001451 // Skip over argv[0].
1452 argv++;
1453 argc--;
1454
1455 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001456 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001457 usage();
1458 }
1459
Brian Carlstromaded5f72011-10-07 17:15:04 -07001460 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001461 const char* image_filename = NULL;
1462 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001463 std::string elf_filename_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001464 std::ostream* os = &std::cout;
1465 UniquePtr<std::ofstream> out;
Dave Allison404f59f2014-02-24 11:10:01 -08001466 bool dump_raw_mapping_table = false;
1467 bool dump_raw_gc_map = false;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001468
1469 for (int i = 0; i < argc; i++) {
1470 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001471 if (option.starts_with("--oat-file=")) {
1472 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001473 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001474 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001475 } else if (option.starts_with("--boot-image=")) {
1476 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Dave Allison404f59f2014-02-24 11:10:01 -08001477 } else if (option.starts_with("--dump:")) {
1478 if (option == "--dump:raw_mapping_table") {
1479 dump_raw_mapping_table = true;
1480 } else if (option == "--dump:raw_gc_map") {
1481 dump_raw_gc_map = true;
1482 } else {
1483 fprintf(stderr, "Unknown argument %s\n", option.data());
1484 usage();
1485 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001486 } else if (option.starts_with("--output=")) {
1487 const char* filename = option.substr(strlen("--output=")).data();
1488 out.reset(new std::ofstream(filename));
1489 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001490 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001491 usage();
1492 }
1493 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001494 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001495 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001496 usage();
1497 }
1498 }
1499
Brian Carlstromaded5f72011-10-07 17:15:04 -07001500 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001501 fprintf(stderr, "Either --image or --oat must be specified\n");
1502 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001503 }
1504
Brian Carlstromaded5f72011-10-07 17:15:04 -07001505 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001506 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1507 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001508 }
1509
1510 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 }
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +00001518 OatDumper oat_dumper(*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.
Brian Carlstromc0a1b182014-03-04 23:19:06 -08001530 NoopCompilerCallbacks callbacks;
1531 options.push_back(std::make_pair("compilercallbacks", &callbacks));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001532
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001533 if (boot_image_filename != NULL) {
1534 boot_image_option += "-Ximage:";
1535 boot_image_option += boot_image_filename;
1536 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001537 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001538 if (image_filename != NULL) {
1539 image_option += "-Ximage:";
1540 image_option += image_filename;
1541 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1542 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001543
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001544 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001545 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001546 return EXIT_FAILURE;
1547 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001548 UniquePtr<Runtime> runtime(Runtime::Current());
1549 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1550 // give it away now and then switch to a more managable ScopedObjectAccess.
1551 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1552 ScopedObjectAccess soa(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -07001553 gc::Heap* heap = Runtime::Current()->GetHeap();
1554 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001555 CHECK(image_space != NULL);
1556 const ImageHeader& image_header = image_space->GetImageHeader();
1557 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001558 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001559 return EXIT_FAILURE;
1560 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001561 ImageDumper image_dumper(os, *image_space, image_header,
1562 dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001563 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001564 return EXIT_SUCCESS;
1565}
1566
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001567} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001568
1569int main(int argc, char** argv) {
1570 return art::oatdump(argc, argv);
1571}