blob: cf1b6af8096ac216433e0a491f4fbb1637faa8a3 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstrom78128a62011-09-15 17:21:19 -070016
17#include <stdio.h>
18#include <stdlib.h>
19
Brian Carlstrom27ec9612011-09-19 20:20:38 -070020#include <fstream>
21#include <iostream>
Brian Carlstrom78128a62011-09-15 17:21:19 -070022#include <string>
23#include <vector>
24
Elliott Hughese222ee02012-12-13 14:41:43 -080025#include "base/stringpiece.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/unix_file/fd_file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070027#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080030#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080031#include "disassembler.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080032#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070033#include "gc/space/image_space.h"
34#include "gc/space/large_object_space.h"
35#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070036#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080037#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070038#include "mapping_table.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070039#include "mirror/art_field-inl.h"
40#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/array-inl.h"
42#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/object-inl.h"
44#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080045#include "oat.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080046#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080047#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070048#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070049#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070050#include "scoped_thread_state_change.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080051#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070052#include "vmap_table.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070053
54namespace art {
55
56static void usage() {
57 fprintf(stderr,
58 "Usage: oatdump [options] ...\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080059 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
60 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070061 "\n");
62 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080063 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070064 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070065 "\n");
66 fprintf(stderr,
67 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080068 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070069 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070070 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070071 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080072 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070073 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070074 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070075 " --host-prefix may be used to translate host paths to target paths during\n"
76 " cross compilation.\n"
77 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080078 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070079 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070080 fprintf(stderr,
81 " --output=<file> may be used to send the output to a file.\n"
82 " Example: --output=/tmp/oatdump.txt\n"
83 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070084 exit(EXIT_FAILURE);
85}
86
Ian Rogersff1ed472011-09-20 13:46:24 -070087const char* image_roots_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080088 "kResolutionMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070089 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070090 "kRefsOnlySaveMethod",
91 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070092 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070093 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070094 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070095};
96
Elliott Hughese3c845c2012-02-28 17:23:01 -080097class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -070098 public:
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070099 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file)
100 : host_prefix_(host_prefix),
101 oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800102 oat_dex_files_(oat_file.GetOatDexFiles()),
103 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800104 AddAllOffsets();
105 }
106
107 void Dump(std::ostream& os) {
108 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700109
110 os << "MAGIC:\n";
111 os << oat_header.GetMagic() << "\n\n";
112
113 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800114 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700115
Elliott Hughesa72ec822012-03-05 17:12:22 -0800116 os << "INSTRUCTION SET:\n";
117 os << oat_header.GetInstructionSet() << "\n\n";
118
Brian Carlstromaded5f72011-10-07 17:15:04 -0700119 os << "DEX FILE COUNT:\n";
120 os << oat_header.GetDexFileCount() << "\n\n";
121
122 os << "EXECUTABLE OFFSET:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800123 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700124
Brian Carlstrom28db0122012-10-18 16:20:41 -0700125 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
126 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
127
128 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800129 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700130
131 os << "IMAGE FILE LOCATION:\n";
132 const std::string image_file_location(oat_header.GetImageFileLocation());
133 os << image_file_location;
134 if (!image_file_location.empty() && !host_prefix_.empty()) {
135 os << " (" << host_prefix_ << image_file_location << ")";
136 }
137 os << "\n\n";
138
Ian Rogers30fab402012-01-23 15:43:46 -0800139 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800140 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700141
Ian Rogers30fab402012-01-23 15:43:46 -0800142 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800143 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700144
145 os << std::flush;
146
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800147 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
148 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700149 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800150 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700151 }
152 }
153
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800154 size_t ComputeSize(const void* oat_data) {
155 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
156 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
157 return 0; // Address not in oat file
158 }
159 uint32_t begin_offset = reinterpret_cast<size_t>(oat_data) -
160 reinterpret_cast<size_t>(oat_file_.Begin());
161 typedef std::set<uint32_t>::iterator It;
162 It it = offsets_.upper_bound(begin_offset);
163 CHECK(it != offsets_.end());
164 uint32_t end_offset = *it;
165 return end_offset - begin_offset;
166 }
167
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700168 InstructionSet GetInstructionSet() {
169 return oat_file_.GetOatHeader().GetInstructionSet();
170 }
171
Brian Carlstromea46f952013-07-30 01:26:50 -0700172 const void* GetOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800173 MethodHelper mh(m);
174 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
175 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
176 CHECK(oat_dex_file != NULL);
177 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
178 if (dex_file.get() != NULL) {
179 uint32_t class_def_index;
180 bool found = dex_file->FindClassDefIndex(mh.GetDeclaringClassDescriptor(), class_def_index);
181 if (found) {
182 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
183 CHECK(oat_class != NULL);
184 size_t method_index = m->GetMethodIndex();
185 return oat_class->GetOatMethod(method_index).GetCode();
186 }
187 }
188 }
189 return NULL;
190 }
191
Brian Carlstromaded5f72011-10-07 17:15:04 -0700192 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800193 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800194 // We don't know the length of the code for each method, but we need to know where to stop
195 // when disassembling. What we do know is that a region of code will be followed by some other
196 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
197 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800198 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
199 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800200 CHECK(oat_dex_file != NULL);
201 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
202 if (dex_file.get() == NULL) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800203 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800204 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800205 offsets_.insert(reinterpret_cast<uint32_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800206 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
207 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
208 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
209 const byte* class_data = dex_file->GetClassData(class_def);
210 if (class_data != NULL) {
211 ClassDataItemIterator it(*dex_file, class_data);
212 SkipAllFields(it);
213 uint32_t class_method_index = 0;
214 while (it.HasNextDirectMethod()) {
215 AddOffsets(oat_class->GetOatMethod(class_method_index++));
216 it.Next();
217 }
218 while (it.HasNextVirtualMethod()) {
219 AddOffsets(oat_class->GetOatMethod(class_method_index++));
220 it.Next();
221 }
222 }
223 }
224 }
225
226 // If the last thing in the file is code for a method, there won't be an offset for the "next"
227 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
228 // for the end of the file.
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800229 offsets_.insert(static_cast<uint32_t>(oat_file_.Size()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800230 }
231
232 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800233 uint32_t code_offset = oat_method.GetCodeOffset();
234 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
235 code_offset &= ~0x1;
236 }
237 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800238 offsets_.insert(oat_method.GetMappingTableOffset());
239 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700240 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800241 }
242
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800243 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700244 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800245 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800246 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800247 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile());
248 if (dex_file.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700249 os << "NOT FOUND\n\n";
250 return;
251 }
252 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
253 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
254 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700255 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
256 CHECK(oat_class.get() != NULL);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800257 os << StringPrintf("%zd: %s (type_idx=%d) (", class_def_index, descriptor, class_def.class_idx_)
mikaelpeltier6ffd0962012-10-25 15:37:45 +0200258 << oat_class->GetStatus() << ")"
259 // TODO: JACK CLASS ACCESS (HACK TO BE REMOVED)
260 << ( (class_def.access_flags_ & kAccClassJack) == kAccClassJack ? " (Jack)" : "" )
261 << "\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800262 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
263 std::ostream indented_os(&indent_filter);
264 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700265 }
266
267 os << std::flush;
268 }
269
Elliott Hughese3c845c2012-02-28 17:23:01 -0800270 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700271 while (it.HasNextStaticField()) {
272 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700273 }
Ian Rogers0571d352011-11-03 19:51:38 -0700274 while (it.HasNextInstanceField()) {
275 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700276 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800277 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700278
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800279 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
280 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800281 const byte* class_data = dex_file.GetClassData(class_def);
282 if (class_data == NULL) { // empty class such as a marker interface?
283 return;
284 }
285 ClassDataItemIterator it(dex_file, class_data);
286 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800287 uint32_t class_def_idx = dex_file.GetIndexForClassDef(class_def);
288 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700289 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800290 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
291 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
292 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
293 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700294 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700295 }
Ian Rogers0571d352011-11-03 19:51:38 -0700296 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800297 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
298 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
299 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
300 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700301 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700302 }
Ian Rogers0571d352011-11-03 19:51:38 -0700303 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700304 os << std::flush;
305 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800306
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800307 void DumpOatMethod(std::ostream& os, uint32_t class_def_idx, uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800308 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800309 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
310 uint32_t method_access_flags) {
311 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700312 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
313 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800314 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
315 std::ostream indent1_os(&indent1_filter);
316 {
317 indent1_os << "DEX CODE:\n";
318 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
319 std::ostream indent2_os(&indent2_filter);
320 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700321 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800322 if (Runtime::Current() != NULL) {
323 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
324 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
325 std::ostream indent2_os(&indent2_filter);
326 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def_idx, code_item, method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700327 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800328 {
329 indent1_os << "OAT DATA:\n";
330 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
331 std::ostream indent2_os(&indent2_filter);
332
333 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
334 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
335 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
336 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
337 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
338 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
339 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
340 DumpVmap(indent2_os, oat_method);
341 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
342 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
343 const bool kDumpRawMappingTable = false;
344 if (kDumpRawMappingTable) {
345 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
346 std::ostream indent3_os(&indent3_filter);
347 DumpMappingTable(indent3_os, oat_method);
348 }
349 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
350 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
351 const bool kDumpRawGcMap = false;
352 if (kDumpRawGcMap) {
353 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
354 std::ostream indent3_os(&indent3_filter);
355 DumpGcMap(indent3_os, oat_method, code_item);
356 }
357 }
358 {
359 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
360 oat_method.GetCode(),
361 oat_method.GetCodeOffset(),
362 oat_method.GetCodeSize(),
363 oat_method.GetCode() != NULL ? "..." : "");
364 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
365 std::ostream indent2_os(&indent2_filter);
366 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def_idx, code_item,
367 method_access_flags);
368 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700369 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800370
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800371 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
372 if (spill_mask == 0) {
373 return;
374 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800375 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800376 for (size_t i = 0; i < 32; i++) {
377 if ((spill_mask & (1 << i)) != 0) {
378 if (is_float) {
379 os << "fr" << i;
380 } else {
381 os << "r" << i;
382 }
383 spill_mask ^= 1 << i; // clear bit
384 if (spill_mask != 0) {
385 os << ", ";
386 } else {
387 break;
388 }
389 }
390 }
391 os << ")";
392 }
393
Ian Rogersb23a7722012-10-09 16:54:26 -0700394 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700395 const uint8_t* raw_table = oat_method.GetVmapTable();
396 if (raw_table != NULL) {
397 const VmapTable vmap_table(raw_table);
398 bool first = true;
399 bool processing_fp = false;
400 uint32_t spill_mask = oat_method.GetCoreSpillMask();
401 for (size_t i = 0; i < vmap_table.Size(); i++) {
402 uint16_t dex_reg = vmap_table[i];
403 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
404 processing_fp ? kFloatVReg : kIntVReg);
405 os << (first ? "v" : ", v") << dex_reg;
406 if (!processing_fp) {
407 os << "/r" << cpu_reg;
408 } else {
409 os << "/fr" << cpu_reg;
410 }
411 first = false;
412 if (!processing_fp && dex_reg == 0xFFFF) {
413 processing_fp = true;
414 spill_mask = oat_method.GetFpSpillMask();
415 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800416 }
Ian Rogers1809a722013-08-09 22:05:32 -0700417 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800418 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800419 }
420
Ian Rogersb23a7722012-10-09 16:54:26 -0700421 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800422 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700423 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700424 if (raw_table != NULL) {
425 const VmapTable vmap_table(raw_table);
426 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700427 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800428 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
429 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
430 : oat_method.GetCoreSpillMask();
431 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700432 } else {
433 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
434 oat_method.GetFpSpillMask(),
435 oat_method.GetFrameSizeInBytes(), reg);
436 os << "[sp + #" << offset << "]";
437 }
438 }
439 }
440
441 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
442 const DexFile::CodeItem* code_item) {
443 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800444 if (gc_map_raw == NULL) {
445 return;
446 }
Ian Rogers0c7abda2012-09-19 13:33:42 -0700447 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogersb23a7722012-10-09 16:54:26 -0700448 const void* code = oat_method.GetCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800449 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
Ian Rogersbb6723f2012-09-21 09:49:06 -0700450 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) +
451 map.GetNativePcOffset(entry);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800452 os << StringPrintf("%p", native_pc);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800453 size_t num_regs = map.RegWidth() * 8;
454 const uint8_t* reg_bitmap = map.GetBitMap(entry);
455 bool first = true;
456 for (size_t reg = 0; reg < num_regs; reg++) {
457 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
458 if (first) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700459 os << " v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800460 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700461 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800462 first = false;
463 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700464 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800465 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700466 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800467 }
468 }
469 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700470 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800471 }
472 }
473
474 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800475 const void* code = oat_method.GetCode();
Ian Rogers1809a722013-08-09 22:05:32 -0700476 if (code == NULL) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800477 return;
478 }
Ian Rogers1809a722013-08-09 22:05:32 -0700479 MappingTable table(oat_method.GetMappingTable());
480 if (table.TotalSize() != 0) {
481 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
482 std::ostream indent_os(&indent_filter);
483 if (table.PcToDexSize() != 0) {
484 typedef MappingTable::PcToDexIterator It;
485 os << "suspend point mappings {\n";
486 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
487 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
488 }
489 os << "}\n";
490 }
491 if (table.DexToPcSize() != 0) {
492 typedef MappingTable::DexToPcIterator It;
493 os << "catch entry mappings {\n";
494 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
495 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
496 }
497 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800498 }
499 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800500 }
501
Ian Rogers1809a722013-08-09 22:05:32 -0700502 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
503 size_t offset, bool suspend_point_mapping) {
504 MappingTable table(oat_method.GetMappingTable());
505 if (suspend_point_mapping && table.PcToDexSize() > 0) {
506 typedef MappingTable::PcToDexIterator It;
507 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
508 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700509 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700510 return cur.DexPc();
511 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800512 }
Ian Rogers1809a722013-08-09 22:05:32 -0700513 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
514 typedef MappingTable::DexToPcIterator It;
515 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
516 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700517 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700518 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700519 }
520 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800521 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800522 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700523 }
524
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800525 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
526 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700527 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
528 if (gc_map_raw != NULL) {
529 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800530 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700531 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800532 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700533 bool first = true;
534 for (size_t reg = 0; reg < num_regs; reg++) {
535 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
536 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800537 os << "GC map objects: v" << reg << " (";
538 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700539 os << ")";
540 first = false;
541 } else {
542 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800543 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700544 os << ")";
545 }
546 }
547 }
548 if (!first) {
549 os << "\n";
550 }
551 }
552 }
553 }
554
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800555 void DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method,
556 uint32_t dex_method_idx, const DexFile* dex_file,
557 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
558 uint32_t method_access_flags, uint32_t dex_pc) {
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800559 static UniquePtr<verifier::MethodVerifier> verifier;
560 static const DexFile* verified_dex_file = NULL;
561 static uint32_t verified_dex_method_idx = DexFile::kDexNoIndex;
562 if (dex_file != verified_dex_file || verified_dex_method_idx != dex_method_idx) {
563 ScopedObjectAccess soa(Thread::Current());
564 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
565 mirror::ClassLoader* class_loader = NULL;
566 verifier.reset(new verifier::MethodVerifier(dex_file, dex_cache, class_loader, class_def_idx,
567 code_item, dex_method_idx, NULL,
Jeff Haoee988952013-04-16 14:23:47 -0700568 method_access_flags, true, true));
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800569 verifier->Verify();
570 verified_dex_file = dex_file;
571 verified_dex_method_idx = dex_method_idx;
572 }
573 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800574 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800575 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
576 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
577 if (kind != kUndefined) {
578 if (first) {
579 os << "VRegs: v";
580 first = false;
581 } else {
582 os << ", v";
583 }
584 os << reg << " (";
585 switch (kind) {
586 case kImpreciseConstant:
587 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
588 DescribeVReg(os, oat_method, code_item, reg, kind);
589 break;
590 case kConstant:
591 os << "Constant: " << kinds.at((reg * 2) + 1);
592 break;
593 default:
594 DescribeVReg(os, oat_method, code_item, reg, kind);
595 break;
596 }
597 os << ")";
598 }
599 }
600 if (!first) {
601 os << "\n";
602 }
603 }
604
605
Ian Rogersb23a7722012-10-09 16:54:26 -0700606 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
607 if (code_item != NULL) {
608 size_t i = 0;
609 while (i < code_item->insns_size_in_code_units_) {
610 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800611 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700612 i += instruction->SizeInCodeUnits();
613 }
614 }
615 }
616
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800617 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
618 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
619 uint32_t method_access_flags) {
620 if ((method_access_flags & kAccNative) == 0) {
621 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800622 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
623 mirror::ClassLoader* class_loader = NULL;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800624 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
625 class_loader, class_def_idx, code_item, NULL,
626 method_access_flags);
627 }
628 }
629
630 void DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method,
631 uint32_t dex_method_idx, const DexFile* dex_file,
632 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
633 uint32_t method_access_flags) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700634 const void* code = oat_method.GetCode();
635 size_t code_size = oat_method.GetCodeSize();
636 if (code == NULL || code_size == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800637 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700638 return;
639 }
640 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code);
641 size_t offset = 0;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800642 const bool kDumpVRegs = (Runtime::Current() != NULL);
Ian Rogersb23a7722012-10-09 16:54:26 -0700643 while (offset < code_size) {
644 DumpMappingAtOffset(os, oat_method, offset, false);
645 offset += disassembler_->Dump(os, native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800646 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
647 if (dex_pc != DexFile::kDexNoIndex) {
648 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
649 if (kDumpVRegs) {
650 DumpVRegsAtDexPc(os, oat_method, dex_method_idx, dex_file, class_def_idx, code_item,
651 method_access_flags, dex_pc);
652 }
653 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700654 }
655 }
656
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700657 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800658 const OatFile& oat_file_;
659 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800660 std::set<uint32_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800661 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700662};
663
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800664class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700665 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800666 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers1d54e732013-05-02 21:10:01 -0700667 const std::string& host_prefix, gc::space::ImageSpace& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700668 const ImageHeader& image_header)
669 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
670 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700671
Ian Rogersb726dcb2012-09-05 08:57:23 -0700672 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800673 std::ostream& os = *os_;
674 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700675
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800676 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700677
Mathieu Chartier31e89252013-08-28 11:29:12 -0700678 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
679 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
680
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800681 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700682
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800683 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700684
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800685 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
686
687 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
688
689 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800690
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800691 {
692 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
693 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
694 std::ostream indent1_os(&indent1_filter);
695 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
696 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
697 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
698 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800699 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800700 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
701 if (image_root_object->IsObjectArray()) {
702 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
703 std::ostream indent2_os(&indent2_filter);
704 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800705 mirror::ObjectArray<mirror::Object>* image_root_object_array
706 = down_cast<mirror::ObjectArray<mirror::Object>*>(image_root_object);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800707 // = image_root_object->AsObjectArray<Object>();
708 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800709 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800710 if (value != NULL) {
711 indent2_os << i << ": ";
712 PrettyObjectValue(indent2_os, value->GetClass(), value);
713 } else {
714 indent2_os << i << ": null\n";
715 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800716 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700717 }
718 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700719 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800720 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700721
Brian Carlstromaded5f72011-10-07 17:15:04 -0700722 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800723 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800724 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800725 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800726 if (!host_prefix_.empty()) {
727 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800728 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700729 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800730 os << "\n";
Brian Carlstromae826982011-11-09 01:33:42 -0800731 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700732 if (oat_file == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800733 os << "NOT FOUND\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700734 return;
735 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800736 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700737
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800738 stats_.oat_file_bytes = oat_file->Size();
739
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700740 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800741
Mathieu Chartier02e25112013-08-14 16:14:24 -0700742 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700743 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700744 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
745 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700746 }
747
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800748 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700749
750 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700751 gc::Heap* heap = Runtime::Current()->GetHeap();
752 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700753 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700754 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700755 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700756 heap->FlushAllocStack();
757 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800758 {
759 std::ostream* saved_os = os_;
760 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
761 std::ostream indent_os(&indent_filter);
762 os_ = &indent_os;
763 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700764 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800765 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700766 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800767 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
768 indent_os << "\n";
769 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700770 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800771 // Dump the large objects separately.
772 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
773 indent_os << "\n";
774 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700775 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800776 os << "STATS:\n" << std::flush;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700777 UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
Elliott Hughes76160052012-12-12 16:31:20 -0800778 stats_.file_bytes = file->GetLength();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800779 size_t header_bytes = sizeof(ImageHeader);
780 stats_.header_bytes = header_bytes;
781 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
782 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700783 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
784 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800785 stats_.Dump(os);
786 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800787
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800788 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800789
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800790 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700791 }
792
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700793 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800794 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700795 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800796 CHECK(type != NULL);
797 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800798 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800799 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800800 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800801 os << StringPrintf("%p String: %s\n", string,
802 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700803 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800804 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800805 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700806 } else if (type->IsArtFieldClass()) {
807 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800808 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700809 } else if (type->IsArtMethodClass()) {
810 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800811 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800812 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800813 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800814 }
815 }
816
Brian Carlstromea46f952013-07-30 01:26:50 -0700817 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700818 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800819 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700820 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800821 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700822 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800823 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700824 if (type->IsPrimitiveLong()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800825 os << StringPrintf("%lld (0x%llx)\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700826 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800827 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700828 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800829 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700830 } else {
831 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800832 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700833 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800834 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700835 // Get the value, don't compute the type unless it is non-null as we don't want
836 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800837 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700838 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800839 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700840 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700841 // Grab the field type without causing resolution.
842 mirror::Class* field_type = fh.GetType(false);
843 if (field_type != NULL) {
844 PrettyObjectValue(os, field_type, value);
845 } else {
846 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
847 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700848 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800849 }
850 }
851
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800852 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700853 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800854 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800855 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800856 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800857 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700858 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800859 if (fields != NULL) {
860 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700861 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800862 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800863 }
864 }
865 }
866
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800867 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800868 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700869 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800870
Brian Carlstromea46f952013-07-30 01:26:50 -0700871 const void* GetOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700872 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700873 const void* code = m->GetEntryPointFromCompiledCode();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700874 if (code == GetResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800875 code = oat_dumper_->GetOatCode(m);
876 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700877 if (oat_dumper_->GetInstructionSet() == kThumb2) {
878 code = reinterpret_cast<void*>(reinterpret_cast<uint32_t>(code) & ~0x1);
879 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800880 return code;
881 }
882
Brian Carlstromea46f952013-07-30 01:26:50 -0700883 uint32_t GetOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700884 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700885 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetOatCodeBegin(m));
886 if (oat_code_begin == NULL) {
887 return 0;
888 }
889 return oat_code_begin[-1];
890 }
891
Brian Carlstromea46f952013-07-30 01:26:50 -0700892 const void* GetOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700893 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700894 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetOatCodeBegin(m));
895 if (oat_code_begin == NULL) {
896 return NULL;
897 }
898 return oat_code_begin + GetOatCodeSize(m);
899 }
900
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800901 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700902 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700903 DCHECK(obj != NULL);
904 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800905 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700906 if (!state->InDumpSpace(obj)) {
907 return;
908 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700909
910 size_t object_bytes = obj->SizeOf();
911 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
912 state->stats_.object_bytes += object_bytes;
913 state->stats_.alignment_bytes += alignment_bytes;
914
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800915 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800916 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800917 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800918 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
919 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800920 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800921 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800922 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
923 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -0700924 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700925 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700926 PrettyField(obj->AsArtField()).c_str());
927 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700928 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700929 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800930 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800931 os << StringPrintf("%p: java.lang.String %s\n", obj,
932 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800933 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800934 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800935 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800936 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
937 std::ostream indent_os(&indent_filter);
938 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -0800939 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800940 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -0800941 int32_t length = obj_array->GetLength();
942 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800943 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800944 size_t run = 0;
945 for (int32_t j = i + 1; j < length; j++) {
946 if (value == obj_array->Get(j)) {
947 run++;
948 } else {
949 break;
950 }
951 }
952 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800953 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800954 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800955 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -0800956 i = i + run;
957 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800958 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800959 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -0800960 }
961 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700962 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800963 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800964 indent_os << "STATICS:\n";
965 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
966 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -0800967 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700968 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800969 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -0800970 }
971 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700972 } else if (obj->IsArtMethod()) {
973 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700974 if (method->IsNative()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700975 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700976 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800977 bool first_occurrence;
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700978 const void* oat_code = state->GetOatCodeBegin(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700979 uint32_t oat_code_size = state->GetOatCodeSize(method);
980 state->ComputeOatSize(oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800981 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700982 state->stats_.native_to_managed_code_bytes += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800983 }
Jeff Haoaa4a7932013-05-13 11:28:27 -0700984 if (oat_code != method->GetEntryPointFromCompiledCode()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800985 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800986 }
Ian Rogers19846512012-02-24 11:42:47 -0800987 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao58df3272013-04-22 15:28:53 -0700988 method->IsResolutionMethod() || MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700989 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700990 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700991 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -0700992 // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
993 // to the quick/portable to interpreter bridge.
994 CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700995
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800996 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -0700997 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700998 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800999
Elliott Hughesa0e18062012-04-13 15:59:59 -07001000 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001001 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001002 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001003 state->stats_.gc_map_bytes += gc_map_bytes;
1004 }
1005
1006 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001007 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001008 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001009 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1010 }
1011
1012 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001013 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001014 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001015 state->stats_.vmap_table_bytes += vmap_table_bytes;
1016 }
1017
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001018 const void* oat_code_begin = state->GetOatCodeBegin(method);
1019 const void* oat_code_end = state->GetOatCodeEnd(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001020 uint32_t oat_code_size = state->GetOatCodeSize(method);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001021 state->ComputeOatSize(oat_code_begin, &first_occurrence);
1022 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001023 state->stats_.managed_code_bytes += oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001024 if (method->IsConstructor()) {
1025 if (method->IsStatic()) {
1026 state->stats_.class_initializer_code_bytes += oat_code_size;
1027 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1028 state->stats_.large_initializer_code_bytes += oat_code_size;
1029 }
1030 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1031 state->stats_.large_method_code_bytes += oat_code_size;
1032 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001033 }
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001034 state->stats_.managed_code_bytes_ignoring_deduplication += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001035
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001036 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1037 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1038 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001039
1040 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Jeff Hao74180ca2013-03-27 15:29:11 -07001041 vmap_table_bytes + oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001042
1043 double expansion =
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001044 static_cast<double>(oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001045 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001046 }
1047 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001048 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001049 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001050
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001051 std::set<const void*> already_seen_;
1052 // Compute the size of the given data within the oat file and whether this is the first time
1053 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001054 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001055 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001056 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001057 already_seen_.insert(oat_data);
1058 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001059 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001060 }
1061 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001062 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001063
1064 public:
1065 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001066 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001067 size_t file_bytes;
1068
1069 size_t header_bytes;
1070 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001071 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001072 size_t alignment_bytes;
1073
1074 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001075 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001076 size_t managed_to_native_code_bytes;
1077 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001078 size_t class_initializer_code_bytes;
1079 size_t large_initializer_code_bytes;
1080 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001081
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001082 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001083 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001084 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001085
1086 size_t dex_instruction_bytes;
1087
Brian Carlstromea46f952013-07-30 01:26:50 -07001088 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001089 std::vector<size_t> method_outlier_size;
1090 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001091 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001092
1093 explicit Stats()
1094 : oat_file_bytes(0),
1095 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001096 header_bytes(0),
1097 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001098 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001099 alignment_bytes(0),
1100 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001101 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001102 managed_to_native_code_bytes(0),
1103 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001104 class_initializer_code_bytes(0),
1105 large_initializer_code_bytes(0),
1106 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001107 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001108 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001109 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001110 dex_instruction_bytes(0) {}
1111
Elliott Hughesa0e18062012-04-13 15:59:59 -07001112 struct SizeAndCount {
1113 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1114 size_t bytes;
1115 size_t count;
1116 };
1117 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1118 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001119
Elliott Hughesa0e18062012-04-13 15:59:59 -07001120 void Update(const std::string& descriptor, size_t object_bytes) {
1121 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1122 if (it != sizes_and_counts.end()) {
1123 it->second.bytes += object_bytes;
1124 it->second.count += 1;
1125 } else {
1126 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1127 }
1128 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001129
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001130 double PercentOfOatBytes(size_t size) {
1131 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1132 }
1133
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001134 double PercentOfFileBytes(size_t size) {
1135 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1136 }
1137
1138 double PercentOfObjectBytes(size_t size) {
1139 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1140 }
1141
Brian Carlstromea46f952013-07-30 01:26:50 -07001142 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001143 method_outlier_size.push_back(total_size);
1144 method_outlier_expansion.push_back(expansion);
1145 method_outlier.push_back(method);
1146 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001147
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001148 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001149 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001150 size_t sum_of_sizes = 0;
1151 size_t sum_of_sizes_squared = 0;
1152 size_t sum_of_expansion = 0;
1153 size_t sum_of_expansion_squared = 0;
1154 size_t n = method_outlier_size.size();
1155 for (size_t i = 0; i < n; i++) {
1156 size_t cur_size = method_outlier_size[i];
1157 sum_of_sizes += cur_size;
1158 sum_of_sizes_squared += cur_size * cur_size;
1159 double cur_expansion = method_outlier_expansion[i];
1160 sum_of_expansion += cur_expansion;
1161 sum_of_expansion_squared += cur_expansion * cur_expansion;
1162 }
1163 size_t size_mean = sum_of_sizes / n;
1164 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1165 double expansion_mean = sum_of_expansion / n;
1166 double expansion_variance =
1167 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1168
1169 // Dump methods whose size is a certain number of standard deviations from the mean
1170 size_t dumped_values = 0;
1171 size_t skipped_values = 0;
1172 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1173 size_t cur_size_variance = i * i * size_variance;
1174 bool first = true;
1175 for (size_t j = 0; j < n; j++) {
1176 size_t cur_size = method_outlier_size[j];
1177 if (cur_size > size_mean) {
1178 size_t cur_var = cur_size - size_mean;
1179 cur_var = cur_var * cur_var;
1180 if (cur_var > cur_size_variance) {
1181 if (dumped_values > 20) {
1182 if (i == 1) {
1183 skipped_values++;
1184 } else {
1185 i = 2; // jump to counting for 1 standard deviation
1186 break;
1187 }
1188 } else {
1189 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001190 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001191 first = false;
1192 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001193 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001194 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001195 method_outlier_size[j] = 0; // don't consider this method again
1196 dumped_values++;
1197 }
1198 }
1199 }
1200 }
1201 }
1202 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001203 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001204 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001205 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001206 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001207
1208 // Dump methods whose expansion is a certain number of standard deviations from the mean
1209 dumped_values = 0;
1210 skipped_values = 0;
1211 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1212 double cur_expansion_variance = i * i * expansion_variance;
1213 bool first = true;
1214 for (size_t j = 0; j < n; j++) {
1215 double cur_expansion = method_outlier_expansion[j];
1216 if (cur_expansion > expansion_mean) {
1217 size_t cur_var = cur_expansion - expansion_mean;
1218 cur_var = cur_var * cur_var;
1219 if (cur_var > cur_expansion_variance) {
1220 if (dumped_values > 20) {
1221 if (i == 1) {
1222 skipped_values++;
1223 } else {
1224 i = 2; // jump to counting for 1 standard deviation
1225 break;
1226 }
1227 } else {
1228 if (first) {
1229 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001230 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001231 first = false;
1232 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001233 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001234 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001235 method_outlier_expansion[j] = 0.0; // don't consider this method again
1236 dumped_values++;
1237 }
1238 }
1239 }
1240 }
1241 }
1242 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001243 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001244 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001245 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001246 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001247 }
1248
Ian Rogersb726dcb2012-09-05 08:57:23 -07001249 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001250 {
1251 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1252 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1253 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1254 std::ostream indent_os(&indent_filter);
1255 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1256 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001257 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001258 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1259 header_bytes, PercentOfFileBytes(header_bytes),
1260 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001261 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001262 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1263 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001264 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001265 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001266
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001267 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001268 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001269 for (const auto& sizes_and_count : sizes_and_counts) {
1270 const std::string& descriptor(sizes_and_count.first);
1271 double average = static_cast<double>(sizes_and_count.second.bytes) /
1272 static_cast<double>(sizes_and_count.second.count);
1273 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001274 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001275 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001276 descriptor.c_str(), sizes_and_count.second.bytes,
1277 sizes_and_count.second.count, average, percent);
1278 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001279 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001280 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001281 CHECK_EQ(object_bytes, object_bytes_total);
1282
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001283 os << StringPrintf("oat_file_bytes = %8zd\n"
1284 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1285 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1286 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1287 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1288 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1289 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001290 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001291 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1292 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001293 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1294 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1295 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1296 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001297 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001298 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001299 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001300 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1301 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001302 }
1303
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001304 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1305 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1306 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001307 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1308 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1309 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001310 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001311
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001312 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1313 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001314 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1315 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001316 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001317 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001318
1319 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001320 }
1321 } stats_;
1322
1323 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001324 enum {
1325 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1326 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1327 kLargeConstructorDexBytes = 4000,
1328 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1329 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1330 kLargeMethodDexBytes = 16000
1331 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001332 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001333 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001334 const std::string image_filename_;
1335 const std::string host_prefix_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001336 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001337 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001338
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001339 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001340};
1341
Elliott Hughes72395bf2012-04-24 13:45:26 -07001342static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001343 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001344
Brian Carlstrom78128a62011-09-15 17:21:19 -07001345 // Skip over argv[0].
1346 argv++;
1347 argc--;
1348
1349 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001350 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001351 usage();
1352 }
1353
Brian Carlstromaded5f72011-10-07 17:15:04 -07001354 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001355 const char* image_filename = NULL;
1356 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001357 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001358 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001359 std::ostream* os = &std::cout;
1360 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001361
1362 for (int i = 0; i < argc; i++) {
1363 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001364 if (option.starts_with("--oat-file=")) {
1365 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001366 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001367 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001368 } else if (option.starts_with("--boot-image=")) {
1369 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001370 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001371 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001372 } else if (option.starts_with("--output=")) {
1373 const char* filename = option.substr(strlen("--output=")).data();
1374 out.reset(new std::ofstream(filename));
1375 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001376 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001377 usage();
1378 }
1379 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001380 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001381 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001382 usage();
1383 }
1384 }
1385
Brian Carlstromaded5f72011-10-07 17:15:04 -07001386 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001387 fprintf(stderr, "Either --image or --oat must be specified\n");
1388 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001389 }
1390
Brian Carlstromaded5f72011-10-07 17:15:04 -07001391 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001392 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1393 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001394 }
1395
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001396 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001397 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1398 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001399 host_prefix.reset(new std::string(android_product_out));
1400 } else {
1401 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001402 }
1403 }
1404
Brian Carlstromaded5f72011-10-07 17:15:04 -07001405 if (oat_filename != NULL) {
Logan Chien0c717dd2012-03-28 18:31:07 +08001406 OatFile* oat_file =
Brian Carlstromf1d34552013-07-12 20:22:23 -07001407 OatFile::Open(oat_filename, oat_filename, NULL, false);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001408 if (oat_file == NULL) {
1409 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
1410 return EXIT_FAILURE;
1411 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001412 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001413 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001414 return EXIT_SUCCESS;
1415 }
1416
Brian Carlstrom78128a62011-09-15 17:21:19 -07001417 Runtime::Options options;
1418 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001419 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001420 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001421 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001422
1423 // We are more like a compiler than a run-time. We don't want to execute code.
1424 options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));
1425
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001426 if (boot_image_filename != NULL) {
1427 boot_image_option += "-Ximage:";
1428 boot_image_option += boot_image_filename;
1429 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001430 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001431 if (image_filename != NULL) {
1432 image_option += "-Ximage:";
1433 image_option += image_filename;
1434 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1435 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001436
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001437 if (!host_prefix->empty()) {
1438 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001439 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001440
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001441 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001442 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001443 return EXIT_FAILURE;
1444 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001445 UniquePtr<Runtime> runtime(Runtime::Current());
1446 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1447 // give it away now and then switch to a more managable ScopedObjectAccess.
1448 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1449 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001450
Ian Rogers1d54e732013-05-02 21:10:01 -07001451 gc::Heap* heap = Runtime::Current()->GetHeap();
1452 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001453 CHECK(image_space != NULL);
1454 const ImageHeader& image_header = image_space->GetImageHeader();
1455 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001456 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001457 return EXIT_FAILURE;
1458 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001459 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001460 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001461 return EXIT_SUCCESS;
1462}
1463
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001464} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001465
1466int main(int argc, char** argv) {
1467 return art::oatdump(argc, argv);
1468}