blob: bc450bb55affcd8228f9570582d61259495f8a65 [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) {
Ian Rogersee39a102013-09-19 02:56:49 -0700179 const DexFile::ClassDef* class_def =
180 dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
181 if (class_def != NULL) {
182 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800183 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
184 CHECK(oat_class != NULL);
185 size_t method_index = m->GetMethodIndex();
186 return oat_class->GetOatMethod(method_index).GetCode();
187 }
188 }
189 }
190 return NULL;
191 }
192
Brian Carlstromaded5f72011-10-07 17:15:04 -0700193 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800194 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800195 // We don't know the length of the code for each method, but we need to know where to stop
196 // when disassembling. What we do know is that a region of code will be followed by some other
197 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
198 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800199 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
200 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800201 CHECK(oat_dex_file != NULL);
202 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
203 if (dex_file.get() == NULL) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800204 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800205 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800206 offsets_.insert(reinterpret_cast<uint32_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800207 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
208 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
209 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
210 const byte* class_data = dex_file->GetClassData(class_def);
211 if (class_data != NULL) {
212 ClassDataItemIterator it(*dex_file, class_data);
213 SkipAllFields(it);
214 uint32_t class_method_index = 0;
215 while (it.HasNextDirectMethod()) {
216 AddOffsets(oat_class->GetOatMethod(class_method_index++));
217 it.Next();
218 }
219 while (it.HasNextVirtualMethod()) {
220 AddOffsets(oat_class->GetOatMethod(class_method_index++));
221 it.Next();
222 }
223 }
224 }
225 }
226
227 // If the last thing in the file is code for a method, there won't be an offset for the "next"
228 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
229 // for the end of the file.
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800230 offsets_.insert(static_cast<uint32_t>(oat_file_.Size()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800231 }
232
233 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800234 uint32_t code_offset = oat_method.GetCodeOffset();
235 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
236 code_offset &= ~0x1;
237 }
238 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800239 offsets_.insert(oat_method.GetMappingTableOffset());
240 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700241 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800242 }
243
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800244 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700245 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800246 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800247 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800248 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile());
249 if (dex_file.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700250 os << "NOT FOUND\n\n";
251 return;
252 }
253 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
254 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
255 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700256 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
257 CHECK(oat_class.get() != NULL);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800258 os << StringPrintf("%zd: %s (type_idx=%d) (", class_def_index, descriptor, class_def.class_idx_)
mikaelpeltier6ffd0962012-10-25 15:37:45 +0200259 << oat_class->GetStatus() << ")"
260 // TODO: JACK CLASS ACCESS (HACK TO BE REMOVED)
261 << ( (class_def.access_flags_ & kAccClassJack) == kAccClassJack ? " (Jack)" : "" )
262 << "\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800263 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
264 std::ostream indented_os(&indent_filter);
265 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700266 }
267
268 os << std::flush;
269 }
270
Elliott Hughese3c845c2012-02-28 17:23:01 -0800271 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700272 while (it.HasNextStaticField()) {
273 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700274 }
Ian Rogers0571d352011-11-03 19:51:38 -0700275 while (it.HasNextInstanceField()) {
276 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700277 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800278 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700279
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800280 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
281 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800282 const byte* class_data = dex_file.GetClassData(class_def);
283 if (class_data == NULL) { // empty class such as a marker interface?
284 return;
285 }
286 ClassDataItemIterator it(dex_file, class_data);
287 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800288 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);
Ian Rogersee39a102013-09-19 02:56:49 -0700291 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800292 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);
Ian Rogersee39a102013-09-19 02:56:49 -0700298 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800299 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 Rogersee39a102013-09-19 02:56:49 -0700307 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
308 uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800309 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800310 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
311 uint32_t method_access_flags) {
312 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700313 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
314 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800315 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
316 std::ostream indent1_os(&indent1_filter);
317 {
318 indent1_os << "DEX CODE:\n";
319 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
320 std::ostream indent2_os(&indent2_filter);
321 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700322 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800323 if (Runtime::Current() != NULL) {
324 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
325 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
326 std::ostream indent2_os(&indent2_filter);
Ian Rogersee39a102013-09-19 02:56:49 -0700327 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
328 method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700329 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800330 {
331 indent1_os << "OAT DATA:\n";
332 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
333 std::ostream indent2_os(&indent2_filter);
334
335 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
336 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
337 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
338 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
339 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
340 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
341 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
342 DumpVmap(indent2_os, oat_method);
343 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
344 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
345 const bool kDumpRawMappingTable = false;
346 if (kDumpRawMappingTable) {
347 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
348 std::ostream indent3_os(&indent3_filter);
349 DumpMappingTable(indent3_os, oat_method);
350 }
351 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
352 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
353 const bool kDumpRawGcMap = false;
354 if (kDumpRawGcMap) {
355 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
356 std::ostream indent3_os(&indent3_filter);
357 DumpGcMap(indent3_os, oat_method, code_item);
358 }
359 }
360 {
361 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
362 oat_method.GetCode(),
363 oat_method.GetCodeOffset(),
364 oat_method.GetCodeSize(),
365 oat_method.GetCode() != NULL ? "..." : "");
366 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
367 std::ostream indent2_os(&indent2_filter);
Ian Rogersee39a102013-09-19 02:56:49 -0700368 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def, code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800369 method_access_flags);
370 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700371 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800372
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800373 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
374 if (spill_mask == 0) {
375 return;
376 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800377 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800378 for (size_t i = 0; i < 32; i++) {
379 if ((spill_mask & (1 << i)) != 0) {
380 if (is_float) {
381 os << "fr" << i;
382 } else {
383 os << "r" << i;
384 }
385 spill_mask ^= 1 << i; // clear bit
386 if (spill_mask != 0) {
387 os << ", ";
388 } else {
389 break;
390 }
391 }
392 }
393 os << ")";
394 }
395
Ian Rogersb23a7722012-10-09 16:54:26 -0700396 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700397 const uint8_t* raw_table = oat_method.GetVmapTable();
398 if (raw_table != NULL) {
399 const VmapTable vmap_table(raw_table);
400 bool first = true;
401 bool processing_fp = false;
402 uint32_t spill_mask = oat_method.GetCoreSpillMask();
403 for (size_t i = 0; i < vmap_table.Size(); i++) {
404 uint16_t dex_reg = vmap_table[i];
405 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
406 processing_fp ? kFloatVReg : kIntVReg);
407 os << (first ? "v" : ", v") << dex_reg;
408 if (!processing_fp) {
409 os << "/r" << cpu_reg;
410 } else {
411 os << "/fr" << cpu_reg;
412 }
413 first = false;
414 if (!processing_fp && dex_reg == 0xFFFF) {
415 processing_fp = true;
416 spill_mask = oat_method.GetFpSpillMask();
417 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800418 }
Ian Rogers1809a722013-08-09 22:05:32 -0700419 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800420 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800421 }
422
Ian Rogersb23a7722012-10-09 16:54:26 -0700423 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800424 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700425 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700426 if (raw_table != NULL) {
427 const VmapTable vmap_table(raw_table);
428 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700429 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800430 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
431 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
432 : oat_method.GetCoreSpillMask();
433 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700434 } else {
435 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
436 oat_method.GetFpSpillMask(),
437 oat_method.GetFrameSizeInBytes(), reg);
438 os << "[sp + #" << offset << "]";
439 }
440 }
441 }
442
443 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
444 const DexFile::CodeItem* code_item) {
445 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800446 if (gc_map_raw == NULL) {
447 return;
448 }
Ian Rogers0c7abda2012-09-19 13:33:42 -0700449 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogersb23a7722012-10-09 16:54:26 -0700450 const void* code = oat_method.GetCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800451 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
Ian Rogersbb6723f2012-09-21 09:49:06 -0700452 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) +
453 map.GetNativePcOffset(entry);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800454 os << StringPrintf("%p", native_pc);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800455 size_t num_regs = map.RegWidth() * 8;
456 const uint8_t* reg_bitmap = map.GetBitMap(entry);
457 bool first = true;
458 for (size_t reg = 0; reg < num_regs; reg++) {
459 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
460 if (first) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700461 os << " v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800462 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700463 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800464 first = false;
465 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700466 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800467 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700468 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800469 }
470 }
471 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700472 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800473 }
474 }
475
476 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800477 const void* code = oat_method.GetCode();
Ian Rogers1809a722013-08-09 22:05:32 -0700478 if (code == NULL) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800479 return;
480 }
Ian Rogers1809a722013-08-09 22:05:32 -0700481 MappingTable table(oat_method.GetMappingTable());
482 if (table.TotalSize() != 0) {
483 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
484 std::ostream indent_os(&indent_filter);
485 if (table.PcToDexSize() != 0) {
486 typedef MappingTable::PcToDexIterator It;
487 os << "suspend point mappings {\n";
488 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
489 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
490 }
491 os << "}\n";
492 }
493 if (table.DexToPcSize() != 0) {
494 typedef MappingTable::DexToPcIterator It;
495 os << "catch entry mappings {\n";
496 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
497 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
498 }
499 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800500 }
501 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800502 }
503
Ian Rogers1809a722013-08-09 22:05:32 -0700504 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
505 size_t offset, bool suspend_point_mapping) {
506 MappingTable table(oat_method.GetMappingTable());
507 if (suspend_point_mapping && table.PcToDexSize() > 0) {
508 typedef MappingTable::PcToDexIterator It;
509 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
510 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700511 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700512 return cur.DexPc();
513 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800514 }
Ian Rogers1809a722013-08-09 22:05:32 -0700515 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
516 typedef MappingTable::DexToPcIterator It;
517 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
518 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700519 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -0700520 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700521 }
522 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800523 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800524 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700525 }
526
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800527 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
528 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700529 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
530 if (gc_map_raw != NULL) {
531 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800532 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700533 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800534 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700535 bool first = true;
536 for (size_t reg = 0; reg < num_regs; reg++) {
537 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
538 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800539 os << "GC map objects: v" << reg << " (";
540 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700541 os << ")";
542 first = false;
543 } else {
544 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800545 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700546 os << ")";
547 }
548 }
549 }
550 if (!first) {
551 os << "\n";
552 }
553 }
554 }
555 }
556
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800557 void DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method,
558 uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogersee39a102013-09-19 02:56:49 -0700559 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800560 uint32_t method_access_flags, uint32_t dex_pc) {
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800561 static UniquePtr<verifier::MethodVerifier> verifier;
562 static const DexFile* verified_dex_file = NULL;
563 static uint32_t verified_dex_method_idx = DexFile::kDexNoIndex;
564 if (dex_file != verified_dex_file || verified_dex_method_idx != dex_method_idx) {
565 ScopedObjectAccess soa(Thread::Current());
566 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
567 mirror::ClassLoader* class_loader = NULL;
Ian Rogersee39a102013-09-19 02:56:49 -0700568 verifier.reset(new verifier::MethodVerifier(dex_file, dex_cache, class_loader, &class_def,
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800569 code_item, dex_method_idx, NULL,
Jeff Haoee988952013-04-16 14:23:47 -0700570 method_access_flags, true, true));
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800571 verifier->Verify();
572 verified_dex_file = dex_file;
573 verified_dex_method_idx = dex_method_idx;
574 }
575 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800576 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800577 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
578 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
579 if (kind != kUndefined) {
580 if (first) {
581 os << "VRegs: v";
582 first = false;
583 } else {
584 os << ", v";
585 }
586 os << reg << " (";
587 switch (kind) {
588 case kImpreciseConstant:
589 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
590 DescribeVReg(os, oat_method, code_item, reg, kind);
591 break;
592 case kConstant:
593 os << "Constant: " << kinds.at((reg * 2) + 1);
594 break;
595 default:
596 DescribeVReg(os, oat_method, code_item, reg, kind);
597 break;
598 }
599 os << ")";
600 }
601 }
602 if (!first) {
603 os << "\n";
604 }
605 }
606
607
Ian Rogersb23a7722012-10-09 16:54:26 -0700608 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
609 if (code_item != NULL) {
610 size_t i = 0;
611 while (i < code_item->insns_size_in_code_units_) {
612 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800613 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700614 i += instruction->SizeInCodeUnits();
615 }
616 }
617 }
618
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800619 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogersee39a102013-09-19 02:56:49 -0700620 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800621 uint32_t method_access_flags) {
622 if ((method_access_flags & kAccNative) == 0) {
623 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800624 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
625 mirror::ClassLoader* class_loader = NULL;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800626 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
Ian Rogersee39a102013-09-19 02:56:49 -0700627 class_loader, &class_def, code_item, NULL,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800628 method_access_flags);
629 }
630 }
631
632 void DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method,
633 uint32_t dex_method_idx, const DexFile* dex_file,
Ian Rogersee39a102013-09-19 02:56:49 -0700634 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800635 uint32_t method_access_flags) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700636 const void* code = oat_method.GetCode();
637 size_t code_size = oat_method.GetCodeSize();
638 if (code == NULL || code_size == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800639 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700640 return;
641 }
642 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code);
643 size_t offset = 0;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800644 const bool kDumpVRegs = (Runtime::Current() != NULL);
Ian Rogersb23a7722012-10-09 16:54:26 -0700645 while (offset < code_size) {
646 DumpMappingAtOffset(os, oat_method, offset, false);
647 offset += disassembler_->Dump(os, native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800648 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
649 if (dex_pc != DexFile::kDexNoIndex) {
650 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
651 if (kDumpVRegs) {
Ian Rogersee39a102013-09-19 02:56:49 -0700652 DumpVRegsAtDexPc(os, oat_method, dex_method_idx, dex_file, class_def, code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800653 method_access_flags, dex_pc);
654 }
655 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700656 }
657 }
658
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700659 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800660 const OatFile& oat_file_;
661 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800662 std::set<uint32_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800663 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700664};
665
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800666class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700667 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800668 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers1d54e732013-05-02 21:10:01 -0700669 const std::string& host_prefix, gc::space::ImageSpace& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700670 const ImageHeader& image_header)
671 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
672 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700673
Ian Rogersb726dcb2012-09-05 08:57:23 -0700674 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800675 std::ostream& os = *os_;
676 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700677
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800678 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700679
Mathieu Chartier31e89252013-08-28 11:29:12 -0700680 os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
681 << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
682
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800683 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700684
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800685 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700686
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800687 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
688
689 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
690
691 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800692
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800693 {
694 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
695 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
696 std::ostream indent1_os(&indent1_filter);
697 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
698 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
699 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
700 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800701 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800702 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
703 if (image_root_object->IsObjectArray()) {
704 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
705 std::ostream indent2_os(&indent2_filter);
706 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800707 mirror::ObjectArray<mirror::Object>* image_root_object_array
708 = down_cast<mirror::ObjectArray<mirror::Object>*>(image_root_object);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800709 // = image_root_object->AsObjectArray<Object>();
710 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800711 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800712 if (value != NULL) {
713 indent2_os << i << ": ";
714 PrettyObjectValue(indent2_os, value->GetClass(), value);
715 } else {
716 indent2_os << i << ": null\n";
717 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800718 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700719 }
720 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700721 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800722 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700723
Brian Carlstromaded5f72011-10-07 17:15:04 -0700724 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800725 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800726 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800727 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800728 if (!host_prefix_.empty()) {
729 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800730 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700731 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800732 os << "\n";
Brian Carlstromae826982011-11-09 01:33:42 -0800733 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700734 if (oat_file == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800735 os << "NOT FOUND\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700736 return;
737 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800738 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700739
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800740 stats_.oat_file_bytes = oat_file->Size();
741
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700742 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800743
Mathieu Chartier02e25112013-08-14 16:14:24 -0700744 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Ian Rogers05f28c62012-10-23 18:12:13 -0700745 CHECK(oat_dex_file != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700746 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
747 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -0700748 }
749
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800750 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700751
752 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700753 gc::Heap* heap = Runtime::Current()->GetHeap();
754 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700755 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700756 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700757 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700758 heap->FlushAllocStack();
759 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800760 {
761 std::ostream* saved_os = os_;
762 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
763 std::ostream indent_os(&indent_filter);
764 os_ = &indent_os;
765 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700766 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800767 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700768 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800769 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
770 indent_os << "\n";
771 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700772 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800773 // Dump the large objects separately.
774 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
775 indent_os << "\n";
776 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700777 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800778 os << "STATS:\n" << std::flush;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700779 UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
Brian Carlstrom6f277752013-09-30 17:56:45 -0700780 if (file.get() == NULL) {
781 std::string cache_location(GetDalvikCacheFilenameOrDie(image_filename_));
782 file.reset(OS::OpenFileForReading(cache_location.c_str()));
783 if (file.get() == NULL) {
784 LOG(WARNING) << "Failed to find image in " << image_filename_
785 << " and " << cache_location;
786 }
787 }
788 if (file.get() != NULL) {
789 stats_.file_bytes = file->GetLength();
790 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800791 size_t header_bytes = sizeof(ImageHeader);
792 stats_.header_bytes = header_bytes;
793 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
794 stats_.alignment_bytes += alignment_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -0700795 stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
796 stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800797 stats_.Dump(os);
798 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800799
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800800 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800801
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800802 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700803 }
804
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700805 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800806 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700807 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800808 CHECK(type != NULL);
809 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800810 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800811 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800812 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800813 os << StringPrintf("%p String: %s\n", string,
814 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700815 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800816 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800817 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700818 } else if (type->IsArtFieldClass()) {
819 mirror::ArtField* field = value->AsArtField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800820 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Brian Carlstromea46f952013-07-30 01:26:50 -0700821 } else if (type->IsArtMethodClass()) {
822 mirror::ArtMethod* method = value->AsArtMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800823 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800824 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800825 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800826 }
827 }
828
Brian Carlstromea46f952013-07-30 01:26:50 -0700829 static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700830 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800831 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700832 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800833 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700834 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800835 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700836 if (type->IsPrimitiveLong()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800837 os << StringPrintf("%lld (0x%llx)\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700838 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800839 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700840 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800841 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700842 } else {
843 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800844 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700845 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800846 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700847 // Get the value, don't compute the type unless it is non-null as we don't want
848 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800849 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700850 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800851 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700852 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700853 // Grab the field type without causing resolution.
854 mirror::Class* field_type = fh.GetType(false);
855 if (field_type != NULL) {
856 PrettyObjectValue(os, field_type, value);
857 } else {
858 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
859 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700860 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800861 }
862 }
863
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800864 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700865 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800866 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800867 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800868 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800869 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700870 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800871 if (fields != NULL) {
872 for (int32_t i = 0; i < fields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700873 mirror::ArtField* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800874 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800875 }
876 }
877 }
878
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800879 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800880 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700881 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800882
Brian Carlstromea46f952013-07-30 01:26:50 -0700883 const void* GetOatCodeBegin(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700884 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700885 const void* code = m->GetEntryPointFromCompiledCode();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700886 if (code == GetResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800887 code = oat_dumper_->GetOatCode(m);
888 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700889 if (oat_dumper_->GetInstructionSet() == kThumb2) {
890 code = reinterpret_cast<void*>(reinterpret_cast<uint32_t>(code) & ~0x1);
891 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800892 return code;
893 }
894
Brian Carlstromea46f952013-07-30 01:26:50 -0700895 uint32_t GetOatCodeSize(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700896 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700897 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetOatCodeBegin(m));
898 if (oat_code_begin == NULL) {
899 return 0;
900 }
901 return oat_code_begin[-1];
902 }
903
Brian Carlstromea46f952013-07-30 01:26:50 -0700904 const void* GetOatCodeEnd(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700905 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700906 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetOatCodeBegin(m));
907 if (oat_code_begin == NULL) {
908 return NULL;
909 }
910 return oat_code_begin + GetOatCodeSize(m);
911 }
912
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800913 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700914 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700915 DCHECK(obj != NULL);
916 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800917 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700918 if (!state->InDumpSpace(obj)) {
919 return;
920 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700921
922 size_t object_bytes = obj->SizeOf();
923 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
924 state->stats_.object_bytes += object_bytes;
925 state->stats_.alignment_bytes += alignment_bytes;
926
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800927 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800928 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800929 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800930 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
931 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800932 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800933 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800934 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
935 << klass->GetStatus() << ")\n";
Brian Carlstromea46f952013-07-30 01:26:50 -0700936 } else if (obj->IsArtField()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700937 os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700938 PrettyField(obj->AsArtField()).c_str());
939 } else if (obj->IsArtMethod()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -0700940 os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
Brian Carlstromea46f952013-07-30 01:26:50 -0700941 PrettyMethod(obj->AsArtMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800942 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800943 os << StringPrintf("%p: java.lang.String %s\n", obj,
944 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800945 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800946 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800947 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800948 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
949 std::ostream indent_os(&indent_filter);
950 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -0800951 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800952 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -0800953 int32_t length = obj_array->GetLength();
954 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800955 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800956 size_t run = 0;
957 for (int32_t j = i + 1; j < length; j++) {
958 if (value == obj_array->Get(j)) {
959 run++;
960 } else {
961 break;
962 }
963 }
964 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800965 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800966 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800967 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -0800968 i = i + run;
969 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800970 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800971 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -0800972 }
973 } else if (obj->IsClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700974 mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800975 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800976 indent_os << "STATICS:\n";
977 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
978 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -0800979 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700980 mirror::ArtField* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800981 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -0800982 }
983 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700984 } else if (obj->IsArtMethod()) {
985 mirror::ArtMethod* method = obj->AsArtMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700986 if (method->IsNative()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700987 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700988 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800989 bool first_occurrence;
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700990 const void* oat_code = state->GetOatCodeBegin(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700991 uint32_t oat_code_size = state->GetOatCodeSize(method);
992 state->ComputeOatSize(oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800993 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700994 state->stats_.native_to_managed_code_bytes += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800995 }
Jeff Haoaa4a7932013-05-13 11:28:27 -0700996 if (oat_code != method->GetEntryPointFromCompiledCode()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800997 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800998 }
Ian Rogers19846512012-02-24 11:42:47 -0800999 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao58df3272013-04-22 15:28:53 -07001000 method->IsResolutionMethod() || MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001001 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001002 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001003 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07001004 // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
1005 // to the quick/portable to interpreter bridge.
1006 CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001007
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001008 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001009 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001010 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001011
Elliott Hughesa0e18062012-04-13 15:59:59 -07001012 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001013 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001014 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001015 state->stats_.gc_map_bytes += gc_map_bytes;
1016 }
1017
1018 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001019 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001020 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001021 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1022 }
1023
1024 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001025 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001026 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001027 state->stats_.vmap_table_bytes += vmap_table_bytes;
1028 }
1029
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001030 const void* oat_code_begin = state->GetOatCodeBegin(method);
1031 const void* oat_code_end = state->GetOatCodeEnd(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001032 uint32_t oat_code_size = state->GetOatCodeSize(method);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001033 state->ComputeOatSize(oat_code_begin, &first_occurrence);
1034 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001035 state->stats_.managed_code_bytes += oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001036 if (method->IsConstructor()) {
1037 if (method->IsStatic()) {
1038 state->stats_.class_initializer_code_bytes += oat_code_size;
1039 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1040 state->stats_.large_initializer_code_bytes += oat_code_size;
1041 }
1042 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1043 state->stats_.large_method_code_bytes += oat_code_size;
1044 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001045 }
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001046 state->stats_.managed_code_bytes_ignoring_deduplication += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001047
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001048 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1049 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1050 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001051
1052 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Jeff Hao74180ca2013-03-27 15:29:11 -07001053 vmap_table_bytes + oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001054
1055 double expansion =
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001056 static_cast<double>(oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001057 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001058 }
1059 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001060 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001061 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001062
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001063 std::set<const void*> already_seen_;
1064 // Compute the size of the given data within the oat file and whether this is the first time
1065 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001066 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001067 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001068 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001069 already_seen_.insert(oat_data);
1070 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001071 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001072 }
1073 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001074 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001075
1076 public:
1077 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001078 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001079 size_t file_bytes;
1080
1081 size_t header_bytes;
1082 size_t object_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001083 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001084 size_t alignment_bytes;
1085
1086 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001087 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001088 size_t managed_to_native_code_bytes;
1089 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001090 size_t class_initializer_code_bytes;
1091 size_t large_initializer_code_bytes;
1092 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001093
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001094 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001095 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001096 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001097
1098 size_t dex_instruction_bytes;
1099
Brian Carlstromea46f952013-07-30 01:26:50 -07001100 std::vector<mirror::ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001101 std::vector<size_t> method_outlier_size;
1102 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001103 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001104
1105 explicit Stats()
1106 : oat_file_bytes(0),
1107 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001108 header_bytes(0),
1109 object_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001110 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001111 alignment_bytes(0),
1112 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001113 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001114 managed_to_native_code_bytes(0),
1115 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001116 class_initializer_code_bytes(0),
1117 large_initializer_code_bytes(0),
1118 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001119 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001120 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001121 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001122 dex_instruction_bytes(0) {}
1123
Elliott Hughesa0e18062012-04-13 15:59:59 -07001124 struct SizeAndCount {
1125 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1126 size_t bytes;
1127 size_t count;
1128 };
1129 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1130 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001131
Elliott Hughesa0e18062012-04-13 15:59:59 -07001132 void Update(const std::string& descriptor, size_t object_bytes) {
1133 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1134 if (it != sizes_and_counts.end()) {
1135 it->second.bytes += object_bytes;
1136 it->second.count += 1;
1137 } else {
1138 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1139 }
1140 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001141
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001142 double PercentOfOatBytes(size_t size) {
1143 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1144 }
1145
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001146 double PercentOfFileBytes(size_t size) {
1147 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1148 }
1149
1150 double PercentOfObjectBytes(size_t size) {
1151 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1152 }
1153
Brian Carlstromea46f952013-07-30 01:26:50 -07001154 void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001155 method_outlier_size.push_back(total_size);
1156 method_outlier_expansion.push_back(expansion);
1157 method_outlier.push_back(method);
1158 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001159
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001160 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001161 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001162 size_t sum_of_sizes = 0;
1163 size_t sum_of_sizes_squared = 0;
1164 size_t sum_of_expansion = 0;
1165 size_t sum_of_expansion_squared = 0;
1166 size_t n = method_outlier_size.size();
1167 for (size_t i = 0; i < n; i++) {
1168 size_t cur_size = method_outlier_size[i];
1169 sum_of_sizes += cur_size;
1170 sum_of_sizes_squared += cur_size * cur_size;
1171 double cur_expansion = method_outlier_expansion[i];
1172 sum_of_expansion += cur_expansion;
1173 sum_of_expansion_squared += cur_expansion * cur_expansion;
1174 }
1175 size_t size_mean = sum_of_sizes / n;
1176 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1177 double expansion_mean = sum_of_expansion / n;
1178 double expansion_variance =
1179 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1180
1181 // Dump methods whose size is a certain number of standard deviations from the mean
1182 size_t dumped_values = 0;
1183 size_t skipped_values = 0;
1184 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1185 size_t cur_size_variance = i * i * size_variance;
1186 bool first = true;
1187 for (size_t j = 0; j < n; j++) {
1188 size_t cur_size = method_outlier_size[j];
1189 if (cur_size > size_mean) {
1190 size_t cur_var = cur_size - size_mean;
1191 cur_var = cur_var * cur_var;
1192 if (cur_var > cur_size_variance) {
1193 if (dumped_values > 20) {
1194 if (i == 1) {
1195 skipped_values++;
1196 } else {
1197 i = 2; // jump to counting for 1 standard deviation
1198 break;
1199 }
1200 } else {
1201 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001202 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001203 first = false;
1204 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001205 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001206 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001207 method_outlier_size[j] = 0; // don't consider this method again
1208 dumped_values++;
1209 }
1210 }
1211 }
1212 }
1213 }
1214 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001215 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001216 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001217 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001218 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001219
1220 // Dump methods whose expansion is a certain number of standard deviations from the mean
1221 dumped_values = 0;
1222 skipped_values = 0;
1223 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1224 double cur_expansion_variance = i * i * expansion_variance;
1225 bool first = true;
1226 for (size_t j = 0; j < n; j++) {
1227 double cur_expansion = method_outlier_expansion[j];
1228 if (cur_expansion > expansion_mean) {
1229 size_t cur_var = cur_expansion - expansion_mean;
1230 cur_var = cur_var * cur_var;
1231 if (cur_var > cur_expansion_variance) {
1232 if (dumped_values > 20) {
1233 if (i == 1) {
1234 skipped_values++;
1235 } else {
1236 i = 2; // jump to counting for 1 standard deviation
1237 break;
1238 }
1239 } else {
1240 if (first) {
1241 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001242 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001243 first = false;
1244 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001245 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001246 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001247 method_outlier_expansion[j] = 0.0; // don't consider this method again
1248 dumped_values++;
1249 }
1250 }
1251 }
1252 }
1253 }
1254 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001255 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001256 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001257 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001258 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001259 }
1260
Ian Rogersb726dcb2012-09-05 08:57:23 -07001261 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001262 {
1263 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1264 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1265 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1266 std::ostream indent_os(&indent_filter);
1267 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1268 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier32327092013-08-30 14:04:08 -07001269 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001270 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1271 header_bytes, PercentOfFileBytes(header_bytes),
1272 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07001273 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001274 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1275 << std::flush;
Mathieu Chartier32327092013-08-30 14:04:08 -07001276 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001277 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001278
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001279 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001280 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001281 for (const auto& sizes_and_count : sizes_and_counts) {
1282 const std::string& descriptor(sizes_and_count.first);
1283 double average = static_cast<double>(sizes_and_count.second.bytes) /
1284 static_cast<double>(sizes_and_count.second.count);
1285 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001286 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001287 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001288 descriptor.c_str(), sizes_and_count.second.bytes,
1289 sizes_and_count.second.count, average, percent);
1290 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001291 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001292 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001293 CHECK_EQ(object_bytes, object_bytes_total);
1294
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001295 os << StringPrintf("oat_file_bytes = %8zd\n"
1296 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1297 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1298 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1299 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1300 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1301 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001302 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001303 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1304 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001305 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1306 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1307 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1308 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001309 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07001310 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001311 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07001312 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1313 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001314 }
1315
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001316 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1317 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1318 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001319 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1320 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1321 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001322 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001323
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001324 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1325 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001326 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1327 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001328 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001329 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001330
1331 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001332 }
1333 } stats_;
1334
1335 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001336 enum {
1337 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1338 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1339 kLargeConstructorDexBytes = 4000,
1340 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1341 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1342 kLargeMethodDexBytes = 16000
1343 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001344 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001345 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001346 const std::string image_filename_;
1347 const std::string host_prefix_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001348 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001349 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001350
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001351 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001352};
1353
Elliott Hughes72395bf2012-04-24 13:45:26 -07001354static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001355 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001356
Brian Carlstrom78128a62011-09-15 17:21:19 -07001357 // Skip over argv[0].
1358 argv++;
1359 argc--;
1360
1361 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001362 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001363 usage();
1364 }
1365
Brian Carlstromaded5f72011-10-07 17:15:04 -07001366 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001367 const char* image_filename = NULL;
1368 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001369 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001370 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001371 std::ostream* os = &std::cout;
1372 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001373
1374 for (int i = 0; i < argc; i++) {
1375 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001376 if (option.starts_with("--oat-file=")) {
1377 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001378 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001379 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001380 } else if (option.starts_with("--boot-image=")) {
1381 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001382 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001383 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001384 } else if (option.starts_with("--output=")) {
1385 const char* filename = option.substr(strlen("--output=")).data();
1386 out.reset(new std::ofstream(filename));
1387 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001388 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001389 usage();
1390 }
1391 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001392 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001393 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001394 usage();
1395 }
1396 }
1397
Brian Carlstromaded5f72011-10-07 17:15:04 -07001398 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001399 fprintf(stderr, "Either --image or --oat must be specified\n");
1400 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001401 }
1402
Brian Carlstromaded5f72011-10-07 17:15:04 -07001403 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001404 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1405 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001406 }
1407
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001408 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001409 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1410 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001411 host_prefix.reset(new std::string(android_product_out));
1412 } else {
1413 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001414 }
1415 }
1416
Brian Carlstromaded5f72011-10-07 17:15:04 -07001417 if (oat_filename != NULL) {
Logan Chien0c717dd2012-03-28 18:31:07 +08001418 OatFile* oat_file =
Brian Carlstromf1d34552013-07-12 20:22:23 -07001419 OatFile::Open(oat_filename, oat_filename, NULL, false);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001420 if (oat_file == NULL) {
1421 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
1422 return EXIT_FAILURE;
1423 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001424 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001425 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001426 return EXIT_SUCCESS;
1427 }
1428
Brian Carlstrom78128a62011-09-15 17:21:19 -07001429 Runtime::Options options;
1430 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001431 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001432 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001433 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001434
1435 // We are more like a compiler than a run-time. We don't want to execute code.
1436 options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));
1437
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001438 if (boot_image_filename != NULL) {
1439 boot_image_option += "-Ximage:";
1440 boot_image_option += boot_image_filename;
1441 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001442 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001443 if (image_filename != NULL) {
1444 image_option += "-Ximage:";
1445 image_option += image_filename;
1446 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1447 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001448
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001449 if (!host_prefix->empty()) {
1450 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001451 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001452
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001453 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001454 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001455 return EXIT_FAILURE;
1456 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001457 UniquePtr<Runtime> runtime(Runtime::Current());
1458 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1459 // give it away now and then switch to a more managable ScopedObjectAccess.
1460 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1461 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001462
Ian Rogers1d54e732013-05-02 21:10:01 -07001463 gc::Heap* heap = Runtime::Current()->GetHeap();
1464 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001465 CHECK(image_space != NULL);
1466 const ImageHeader& image_header = image_space->GetImageHeader();
1467 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001468 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001469 return EXIT_FAILURE;
1470 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001471 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001472 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001473 return EXIT_SUCCESS;
1474}
1475
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001476} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001477
1478int main(int argc, char** argv) {
1479 return art::oatdump(argc, argv);
1480}