blob: 0d9b9910b72a1fa14c098f1f97634d97c504dd53 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstrom78128a62011-09-15 17:21:19 -070016
17#include <stdio.h>
18#include <stdlib.h>
19
Brian Carlstrom27ec9612011-09-19 20:20:38 -070020#include <fstream>
21#include <iostream>
Brian Carlstrom78128a62011-09-15 17:21:19 -070022#include <string>
23#include <vector>
24
Elliott Hughese222ee02012-12-13 14:41:43 -080025#include "base/stringpiece.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/unix_file/fd_file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070027#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "class_linker-inl.h"
Vladimir Marko51154732014-01-02 09:44:23 +000029#include "compiler_callbacks.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080031#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080032#include "disassembler.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080033#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070034#include "gc/space/image_space.h"
35#include "gc/space/large_object_space.h"
36#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070037#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080038#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070039#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070040#include "mirror/art_field-inl.h"
41#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/array-inl.h"
43#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/object-inl.h"
45#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080046#include "oat.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080047#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080048#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070049#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070050#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070051#include "scoped_thread_state_change.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080052#include "verifier/dex_gc_map.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080053#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070054#include "vmap_table.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070055
56namespace art {
57
58static void usage() {
59 fprintf(stderr,
60 "Usage: oatdump [options] ...\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080061 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
62 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070063 "\n");
64 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080065 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070066 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070067 "\n");
68 fprintf(stderr,
69 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080070 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070071 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070072 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070073 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080074 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070075 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070076 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070077 " --host-prefix may be used to translate host paths to target paths during\n"
78 " cross compilation.\n"
79 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080080 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070081 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070082 fprintf(stderr,
83 " --output=<file> may be used to send the output to a file.\n"
84 " Example: --output=/tmp/oatdump.txt\n"
85 "\n");
Dave Allison404f59f2014-02-24 11:10:01 -080086 fprintf(stderr,
87 " --dump:[raw_mapping_table|raw_gc_map]\n"
88 " Example: --dump:raw_gc_map\n"
89 " Default: neither\n"
90 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070091 exit(EXIT_FAILURE);
92}
93
Ian Rogersff1ed472011-09-20 13:46:24 -070094const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080095 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070096 "kImtConflictMethod",
97 "kDefaultImt",
Brian Carlstrome24fa612011-09-29 00:53:55 -070098 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070099 "kRefsOnlySaveMethod",
100 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -0700101 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700102 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700103 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -0700104};
105
Elliott Hughese3c845c2012-02-28 17:23:01 -0800106class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700107 public:
Dave Allison404f59f2014-02-24 11:10:01 -0800108 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file, bool dump_raw_mapping_table, bool dump_raw_gc_map)
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700109 : host_prefix_(host_prefix),
110 oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800111 oat_dex_files_(oat_file.GetOatDexFiles()),
Dave Allison404f59f2014-02-24 11:10:01 -0800112 dump_raw_mapping_table_(dump_raw_mapping_table),
113 dump_raw_gc_map_(dump_raw_gc_map),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800114 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800115 AddAllOffsets();
116 }
117
118 void Dump(std::ostream& os) {
119 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700120
121 os << "MAGIC:\n";
122 os << oat_header.GetMagic() << "\n\n";
123
124 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800125 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700126
Elliott Hughesa72ec822012-03-05 17:12:22 -0800127 os << "INSTRUCTION SET:\n";
128 os << oat_header.GetInstructionSet() << "\n\n";
129
Dave Allison70202782013-10-22 17:52:19 -0700130 os << "INSTRUCTION SET FEATURES:\n";
131 os << oat_header.GetInstructionSetFeatures().GetFeatureString() << "\n\n";
132
Brian Carlstromaded5f72011-10-07 17:15:04 -0700133 os << "DEX FILE COUNT:\n";
134 os << oat_header.GetDexFileCount() << "\n\n";
135
136 os << "EXECUTABLE OFFSET:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800137 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700138
Brian Carlstrom28db0122012-10-18 16:20:41 -0700139 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
140 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
141
142 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800143 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700144
145 os << "IMAGE FILE LOCATION:\n";
146 const std::string image_file_location(oat_header.GetImageFileLocation());
147 os << image_file_location;
148 if (!image_file_location.empty() && !host_prefix_.empty()) {
149 os << " (" << host_prefix_ << image_file_location << ")";
150 }
151 os << "\n\n";
152
Ian Rogers30fab402012-01-23 15:43:46 -0800153 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800154 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700155
Ian Rogers30fab402012-01-23 15:43:46 -0800156 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800157 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700158
159 os << std::flush;
160
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800161 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
162 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700163 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800164 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700165 }
166 }
167
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800168 size_t ComputeSize(const void* oat_data) {
169 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
170 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
171 return 0; // Address not in oat file
172 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800173 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
174 reinterpret_cast<uintptr_t>(oat_file_.Begin());
175 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800176 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800177 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800178 return end_offset - begin_offset;
179 }
180
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700181 InstructionSet GetInstructionSet() {
182 return oat_file_.GetOatHeader().GetInstructionSet();
183 }
184
Ian Rogersef7d42f2014-01-06 12:55:46 -0800185 const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800186 MethodHelper mh(m);
187 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
188 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700189 CHECK(oat_dex_file != nullptr);
190 std::string error_msg;
191 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
192 if (dex_file.get() == nullptr) {
193 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
194 << "': " << error_msg;
195 } else {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700196 const DexFile::ClassDef* class_def =
197 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
198 if (class_def != NULL) {
199 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800200 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
201 CHECK(oat_class != NULL);
202 size_t method_index = m->GetMethodIndex();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800203 return oat_class->GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800204 }
205 }
206 }
207 return NULL;
208 }
209
Brian Carlstromaded5f72011-10-07 17:15:04 -0700210 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800211 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800212 // We don't know the length of the code for each method, but we need to know where to stop
213 // when disassembling. What we do know is that a region of code will be followed by some other
214 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
215 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800216 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
217 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800218 CHECK(oat_dex_file != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700219 std::string error_msg;
220 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
221 if (dex_file.get() == nullptr) {
222 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
223 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800224 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800225 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800226 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800227 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
228 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
229 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
230 const byte* class_data = dex_file->GetClassData(class_def);
231 if (class_data != NULL) {
232 ClassDataItemIterator it(*dex_file, class_data);
233 SkipAllFields(it);
234 uint32_t class_method_index = 0;
235 while (it.HasNextDirectMethod()) {
236 AddOffsets(oat_class->GetOatMethod(class_method_index++));
237 it.Next();
238 }
239 while (it.HasNextVirtualMethod()) {
240 AddOffsets(oat_class->GetOatMethod(class_method_index++));
241 it.Next();
242 }
243 }
244 }
245 }
246
247 // If the last thing in the file is code for a method, there won't be an offset for the "next"
248 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
249 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800250 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800251 }
252
253 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800254 uint32_t code_offset = oat_method.GetCodeOffset();
255 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
256 code_offset &= ~0x1;
257 }
258 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800259 offsets_.insert(oat_method.GetMappingTableOffset());
260 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700261 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800262 }
263
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800264 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700265 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800266 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800267 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700268
269 // Create the verifier early.
270
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700271 std::string error_msg;
272 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800273 if (dex_file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700274 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700275 return;
276 }
277 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
278 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
279 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700280 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
281 CHECK(oat_class.get() != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700282 os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
283 << " (" << oat_class->GetStatus() << ")"
284 << " (" << oat_class->GetType() << ")\n";
285 // TODO: include bitmap here if type is kOatClassBitmap?
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800286 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
287 std::ostream indented_os(&indent_filter);
288 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700289 }
290
291 os << std::flush;
292 }
293
Elliott Hughese3c845c2012-02-28 17:23:01 -0800294 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700295 while (it.HasNextStaticField()) {
296 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700297 }
Ian Rogers0571d352011-11-03 19:51:38 -0700298 while (it.HasNextInstanceField()) {
299 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700300 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800301 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700302
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800303 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
304 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800305 const byte* class_data = dex_file.GetClassData(class_def);
306 if (class_data == NULL) { // empty class such as a marker interface?
307 return;
308 }
309 ClassDataItemIterator it(dex_file, class_data);
310 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800311 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700312 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800313 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700314 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800315 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
316 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700317 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700318 }
Ian Rogers0571d352011-11-03 19:51:38 -0700319 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800320 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700321 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800322 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
323 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700324 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700325 }
Ian Rogers0571d352011-11-03 19:51:38 -0700326 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700327 os << std::flush;
328 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800329
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700330 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
331 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800332 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800333 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
334 uint32_t method_access_flags) {
335 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700336 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
337 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800338 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
339 std::ostream indent1_os(&indent1_filter);
340 {
341 indent1_os << "DEX CODE:\n";
342 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
343 std::ostream indent2_os(&indent2_filter);
344 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700345 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800346 if (Runtime::Current() != NULL) {
347 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
348 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
349 std::ostream indent2_os(&indent2_filter);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700350 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
351 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700352 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800353 {
354 indent1_os << "OAT DATA:\n";
355 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
356 std::ostream indent2_os(&indent2_filter);
357
358 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
359 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
360 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
361 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
362 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
363 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
364 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
365 DumpVmap(indent2_os, oat_method);
366 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
367 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800368 if (dump_raw_mapping_table_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800369 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
370 std::ostream indent3_os(&indent3_filter);
371 DumpMappingTable(indent3_os, oat_method);
372 }
373 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
374 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
Dave Allison404f59f2014-02-24 11:10:01 -0800375 if (dump_raw_gc_map_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800376 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
377 std::ostream indent3_os(&indent3_filter);
378 DumpGcMap(indent3_os, oat_method, code_item);
379 }
380 }
381 {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800382 const void* code = oat_method.GetQuickCode();
383 uint32_t code_size = oat_method.GetQuickCodeSize();
384 if (code == nullptr) {
385 code = oat_method.GetPortableCode();
386 code_size = oat_method.GetPortableCodeSize();
387 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800388 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800389 code,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800390 oat_method.GetCodeOffset(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800391 code_size,
392 code != nullptr ? "..." : "");
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800393 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
394 std::ostream indent2_os(&indent2_filter);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700395
396 Runtime* runtime = Runtime::Current();
397 if (runtime != nullptr) {
398 ScopedObjectAccess soa(Thread::Current());
399 SirtRef<mirror::DexCache> dex_cache(
400 soa.Self(), runtime->GetClassLinker()->FindDexCache(dex_file));
401 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
402 verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def, code_item,
403 dex_method_idx, nullptr, method_access_flags, true, true);
404 verifier.Verify();
405 DumpCode(indent2_os, &verifier, oat_method, code_item);
406 } else {
407 DumpCode(indent2_os, nullptr, oat_method, code_item);
408 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800409 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700410 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800411
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800412 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
413 if (spill_mask == 0) {
414 return;
415 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800416 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800417 for (size_t i = 0; i < 32; i++) {
418 if ((spill_mask & (1 << i)) != 0) {
419 if (is_float) {
420 os << "fr" << i;
421 } else {
422 os << "r" << i;
423 }
424 spill_mask ^= 1 << i; // clear bit
425 if (spill_mask != 0) {
426 os << ", ";
427 } else {
428 break;
429 }
430 }
431 }
432 os << ")";
433 }
434
Ian Rogersb23a7722012-10-09 16:54:26 -0700435 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700436 const uint8_t* raw_table = oat_method.GetVmapTable();
437 if (raw_table != NULL) {
438 const VmapTable vmap_table(raw_table);
439 bool first = true;
440 bool processing_fp = false;
441 uint32_t spill_mask = oat_method.GetCoreSpillMask();
442 for (size_t i = 0; i < vmap_table.Size(); i++) {
443 uint16_t dex_reg = vmap_table[i];
444 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
445 processing_fp ? kFloatVReg : kIntVReg);
446 os << (first ? "v" : ", v") << dex_reg;
447 if (!processing_fp) {
448 os << "/r" << cpu_reg;
449 } else {
450 os << "/fr" << cpu_reg;
451 }
452 first = false;
453 if (!processing_fp && dex_reg == 0xFFFF) {
454 processing_fp = true;
455 spill_mask = oat_method.GetFpSpillMask();
456 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800457 }
Ian Rogers1809a722013-08-09 22:05:32 -0700458 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800459 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800460 }
461
Ian Rogersb23a7722012-10-09 16:54:26 -0700462 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800463 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700464 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700465 if (raw_table != NULL) {
466 const VmapTable vmap_table(raw_table);
467 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700468 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800469 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
470 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
471 : oat_method.GetCoreSpillMask();
472 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700473 } else {
474 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
475 oat_method.GetFpSpillMask(),
476 oat_method.GetFrameSizeInBytes(), reg);
477 os << "[sp + #" << offset << "]";
478 }
479 }
480 }
481
Ian Rogersef7d42f2014-01-06 12:55:46 -0800482 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
483 const DexFile::CodeItem* code_item,
484 size_t num_regs, const uint8_t* reg_bitmap) {
485 bool first = true;
486 for (size_t reg = 0; reg < num_regs; reg++) {
487 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
488 if (first) {
489 os << " v" << reg << " (";
490 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
491 os << ")";
492 first = false;
493 } else {
494 os << ", v" << reg << " (";
495 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
496 os << ")";
497 }
498 }
499 }
500 if (first) {
501 os << "No registers in GC map\n";
502 } else {
503 os << "\n";
504 }
505 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700506 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
507 const DexFile::CodeItem* code_item) {
508 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800509 if (gc_map_raw == nullptr) {
510 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800511 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800512 const void* quick_code = oat_method.GetQuickCode();
513 if (quick_code != nullptr) {
514 NativePcOffsetToReferenceMap map(gc_map_raw);
515 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
516 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
517 map.GetNativePcOffset(entry);
518 os << StringPrintf("%p", native_pc);
519 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800520 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800521 } else {
522 const void* portable_code = oat_method.GetPortableCode();
523 CHECK(portable_code != nullptr);
524 verifier::DexPcToReferenceMap map(gc_map_raw);
525 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
526 uint32_t dex_pc = map.GetDexPc(entry);
527 os << StringPrintf("0x%08x", dex_pc);
528 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
529 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800530 }
531 }
532
533 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800534 const void* quick_code = oat_method.GetQuickCode();
535 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800536 return;
537 }
Ian Rogers1809a722013-08-09 22:05:32 -0700538 MappingTable table(oat_method.GetMappingTable());
539 if (table.TotalSize() != 0) {
540 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
541 std::ostream indent_os(&indent_filter);
542 if (table.PcToDexSize() != 0) {
543 typedef MappingTable::PcToDexIterator It;
544 os << "suspend point mappings {\n";
545 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
546 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
547 }
548 os << "}\n";
549 }
550 if (table.DexToPcSize() != 0) {
551 typedef MappingTable::DexToPcIterator It;
552 os << "catch entry mappings {\n";
553 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
554 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
555 }
556 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800557 }
558 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800559 }
560
Ian Rogers1809a722013-08-09 22:05:32 -0700561 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
562 size_t offset, bool suspend_point_mapping) {
563 MappingTable table(oat_method.GetMappingTable());
564 if (suspend_point_mapping && table.PcToDexSize() > 0) {
565 typedef MappingTable::PcToDexIterator It;
566 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
567 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700568 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700569 return cur.DexPc();
570 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800571 }
Ian Rogers1809a722013-08-09 22:05:32 -0700572 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
573 typedef MappingTable::DexToPcIterator It;
574 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
575 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700576 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700577 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700578 }
579 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800580 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800581 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700582 }
583
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800584 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
585 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700586 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
587 if (gc_map_raw != NULL) {
588 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800589 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700590 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800591 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700592 bool first = true;
593 for (size_t reg = 0; reg < num_regs; reg++) {
594 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
595 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800596 os << "GC map objects: v" << reg << " (";
597 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700598 os << ")";
599 first = false;
600 } else {
601 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800602 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700603 os << ")";
604 }
605 }
606 }
607 if (!first) {
608 os << "\n";
609 }
610 }
611 }
612 }
613
Mathieu Chartier590fee92013-09-13 13:46:47 -0700614 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
615 const OatFile::OatMethod& oat_method,
616 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
617 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800618 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800619 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800620 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
621 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
622 if (kind != kUndefined) {
623 if (first) {
624 os << "VRegs: v";
625 first = false;
626 } else {
627 os << ", v";
628 }
629 os << reg << " (";
630 switch (kind) {
631 case kImpreciseConstant:
632 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
633 DescribeVReg(os, oat_method, code_item, reg, kind);
634 break;
635 case kConstant:
636 os << "Constant: " << kinds.at((reg * 2) + 1);
637 break;
638 default:
639 DescribeVReg(os, oat_method, code_item, reg, kind);
640 break;
641 }
642 os << ")";
643 }
644 }
645 if (!first) {
646 os << "\n";
647 }
648 }
649
650
Ian Rogersb23a7722012-10-09 16:54:26 -0700651 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
652 if (code_item != NULL) {
653 size_t i = 0;
654 while (i < code_item->insns_size_in_code_units_) {
655 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800656 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700657 i += instruction->SizeInCodeUnits();
658 }
659 }
660 }
661
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800662 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700663 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800664 uint32_t method_access_flags) {
665 if ((method_access_flags & kAccNative) == 0) {
666 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700667 SirtRef<mirror::DexCache> dex_cache(soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file));
668 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800669 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700670 class_loader, &class_def, code_item, NULL,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800671 method_access_flags);
672 }
673 }
674
Mathieu Chartier590fee92013-09-13 13:46:47 -0700675 void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
676 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800677 const void* portable_code = oat_method.GetPortableCode();
678 const void* quick_code = oat_method.GetQuickCode();
679
680 size_t code_size = oat_method.GetQuickCodeSize();
681 if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800682 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700683 return;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800684 } else if (quick_code != nullptr) {
685 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
686 size_t offset = 0;
687 while (offset < code_size) {
688 DumpMappingAtOffset(os, oat_method, offset, false);
689 offset += disassembler_->Dump(os, quick_native_pc + offset);
690 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
691 if (dex_pc != DexFile::kDexNoIndex) {
692 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
693 if (verifier != nullptr) {
694 DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
695 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800696 }
697 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800698 } else {
699 CHECK(portable_code != nullptr);
700 CHECK_EQ(code_size, 0U); // TODO: disassembly of portable is currently not supported.
Ian Rogersb23a7722012-10-09 16:54:26 -0700701 }
702 }
703
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700704 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800705 const OatFile& oat_file_;
706 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Dave Allison404f59f2014-02-24 11:10:01 -0800707 bool dump_raw_mapping_table_;
708 bool dump_raw_gc_map_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800709 std::set<uintptr_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800710 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700711};
712
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800713class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700714 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800715 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers1d54e732013-05-02 21:10:01 -0700716 const std::string& host_prefix, gc::space::ImageSpace& image_space,
Dave Allison404f59f2014-02-24 11:10:01 -0800717 const ImageHeader& image_header, bool dump_raw_mapping_table,
718 bool dump_raw_gc_map)
Ian Rogersca190662012-06-26 15:45:57 -0700719 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
Dave Allison404f59f2014-02-24 11:10:01 -0800720 image_space_(image_space), image_header_(image_header),
721 dump_raw_mapping_table_(dump_raw_mapping_table),
722 dump_raw_gc_map_(dump_raw_gc_map) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700723
Ian Rogersb726dcb2012-09-05 08:57:23 -0700724 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800725 std::ostream& os = *os_;
726 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700727
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800728 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700729
Mathieu Chartier31e89252013-08-28 11:29:12 -0700730 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
731 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
732
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800733 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700734
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800735 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700736
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800737 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
738
739 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
740
741 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800742
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800743 {
744 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
745 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
746 std::ostream indent1_os(&indent1_filter);
747 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
748 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
749 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
750 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800751 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800752 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
753 if (image_root_object->IsObjectArray()) {
754 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
755 std::ostream indent2_os(&indent2_filter);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800756 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -0800757 = image_root_object->AsObjectArray<mirror::Object>();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800758 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800759 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogersfa824272013-11-05 16:12:57 -0800760 size_t run = 0;
761 for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
762 if (value == image_root_object_array->Get(j)) {
763 run++;
764 } else {
765 break;
766 }
767 }
768 if (run == 0) {
769 indent2_os << StringPrintf("%d: ", i);
770 } else {
771 indent2_os << StringPrintf("%d to %zd: ", i, i + run);
772 i = i + run;
773 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800774 if (value != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800775 PrettyObjectValue(indent2_os, value->GetClass(), value);
776 } else {
777 indent2_os << i << ": null\n";
778 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800779 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700780 }
781 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700782 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800783 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700784
Brian Carlstromaded5f72011-10-07 17:15:04 -0700785 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800786 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800787 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800788 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800789 if (!host_prefix_.empty()) {
790 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800791 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700792 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800793 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700794 std::string error_msg;
795 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700796 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700797 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700798 return;
799 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800800 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700801
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800802 stats_.oat_file_bytes = oat_file->Size();
803
Dave Allison404f59f2014-02-24 11:10:01 -0800804 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file, dump_raw_mapping_table_,
805 dump_raw_gc_map_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800806
Mathieu Chartier02e25112013-08-14 16:14:24 -0700807 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700808 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700809 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
810 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700811 }
812
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800813 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700814
815 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700816 gc::Heap* heap = Runtime::Current()->GetHeap();
817 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700818 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700819 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700820 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700821 heap->FlushAllocStack();
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -0800822 // Since FlushAllocStack() above resets the (active) allocation
823 // stack. Need to revoke the thread-local allocation stacks that
824 // point into it.
825 heap->RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700826 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800827 {
828 std::ostream* saved_os = os_;
829 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
830 std::ostream indent_os(&indent_filter);
831 os_ = &indent_os;
832 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700833 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800834 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700835 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800836 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
837 indent_os << "\n";
838 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700839 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800840 // Dump the large objects separately.
841 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
842 indent_os << "\n";
843 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700844 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800845 os << "STATS:\n" << std::flush;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700846 UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700847 if (file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700848 std::string cache_location(GetDalvikCacheFilenameOrDie(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700849 file.reset(OS::OpenFileForReading(cache_location.c_str()));
850 if (file.get() == NULL) {
851 LOG(WARNING) << "Failed to find image in " << image_filename_
852 << " and " << cache_location;
853 }
854 }
855 if (file.get() != NULL) {
856 stats_.file_bytes = file->GetLength();
857 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800858 size_t header_bytes = sizeof(ImageHeader);
859 stats_.header_bytes = header_bytes;
860 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
861 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700862 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
863 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800864 stats_.Dump(os);
865 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800866
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800867 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800868
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800869 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700870 }
871
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700872 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800873 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700874 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800875 CHECK(type != NULL);
876 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800877 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800878 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800879 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800880 os << StringPrintf("%p String: %s\n", string,
881 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700882 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800883 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800884 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700885 } else if (type->IsArtFieldClass()) {
886 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800887 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700888 } else if (type->IsArtMethodClass()) {
889 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800890 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800891 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800892 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800893 }
894 }
895
Brian Carlstromea46f952013-07-30 01:26:50 -0700896 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700897 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800898 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700899 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800900 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700901 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800902 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700903 if (type->IsPrimitiveLong()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800904 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700905 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800906 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700907 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800908 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700909 } else {
910 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800911 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700912 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800913 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700914 // Get the value, don't compute the type unless it is non-null as we don't want
915 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800916 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700917 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800918 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700919 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700920 // Grab the field type without causing resolution.
921 mirror::Class* field_type = fh.GetType(false);
922 if (field_type != NULL) {
923 PrettyObjectValue(os, field_type, value);
924 } else {
925 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
926 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700927 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800928 }
929 }
930
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800931 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700932 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800933 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800934 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800935 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800936 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700937 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800938 if (fields != NULL) {
939 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700940 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800941 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800942 }
943 }
944 }
945
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800946 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800947 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700948 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800949
Ian Rogersef7d42f2014-01-06 12:55:46 -0800950 const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700951 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800952 const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
953 if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
954 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800955 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700956 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800957 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700958 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800959 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800960 }
961
Ian Rogersef7d42f2014-01-06 12:55:46 -0800962 uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700963 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800964 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
965 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700966 return 0;
967 }
968 return oat_code_begin[-1];
969 }
970
Ian Rogersef7d42f2014-01-06 12:55:46 -0800971 const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700972 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800973 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700974 if (oat_code_begin == NULL) {
975 return NULL;
976 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800977 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700978 }
979
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800980 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700981 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700982 DCHECK(obj != NULL);
983 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800984 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700985 if (!state->InDumpSpace(obj)) {
986 return;
987 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700988
989 size_t object_bytes = obj->SizeOf();
990 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
991 state->stats_.object_bytes += object_bytes;
992 state->stats_.alignment_bytes += alignment_bytes;
993
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800994 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800995 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800996 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800997 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
998 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800999 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001000 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001001 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1002 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -07001003 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001004 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001005 PrettyField(obj->AsArtField()).c_str());
1006 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001007 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -07001008 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001009 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001010 os << StringPrintf("%p: java.lang.String %s\n", obj,
1011 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001012 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001013 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001014 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001015 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1016 std::ostream indent_os(&indent_filter);
1017 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -08001018 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001019 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -08001020 int32_t length = obj_array->GetLength();
1021 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001022 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001023 size_t run = 0;
1024 for (int32_t j = i + 1; j < length; j++) {
1025 if (value == obj_array->Get(j)) {
1026 run++;
1027 } else {
1028 break;
1029 }
1030 }
1031 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001032 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001033 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001034 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001035 i = i + run;
1036 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001037 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001038 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001039 }
1040 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001041 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -08001042 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001043 indent_os << "STATICS:\n";
1044 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1045 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -08001046 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001047 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001048 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001049 }
1050 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001051 } else if (obj->IsArtMethod()) {
1052 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001053 if (method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001054 // TODO: portable dumping.
1055 DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1056 DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001057 bool first_occurrence;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001058 const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1059 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1060 state->ComputeOatSize(quick_oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001061 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001062 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001063 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001064 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1065 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001066 }
Ian Rogers19846512012-02-24 11:42:47 -08001067 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao88474b42013-10-23 16:24:40 -07001068 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1069 MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001070 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001071 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001072 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07001073 // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
1074 // to the quick/portable to interpreter bridge.
1075 CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001076
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001077 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001078 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001079 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001080
Elliott Hughesa0e18062012-04-13 15:59:59 -07001081 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001082 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001083 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001084 state->stats_.gc_map_bytes += gc_map_bytes;
1085 }
1086
1087 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001088 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001089 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001090 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1091 }
1092
1093 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001094 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001095 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001096 state->stats_.vmap_table_bytes += vmap_table_bytes;
1097 }
1098
Ian Rogersef7d42f2014-01-06 12:55:46 -08001099 // TODO: portable dumping.
1100 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1101 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1102 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1103 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001104 if (first_occurrence) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001105 state->stats_.managed_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001106 if (method->IsConstructor()) {
1107 if (method->IsStatic()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001108 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001109 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001110 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001111 }
1112 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001113 state->stats_.large_method_code_bytes += quick_oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001114 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001115 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001116 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001117
Ian Rogersef7d42f2014-01-06 12:55:46 -08001118 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001119 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1120 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001121
1122 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001123 vmap_table_bytes + quick_oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001124
1125 double expansion =
Ian Rogersef7d42f2014-01-06 12:55:46 -08001126 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001127 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001128 }
1129 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001130 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001131 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001132
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001133 std::set<const void*> already_seen_;
1134 // Compute the size of the given data within the oat file and whether this is the first time
1135 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001136 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001137 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001138 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001139 already_seen_.insert(oat_data);
1140 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001141 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001142 }
1143 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001144 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001145
1146 public:
1147 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001148 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001149 size_t file_bytes;
1150
1151 size_t header_bytes;
1152 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001153 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001154 size_t alignment_bytes;
1155
1156 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001157 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001158 size_t managed_to_native_code_bytes;
1159 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001160 size_t class_initializer_code_bytes;
1161 size_t large_initializer_code_bytes;
1162 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001163
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001164 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001165 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001166 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001167
1168 size_t dex_instruction_bytes;
1169
Brian Carlstromea46f952013-07-30 01:26:50 -07001170 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001171 std::vector<size_t> method_outlier_size;
1172 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001173 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001174
1175 explicit Stats()
1176 : oat_file_bytes(0),
1177 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001178 header_bytes(0),
1179 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001180 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001181 alignment_bytes(0),
1182 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001183 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001184 managed_to_native_code_bytes(0),
1185 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001186 class_initializer_code_bytes(0),
1187 large_initializer_code_bytes(0),
1188 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001189 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001190 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001191 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001192 dex_instruction_bytes(0) {}
1193
Elliott Hughesa0e18062012-04-13 15:59:59 -07001194 struct SizeAndCount {
1195 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1196 size_t bytes;
1197 size_t count;
1198 };
1199 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1200 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001201
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001202 void Update(const char* descriptor, size_t object_bytes) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001203 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1204 if (it != sizes_and_counts.end()) {
1205 it->second.bytes += object_bytes;
1206 it->second.count += 1;
1207 } else {
1208 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1209 }
1210 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001211
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001212 double PercentOfOatBytes(size_t size) {
1213 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1214 }
1215
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001216 double PercentOfFileBytes(size_t size) {
1217 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1218 }
1219
1220 double PercentOfObjectBytes(size_t size) {
1221 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1222 }
1223
Brian Carlstromea46f952013-07-30 01:26:50 -07001224 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001225 method_outlier_size.push_back(total_size);
1226 method_outlier_expansion.push_back(expansion);
1227 method_outlier.push_back(method);
1228 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001229
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001230 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001231 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001232 size_t sum_of_sizes = 0;
1233 size_t sum_of_sizes_squared = 0;
1234 size_t sum_of_expansion = 0;
1235 size_t sum_of_expansion_squared = 0;
1236 size_t n = method_outlier_size.size();
1237 for (size_t i = 0; i < n; i++) {
1238 size_t cur_size = method_outlier_size[i];
1239 sum_of_sizes += cur_size;
1240 sum_of_sizes_squared += cur_size * cur_size;
1241 double cur_expansion = method_outlier_expansion[i];
1242 sum_of_expansion += cur_expansion;
1243 sum_of_expansion_squared += cur_expansion * cur_expansion;
1244 }
1245 size_t size_mean = sum_of_sizes / n;
1246 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1247 double expansion_mean = sum_of_expansion / n;
1248 double expansion_variance =
1249 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1250
1251 // Dump methods whose size is a certain number of standard deviations from the mean
1252 size_t dumped_values = 0;
1253 size_t skipped_values = 0;
1254 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1255 size_t cur_size_variance = i * i * size_variance;
1256 bool first = true;
1257 for (size_t j = 0; j < n; j++) {
1258 size_t cur_size = method_outlier_size[j];
1259 if (cur_size > size_mean) {
1260 size_t cur_var = cur_size - size_mean;
1261 cur_var = cur_var * cur_var;
1262 if (cur_var > cur_size_variance) {
1263 if (dumped_values > 20) {
1264 if (i == 1) {
1265 skipped_values++;
1266 } else {
1267 i = 2; // jump to counting for 1 standard deviation
1268 break;
1269 }
1270 } else {
1271 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001272 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001273 first = false;
1274 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001275 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001276 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001277 method_outlier_size[j] = 0; // don't consider this method again
1278 dumped_values++;
1279 }
1280 }
1281 }
1282 }
1283 }
1284 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001285 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001286 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001287 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001288 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001289
1290 // Dump methods whose expansion is a certain number of standard deviations from the mean
1291 dumped_values = 0;
1292 skipped_values = 0;
1293 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1294 double cur_expansion_variance = i * i * expansion_variance;
1295 bool first = true;
1296 for (size_t j = 0; j < n; j++) {
1297 double cur_expansion = method_outlier_expansion[j];
1298 if (cur_expansion > expansion_mean) {
1299 size_t cur_var = cur_expansion - expansion_mean;
1300 cur_var = cur_var * cur_var;
1301 if (cur_var > cur_expansion_variance) {
1302 if (dumped_values > 20) {
1303 if (i == 1) {
1304 skipped_values++;
1305 } else {
1306 i = 2; // jump to counting for 1 standard deviation
1307 break;
1308 }
1309 } else {
1310 if (first) {
1311 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001312 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001313 first = false;
1314 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001315 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001316 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001317 method_outlier_expansion[j] = 0.0; // don't consider this method again
1318 dumped_values++;
1319 }
1320 }
1321 }
1322 }
1323 }
1324 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001325 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001326 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001327 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001328 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001329 }
1330
Ian Rogersb726dcb2012-09-05 08:57:23 -07001331 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001332 {
1333 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1334 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1335 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1336 std::ostream indent_os(&indent_filter);
1337 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1338 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001339 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001340 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1341 header_bytes, PercentOfFileBytes(header_bytes),
1342 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001343 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001344 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1345 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001346 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001347 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001348
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001349 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001350 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001351 for (const auto& sizes_and_count : sizes_and_counts) {
1352 const std::string& descriptor(sizes_and_count.first);
1353 double average = static_cast<double>(sizes_and_count.second.bytes) /
1354 static_cast<double>(sizes_and_count.second.count);
1355 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001356 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001357 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001358 descriptor.c_str(), sizes_and_count.second.bytes,
1359 sizes_and_count.second.count, average, percent);
1360 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001361 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001362 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001363 CHECK_EQ(object_bytes, object_bytes_total);
1364
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001365 os << StringPrintf("oat_file_bytes = %8zd\n"
1366 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1367 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1368 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1369 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1370 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1371 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001372 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001373 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1374 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001375 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1376 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1377 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1378 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001379 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001380 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001381 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001382 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1383 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001384 }
1385
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001386 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1387 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1388 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001389 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1390 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1391 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001392 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001393
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001394 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1395 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001396 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1397 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001398 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001399 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001400
1401 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001402 }
1403 } stats_;
1404
1405 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001406 enum {
1407 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1408 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1409 kLargeConstructorDexBytes = 4000,
1410 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1411 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1412 kLargeMethodDexBytes = 16000
1413 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001414 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001415 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001416 const std::string image_filename_;
1417 const std::string host_prefix_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001418 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001419 const ImageHeader& image_header_;
Dave Allison404f59f2014-02-24 11:10:01 -08001420 bool dump_raw_mapping_table_;
1421 bool dump_raw_gc_map_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001422
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001423 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001424};
1425
Elliott Hughes72395bf2012-04-24 13:45:26 -07001426static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001427 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001428
Brian Carlstrom78128a62011-09-15 17:21:19 -07001429 // Skip over argv[0].
1430 argv++;
1431 argc--;
1432
1433 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001434 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001435 usage();
1436 }
1437
Brian Carlstromaded5f72011-10-07 17:15:04 -07001438 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001439 const char* image_filename = NULL;
1440 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001441 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001442 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001443 std::ostream* os = &std::cout;
1444 UniquePtr<std::ofstream> out;
Dave Allison404f59f2014-02-24 11:10:01 -08001445 bool dump_raw_mapping_table = false;
1446 bool dump_raw_gc_map = false;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001447
1448 for (int i = 0; i < argc; i++) {
1449 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001450 if (option.starts_with("--oat-file=")) {
1451 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001452 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001453 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001454 } else if (option.starts_with("--boot-image=")) {
1455 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001456 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001457 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Dave Allison404f59f2014-02-24 11:10:01 -08001458 } else if (option.starts_with("--dump:")) {
1459 if (option == "--dump:raw_mapping_table") {
1460 dump_raw_mapping_table = true;
1461 } else if (option == "--dump:raw_gc_map") {
1462 dump_raw_gc_map = true;
1463 } else {
1464 fprintf(stderr, "Unknown argument %s\n", option.data());
1465 usage();
1466 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001467 } else if (option.starts_with("--output=")) {
1468 const char* filename = option.substr(strlen("--output=")).data();
1469 out.reset(new std::ofstream(filename));
1470 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001471 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001472 usage();
1473 }
1474 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001475 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001476 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001477 usage();
1478 }
1479 }
1480
Brian Carlstromaded5f72011-10-07 17:15:04 -07001481 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001482 fprintf(stderr, "Either --image or --oat must be specified\n");
1483 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001484 }
1485
Brian Carlstromaded5f72011-10-07 17:15:04 -07001486 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001487 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1488 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001489 }
1490
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001491 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001492 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1493 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001494 host_prefix.reset(new std::string(android_product_out));
1495 } else {
1496 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001497 }
1498 }
1499
Brian Carlstromaded5f72011-10-07 17:15:04 -07001500 if (oat_filename != NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001501 std::string error_msg;
Logan Chien0c717dd2012-03-28 18:31:07 +08001502 OatFile* oat_file =
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001503 OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001504 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001505 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001506 return EXIT_FAILURE;
1507 }
Dave Allison404f59f2014-02-24 11:10:01 -08001508 OatDumper oat_dumper(*host_prefix.get(), *oat_file, dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001509 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001510 return EXIT_SUCCESS;
1511 }
1512
Brian Carlstrom78128a62011-09-15 17:21:19 -07001513 Runtime::Options options;
1514 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001515 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001516 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001517 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001518
1519 // We are more like a compiler than a run-time. We don't want to execute code.
Vladimir Marko51154732014-01-02 09:44:23 +00001520 struct OatDumpCompilerCallbacks : CompilerCallbacks {
1521 virtual bool MethodVerified(verifier::MethodVerifier* /*verifier*/) { return true; }
1522 virtual void ClassRejected(ClassReference /*ref*/) { }
1523 } callbacks;
1524 options.push_back(std::make_pair("compilercallbacks",
1525 static_cast<CompilerCallbacks*>(&callbacks)));
Brian Carlstrom6c871802013-07-17 14:25:35 -07001526
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001527 if (boot_image_filename != NULL) {
1528 boot_image_option += "-Ximage:";
1529 boot_image_option += boot_image_filename;
1530 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001531 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001532 if (image_filename != NULL) {
1533 image_option += "-Ximage:";
1534 image_option += image_filename;
1535 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1536 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001537
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001538 if (!host_prefix->empty()) {
1539 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001540 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001541
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001542 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001543 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001544 return EXIT_FAILURE;
1545 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001546 UniquePtr<Runtime> runtime(Runtime::Current());
1547 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1548 // give it away now and then switch to a more managable ScopedObjectAccess.
1549 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1550 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001551
Ian Rogers1d54e732013-05-02 21:10:01 -07001552 gc::Heap* heap = Runtime::Current()->GetHeap();
1553 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001554 CHECK(image_space != NULL);
1555 const ImageHeader& image_header = image_space->GetImageHeader();
1556 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001557 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001558 return EXIT_FAILURE;
1559 }
Dave Allison404f59f2014-02-24 11:10:01 -08001560 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header,
1561 dump_raw_mapping_table, dump_raw_gc_map);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001562 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001563 return EXIT_SUCCESS;
1564}
1565
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001566} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001567
1568int main(int argc, char** argv) {
1569 return art::oatdump(argc, argv);
1570}