blob: 0ba3206df6ccfaa8bf97bb78eb56a4c8ece15cd9 [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 Carlstrom0f5baa02014-05-22 11:54:18 -070079 " --instruction-set=(arm|arm64|mips|x86|x86_64): for locating the image file based on the image location\n"
80 " set.\n"
81 " Example: --instruction-set=x86\n"
82 " Default: %s\n"
83 "\n",
84 GetInstructionSetString(kRuntimeISA));
85 fprintf(stderr,
Brian Carlstrom27ec9612011-09-19 20:20:38 -070086 " --output=<file> may be used to send the output to a file.\n"
87 " Example: --output=/tmp/oatdump.txt\n"
88 "\n");
Dave Allison404f59f2014-02-24 11:10:01 -080089 fprintf(stderr,
90 " --dump:[raw_mapping_table|raw_gc_map]\n"
91 " Example: --dump:raw_gc_map\n"
92 " Default: neither\n"
93 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070094 exit(EXIT_FAILURE);
95}
96
Ian Rogersff1ed472011-09-20 13:46:24 -070097const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080098 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070099 "kImtConflictMethod",
100 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -0700101 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -0700102 "kRefsOnlySaveMethod",
103 "kRefsAndArgsSaveMethod",
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700104 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700105 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -0700106};
107
Elliott Hughese3c845c2012-02-28 17:23:01 -0800108class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700109 public:
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000110 explicit OatDumper(const OatFile& oat_file, bool dump_raw_mapping_table, bool dump_raw_gc_map)
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
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800137#define DUMP_OAT_HEADER_OFFSET(label, offset) \
138 os << label " OFFSET:\n"; \
139 os << StringPrintf("0x%08x", oat_header.offset()); \
140 if (oat_header.offset() != 0) { \
141 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
142 } \
143 os << StringPrintf("\n\n");
144
145 DUMP_OAT_HEADER_OFFSET("EXECUTABLE", GetExecutableOffset);
146 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO INTERPRETER BRIDGE",
147 GetInterpreterToInterpreterBridgeOffset);
148 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE",
149 GetInterpreterToCompiledCodeBridgeOffset);
150 DUMP_OAT_HEADER_OFFSET("JNI DLSYM LOOKUP",
151 GetJniDlsymLookupOffset);
152 DUMP_OAT_HEADER_OFFSET("PORTABLE IMT CONFLICT TRAMPOLINE",
153 GetPortableImtConflictTrampolineOffset);
154 DUMP_OAT_HEADER_OFFSET("PORTABLE RESOLUTION TRAMPOLINE",
155 GetPortableResolutionTrampolineOffset);
156 DUMP_OAT_HEADER_OFFSET("PORTABLE TO INTERPRETER BRIDGE",
157 GetPortableToInterpreterBridgeOffset);
158 DUMP_OAT_HEADER_OFFSET("QUICK GENERIC JNI TRAMPOLINE",
159 GetQuickGenericJniTrampolineOffset);
160 DUMP_OAT_HEADER_OFFSET("QUICK IMT CONFLICT TRAMPOLINE",
161 GetQuickImtConflictTrampolineOffset);
162 DUMP_OAT_HEADER_OFFSET("QUICK RESOLUTION TRAMPOLINE",
163 GetQuickResolutionTrampolineOffset);
164 DUMP_OAT_HEADER_OFFSET("QUICK TO INTERPRETER BRIDGE",
165 GetQuickToInterpreterBridgeOffset);
166#undef DUMP_OAT_HEADER_OFFSET
Brian Carlstromaded5f72011-10-07 17:15:04 -0700167
Brian Carlstrom28db0122012-10-18 16:20:41 -0700168 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
169 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
170
171 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800172 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700173
174 os << "IMAGE FILE LOCATION:\n";
175 const std::string image_file_location(oat_header.GetImageFileLocation());
176 os << image_file_location;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700177 os << "\n\n";
178
Ian Rogers30fab402012-01-23 15:43:46 -0800179 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800180 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700181
Ian Rogers30fab402012-01-23 15:43:46 -0800182 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800183 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700184
185 os << std::flush;
186
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800187 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
188 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700189 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800190 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700191 }
192 }
193
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800194 size_t ComputeSize(const void* oat_data) {
195 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
196 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
197 return 0; // Address not in oat file
198 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800199 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
200 reinterpret_cast<uintptr_t>(oat_file_.Begin());
201 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800202 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800203 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800204 return end_offset - begin_offset;
205 }
206
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700207 InstructionSet GetInstructionSet() {
208 return oat_file_.GetOatHeader().GetInstructionSet();
209 }
210
Ian Rogersef7d42f2014-01-06 12:55:46 -0800211 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800212 MethodHelper mh(m);
213 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
214 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700215 CHECK(oat_dex_file != nullptr);
216 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700217 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700218 if (dex_file.get() == nullptr) {
219 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
220 << "': " << error_msg;
221 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700222 const DexFile::ClassDef* class_def =
223 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
224 if (class_def != NULL) {
225 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100226 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800227 size_t method_index = m->GetMethodIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100228 return oat_class.GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800229 }
230 }
231 }
232 return NULL;
233 }
234
Brian Carlstromaded5f72011-10-07 17:15:04 -0700235 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800236 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800237 // We don't know the length of the code for each method, but we need to know where to stop
238 // when disassembling. What we do know is that a region of code will be followed by some other
239 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
240 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800241 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
242 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800243 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700244 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700245 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700246 if (dex_file.get() == nullptr) {
247 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
248 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800249 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800250 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800251 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800252 for (size_t class_def_index = 0;
253 class_def_index < dex_file->NumClassDefs();
254 class_def_index++) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800255 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100256 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800257 const byte* class_data = dex_file->GetClassData(class_def);
258 if (class_data != NULL) {
259 ClassDataItemIterator it(*dex_file, class_data);
260 SkipAllFields(it);
261 uint32_t class_method_index = 0;
262 while (it.HasNextDirectMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100263 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800264 it.Next();
265 }
266 while (it.HasNextVirtualMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100267 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800268 it.Next();
269 }
270 }
271 }
272 }
273
274 // If the last thing in the file is code for a method, there won't be an offset for the "next"
275 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
276 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800277 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800278 }
279
280 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800281 uint32_t code_offset = oat_method.GetCodeOffset();
282 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
283 code_offset &= ~0x1;
284 }
285 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800286 offsets_.insert(oat_method.GetMappingTableOffset());
287 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700288 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800289 }
290
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800291 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700292 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800293 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800294 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700295
296 // Create the verifier early.
297
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700298 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700299 std::unique_ptr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800300 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700301 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700302 return;
303 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800304 for (size_t class_def_index = 0;
305 class_def_index < dex_file->NumClassDefs();
306 class_def_index++) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700307 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
308 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100309 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700310 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100311 << " (" << oat_class.GetStatus() << ")"
312 << " (" << oat_class.GetType() << ")\n";
313 // TODO: include bitmap here if type is kOatClassSomeCompiled?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800314 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
315 std::ostream indented_os(&indent_filter);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100316 DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700317 }
318
319 os << std::flush;
320 }
321
Elliott Hughese3c845c2012-02-28 17:23:01 -0800322 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700323 while (it.HasNextStaticField()) {
324 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700325 }
Ian Rogers0571d352011-11-03 19:51:38 -0700326 while (it.HasNextInstanceField()) {
327 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700328 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800329 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700330
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800331 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
332 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800333 const byte* class_data = dex_file.GetClassData(class_def);
334 if (class_data == NULL) { // empty class such as a marker interface?
335 return;
336 }
337 ClassDataItemIterator it(dex_file, class_data);
338 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800339 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700340 while (it.HasNextDirectMethod()) {
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 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800348 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700349 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800350 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
351 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700352 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700353 }
Ian Rogers0571d352011-11-03 19:51:38 -0700354 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700355 os << std::flush;
356 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800357
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700358 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
359 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800360 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800361 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
362 uint32_t method_access_flags) {
363 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700364 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
365 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800366 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
367 std::ostream indent1_os(&indent1_filter);
368 {
369 indent1_os << "DEX CODE:\n";
370 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
371 std::ostream indent2_os(&indent2_filter);
372 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700373 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800374 if (Runtime::Current() != NULL) {
375 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
376 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
377 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700378 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
379 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700380 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800381 {
382 indent1_os << "OAT DATA:\n";
383 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
384 std::ostream indent2_os(&indent2_filter);
385
386 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
387 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
388 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
389 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
390 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
391 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
392 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
393 DumpVmap(indent2_os, oat_method);
394 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
395 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800396 if (dump_raw_mapping_table_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800397 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
398 std::ostream indent3_os(&indent3_filter);
399 DumpMappingTable(indent3_os, oat_method);
400 }
401 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
402 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800403 if (dump_raw_gc_map_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800404 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
405 std::ostream indent3_os(&indent3_filter);
406 DumpGcMap(indent3_os, oat_method, code_item);
407 }
408 }
409 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800410 const void* code = oat_method.GetQuickCode();
411 uint32_t code_size = oat_method.GetQuickCodeSize();
412 if (code == nullptr) {
413 code = oat_method.GetPortableCode();
414 code_size = oat_method.GetPortableCodeSize();
415 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800416 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800417 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800418 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800419 code_size,
420 code != nullptr ? "..." : "");
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800421 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
422 std::ostream indent2_os(&indent2_filter);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700423
424 Runtime* runtime = Runtime::Current();
425 if (runtime != nullptr) {
426 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700427 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700428 Handle<mirror::DexCache> dex_cache(
429 hs.NewHandle(runtime->GetClassLinker()->FindDexCache(dex_file)));
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700430 NullHandle<mirror::ClassLoader> class_loader;
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800431 verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def,
432 code_item, dex_method_idx, nullptr, method_access_flags,
433 true, true);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700434 verifier.Verify();
435 DumpCode(indent2_os, &verifier, oat_method, code_item);
436 } else {
437 DumpCode(indent2_os, nullptr, oat_method, code_item);
438 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800439 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700440 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800441
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800442 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
443 if (spill_mask == 0) {
444 return;
445 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800446 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800447 for (size_t i = 0; i < 32; i++) {
448 if ((spill_mask & (1 << i)) != 0) {
449 if (is_float) {
450 os << "fr" << i;
451 } else {
452 os << "r" << i;
453 }
454 spill_mask ^= 1 << i; // clear bit
455 if (spill_mask != 0) {
456 os << ", ";
457 } else {
458 break;
459 }
460 }
461 }
462 os << ")";
463 }
464
Ian Rogersb23a7722012-10-09 16:54:26 -0700465 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700466 const uint8_t* raw_table = oat_method.GetVmapTable();
467 if (raw_table != NULL) {
468 const VmapTable vmap_table(raw_table);
469 bool first = true;
470 bool processing_fp = false;
471 uint32_t spill_mask = oat_method.GetCoreSpillMask();
472 for (size_t i = 0; i < vmap_table.Size(); i++) {
473 uint16_t dex_reg = vmap_table[i];
474 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
475 processing_fp ? kFloatVReg : kIntVReg);
476 os << (first ? "v" : ", v") << dex_reg;
477 if (!processing_fp) {
478 os << "/r" << cpu_reg;
479 } else {
480 os << "/fr" << cpu_reg;
481 }
482 first = false;
483 if (!processing_fp && dex_reg == 0xFFFF) {
484 processing_fp = true;
485 spill_mask = oat_method.GetFpSpillMask();
486 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800487 }
Ian Rogers1809a722013-08-09 22:05:32 -0700488 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800489 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800490 }
491
Ian Rogersb23a7722012-10-09 16:54:26 -0700492 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800493 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700494 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700495 if (raw_table != NULL) {
496 const VmapTable vmap_table(raw_table);
497 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700498 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800499 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
500 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
501 : oat_method.GetCoreSpillMask();
502 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700503 } else {
504 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
505 oat_method.GetFpSpillMask(),
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000506 oat_method.GetFrameSizeInBytes(), reg,
507 GetInstructionSet());
Ian Rogersb23a7722012-10-09 16:54:26 -0700508 os << "[sp + #" << offset << "]";
509 }
510 }
511 }
512
Ian Rogersef7d42f2014-01-06 12:55:46 -0800513 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
514 const DexFile::CodeItem* code_item,
515 size_t num_regs, const uint8_t* reg_bitmap) {
516 bool first = true;
517 for (size_t reg = 0; reg < num_regs; reg++) {
518 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
519 if (first) {
520 os << " v" << reg << " (";
521 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
522 os << ")";
523 first = false;
524 } else {
525 os << ", v" << reg << " (";
526 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
527 os << ")";
528 }
529 }
530 }
531 if (first) {
532 os << "No registers in GC map\n";
533 } else {
534 os << "\n";
535 }
536 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700537 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
538 const DexFile::CodeItem* code_item) {
539 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800540 if (gc_map_raw == nullptr) {
541 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800542 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800543 const void* quick_code = oat_method.GetQuickCode();
544 if (quick_code != nullptr) {
545 NativePcOffsetToReferenceMap map(gc_map_raw);
546 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
547 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
548 map.GetNativePcOffset(entry);
549 os << StringPrintf("%p", native_pc);
550 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800551 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800552 } else {
553 const void* portable_code = oat_method.GetPortableCode();
554 CHECK(portable_code != nullptr);
555 verifier::DexPcToReferenceMap map(gc_map_raw);
556 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
557 uint32_t dex_pc = map.GetDexPc(entry);
558 os << StringPrintf("0x%08x", dex_pc);
559 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
560 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800561 }
562 }
563
564 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800565 const void* quick_code = oat_method.GetQuickCode();
566 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800567 return;
568 }
Ian Rogers1809a722013-08-09 22:05:32 -0700569 MappingTable table(oat_method.GetMappingTable());
570 if (table.TotalSize() != 0) {
571 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
572 std::ostream indent_os(&indent_filter);
573 if (table.PcToDexSize() != 0) {
574 typedef MappingTable::PcToDexIterator It;
575 os << "suspend point mappings {\n";
576 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
577 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
578 }
579 os << "}\n";
580 }
581 if (table.DexToPcSize() != 0) {
582 typedef MappingTable::DexToPcIterator It;
583 os << "catch entry mappings {\n";
584 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
585 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
586 }
587 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800588 }
589 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800590 }
591
Ian Rogers1809a722013-08-09 22:05:32 -0700592 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
593 size_t offset, bool suspend_point_mapping) {
594 MappingTable table(oat_method.GetMappingTable());
595 if (suspend_point_mapping && table.PcToDexSize() > 0) {
596 typedef MappingTable::PcToDexIterator It;
597 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
598 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700599 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700600 return cur.DexPc();
601 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800602 }
Ian Rogers1809a722013-08-09 22:05:32 -0700603 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
604 typedef MappingTable::DexToPcIterator It;
605 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
606 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700607 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700608 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700609 }
610 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800611 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800612 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700613 }
614
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800615 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
616 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700617 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
618 if (gc_map_raw != NULL) {
619 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800620 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700621 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800622 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700623 bool first = true;
624 for (size_t reg = 0; reg < num_regs; reg++) {
625 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
626 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800627 os << "GC map objects: v" << reg << " (";
628 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700629 os << ")";
630 first = false;
631 } else {
632 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800633 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700634 os << ")";
635 }
636 }
637 }
638 if (!first) {
639 os << "\n";
640 }
641 }
642 }
643 }
644
Mathieu Chartier590fee92013-09-13 13:46:47 -0700645 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
646 const OatFile::OatMethod& oat_method,
647 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
648 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800649 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800650 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800651 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
652 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
653 if (kind != kUndefined) {
654 if (first) {
655 os << "VRegs: v";
656 first = false;
657 } else {
658 os << ", v";
659 }
660 os << reg << " (";
661 switch (kind) {
662 case kImpreciseConstant:
663 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
664 DescribeVReg(os, oat_method, code_item, reg, kind);
665 break;
666 case kConstant:
667 os << "Constant: " << kinds.at((reg * 2) + 1);
668 break;
669 default:
670 DescribeVReg(os, oat_method, code_item, reg, kind);
671 break;
672 }
673 os << ")";
674 }
675 }
676 if (!first) {
677 os << "\n";
678 }
679 }
680
681
Ian Rogersb23a7722012-10-09 16:54:26 -0700682 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
683 if (code_item != NULL) {
684 size_t i = 0;
685 while (i < code_item->insns_size_in_code_units_) {
686 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800687 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700688 i += instruction->SizeInCodeUnits();
689 }
690 }
691 }
692
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800693 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700694 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800695 uint32_t method_access_flags) {
696 if ((method_access_flags & kAccNative) == 0) {
697 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700698 StackHandleScope<2> hs(soa.Self());
699 Handle<mirror::DexCache> dex_cache(
700 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file)));
701 auto class_loader(hs.NewHandle<mirror::ClassLoader>(nullptr));
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800702 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700703 class_loader, &class_def, code_item, nullptr,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800704 method_access_flags);
705 }
706 }
707
Mathieu Chartier590fee92013-09-13 13:46:47 -0700708 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
709 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800710 const void* portable_code = oat_method.GetPortableCode();
711 const void* quick_code = oat_method.GetQuickCode();
712
713 size_t code_size = oat_method.GetQuickCodeSize();
714 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800715 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700716 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800717 } else if (quick_code != nullptr) {
718 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
719 size_t offset = 0;
720 while (offset < code_size) {
721 DumpMappingAtOffset(os, oat_method, offset, false);
722 offset += disassembler_->Dump(os, quick_native_pc + offset);
723 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
724 if (dex_pc != DexFile::kDexNoIndex) {
725 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
726 if (verifier != nullptr) {
727 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
728 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800729 }
730 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800731 } else {
732 CHECK(portable_code != nullptr);
733 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700734 }
735 }
736
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800737 const OatFile& oat_file_;
738 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Dave Allison404f59f2014-02-24 11:10:01 -0800739 bool dump_raw_mapping_table_;
740 bool dump_raw_gc_map_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800741 std::set<uintptr_t> offsets_;
Ian Rogers700a4022014-05-19 16:49:03 -0700742 std::unique_ptr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700743};
744
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800745class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700746 public:
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800747 explicit ImageDumper(std::ostream* os, gc::space::ImageSpace& image_space,
Dave Allison404f59f2014-02-24 11:10:01 -0800748 const ImageHeader& image_header, bool dump_raw_mapping_table,
749 bool dump_raw_gc_map)
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800750 : os_(os), image_space_(image_space), image_header_(image_header),
Dave Allison404f59f2014-02-24 11:10:01 -0800751 dump_raw_mapping_table_(dump_raw_mapping_table),
752 dump_raw_gc_map_(dump_raw_gc_map) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700753
Ian Rogersb726dcb2012-09-05 08:57:23 -0700754 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800755 std::ostream& os = *os_;
756 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700757
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800758 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700759
Mathieu Chartier31e89252013-08-28 11:29:12 -0700760 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
761 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
762
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800763 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700764
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800765 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700766
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800767 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
768
769 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
770
771 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800772
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800773 {
774 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
775 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
776 std::ostream indent1_os(&indent1_filter);
777 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
778 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
779 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
780 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800781 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800782 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
783 if (image_root_object->IsObjectArray()) {
784 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
785 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800786 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -0800787 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800788 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800789 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -0800790 size_t run = 0;
791 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
792 if (value == image_root_object_array->Get(j)) {
793 run++;
794 } else {
795 break;
796 }
797 }
798 if (run == 0) {
799 indent2_os << StringPrintf("%d: ", i);
800 } else {
801 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
802 i = i + run;
803 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800804 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800805 PrettyObjectValue(indent2_os, value->GetClass(), value);
806 } else {
807 indent2_os << i << ": null\n";
808 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800809 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700810 }
811 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700812 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800813 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700814
Brian Carlstromaded5f72011-10-07 17:15:04 -0700815 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800816 std::string image_filename = image_space_.GetImageFilename();
817 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800818 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800819 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700820 std::string error_msg;
821 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700822 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700823 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700824 return;
825 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800826 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700827
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800828 stats_.oat_file_bytes = oat_file->Size();
829
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000830 oat_dumper_.reset(new OatDumper(*oat_file, dump_raw_mapping_table_,
Dave Allison404f59f2014-02-24 11:10:01 -0800831 dump_raw_gc_map_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800832
Mathieu Chartier02e25112013-08-14 16:14:24 -0700833 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700834 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700835 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
836 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700837 }
838
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800839 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700840
841 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700842 gc::Heap* heap = Runtime::Current()->GetHeap();
843 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700844 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700845 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800846 {
847 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
848 heap->FlushAllocStack();
849 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -0800850 // Since FlushAllocStack() above resets the (active) allocation
851 // stack. Need to revoke the thread-local allocation stacks that
852 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800853 {
854 self->TransitionFromRunnableToSuspended(kNative);
855 ThreadList* thread_list = Runtime::Current()->GetThreadList();
856 thread_list->SuspendAll();
857 heap->RevokeAllThreadLocalAllocationStacks(self);
858 thread_list->ResumeAll();
859 self->TransitionFromSuspendedToRunnable();
860 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700861 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800862 {
863 std::ostream* saved_os = os_;
864 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
865 std::ostream indent_os(&indent_filter);
866 os_ = &indent_os;
867 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700868 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800869 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700870 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800871 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
872 indent_os << "\n";
873 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700874 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800875 // Dump the large objects separately.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700876 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800877 indent_os << "\n";
878 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700879 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800880 os << "STATS:\n" << std::flush;
Ian Rogers700a4022014-05-19 16:49:03 -0700881 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700882 if (file.get() == NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800883 LOG(WARNING) << "Failed to find image in " << image_filename;
Brian Carlstrom6f277752013-09-30 17:56:45 -0700884 }
885 if (file.get() != NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800886 stats_.file_bytes = file->GetLength();
Brian Carlstrom6f277752013-09-30 17:56:45 -0700887 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800888 size_t header_bytes = sizeof(ImageHeader);
889 stats_.header_bytes = header_bytes;
890 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
891 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700892 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
893 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800894 stats_.Dump(os);
895 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800896
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800897 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800898
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800899 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700900 }
901
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700902 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800903 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700904 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800905 CHECK(type != NULL);
906 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800907 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800908 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800909 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800910 os << StringPrintf("%p String: %s\n", string,
911 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700912 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800913 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800914 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700915 } else if (type->IsArtFieldClass()) {
916 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800917 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700918 } else if (type->IsArtMethodClass()) {
919 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800920 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800921 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800922 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800923 }
924 }
925
Brian Carlstromea46f952013-07-30 01:26:50 -0700926 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700927 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800928 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700929 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800930 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700931 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800932 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700933 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800934 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700935 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800936 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700937 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800938 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700939 } else {
940 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800941 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700942 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800943 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700944 // Get the value, don't compute the type unless it is non-null as we don't want
945 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800946 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700947 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800948 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700949 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700950 // Grab the field type without causing resolution.
951 mirror::Class* field_type = fh.GetType(false);
952 if (field_type != NULL) {
953 PrettyObjectValue(os, field_type, value);
954 } else {
955 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
956 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700957 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800958 }
959 }
960
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800961 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700962 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800963 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800964 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800965 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800966 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700967 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800968 if (fields != NULL) {
969 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700970 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800971 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800972 }
973 }
974 }
975
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800976 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800977 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700978 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800979
Ian Rogersef7d42f2014-01-06 12:55:46 -0800980 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700981 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800982 const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
983 if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
984 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800985 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700986 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800987 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700988 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800989 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800990 }
991
Ian Rogersef7d42f2014-01-06 12:55:46 -0800992 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700993 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800994 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
995 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700996 return 0;
997 }
998 return oat_code_begin[-1];
999 }
1000
Ian Rogersef7d42f2014-01-06 12:55:46 -08001001 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001002 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001003 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001004 if (oat_code_begin == NULL) {
1005 return NULL;
1006 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001007 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001008 }
1009
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001010 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001011 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001012 DCHECK(obj != NULL);
1013 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001014 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001015 if (!state->InDumpSpace(obj)) {
1016 return;
1017 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001018
1019 size_t object_bytes = obj->SizeOf();
1020 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1021 state->stats_.object_bytes += object_bytes;
1022 state->stats_.alignment_bytes += alignment_bytes;
1023
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001024 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001025 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001026 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001027 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1028 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001029 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001030 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001031 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1032 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -07001033 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001034 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001035 PrettyField(obj->AsArtField()).c_str());
1036 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001037 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001038 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001039 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001040 os << StringPrintf("%p: java.lang.String %s\n", obj,
1041 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001042 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001043 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001044 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001045 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1046 std::ostream indent_os(&indent_filter);
1047 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001048 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001049 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001050 int32_t length = obj_array->GetLength();
1051 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001052 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001053 size_t run = 0;
1054 for (int32_t j = i + 1; j < length; j++) {
1055 if (value == obj_array->Get(j)) {
1056 run++;
1057 } else {
1058 break;
1059 }
1060 }
1061 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001062 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001063 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001064 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001065 i = i + run;
1066 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001067 mirror::Class* value_class =
1068 (value == NULL) ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001069 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001070 }
1071 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001072 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001073 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001074 indent_os << "STATICS:\n";
1075 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1076 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001077 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001078 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001079 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001080 }
1081 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001082 } else if (obj->IsArtMethod()) {
1083 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001084 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001085 // TODO: portable dumping.
1086 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1087 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001088 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001089 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1090 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1091 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001092 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001093 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001094 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001095 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1096 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001097 }
Ian Rogers19846512012-02-24 11:42:47 -08001098 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001099 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1100 MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001101 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001102 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001103 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001104 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001105 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001106 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001107
Elliott Hughesa0e18062012-04-13 15:59:59 -07001108 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001109 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001110 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001111 state->stats_.gc_map_bytes += gc_map_bytes;
1112 }
1113
1114 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001115 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001116 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001117 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1118 }
1119
1120 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001121 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001122 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001123 state->stats_.vmap_table_bytes += vmap_table_bytes;
1124 }
1125
Ian Rogersef7d42f2014-01-06 12:55:46 -08001126 // TODO: portable dumping.
1127 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1128 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1129 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1130 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001131 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001132 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001133 if (method->IsConstructor()) {
1134 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001135 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001136 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001137 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001138 }
1139 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001140 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001141 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001142 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001143 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001144
Ian Rogersef7d42f2014-01-06 12:55:46 -08001145 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001146 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1147 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001148
1149 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001150 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001151
1152 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001153 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001154 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001155 }
1156 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001157 state->stats_.Update(obj_class->GetDescriptor().c_str(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001158 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001159
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001160 std::set<const void*> already_seen_;
1161 // Compute the size of the given data within the oat file and whether this is the first time
1162 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001163 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001164 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001165 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001166 already_seen_.insert(oat_data);
1167 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001168 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001169 }
1170 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001171 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001172
1173 public:
1174 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001175 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001176 size_t file_bytes;
1177
1178 size_t header_bytes;
1179 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001180 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001181 size_t alignment_bytes;
1182
1183 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001184 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001185 size_t managed_to_native_code_bytes;
1186 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001187 size_t class_initializer_code_bytes;
1188 size_t large_initializer_code_bytes;
1189 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001190
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001191 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001192 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001193 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001194
1195 size_t dex_instruction_bytes;
1196
Brian Carlstromea46f952013-07-30 01:26:50 -07001197 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001198 std::vector<size_t> method_outlier_size;
1199 std::vector<double> method_outlier_expansion;
Ian Rogers700a4022014-05-19 16:49:03 -07001200 std::vector<std::pair<std::string, size_t>> oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001201
1202 explicit Stats()
1203 : oat_file_bytes(0),
1204 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001205 header_bytes(0),
1206 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001207 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001208 alignment_bytes(0),
1209 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001210 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001211 managed_to_native_code_bytes(0),
1212 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001213 class_initializer_code_bytes(0),
1214 large_initializer_code_bytes(0),
1215 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001216 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001217 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001218 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001219 dex_instruction_bytes(0) {}
1220
Elliott Hughesa0e18062012-04-13 15:59:59 -07001221 struct SizeAndCount {
1222 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1223 size_t bytes;
1224 size_t count;
1225 };
1226 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1227 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001228
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001229 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001230 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1231 if (it != sizes_and_counts.end()) {
1232 it->second.bytes += object_bytes;
1233 it->second.count += 1;
1234 } else {
1235 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1236 }
1237 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001238
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001239 double PercentOfOatBytes(size_t size) {
1240 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1241 }
1242
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001243 double PercentOfFileBytes(size_t size) {
1244 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1245 }
1246
1247 double PercentOfObjectBytes(size_t size) {
1248 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1249 }
1250
Brian Carlstromea46f952013-07-30 01:26:50 -07001251 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001252 method_outlier_size.push_back(total_size);
1253 method_outlier_expansion.push_back(expansion);
1254 method_outlier.push_back(method);
1255 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001256
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001257 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001258 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001259 size_t sum_of_sizes = 0;
1260 size_t sum_of_sizes_squared = 0;
1261 size_t sum_of_expansion = 0;
1262 size_t sum_of_expansion_squared = 0;
1263 size_t n = method_outlier_size.size();
1264 for (size_t i = 0; i < n; i++) {
1265 size_t cur_size = method_outlier_size[i];
1266 sum_of_sizes += cur_size;
1267 sum_of_sizes_squared += cur_size * cur_size;
1268 double cur_expansion = method_outlier_expansion[i];
1269 sum_of_expansion += cur_expansion;
1270 sum_of_expansion_squared += cur_expansion * cur_expansion;
1271 }
1272 size_t size_mean = sum_of_sizes / n;
1273 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1274 double expansion_mean = sum_of_expansion / n;
1275 double expansion_variance =
1276 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1277
1278 // Dump methods whose size is a certain number of standard deviations from the mean
1279 size_t dumped_values = 0;
1280 size_t skipped_values = 0;
1281 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1282 size_t cur_size_variance = i * i * size_variance;
1283 bool first = true;
1284 for (size_t j = 0; j < n; j++) {
1285 size_t cur_size = method_outlier_size[j];
1286 if (cur_size > size_mean) {
1287 size_t cur_var = cur_size - size_mean;
1288 cur_var = cur_var * cur_var;
1289 if (cur_var > cur_size_variance) {
1290 if (dumped_values > 20) {
1291 if (i == 1) {
1292 skipped_values++;
1293 } else {
1294 i = 2; // jump to counting for 1 standard deviation
1295 break;
1296 }
1297 } else {
1298 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001299 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001300 first = false;
1301 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001302 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001303 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001304 method_outlier_size[j] = 0; // don't consider this method again
1305 dumped_values++;
1306 }
1307 }
1308 }
1309 }
1310 }
1311 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001312 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001313 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001314 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001315 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001316
1317 // Dump methods whose expansion is a certain number of standard deviations from the mean
1318 dumped_values = 0;
1319 skipped_values = 0;
1320 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1321 double cur_expansion_variance = i * i * expansion_variance;
1322 bool first = true;
1323 for (size_t j = 0; j < n; j++) {
1324 double cur_expansion = method_outlier_expansion[j];
1325 if (cur_expansion > expansion_mean) {
1326 size_t cur_var = cur_expansion - expansion_mean;
1327 cur_var = cur_var * cur_var;
1328 if (cur_var > cur_expansion_variance) {
1329 if (dumped_values > 20) {
1330 if (i == 1) {
1331 skipped_values++;
1332 } else {
1333 i = 2; // jump to counting for 1 standard deviation
1334 break;
1335 }
1336 } else {
1337 if (first) {
1338 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001339 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001340 first = false;
1341 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001342 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001343 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001344 method_outlier_expansion[j] = 0.0; // don't consider this method again
1345 dumped_values++;
1346 }
1347 }
1348 }
1349 }
1350 }
1351 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001352 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001353 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001354 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001355 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001356 }
1357
Ian Rogersb726dcb2012-09-05 08:57:23 -07001358 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001359 {
1360 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1361 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1362 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1363 std::ostream indent_os(&indent_filter);
1364 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1365 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001366 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001367 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1368 header_bytes, PercentOfFileBytes(header_bytes),
1369 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001370 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001371 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1372 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001373 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001374 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001375
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001376 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001377 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001378 for (const auto& sizes_and_count : sizes_and_counts) {
1379 const std::string& descriptor(sizes_and_count.first);
1380 double average = static_cast<double>(sizes_and_count.second.bytes) /
1381 static_cast<double>(sizes_and_count.second.count);
1382 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001383 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001384 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001385 descriptor.c_str(), sizes_and_count.second.bytes,
1386 sizes_and_count.second.count, average, percent);
1387 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001388 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001389 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001390 CHECK_EQ(object_bytes, object_bytes_total);
1391
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001392 os << StringPrintf("oat_file_bytes = %8zd\n"
1393 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1394 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1395 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1396 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1397 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1398 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001399 oat_file_bytes,
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001400 managed_code_bytes,
1401 PercentOfOatBytes(managed_code_bytes),
1402 managed_to_native_code_bytes,
1403 PercentOfOatBytes(managed_to_native_code_bytes),
1404 native_to_managed_code_bytes,
1405 PercentOfOatBytes(native_to_managed_code_bytes),
1406 class_initializer_code_bytes,
1407 PercentOfOatBytes(class_initializer_code_bytes),
1408 large_initializer_code_bytes,
1409 PercentOfOatBytes(large_initializer_code_bytes),
1410 large_method_code_bytes,
1411 PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001412 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001413 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001414 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001415 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1416 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001417 }
1418
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001419 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1420 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1421 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001422 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1423 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1424 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001425 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001426
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001427 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1428 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001429 static_cast<double>(managed_code_bytes) /
1430 static_cast<double>(dex_instruction_bytes),
Elliott Hughesc073b072012-05-24 19:29:17 -07001431 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001432 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001433 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001434
1435 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001436 }
1437 } stats_;
1438
1439 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001440 enum {
1441 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1442 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1443 kLargeConstructorDexBytes = 4000,
1444 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1445 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1446 kLargeMethodDexBytes = 16000
1447 };
Ian Rogers700a4022014-05-19 16:49:03 -07001448 std::unique_ptr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001449 std::ostream* os_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001450 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001451 const ImageHeader& image_header_;
Dave Allison404f59f2014-02-24 11:10:01 -08001452 bool dump_raw_mapping_table_;
1453 bool dump_raw_gc_map_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001454
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001455 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001456};
1457
Elliott Hughes72395bf2012-04-24 13:45:26 -07001458static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001459 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001460
Brian Carlstrom78128a62011-09-15 17:21:19 -07001461 // Skip over argv[0].
1462 argv++;
1463 argc--;
1464
1465 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001466 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001467 usage();
1468 }
1469
Brian Carlstromaded5f72011-10-07 17:15:04 -07001470 const char* oat_filename = NULL;
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001471 const char* image_location = NULL;
1472 const char* boot_image_location = NULL;
1473 InstructionSet instruction_set = kRuntimeISA;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001474 std::string elf_filename_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001475 std::ostream* os = &std::cout;
Ian Rogers700a4022014-05-19 16:49:03 -07001476 std::unique_ptr<std::ofstream> out;
Dave Allison404f59f2014-02-24 11:10:01 -08001477 bool dump_raw_mapping_table = false;
1478 bool dump_raw_gc_map = false;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001479
1480 for (int i = 0; i < argc; i++) {
1481 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001482 if (option.starts_with("--oat-file=")) {
1483 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001484 } else if (option.starts_with("--image=")) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001485 image_location = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001486 } else if (option.starts_with("--boot-image=")) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001487 boot_image_location = option.substr(strlen("--boot-image=")).data();
1488 } else if (option.starts_with("--instruction-set=")) {
1489 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data();
1490 if (instruction_set_str == "arm") {
1491 instruction_set = kThumb2;
1492 } else if (instruction_set_str == "arm64") {
1493 instruction_set = kArm64;
1494 } else if (instruction_set_str == "mips") {
1495 instruction_set = kMips;
1496 } else if (instruction_set_str == "x86") {
1497 instruction_set = kX86;
1498 } else if (instruction_set_str == "x86_64") {
1499 instruction_set = kX86_64;
1500 }
Dave Allison404f59f2014-02-24 11:10:01 -08001501 } else if (option.starts_with("--dump:")) {
1502 if (option == "--dump:raw_mapping_table") {
1503 dump_raw_mapping_table = true;
1504 } else if (option == "--dump:raw_gc_map") {
1505 dump_raw_gc_map = true;
1506 } else {
1507 fprintf(stderr, "Unknown argument %s\n", option.data());
1508 usage();
1509 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001510 } else if (option.starts_with("--output=")) {
1511 const char* filename = option.substr(strlen("--output=")).data();
1512 out.reset(new std::ofstream(filename));
1513 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001514 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001515 usage();
1516 }
1517 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001518 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001519 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001520 usage();
1521 }
1522 }
1523
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001524 if (image_location == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001525 fprintf(stderr, "Either --image or --oat must be specified\n");
1526 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001527 }
1528
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001529 if (image_location != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001530 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1531 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001532 }
1533
1534 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001535 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001536 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001537 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001538 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001539 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001540 return EXIT_FAILURE;
1541 }
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +00001542 OatDumper oat_dumper(*oat_file, dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001543 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001544 return EXIT_SUCCESS;
1545 }
1546
Brian Carlstrom78128a62011-09-15 17:21:19 -07001547 Runtime::Options options;
1548 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001549 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001550 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001551 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001552
1553 // We are more like a compiler than a run-time. We don't want to execute code.
Brian Carlstromc0a1b182014-03-04 23:19:06 -08001554 NoopCompilerCallbacks callbacks;
1555 options.push_back(std::make_pair("compilercallbacks", &callbacks));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001556
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001557 if (boot_image_location != NULL) {
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001558 boot_image_option += "-Ximage:";
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001559 boot_image_option += boot_image_location;
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001560 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001561 }
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001562 if (image_location != NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001563 image_option += "-Ximage:";
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001564 image_option += image_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001565 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1566 }
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001567 options.push_back(
1568 std::make_pair("imageinstructionset",
1569 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set))));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001570
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001571 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001572 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001573 return EXIT_FAILURE;
1574 }
Ian Rogers700a4022014-05-19 16:49:03 -07001575 std::unique_ptr<Runtime> runtime(Runtime::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001576 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
Ian Rogersb9beb2e2014-05-09 16:57:40 -07001577 // give it away now and then switch to a more manageable ScopedObjectAccess.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001578 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1579 ScopedObjectAccess soa(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -07001580 gc::Heap* heap = Runtime::Current()->GetHeap();
1581 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001582 CHECK(image_space != NULL);
1583 const ImageHeader& image_header = image_space->GetImageHeader();
1584 if (!image_header.IsValid()) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001585 fprintf(stderr, "Invalid image header %s\n", image_location);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001586 return EXIT_FAILURE;
1587 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001588 ImageDumper image_dumper(os, *image_space, image_header,
1589 dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001590 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001591 return EXIT_SUCCESS;
1592}
1593
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001594} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001595
1596int main(int argc, char** argv) {
1597 return art::oatdump(argc, argv);
1598}