blob: 2114ada0558d3d48ed52fda77a381c74bba2b95c [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 Rogers22d5e732014-07-15 22:23:51 -070032#include "field_helper.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080033#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070034#include "gc/space/image_space.h"
35#include "gc/space/large_object_space.h"
36#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070037#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080038#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070039#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070040#include "mirror/art_field-inl.h"
41#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/array-inl.h"
43#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/object-inl.h"
45#include "mirror/object_array-inl.h"
Brian Carlstromc0a1b182014-03-04 23:19:06 -080046#include "noop_compiler_callbacks.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080047#include "oat.h"
Vladimir Marko8a630572014-04-09 18:45:35 +010048#include "oat_file-inl.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
Alex Lighta59dd802014-07-02 16:28:08 -0700168 os << "IMAGE PATCH DELTA:\n" << oat_header.GetImagePatchDelta();
169
Brian Carlstrom28db0122012-10-18 16:20:41 -0700170 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
171 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
172
173 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800174 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700175
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700176 // Print the key-value store.
177 {
178 os << "KEY VALUE STORE:\n";
179 size_t index = 0;
180 const char* key;
181 const char* value;
182 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) {
183 os << key << " = " << value << "\n";
184 index++;
185 }
186 os << "\n";
187 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700188
Ian Rogers30fab402012-01-23 15:43:46 -0800189 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800190 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700191
Ian Rogers30fab402012-01-23 15:43:46 -0800192 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800193 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700194
195 os << std::flush;
196
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800197 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
198 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700199 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800200 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700201 }
202 }
203
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800204 size_t ComputeSize(const void* oat_data) {
205 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
206 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
207 return 0; // Address not in oat file
208 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800209 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
210 reinterpret_cast<uintptr_t>(oat_file_.Begin());
211 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800212 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800213 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800214 return end_offset - begin_offset;
215 }
216
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700217 InstructionSet GetInstructionSet() {
218 return oat_file_.GetOatHeader().GetInstructionSet();
219 }
220
Ian Rogersef7d42f2014-01-06 12:55:46 -0800221 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800222 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
223 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700224 CHECK(oat_dex_file != nullptr);
225 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700226 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700227 if (dex_file.get() == nullptr) {
228 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
229 << "': " << error_msg;
230 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700231 const DexFile::ClassDef* class_def =
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700232 dex_file->FindClassDef(m->GetDeclaringClassDescriptor());
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700233 if (class_def != NULL) {
234 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100235 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800236 size_t method_index = m->GetMethodIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100237 return oat_class.GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800238 }
239 }
240 }
241 return NULL;
242 }
243
Brian Carlstromaded5f72011-10-07 17:15:04 -0700244 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800245 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800246 // We don't know the length of the code for each method, but we need to know where to stop
247 // when disassembling. What we do know is that a region of code will be followed by some other
248 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
249 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800250 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
251 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800252 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700253 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700254 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700255 if (dex_file.get() == nullptr) {
256 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
257 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800258 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800259 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800260 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800261 for (size_t class_def_index = 0;
262 class_def_index < dex_file->NumClassDefs();
263 class_def_index++) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800264 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100265 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800266 const byte* class_data = dex_file->GetClassData(class_def);
267 if (class_data != NULL) {
268 ClassDataItemIterator it(*dex_file, class_data);
269 SkipAllFields(it);
270 uint32_t class_method_index = 0;
271 while (it.HasNextDirectMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100272 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800273 it.Next();
274 }
275 while (it.HasNextVirtualMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100276 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800277 it.Next();
278 }
279 }
280 }
281 }
282
283 // If the last thing in the file is code for a method, there won't be an offset for the "next"
284 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
285 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800286 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800287 }
288
289 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800290 uint32_t code_offset = oat_method.GetCodeOffset();
291 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
292 code_offset &= ~0x1;
293 }
294 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800295 offsets_.insert(oat_method.GetMappingTableOffset());
296 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700297 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800298 }
299
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800300 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700301 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800302 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800303 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700304
305 // Create the verifier early.
306
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700307 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700308 std::unique_ptr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800309 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700310 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700311 return;
312 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800313 for (size_t class_def_index = 0;
314 class_def_index < dex_file->NumClassDefs();
315 class_def_index++) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700316 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
317 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100318 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700319 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100320 << " (" << oat_class.GetStatus() << ")"
321 << " (" << oat_class.GetType() << ")\n";
322 // TODO: include bitmap here if type is kOatClassSomeCompiled?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800323 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
324 std::ostream indented_os(&indent_filter);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100325 DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700326 }
327
328 os << std::flush;
329 }
330
Elliott Hughese3c845c2012-02-28 17:23:01 -0800331 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700332 while (it.HasNextStaticField()) {
333 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700334 }
Ian Rogers0571d352011-11-03 19:51:38 -0700335 while (it.HasNextInstanceField()) {
336 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700337 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800338 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700339
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800340 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
341 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800342 const byte* class_data = dex_file.GetClassData(class_def);
343 if (class_data == NULL) { // empty class such as a marker interface?
344 return;
345 }
346 ClassDataItemIterator it(dex_file, class_data);
347 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800348 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700349 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800350 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700351 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800352 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
353 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700354 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700355 }
Ian Rogers0571d352011-11-03 19:51:38 -0700356 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800357 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700358 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800359 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
360 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700361 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700362 }
Ian Rogers0571d352011-11-03 19:51:38 -0700363 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700364 os << std::flush;
365 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800366
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700367 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
368 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800369 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800370 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
371 uint32_t method_access_flags) {
372 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700373 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
374 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800375 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700376 std::unique_ptr<std::ostream> indent1_os(new std::ostream(&indent1_filter));
377 Indenter indent2_filter(indent1_os->rdbuf(), kIndentChar, kIndentBy1Count);
378 std::unique_ptr<std::ostream> indent2_os(new std::ostream(&indent2_filter));
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800379 {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700380 *indent1_os << "DEX CODE:\n";
381 DumpDexCode(*indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700382 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800383 if (Runtime::Current() != NULL) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700384 *indent1_os << "VERIFIER TYPE ANALYSIS:\n";
385 DumpVerifier(*indent2_os, dex_method_idx, &dex_file, class_def, code_item,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700386 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700387 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800388 {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700389 *indent1_os << "OAT DATA:\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800390
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700391 *indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
392 *indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
393 DumpSpillMask(*indent2_os, oat_method.GetCoreSpillMask(), false);
394 *indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
395 DumpSpillMask(*indent2_os, oat_method.GetFpSpillMask(), true);
396 *indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
397 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
398 DumpVmap(*indent2_os, oat_method);
399 *indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
400 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800401 if (dump_raw_mapping_table_) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700402 Indenter indent3_filter(indent2_os->rdbuf(), kIndentChar, kIndentBy1Count);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800403 std::ostream indent3_os(&indent3_filter);
404 DumpMappingTable(indent3_os, oat_method);
405 }
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700406 *indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
407 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800408 if (dump_raw_gc_map_) {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700409 Indenter indent3_filter(indent2_os->rdbuf(), kIndentChar, kIndentBy1Count);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800410 std::ostream indent3_os(&indent3_filter);
411 DumpGcMap(indent3_os, oat_method, code_item);
412 }
413 }
414 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800415 const void* code = oat_method.GetQuickCode();
416 uint32_t code_size = oat_method.GetQuickCodeSize();
417 if (code == nullptr) {
418 code = oat_method.GetPortableCode();
419 code_size = oat_method.GetPortableCodeSize();
420 }
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700421 *indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800422 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800423 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800424 code_size,
425 code != nullptr ? "..." : "");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700426
427 Runtime* runtime = Runtime::Current();
428 if (runtime != nullptr) {
429 ScopedObjectAccess soa(Thread::Current());
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700430 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700431 Handle<mirror::DexCache> dex_cache(
432 hs.NewHandle(runtime->GetClassLinker()->FindDexCache(dex_file)));
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700433 NullHandle<mirror::ClassLoader> class_loader;
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700434 Handle<mirror::ArtMethod> method(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800435 verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700436 code_item, dex_method_idx, method, method_access_flags,
Ian Rogers46960fe2014-05-23 10:43:43 -0700437 true, true, true);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700438 verifier.Verify();
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700439 DumpCode(*indent2_os, &verifier, oat_method, code_item);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700440 } else {
Andreas Gampea8b41aa2014-06-04 22:42:28 -0700441 DumpCode(*indent2_os, nullptr, oat_method, code_item);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700442 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800443 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700444 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800445
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800446 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
447 if (spill_mask == 0) {
448 return;
449 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800450 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800451 for (size_t i = 0; i < 32; i++) {
452 if ((spill_mask & (1 << i)) != 0) {
453 if (is_float) {
454 os << "fr" << i;
455 } else {
456 os << "r" << i;
457 }
458 spill_mask ^= 1 << i; // clear bit
459 if (spill_mask != 0) {
460 os << ", ";
461 } else {
462 break;
463 }
464 }
465 }
466 os << ")";
467 }
468
Ian Rogersb23a7722012-10-09 16:54:26 -0700469 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700470 const uint8_t* raw_table = oat_method.GetVmapTable();
471 if (raw_table != NULL) {
472 const VmapTable vmap_table(raw_table);
473 bool first = true;
474 bool processing_fp = false;
475 uint32_t spill_mask = oat_method.GetCoreSpillMask();
476 for (size_t i = 0; i < vmap_table.Size(); i++) {
477 uint16_t dex_reg = vmap_table[i];
478 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
479 processing_fp ? kFloatVReg : kIntVReg);
480 os << (first ? "v" : ", v") << dex_reg;
481 if (!processing_fp) {
482 os << "/r" << cpu_reg;
483 } else {
484 os << "/fr" << cpu_reg;
485 }
486 first = false;
487 if (!processing_fp && dex_reg == 0xFFFF) {
488 processing_fp = true;
489 spill_mask = oat_method.GetFpSpillMask();
490 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800491 }
Ian Rogers1809a722013-08-09 22:05:32 -0700492 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800493 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800494 }
495
Ian Rogersb23a7722012-10-09 16:54:26 -0700496 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800497 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700498 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700499 if (raw_table != NULL) {
500 const VmapTable vmap_table(raw_table);
501 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700502 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800503 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
504 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
505 : oat_method.GetCoreSpillMask();
506 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700507 } else {
508 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
509 oat_method.GetFpSpillMask(),
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000510 oat_method.GetFrameSizeInBytes(), reg,
511 GetInstructionSet());
Ian Rogersb23a7722012-10-09 16:54:26 -0700512 os << "[sp + #" << offset << "]";
513 }
514 }
515 }
516
Ian Rogersef7d42f2014-01-06 12:55:46 -0800517 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
518 const DexFile::CodeItem* code_item,
519 size_t num_regs, const uint8_t* reg_bitmap) {
520 bool first = true;
521 for (size_t reg = 0; reg < num_regs; reg++) {
522 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
523 if (first) {
524 os << " v" << reg << " (";
525 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
526 os << ")";
527 first = false;
528 } else {
529 os << ", v" << reg << " (";
530 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
531 os << ")";
532 }
533 }
534 }
535 if (first) {
536 os << "No registers in GC map\n";
537 } else {
538 os << "\n";
539 }
540 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700541 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
542 const DexFile::CodeItem* code_item) {
543 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800544 if (gc_map_raw == nullptr) {
545 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800546 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800547 const void* quick_code = oat_method.GetQuickCode();
548 if (quick_code != nullptr) {
549 NativePcOffsetToReferenceMap map(gc_map_raw);
550 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
551 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
552 map.GetNativePcOffset(entry);
553 os << StringPrintf("%p", native_pc);
554 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800555 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800556 } else {
557 const void* portable_code = oat_method.GetPortableCode();
558 CHECK(portable_code != nullptr);
559 verifier::DexPcToReferenceMap map(gc_map_raw);
560 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
561 uint32_t dex_pc = map.GetDexPc(entry);
562 os << StringPrintf("0x%08x", dex_pc);
563 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
564 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800565 }
566 }
567
568 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800569 const void* quick_code = oat_method.GetQuickCode();
570 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800571 return;
572 }
Ian Rogers1809a722013-08-09 22:05:32 -0700573 MappingTable table(oat_method.GetMappingTable());
574 if (table.TotalSize() != 0) {
575 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
576 std::ostream indent_os(&indent_filter);
577 if (table.PcToDexSize() != 0) {
578 typedef MappingTable::PcToDexIterator It;
579 os << "suspend point mappings {\n";
580 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
581 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
582 }
583 os << "}\n";
584 }
585 if (table.DexToPcSize() != 0) {
586 typedef MappingTable::DexToPcIterator It;
587 os << "catch entry mappings {\n";
588 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
589 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
590 }
591 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800592 }
593 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800594 }
595
Ian Rogers1809a722013-08-09 22:05:32 -0700596 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
597 size_t offset, bool suspend_point_mapping) {
598 MappingTable table(oat_method.GetMappingTable());
599 if (suspend_point_mapping && table.PcToDexSize() > 0) {
600 typedef MappingTable::PcToDexIterator It;
601 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
602 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700603 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700604 return cur.DexPc();
605 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800606 }
Ian Rogers1809a722013-08-09 22:05:32 -0700607 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
608 typedef MappingTable::DexToPcIterator It;
609 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
610 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700611 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700612 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700613 }
614 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800615 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800616 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700617 }
618
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800619 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
620 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700621 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
622 if (gc_map_raw != NULL) {
623 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800624 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700625 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800626 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700627 bool first = true;
628 for (size_t reg = 0; reg < num_regs; reg++) {
629 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
630 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800631 os << "GC map objects: v" << reg << " (";
632 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700633 os << ")";
634 first = false;
635 } else {
636 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800637 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700638 os << ")";
639 }
640 }
641 }
642 if (!first) {
643 os << "\n";
644 }
645 }
646 }
647 }
648
Mathieu Chartier590fee92013-09-13 13:46:47 -0700649 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
650 const OatFile::OatMethod& oat_method,
651 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
652 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800653 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800654 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800655 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
656 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
657 if (kind != kUndefined) {
658 if (first) {
659 os << "VRegs: v";
660 first = false;
661 } else {
662 os << ", v";
663 }
664 os << reg << " (";
665 switch (kind) {
666 case kImpreciseConstant:
667 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
668 DescribeVReg(os, oat_method, code_item, reg, kind);
669 break;
670 case kConstant:
671 os << "Constant: " << kinds.at((reg * 2) + 1);
672 break;
673 default:
674 DescribeVReg(os, oat_method, code_item, reg, kind);
675 break;
676 }
677 os << ")";
678 }
679 }
680 if (!first) {
681 os << "\n";
682 }
683 }
684
685
Ian Rogersb23a7722012-10-09 16:54:26 -0700686 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
687 if (code_item != NULL) {
688 size_t i = 0;
689 while (i < code_item->insns_size_in_code_units_) {
690 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800691 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700692 i += instruction->SizeInCodeUnits();
693 }
694 }
695 }
696
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800697 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700698 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800699 uint32_t method_access_flags) {
700 if ((method_access_flags & kAccNative) == 0) {
701 ScopedObjectAccess soa(Thread::Current());
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700702 StackHandleScope<3> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700703 Handle<mirror::DexCache> dex_cache(
704 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file)));
705 auto class_loader(hs.NewHandle<mirror::ClassLoader>(nullptr));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700706 Handle<mirror::ArtMethod> method(hs.NewHandle<mirror::ArtMethod>(nullptr));
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800707 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700708 class_loader, &class_def, code_item, method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800709 method_access_flags);
710 }
711 }
712
Mathieu Chartier590fee92013-09-13 13:46:47 -0700713 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
714 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800715 const void* portable_code = oat_method.GetPortableCode();
716 const void* quick_code = oat_method.GetQuickCode();
717
718 size_t code_size = oat_method.GetQuickCodeSize();
719 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800720 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700721 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800722 } else if (quick_code != nullptr) {
723 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
724 size_t offset = 0;
725 while (offset < code_size) {
726 DumpMappingAtOffset(os, oat_method, offset, false);
727 offset += disassembler_->Dump(os, quick_native_pc + offset);
728 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
729 if (dex_pc != DexFile::kDexNoIndex) {
730 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
731 if (verifier != nullptr) {
732 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
733 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800734 }
735 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800736 } else {
737 CHECK(portable_code != nullptr);
738 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700739 }
740 }
741
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800742 const OatFile& oat_file_;
743 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Dave Allison404f59f2014-02-24 11:10:01 -0800744 bool dump_raw_mapping_table_;
745 bool dump_raw_gc_map_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800746 std::set<uintptr_t> offsets_;
Ian Rogers700a4022014-05-19 16:49:03 -0700747 std::unique_ptr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700748};
749
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800750class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700751 public:
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800752 explicit ImageDumper(std::ostream* os, gc::space::ImageSpace& image_space,
Dave Allison404f59f2014-02-24 11:10:01 -0800753 const ImageHeader& image_header, bool dump_raw_mapping_table,
754 bool dump_raw_gc_map)
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800755 : os_(os), image_space_(image_space), image_header_(image_header),
Dave Allison404f59f2014-02-24 11:10:01 -0800756 dump_raw_mapping_table_(dump_raw_mapping_table),
757 dump_raw_gc_map_(dump_raw_gc_map) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700758
Ian Rogersb726dcb2012-09-05 08:57:23 -0700759 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800760 std::ostream& os = *os_;
761 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700762
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800763 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700764
Mathieu Chartier31e89252013-08-28 11:29:12 -0700765 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
766 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
767
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800768 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700769
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800770 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700771
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800772 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
773
774 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
775
776 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800777
Alex Lighta59dd802014-07-02 16:28:08 -0700778 os << "PATCH DELTA:" << image_header_.GetPatchDelta() << "\n\n";
779
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800780 {
781 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
782 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
783 std::ostream indent1_os(&indent1_filter);
784 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
785 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
786 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
787 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800788 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800789 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
790 if (image_root_object->IsObjectArray()) {
791 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
792 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800793 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -0800794 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800795 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800796 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -0800797 size_t run = 0;
798 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
799 if (value == image_root_object_array->Get(j)) {
800 run++;
801 } else {
802 break;
803 }
804 }
805 if (run == 0) {
806 indent2_os << StringPrintf("%d: ", i);
807 } else {
808 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
809 i = i + run;
810 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800811 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800812 PrettyObjectValue(indent2_os, value->GetClass(), value);
813 } else {
814 indent2_os << i << ": null\n";
815 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800816 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700817 }
818 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700819 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800820 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700821
Brian Carlstromaded5f72011-10-07 17:15:04 -0700822 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800823 std::string image_filename = image_space_.GetImageFilename();
824 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800825 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800826 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700827 std::string error_msg;
Alex Lighta59dd802014-07-02 16:28:08 -0700828 const OatFile* oat_file = class_linker->FindOpenedOatFileFromOatLocation(oat_location);
829 if (oat_file == nullptr) {
830 oat_file = OatFile::Open(oat_location, oat_location, NULL, false, &error_msg);
831 if (oat_file == nullptr) {
832 os << "NOT FOUND: " << error_msg << "\n";
833 return;
834 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700835 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800836 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700837
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800838 stats_.oat_file_bytes = oat_file->Size();
839
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000840 oat_dumper_.reset(new OatDumper(*oat_file, dump_raw_mapping_table_,
Dave Allison404f59f2014-02-24 11:10:01 -0800841 dump_raw_gc_map_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800842
Mathieu Chartier02e25112013-08-14 16:14:24 -0700843 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700844 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700845 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
846 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700847 }
848
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800849 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700850
851 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700852 gc::Heap* heap = Runtime::Current()->GetHeap();
853 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700854 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700855 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800856 {
857 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
858 heap->FlushAllocStack();
859 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -0800860 // Since FlushAllocStack() above resets the (active) allocation
861 // stack. Need to revoke the thread-local allocation stacks that
862 // point into it.
Mathieu Chartierc22c59e2014-02-24 15:16:06 -0800863 {
864 self->TransitionFromRunnableToSuspended(kNative);
865 ThreadList* thread_list = Runtime::Current()->GetThreadList();
866 thread_list->SuspendAll();
867 heap->RevokeAllThreadLocalAllocationStacks(self);
868 thread_list->ResumeAll();
869 self->TransitionFromSuspendedToRunnable();
870 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700871 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800872 {
873 std::ostream* saved_os = os_;
874 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
875 std::ostream indent_os(&indent_filter);
876 os_ = &indent_os;
877 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700878 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800879 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700880 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800881 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
882 indent_os << "\n";
883 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700884 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800885 // Dump the large objects separately.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -0700886 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800887 indent_os << "\n";
888 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700889 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800890 os << "STATS:\n" << std::flush;
Ian Rogers700a4022014-05-19 16:49:03 -0700891 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700892 if (file.get() == NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800893 LOG(WARNING) << "Failed to find image in " << image_filename;
Brian Carlstrom6f277752013-09-30 17:56:45 -0700894 }
895 if (file.get() != NULL) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800896 stats_.file_bytes = file->GetLength();
Brian Carlstrom6f277752013-09-30 17:56:45 -0700897 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800898 size_t header_bytes = sizeof(ImageHeader);
899 stats_.header_bytes = header_bytes;
900 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
901 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700902 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
903 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800904 stats_.Dump(os);
905 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800906
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800907 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800908
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800909 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700910 }
911
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700912 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800913 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700914 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800915 CHECK(type != NULL);
916 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800917 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800918 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800919 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800920 os << StringPrintf("%p String: %s\n", string,
921 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700922 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800923 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800924 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700925 } else if (type->IsArtFieldClass()) {
926 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800927 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700928 } else if (type->IsArtMethodClass()) {
929 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800930 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800931 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800932 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800933 }
934 }
935
Brian Carlstromea46f952013-07-30 01:26:50 -0700936 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700937 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700938 const char* descriptor = field->GetTypeDescriptor();
939 os << StringPrintf("%s: ", field->GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700940 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700941 StackHandleScope<1> hs(Thread::Current());
942 FieldHelper fh(hs.NewHandle(field));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800943 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700944 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800945 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700946 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800947 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700948 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800949 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700950 } else {
951 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800952 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700953 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800954 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700955 // Get the value, don't compute the type unless it is non-null as we don't want
956 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800957 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700958 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800959 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700960 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700961 // Grab the field type without causing resolution.
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700962 StackHandleScope<1> hs(Thread::Current());
963 FieldHelper fh(hs.NewHandle(field));
Ian Rogers50239c72013-06-17 14:53:22 -0700964 mirror::Class* field_type = fh.GetType(false);
965 if (field_type != NULL) {
966 PrettyObjectValue(os, field_type, value);
967 } else {
968 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
969 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700970 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800971 }
972 }
973
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800974 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700975 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800976 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800977 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800978 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800979 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700980 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800981 if (fields != NULL) {
982 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700983 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800984 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800985 }
986 }
987 }
988
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800989 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800990 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700991 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800992
Ian Rogersef7d42f2014-01-06 12:55:46 -0800993 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700994 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800995 const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700996 if (quick_code == Runtime::Current()->GetClassLinker()->GetQuickResolutionTrampoline()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800997 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800998 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700999 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001000 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001001 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001002 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001003 }
1004
Ian Rogersef7d42f2014-01-06 12:55:46 -08001005 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001006 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001007 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
1008 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001009 return 0;
1010 }
1011 return oat_code_begin[-1];
1012 }
1013
Ian Rogersef7d42f2014-01-06 12:55:46 -08001014 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001015 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001016 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001017 if (oat_code_begin == NULL) {
1018 return NULL;
1019 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001020 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001021 }
1022
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001023 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001024 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001025 DCHECK(obj != NULL);
1026 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001027 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001028 if (!state->InDumpSpace(obj)) {
1029 return;
1030 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001031
1032 size_t object_bytes = obj->SizeOf();
1033 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1034 state->stats_.object_bytes += object_bytes;
1035 state->stats_.alignment_bytes += alignment_bytes;
1036
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001037 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001038 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001039 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001040 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1041 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001042 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001043 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001044 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1045 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -07001046 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001047 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001048 PrettyField(obj->AsArtField()).c_str());
1049 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001050 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001051 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001052 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001053 os << StringPrintf("%p: java.lang.String %s\n", obj,
1054 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001055 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001056 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001057 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001058 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1059 std::ostream indent_os(&indent_filter);
1060 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001061 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001062 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001063 int32_t length = obj_array->GetLength();
1064 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001065 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001066 size_t run = 0;
1067 for (int32_t j = i + 1; j < length; j++) {
1068 if (value == obj_array->Get(j)) {
1069 run++;
1070 } else {
1071 break;
1072 }
1073 }
1074 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001075 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001076 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001077 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001078 i = i + run;
1079 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001080 mirror::Class* value_class =
1081 (value == NULL) ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001082 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001083 }
1084 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001085 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001086 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001087 indent_os << "STATICS:\n";
1088 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1089 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001090 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001091 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001092 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001093 }
1094 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001095 } else if (obj->IsArtMethod()) {
1096 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001097 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001098 // TODO: portable dumping.
1099 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1100 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001101 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001102 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1103 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1104 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001105 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001106 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001107 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001108 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1109 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001110 }
Ian Rogers19846512012-02-24 11:42:47 -08001111 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001112 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001113 method->IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001114 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001115 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001116 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001117 const DexFile::CodeItem* code_item = method->GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001118 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001119 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001120
Elliott Hughesa0e18062012-04-13 15:59:59 -07001121 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001122 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001123 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001124 state->stats_.gc_map_bytes += gc_map_bytes;
1125 }
1126
1127 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001128 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001129 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001130 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1131 }
1132
1133 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001134 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001135 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001136 state->stats_.vmap_table_bytes += vmap_table_bytes;
1137 }
1138
Ian Rogersef7d42f2014-01-06 12:55:46 -08001139 // TODO: portable dumping.
1140 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1141 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1142 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1143 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001144 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001145 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001146 if (method->IsConstructor()) {
1147 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001148 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001149 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001150 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001151 }
1152 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001153 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001154 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001155 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001156 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001157
Ian Rogersef7d42f2014-01-06 12:55:46 -08001158 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001159 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1160 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001161
1162 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001163 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001164
1165 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001166 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001167 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001168 }
1169 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001170 std::string temp;
1171 state->stats_.Update(obj_class->GetDescriptor(&temp), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001172 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001173
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001174 std::set<const void*> already_seen_;
1175 // Compute the size of the given data within the oat file and whether this is the first time
1176 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001177 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001178 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001179 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001180 already_seen_.insert(oat_data);
1181 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001182 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001183 }
1184 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001185 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001186
1187 public:
1188 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001189 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001190 size_t file_bytes;
1191
1192 size_t header_bytes;
1193 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001194 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001195 size_t alignment_bytes;
1196
1197 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001198 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001199 size_t managed_to_native_code_bytes;
1200 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001201 size_t class_initializer_code_bytes;
1202 size_t large_initializer_code_bytes;
1203 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001204
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001205 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001206 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001207 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001208
1209 size_t dex_instruction_bytes;
1210
Brian Carlstromea46f952013-07-30 01:26:50 -07001211 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001212 std::vector<size_t> method_outlier_size;
1213 std::vector<double> method_outlier_expansion;
Ian Rogers700a4022014-05-19 16:49:03 -07001214 std::vector<std::pair<std::string, size_t>> oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001215
1216 explicit Stats()
1217 : oat_file_bytes(0),
1218 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001219 header_bytes(0),
1220 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001221 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001222 alignment_bytes(0),
1223 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001224 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001225 managed_to_native_code_bytes(0),
1226 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001227 class_initializer_code_bytes(0),
1228 large_initializer_code_bytes(0),
1229 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001230 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001231 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001232 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001233 dex_instruction_bytes(0) {}
1234
Elliott Hughesa0e18062012-04-13 15:59:59 -07001235 struct SizeAndCount {
1236 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1237 size_t bytes;
1238 size_t count;
1239 };
1240 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1241 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001242
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001243 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001244 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1245 if (it != sizes_and_counts.end()) {
1246 it->second.bytes += object_bytes;
1247 it->second.count += 1;
1248 } else {
1249 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1250 }
1251 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001252
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001253 double PercentOfOatBytes(size_t size) {
1254 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1255 }
1256
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001257 double PercentOfFileBytes(size_t size) {
1258 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1259 }
1260
1261 double PercentOfObjectBytes(size_t size) {
1262 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1263 }
1264
Brian Carlstromea46f952013-07-30 01:26:50 -07001265 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001266 method_outlier_size.push_back(total_size);
1267 method_outlier_expansion.push_back(expansion);
1268 method_outlier.push_back(method);
1269 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001270
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001271 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001272 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001273 size_t sum_of_sizes = 0;
1274 size_t sum_of_sizes_squared = 0;
1275 size_t sum_of_expansion = 0;
1276 size_t sum_of_expansion_squared = 0;
1277 size_t n = method_outlier_size.size();
1278 for (size_t i = 0; i < n; i++) {
1279 size_t cur_size = method_outlier_size[i];
1280 sum_of_sizes += cur_size;
1281 sum_of_sizes_squared += cur_size * cur_size;
1282 double cur_expansion = method_outlier_expansion[i];
1283 sum_of_expansion += cur_expansion;
1284 sum_of_expansion_squared += cur_expansion * cur_expansion;
1285 }
1286 size_t size_mean = sum_of_sizes / n;
1287 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1288 double expansion_mean = sum_of_expansion / n;
1289 double expansion_variance =
1290 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1291
1292 // Dump methods whose size is a certain number of standard deviations from the mean
1293 size_t dumped_values = 0;
1294 size_t skipped_values = 0;
1295 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1296 size_t cur_size_variance = i * i * size_variance;
1297 bool first = true;
1298 for (size_t j = 0; j < n; j++) {
1299 size_t cur_size = method_outlier_size[j];
1300 if (cur_size > size_mean) {
1301 size_t cur_var = cur_size - size_mean;
1302 cur_var = cur_var * cur_var;
1303 if (cur_var > cur_size_variance) {
1304 if (dumped_values > 20) {
1305 if (i == 1) {
1306 skipped_values++;
1307 } else {
1308 i = 2; // jump to counting for 1 standard deviation
1309 break;
1310 }
1311 } else {
1312 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001313 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001314 first = false;
1315 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001316 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001317 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001318 method_outlier_size[j] = 0; // don't consider this method again
1319 dumped_values++;
1320 }
1321 }
1322 }
1323 }
1324 }
1325 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001326 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001327 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001328 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001329 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001330
1331 // Dump methods whose expansion is a certain number of standard deviations from the mean
1332 dumped_values = 0;
1333 skipped_values = 0;
1334 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1335 double cur_expansion_variance = i * i * expansion_variance;
1336 bool first = true;
1337 for (size_t j = 0; j < n; j++) {
1338 double cur_expansion = method_outlier_expansion[j];
1339 if (cur_expansion > expansion_mean) {
1340 size_t cur_var = cur_expansion - expansion_mean;
1341 cur_var = cur_var * cur_var;
1342 if (cur_var > cur_expansion_variance) {
1343 if (dumped_values > 20) {
1344 if (i == 1) {
1345 skipped_values++;
1346 } else {
1347 i = 2; // jump to counting for 1 standard deviation
1348 break;
1349 }
1350 } else {
1351 if (first) {
1352 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001353 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001354 first = false;
1355 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001356 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001357 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001358 method_outlier_expansion[j] = 0.0; // don't consider this method again
1359 dumped_values++;
1360 }
1361 }
1362 }
1363 }
1364 }
1365 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001366 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001367 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001368 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001369 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001370 }
1371
Ian Rogersb726dcb2012-09-05 08:57:23 -07001372 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001373 {
1374 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1375 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1376 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1377 std::ostream indent_os(&indent_filter);
1378 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1379 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001380 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001381 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1382 header_bytes, PercentOfFileBytes(header_bytes),
1383 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001384 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001385 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1386 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001387 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001388 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001389
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001390 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001391 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001392 for (const auto& sizes_and_count : sizes_and_counts) {
1393 const std::string& descriptor(sizes_and_count.first);
1394 double average = static_cast<double>(sizes_and_count.second.bytes) /
1395 static_cast<double>(sizes_and_count.second.count);
1396 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001397 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001398 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001399 descriptor.c_str(), sizes_and_count.second.bytes,
1400 sizes_and_count.second.count, average, percent);
1401 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001402 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001403 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001404 CHECK_EQ(object_bytes, object_bytes_total);
1405
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001406 os << StringPrintf("oat_file_bytes = %8zd\n"
1407 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1408 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1409 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1410 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1411 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1412 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001413 oat_file_bytes,
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001414 managed_code_bytes,
1415 PercentOfOatBytes(managed_code_bytes),
1416 managed_to_native_code_bytes,
1417 PercentOfOatBytes(managed_to_native_code_bytes),
1418 native_to_managed_code_bytes,
1419 PercentOfOatBytes(native_to_managed_code_bytes),
1420 class_initializer_code_bytes,
1421 PercentOfOatBytes(class_initializer_code_bytes),
1422 large_initializer_code_bytes,
1423 PercentOfOatBytes(large_initializer_code_bytes),
1424 large_method_code_bytes,
1425 PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001426 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001427 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001428 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001429 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1430 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001431 }
1432
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001433 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1434 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1435 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001436 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1437 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1438 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001439 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001440
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001441 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1442 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001443 static_cast<double>(managed_code_bytes) /
1444 static_cast<double>(dex_instruction_bytes),
Elliott Hughesc073b072012-05-24 19:29:17 -07001445 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001446 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001447 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001448
1449 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001450 }
1451 } stats_;
1452
1453 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001454 enum {
1455 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1456 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1457 kLargeConstructorDexBytes = 4000,
1458 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1459 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1460 kLargeMethodDexBytes = 16000
1461 };
Ian Rogers700a4022014-05-19 16:49:03 -07001462 std::unique_ptr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001463 std::ostream* os_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001464 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001465 const ImageHeader& image_header_;
Dave Allison404f59f2014-02-24 11:10:01 -08001466 bool dump_raw_mapping_table_;
1467 bool dump_raw_gc_map_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001468
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001469 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001470};
1471
Elliott Hughes72395bf2012-04-24 13:45:26 -07001472static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001473 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001474
Brian Carlstrom78128a62011-09-15 17:21:19 -07001475 // Skip over argv[0].
1476 argv++;
1477 argc--;
1478
1479 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001480 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001481 usage();
1482 }
1483
Brian Carlstromaded5f72011-10-07 17:15:04 -07001484 const char* oat_filename = NULL;
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001485 const char* image_location = NULL;
1486 const char* boot_image_location = NULL;
1487 InstructionSet instruction_set = kRuntimeISA;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001488 std::string elf_filename_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001489 std::ostream* os = &std::cout;
Ian Rogers700a4022014-05-19 16:49:03 -07001490 std::unique_ptr<std::ofstream> out;
Dave Allison404f59f2014-02-24 11:10:01 -08001491 bool dump_raw_mapping_table = false;
1492 bool dump_raw_gc_map = false;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001493
1494 for (int i = 0; i < argc; i++) {
1495 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001496 if (option.starts_with("--oat-file=")) {
1497 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001498 } else if (option.starts_with("--image=")) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001499 image_location = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001500 } else if (option.starts_with("--boot-image=")) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001501 boot_image_location = option.substr(strlen("--boot-image=")).data();
1502 } else if (option.starts_with("--instruction-set=")) {
1503 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data();
1504 if (instruction_set_str == "arm") {
1505 instruction_set = kThumb2;
1506 } else if (instruction_set_str == "arm64") {
1507 instruction_set = kArm64;
1508 } else if (instruction_set_str == "mips") {
1509 instruction_set = kMips;
1510 } else if (instruction_set_str == "x86") {
1511 instruction_set = kX86;
1512 } else if (instruction_set_str == "x86_64") {
1513 instruction_set = kX86_64;
1514 }
Dave Allison404f59f2014-02-24 11:10:01 -08001515 } else if (option.starts_with("--dump:")) {
1516 if (option == "--dump:raw_mapping_table") {
1517 dump_raw_mapping_table = true;
1518 } else if (option == "--dump:raw_gc_map") {
1519 dump_raw_gc_map = true;
1520 } else {
1521 fprintf(stderr, "Unknown argument %s\n", option.data());
1522 usage();
1523 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001524 } else if (option.starts_with("--output=")) {
1525 const char* filename = option.substr(strlen("--output=")).data();
1526 out.reset(new std::ofstream(filename));
1527 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001528 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001529 usage();
1530 }
1531 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001532 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001533 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001534 usage();
1535 }
1536 }
1537
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001538 if (image_location == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001539 fprintf(stderr, "Either --image or --oat must be specified\n");
1540 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001541 }
1542
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001543 if (image_location != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001544 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1545 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001546 }
1547
1548 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001549 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001550 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001551 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001552 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001553 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001554 return EXIT_FAILURE;
1555 }
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +00001556 OatDumper oat_dumper(*oat_file, dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001557 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001558 return EXIT_SUCCESS;
1559 }
1560
Ian Rogerse63db272014-07-15 15:36:11 -07001561 RuntimeOptions options;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001562 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001563 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001564 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001565 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001566
1567 // We are more like a compiler than a run-time. We don't want to execute code.
Brian Carlstromc0a1b182014-03-04 23:19:06 -08001568 NoopCompilerCallbacks callbacks;
1569 options.push_back(std::make_pair("compilercallbacks", &callbacks));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001570
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001571 if (boot_image_location != NULL) {
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001572 boot_image_option += "-Ximage:";
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001573 boot_image_option += boot_image_location;
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001574 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001575 }
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001576 if (image_location != NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001577 image_option += "-Ximage:";
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001578 image_option += image_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001579 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1580 }
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001581 options.push_back(
1582 std::make_pair("imageinstructionset",
1583 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set))));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001584
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001585 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001586 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001587 return EXIT_FAILURE;
1588 }
Ian Rogers700a4022014-05-19 16:49:03 -07001589 std::unique_ptr<Runtime> runtime(Runtime::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001590 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
Ian Rogersb9beb2e2014-05-09 16:57:40 -07001591 // give it away now and then switch to a more manageable ScopedObjectAccess.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001592 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1593 ScopedObjectAccess soa(Thread::Current());
Ian Rogers1d54e732013-05-02 21:10:01 -07001594 gc::Heap* heap = Runtime::Current()->GetHeap();
1595 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001596 CHECK(image_space != NULL);
1597 const ImageHeader& image_header = image_space->GetImageHeader();
1598 if (!image_header.IsValid()) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07001599 fprintf(stderr, "Invalid image header %s\n", image_location);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001600 return EXIT_FAILURE;
1601 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001602 ImageDumper image_dumper(os, *image_space, image_header,
1603 dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001604 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001605 return EXIT_SUCCESS;
1606}
1607
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001608} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001609
1610int main(int argc, char** argv) {
1611 return art::oatdump(argc, argv);
1612}