blob: 4063d709cae9c6f9c5f142dbc4013ee9ef7e8468 [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"
Elliott Hughese3c845c2012-02-28 17:23:01 -080029#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080030#include "disassembler.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080031#include "gc_map.h"
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070032#include "gc/large_object_space.h"
33#include "gc/space.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070034#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080035#include "indenter.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/abstract_method-inl.h"
37#include "mirror/array-inl.h"
38#include "mirror/class-inl.h"
39#include "mirror/field-inl.h"
40#include "mirror/object-inl.h"
41#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080042#include "oat.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080043#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080044#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070045#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070046#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070047#include "scoped_thread_state_change.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080048#include "verifier/method_verifier.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070049
50namespace art {
51
52static void usage() {
53 fprintf(stderr,
54 "Usage: oatdump [options] ...\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080055 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
56 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070057 "\n");
58 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080059 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070060 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070061 "\n");
62 fprintf(stderr,
63 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080064 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070065 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070066 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070067 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080068 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070069 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070070 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070071 " --host-prefix may be used to translate host paths to target paths during\n"
72 " cross compilation.\n"
73 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080074 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070075 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070076 fprintf(stderr,
77 " --output=<file> may be used to send the output to a file.\n"
78 " Example: --output=/tmp/oatdump.txt\n"
79 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070080 exit(EXIT_FAILURE);
81}
82
Ian Rogersff1ed472011-09-20 13:46:24 -070083const char* image_roots_descriptions_[] = {
Brian Carlstrom78128a62011-09-15 17:21:19 -070084 "kJniStubArray",
Brian Carlstrome24fa612011-09-29 00:53:55 -070085 "kAbstractMethodErrorStubArray",
Ian Rogersad25ac52011-10-04 19:13:33 -070086 "kStaticResolutionStubArray",
Ian Rogers1cb0a1d2011-10-06 15:24:35 -070087 "kUnknownMethodResolutionStubArray",
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
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800172 const void* GetOatCode(mirror::AbstractMethod* 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 offsets_.insert(oat_method.GetInvokeStubOffset());
242 }
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_def_idx = dex_file.GetIndexForClassDef(class_def);
289 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700290 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800291 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
292 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
293 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
294 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700295 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700296 }
Ian Rogers0571d352011-11-03 19:51:38 -0700297 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800298 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
299 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
300 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
301 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700302 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700303 }
Ian Rogers0571d352011-11-03 19:51:38 -0700304 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700305 os << std::flush;
306 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800307
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800308 void DumpOatMethod(std::ostream& os, uint32_t class_def_idx, 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);
327 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def_idx, code_item, method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700328 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800329 {
330 indent1_os << "OAT DATA:\n";
331 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
332 std::ostream indent2_os(&indent2_filter);
333
334 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
335 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
336 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
337 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
338 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
339 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
340 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
341 DumpVmap(indent2_os, oat_method);
342 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
343 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
344 const bool kDumpRawMappingTable = false;
345 if (kDumpRawMappingTable) {
346 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
347 std::ostream indent3_os(&indent3_filter);
348 DumpMappingTable(indent3_os, oat_method);
349 }
350 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
351 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
352 const bool kDumpRawGcMap = false;
353 if (kDumpRawGcMap) {
354 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
355 std::ostream indent3_os(&indent3_filter);
356 DumpGcMap(indent3_os, oat_method, code_item);
357 }
358 }
359 {
360 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
361 oat_method.GetCode(),
362 oat_method.GetCodeOffset(),
363 oat_method.GetCodeSize(),
364 oat_method.GetCode() != NULL ? "..." : "");
365 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
366 std::ostream indent2_os(&indent2_filter);
367 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def_idx, code_item,
368 method_access_flags);
369 }
370 {
371 indent1_os << StringPrintf("INVOKE STUB: %p (offset=0x%08x size=%d)%s\n",
372 oat_method.GetInvokeStub(),
373 oat_method.GetInvokeStubOffset(),
374 oat_method.GetInvokeStubSize(),
375 oat_method.GetInvokeStub() != NULL ? "..." : "");
376 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
377 std::ostream indent2_os(&indent2_filter);
378 DumpInvokeStub(indent2_os, oat_method);
379 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700380 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800381
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800382 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
383 if (spill_mask == 0) {
384 return;
385 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800386 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800387 for (size_t i = 0; i < 32; i++) {
388 if ((spill_mask & (1 << i)) != 0) {
389 if (is_float) {
390 os << "fr" << i;
391 } else {
392 os << "r" << i;
393 }
394 spill_mask ^= 1 << i; // clear bit
395 if (spill_mask != 0) {
396 os << ", ";
397 } else {
398 break;
399 }
400 }
401 }
402 os << ")";
403 }
404
Ian Rogersb23a7722012-10-09 16:54:26 -0700405 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
406 const uint16_t* raw_table = oat_method.GetVmapTable();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800407 if (raw_table == NULL) {
408 return;
409 }
410 const VmapTable vmap_table(raw_table);
411 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800412 bool processing_fp = false;
413 uint32_t spill_mask = oat_method.GetCoreSpillMask();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800414 for (size_t i = 0; i < vmap_table.size(); i++) {
415 uint16_t dex_reg = vmap_table[i];
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800416 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
417 processing_fp ? kFloatVReg : kIntVReg);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800418 os << (first ? "v" : ", v") << dex_reg;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800419 if (!processing_fp) {
420 os << "/r" << cpu_reg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800421 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800422 os << "/fr" << cpu_reg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800423 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800424 first = false;
425 if (!processing_fp && dex_reg == 0xFFFF) {
426 processing_fp = true;
427 spill_mask = oat_method.GetFpSpillMask();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800428 }
429 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700430 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800431 }
432
Ian Rogersb23a7722012-10-09 16:54:26 -0700433 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800434 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700435 const uint16_t* raw_table = oat_method.GetVmapTable();
436 if (raw_table != NULL) {
437 const VmapTable vmap_table(raw_table);
438 uint32_t vmap_offset;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800439 if (vmap_table.IsInContext(reg, vmap_offset, kind)) {
440 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
441 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
442 : oat_method.GetCoreSpillMask();
443 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700444 } else {
445 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
446 oat_method.GetFpSpillMask(),
447 oat_method.GetFrameSizeInBytes(), reg);
448 os << "[sp + #" << offset << "]";
449 }
450 }
451 }
452
453 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
454 const DexFile::CodeItem* code_item) {
455 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800456 if (gc_map_raw == NULL) {
457 return;
458 }
Ian Rogers0c7abda2012-09-19 13:33:42 -0700459 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogersb23a7722012-10-09 16:54:26 -0700460 const void* code = oat_method.GetCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800461 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
Ian Rogersbb6723f2012-09-21 09:49:06 -0700462 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) +
463 map.GetNativePcOffset(entry);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800464 os << StringPrintf("%p", native_pc);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800465 size_t num_regs = map.RegWidth() * 8;
466 const uint8_t* reg_bitmap = map.GetBitMap(entry);
467 bool first = true;
468 for (size_t reg = 0; reg < num_regs; reg++) {
469 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
470 if (first) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700471 os << " v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800472 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700473 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800474 first = false;
475 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700476 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800477 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700478 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800479 }
480 }
481 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700482 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800483 }
484 }
485
486 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800487 const uint32_t* raw_table = oat_method.GetMappingTable();
488 const void* code = oat_method.GetCode();
489 if (raw_table == NULL || code == NULL) {
490 return;
491 }
492
buzbee4d7a1892012-10-03 11:03:37 -0700493 ++raw_table;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800494 uint32_t length = *raw_table;
495 ++raw_table;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800496 if (length == 0) {
497 return;
498 }
Bill Buzbeea5b30242012-09-28 07:19:44 -0700499 uint32_t pc_to_dex_entries = *raw_table;
500 ++raw_table;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800501 if (pc_to_dex_entries != 0) {
502 os << "suspend point mappings {\n";
503 } else {
504 os << "catch entry mappings {\n";
505 }
506 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
507 std::ostream indent_os(&indent_filter);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800508 for (size_t i = 0; i < length; i += 2) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800509 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) + raw_table[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800510 uint32_t dex_pc = raw_table[i + 1];
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800511 indent_os << StringPrintf("%p -> 0x%04x\n", native_pc, dex_pc);
512 if (i + 2 == pc_to_dex_entries && pc_to_dex_entries != length) {
Bill Buzbeea5b30242012-09-28 07:19:44 -0700513 // Separate the pc -> dex from dex -> pc sections
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800514 indent_os << std::flush;
515 os << "}\ncatch entry mappings {\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800516 }
517 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700518 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800519 }
520
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800521 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, size_t offset,
522 bool suspend_point_mapping) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700523 const uint32_t* raw_table = oat_method.GetMappingTable();
524 if (raw_table != NULL) {
525 ++raw_table;
526 uint32_t length = *raw_table;
527 ++raw_table;
528 uint32_t pc_to_dex_entries = *raw_table;
529 ++raw_table;
530 size_t start, end;
531 if (suspend_point_mapping) {
532 start = 0;
533 end = pc_to_dex_entries;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800534 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700535 start = pc_to_dex_entries;
536 end = length;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800537 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700538 for (size_t i = start; i < end; i += 2) {
539 if (offset == raw_table[i]) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800540 uint32_t dex_pc = raw_table[i + 1];
Ian Rogersb23a7722012-10-09 16:54:26 -0700541 if (suspend_point_mapping) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800542 os << "suspend point dex PC: 0x";
Ian Rogersb23a7722012-10-09 16:54:26 -0700543 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800544 os << "catch entry dex PC: 0x";
Ian Rogersb23a7722012-10-09 16:54:26 -0700545 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800546 os << std::hex << dex_pc << std::dec << "\n";
547 return dex_pc;
Ian Rogersb23a7722012-10-09 16:54:26 -0700548 }
549 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800550 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800551 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700552 }
553
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800554 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
555 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700556 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
557 if (gc_map_raw != NULL) {
558 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800559 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700560 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800561 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700562 bool first = true;
563 for (size_t reg = 0; reg < num_regs; reg++) {
564 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
565 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800566 os << "GC map objects: v" << reg << " (";
567 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700568 os << ")";
569 first = false;
570 } else {
571 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800572 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700573 os << ")";
574 }
575 }
576 }
577 if (!first) {
578 os << "\n";
579 }
580 }
581 }
582 }
583
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800584 void DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method,
585 uint32_t dex_method_idx, const DexFile* dex_file,
586 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
587 uint32_t method_access_flags, uint32_t dex_pc) {
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800588 static UniquePtr<verifier::MethodVerifier> verifier;
589 static const DexFile* verified_dex_file = NULL;
590 static uint32_t verified_dex_method_idx = DexFile::kDexNoIndex;
591 if (dex_file != verified_dex_file || verified_dex_method_idx != dex_method_idx) {
592 ScopedObjectAccess soa(Thread::Current());
593 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
594 mirror::ClassLoader* class_loader = NULL;
595 verifier.reset(new verifier::MethodVerifier(dex_file, dex_cache, class_loader, class_def_idx,
596 code_item, dex_method_idx, NULL,
597 method_access_flags, true));
598 verifier->Verify();
599 verified_dex_file = dex_file;
600 verified_dex_method_idx = dex_method_idx;
601 }
602 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800603 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800604 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
605 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
606 if (kind != kUndefined) {
607 if (first) {
608 os << "VRegs: v";
609 first = false;
610 } else {
611 os << ", v";
612 }
613 os << reg << " (";
614 switch (kind) {
615 case kImpreciseConstant:
616 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
617 DescribeVReg(os, oat_method, code_item, reg, kind);
618 break;
619 case kConstant:
620 os << "Constant: " << kinds.at((reg * 2) + 1);
621 break;
622 default:
623 DescribeVReg(os, oat_method, code_item, reg, kind);
624 break;
625 }
626 os << ")";
627 }
628 }
629 if (!first) {
630 os << "\n";
631 }
632 }
633
634
Ian Rogersb23a7722012-10-09 16:54:26 -0700635 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
636 if (code_item != NULL) {
637 size_t i = 0;
638 while (i < code_item->insns_size_in_code_units_) {
639 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800640 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700641 i += instruction->SizeInCodeUnits();
642 }
643 }
644 }
645
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800646 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
647 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
648 uint32_t method_access_flags) {
649 if ((method_access_flags & kAccNative) == 0) {
650 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800651 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
652 mirror::ClassLoader* class_loader = NULL;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800653 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
654 class_loader, class_def_idx, code_item, NULL,
655 method_access_flags);
656 }
657 }
658
659 void DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method,
660 uint32_t dex_method_idx, const DexFile* dex_file,
661 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
662 uint32_t method_access_flags) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700663 const void* code = oat_method.GetCode();
664 size_t code_size = oat_method.GetCodeSize();
665 if (code == NULL || code_size == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800666 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700667 return;
668 }
669 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code);
670 size_t offset = 0;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800671 const bool kDumpVRegs = (Runtime::Current() != NULL);
Ian Rogersb23a7722012-10-09 16:54:26 -0700672 while (offset < code_size) {
673 DumpMappingAtOffset(os, oat_method, offset, false);
674 offset += disassembler_->Dump(os, native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800675 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
676 if (dex_pc != DexFile::kDexNoIndex) {
677 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
678 if (kDumpVRegs) {
679 DumpVRegsAtDexPc(os, oat_method, dex_method_idx, dex_file, class_def_idx, code_item,
680 method_access_flags, dex_pc);
681 }
682 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700683 }
684 }
685
686 void DumpInvokeStub(std::ostream& os, const OatFile::OatMethod& oat_method) {
687 const uint8_t* begin = reinterpret_cast<const uint8_t*>(oat_method.GetInvokeStub());
688 const uint8_t* end = begin + oat_method.GetInvokeStubSize();
689 disassembler_->Dump(os, begin, end);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800690 }
691
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700692 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800693 const OatFile& oat_file_;
694 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800695 std::set<uint32_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800696 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700697};
698
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800699class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700700 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800701 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800702 const std::string& host_prefix, Space& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700703 const ImageHeader& image_header)
704 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
705 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700706
Ian Rogersb726dcb2012-09-05 08:57:23 -0700707 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800708 std::ostream& os = *os_;
709 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700710
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800711 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700712
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800713 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700714
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800715 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700716
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800717 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
718
719 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
720
721 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800722
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800723 {
724 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
725 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
726 std::ostream indent1_os(&indent1_filter);
727 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
728 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
729 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
730 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800731 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800732 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
733 if (image_root_object->IsObjectArray()) {
734 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
735 std::ostream indent2_os(&indent2_filter);
736 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800737 mirror::ObjectArray<mirror::Object>* image_root_object_array
738 = down_cast<mirror::ObjectArray<mirror::Object>*>(image_root_object);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800739 // = image_root_object->AsObjectArray<Object>();
740 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800741 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800742 if (value != NULL) {
743 indent2_os << i << ": ";
744 PrettyObjectValue(indent2_os, value->GetClass(), value);
745 } else {
746 indent2_os << i << ": null\n";
747 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800748 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700749 }
750 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700751 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800752 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700753
Brian Carlstromaded5f72011-10-07 17:15:04 -0700754 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800755 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800756 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800757 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800758 if (!host_prefix_.empty()) {
759 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800760 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700761 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800762 os << "\n";
Brian Carlstromae826982011-11-09 01:33:42 -0800763 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700764 if (oat_file == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800765 os << "NOT FOUND\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700766 return;
767 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800768 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700769
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800770 stats_.oat_file_bytes = oat_file->Size();
771
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700772 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800773
Ian Rogers05f28c62012-10-23 18:12:13 -0700774 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
775 for (size_t i = 0; i < oat_dex_files.size(); i++) {
776 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
777 CHECK(oat_dex_file != NULL);
778 std::pair<std::string, size_t> entry(oat_dex_file->GetDexFileLocation(),
779 oat_dex_file->FileSize());
780 stats_.oat_dex_file_sizes.push_back(entry);
781 }
782
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800783 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700784
785 // Loop through all the image spaces and dump their objects.
786 Heap* heap = Runtime::Current()->GetHeap();
787 const Spaces& spaces = heap->GetSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700788 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700789 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700790 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700791 heap->FlushAllocStack();
792 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800793 {
794 std::ostream* saved_os = os_;
795 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
796 std::ostream indent_os(&indent_filter);
797 os_ = &indent_os;
798 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
799 // TODO: C++0x auto
800 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
801 Space* space = *it;
802 if (space->IsImageSpace()) {
803 ImageSpace* image_space = space->AsImageSpace();
804 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
805 indent_os << "\n";
806 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700807 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800808 // Dump the large objects separately.
809 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
810 indent_os << "\n";
811 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700812 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800813 os << "STATS:\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800814 UniquePtr<File> file(OS::OpenFile(image_filename_.c_str(), false));
Elliott Hughes76160052012-12-12 16:31:20 -0800815 stats_.file_bytes = file->GetLength();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800816 size_t header_bytes = sizeof(ImageHeader);
817 stats_.header_bytes = header_bytes;
818 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
819 stats_.alignment_bytes += alignment_bytes;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800820 stats_.Dump(os);
821 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800822
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800823 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800824
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800825 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700826 }
827
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700828 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800829 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700830 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800831 CHECK(type != NULL);
832 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800833 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800834 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800835 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800836 os << StringPrintf("%p String: %s\n", string,
837 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700838 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800839 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800840 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700841 } else if (type->IsFieldClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800842 mirror::Field* field = value->AsField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800843 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700844 } else if (type->IsMethodClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800845 mirror::AbstractMethod* method = value->AsMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800846 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800847 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800848 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800849 }
850 }
851
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800852 static void PrintField(std::ostream& os, mirror::Field* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700853 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800854 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700855 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800856 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700857 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800858 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700859 if (type->IsPrimitiveLong()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800860 os << StringPrintf("%lld (0x%llx)\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700861 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800862 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700863 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800864 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700865 } else {
866 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800867 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700868 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800869 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700870 // Get the value, don't compute the type unless it is non-null as we don't want
871 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800872 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700873 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800874 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700875 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800876 PrettyObjectValue(os, fh.GetType(), value);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700877 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800878 }
879 }
880
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800881 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700882 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800883 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800884 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800885 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800886 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800887 mirror::ObjectArray<mirror::Field>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800888 if (fields != NULL) {
889 for (int32_t i = 0; i < fields->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800890 mirror::Field* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800891 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800892 }
893 }
894 }
895
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800896 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800897 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700898 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800899
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800900 const void* GetOatCodeBegin(mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700901 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800902 Runtime* runtime = Runtime::Current();
903 const void* code = m->GetCode();
Ian Rogersfb6adba2012-03-04 21:51:51 -0800904 if (code == runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData()) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800905 code = oat_dumper_->GetOatCode(m);
906 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700907 if (oat_dumper_->GetInstructionSet() == kThumb2) {
908 code = reinterpret_cast<void*>(reinterpret_cast<uint32_t>(code) & ~0x1);
909 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800910 return code;
911 }
912
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800913 uint32_t GetOatCodeSize(mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700914 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700915 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetOatCodeBegin(m));
916 if (oat_code_begin == NULL) {
917 return 0;
918 }
919 return oat_code_begin[-1];
920 }
921
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800922 const void* GetOatCodeEnd(mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700923 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700924 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetOatCodeBegin(m));
925 if (oat_code_begin == NULL) {
926 return NULL;
927 }
928 return oat_code_begin + GetOatCodeSize(m);
929 }
930
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800931 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700932 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700933 DCHECK(obj != NULL);
934 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800935 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700936 if (!state->InDumpSpace(obj)) {
937 return;
938 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700939
940 size_t object_bytes = obj->SizeOf();
941 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
942 state->stats_.object_bytes += object_bytes;
943 state->stats_.alignment_bytes += alignment_bytes;
944
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800945 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800946 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800947 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800948 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
949 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800950 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800951 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800952 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
953 << klass->GetStatus() << ")\n";
Ian Rogersd5b32602012-02-26 16:40:04 -0800954 } else if (obj->IsField()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800955 os << StringPrintf("%p: java.lang.reflect.Field %s\n", obj,
956 PrettyField(obj->AsField()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800957 } else if (obj->IsMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800958 os << StringPrintf("%p: java.lang.reflect.Method %s\n", obj,
959 PrettyMethod(obj->AsMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800960 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800961 os << StringPrintf("%p: java.lang.String %s\n", obj,
962 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800963 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800964 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800965 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800966 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
967 std::ostream indent_os(&indent_filter);
968 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -0800969 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800970 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -0800971 int32_t length = obj_array->GetLength();
972 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800973 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800974 size_t run = 0;
975 for (int32_t j = i + 1; j < length; j++) {
976 if (value == obj_array->Get(j)) {
977 run++;
978 } else {
979 break;
980 }
981 }
982 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800983 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800984 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800985 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -0800986 i = i + run;
987 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800988 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800989 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -0800990 }
991 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800992 mirror::ObjectArray<mirror::Field>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800993 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800994 indent_os << "STATICS:\n";
995 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
996 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -0800997 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800998 mirror::Field* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800999 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001000 }
1001 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001002 } else if (obj->IsMethod()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001003 mirror::AbstractMethod* method = obj->AsMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001004 if (method->IsNative()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001005 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001006 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001007 bool first_occurrence;
1008 size_t invoke_stub_size = state->ComputeOatSize(
1009 reinterpret_cast<const void*>(method->GetInvokeStub()), &first_occurrence);
1010 if (first_occurrence) {
1011 state->stats_.managed_to_native_code_bytes += invoke_stub_size;
1012 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001013 const void* oat_code = state->GetOatCodeBegin(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001014 uint32_t oat_code_size = state->GetOatCodeSize(method);
1015 state->ComputeOatSize(oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001016 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001017 state->stats_.native_to_managed_code_bytes += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001018 }
1019 if (oat_code != method->GetCode()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001020 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001021 }
Ian Rogers19846512012-02-24 11:42:47 -08001022 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
1023 method->IsResolutionMethod()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001024 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001025 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001026 } else {
TDYa1273db52852012-04-01 15:11:43 -07001027#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers0c7abda2012-09-19 13:33:42 -07001028 DCHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
TDYa1273db52852012-04-01 15:11:43 -07001029#endif
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001030
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001031 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001032 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001033 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001034
Elliott Hughesa0e18062012-04-13 15:59:59 -07001035 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001036 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001037 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001038 state->stats_.gc_map_bytes += gc_map_bytes;
1039 }
1040
1041 size_t pc_mapping_table_bytes =
Elliott Hughesa0e18062012-04-13 15:59:59 -07001042 state->ComputeOatSize(method->GetMappingTableRaw(), &first_occurrence);
1043 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001044 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1045 }
1046
1047 size_t vmap_table_bytes =
Elliott Hughesa0e18062012-04-13 15:59:59 -07001048 state->ComputeOatSize(method->GetVmapTableRaw(), &first_occurrence);
1049 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001050 state->stats_.vmap_table_bytes += vmap_table_bytes;
1051 }
1052
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001053 // TODO: compute invoke stub using length from oat file.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001054 size_t invoke_stub_size = state->ComputeOatSize(
Elliott Hughesa0e18062012-04-13 15:59:59 -07001055 reinterpret_cast<const void*>(method->GetInvokeStub()), &first_occurrence);
1056 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001057 state->stats_.native_to_managed_code_bytes += invoke_stub_size;
1058 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001059 const void* oat_code_begin = state->GetOatCodeBegin(method);
1060 const void* oat_code_end = state->GetOatCodeEnd(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001061 uint32_t oat_code_size = state->GetOatCodeSize(method);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001062 state->ComputeOatSize(oat_code_begin, &first_occurrence);
1063 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001064 state->stats_.managed_code_bytes += oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001065 if (method->IsConstructor()) {
1066 if (method->IsStatic()) {
1067 state->stats_.class_initializer_code_bytes += oat_code_size;
1068 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1069 state->stats_.large_initializer_code_bytes += oat_code_size;
1070 }
1071 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1072 state->stats_.large_method_code_bytes += oat_code_size;
1073 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001074 }
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001075 state->stats_.managed_code_bytes_ignoring_deduplication += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001076
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001077 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1078 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1079 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001080
1081 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001082 vmap_table_bytes + invoke_stub_size + oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001083
1084 double expansion =
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001085 static_cast<double>(oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001086 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001087 }
1088 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001089 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001090 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001091
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001092 std::set<const void*> already_seen_;
1093 // Compute the size of the given data within the oat file and whether this is the first time
1094 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001095 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001096 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001097 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001098 already_seen_.insert(oat_data);
1099 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001100 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001101 }
1102 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001103 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001104
1105 public:
1106 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001107 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001108 size_t file_bytes;
1109
1110 size_t header_bytes;
1111 size_t object_bytes;
1112 size_t alignment_bytes;
1113
1114 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001115 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001116 size_t managed_to_native_code_bytes;
1117 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001118 size_t class_initializer_code_bytes;
1119 size_t large_initializer_code_bytes;
1120 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001121
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001122 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001123 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001124 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001125
1126 size_t dex_instruction_bytes;
1127
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001128 std::vector<mirror::AbstractMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001129 std::vector<size_t> method_outlier_size;
1130 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001131 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001132
1133 explicit Stats()
1134 : oat_file_bytes(0),
1135 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001136 header_bytes(0),
1137 object_bytes(0),
1138 alignment_bytes(0),
1139 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001140 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001141 managed_to_native_code_bytes(0),
1142 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001143 class_initializer_code_bytes(0),
1144 large_initializer_code_bytes(0),
1145 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001146 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001147 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001148 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001149 dex_instruction_bytes(0) {}
1150
Elliott Hughesa0e18062012-04-13 15:59:59 -07001151 struct SizeAndCount {
1152 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1153 size_t bytes;
1154 size_t count;
1155 };
1156 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1157 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001158
Elliott Hughesa0e18062012-04-13 15:59:59 -07001159 void Update(const std::string& descriptor, size_t object_bytes) {
1160 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1161 if (it != sizes_and_counts.end()) {
1162 it->second.bytes += object_bytes;
1163 it->second.count += 1;
1164 } else {
1165 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1166 }
1167 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001168
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001169 double PercentOfOatBytes(size_t size) {
1170 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1171 }
1172
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001173 double PercentOfFileBytes(size_t size) {
1174 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1175 }
1176
1177 double PercentOfObjectBytes(size_t size) {
1178 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1179 }
1180
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001181 void ComputeOutliers(size_t total_size, double expansion, mirror::AbstractMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001182 method_outlier_size.push_back(total_size);
1183 method_outlier_expansion.push_back(expansion);
1184 method_outlier.push_back(method);
1185 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001186
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001187 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001188 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001189 size_t sum_of_sizes = 0;
1190 size_t sum_of_sizes_squared = 0;
1191 size_t sum_of_expansion = 0;
1192 size_t sum_of_expansion_squared = 0;
1193 size_t n = method_outlier_size.size();
1194 for (size_t i = 0; i < n; i++) {
1195 size_t cur_size = method_outlier_size[i];
1196 sum_of_sizes += cur_size;
1197 sum_of_sizes_squared += cur_size * cur_size;
1198 double cur_expansion = method_outlier_expansion[i];
1199 sum_of_expansion += cur_expansion;
1200 sum_of_expansion_squared += cur_expansion * cur_expansion;
1201 }
1202 size_t size_mean = sum_of_sizes / n;
1203 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1204 double expansion_mean = sum_of_expansion / n;
1205 double expansion_variance =
1206 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1207
1208 // Dump methods whose size is a certain number of standard deviations from the mean
1209 size_t dumped_values = 0;
1210 size_t skipped_values = 0;
1211 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1212 size_t cur_size_variance = i * i * size_variance;
1213 bool first = true;
1214 for (size_t j = 0; j < n; j++) {
1215 size_t cur_size = method_outlier_size[j];
1216 if (cur_size > size_mean) {
1217 size_t cur_var = cur_size - size_mean;
1218 cur_var = cur_var * cur_var;
1219 if (cur_var > cur_size_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) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001229 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001230 first = false;
1231 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001232 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001233 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001234 method_outlier_size[j] = 0; // don't consider this method again
1235 dumped_values++;
1236 }
1237 }
1238 }
1239 }
1240 }
1241 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001242 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001243 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001244 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001245 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001246
1247 // Dump methods whose expansion is a certain number of standard deviations from the mean
1248 dumped_values = 0;
1249 skipped_values = 0;
1250 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1251 double cur_expansion_variance = i * i * expansion_variance;
1252 bool first = true;
1253 for (size_t j = 0; j < n; j++) {
1254 double cur_expansion = method_outlier_expansion[j];
1255 if (cur_expansion > expansion_mean) {
1256 size_t cur_var = cur_expansion - expansion_mean;
1257 cur_var = cur_var * cur_var;
1258 if (cur_var > cur_expansion_variance) {
1259 if (dumped_values > 20) {
1260 if (i == 1) {
1261 skipped_values++;
1262 } else {
1263 i = 2; // jump to counting for 1 standard deviation
1264 break;
1265 }
1266 } else {
1267 if (first) {
1268 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001269 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001270 first = false;
1271 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001272 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001273 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001274 method_outlier_expansion[j] = 0.0; // don't consider this method again
1275 dumped_values++;
1276 }
1277 }
1278 }
1279 }
1280 }
1281 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001282 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001283 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001284 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001285 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001286 }
1287
Ian Rogersb726dcb2012-09-05 08:57:23 -07001288 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001289 {
1290 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1291 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1292 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1293 std::ostream indent_os(&indent_filter);
1294 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1295 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
1296 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1297 header_bytes, PercentOfFileBytes(header_bytes),
1298 object_bytes, PercentOfFileBytes(object_bytes),
1299 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1300 << std::flush;
1301 CHECK_EQ(file_bytes, header_bytes + object_bytes + alignment_bytes);
1302 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001303
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001304 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001305 size_t object_bytes_total = 0;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001306 typedef SizeAndCountTable::const_iterator It; // TODO: C++0x auto
1307 for (It it = sizes_and_counts.begin(), end = sizes_and_counts.end(); it != end; ++it) {
Elliott Hughes95572412011-12-13 18:14:20 -08001308 const std::string& descriptor(it->first);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001309 double average = static_cast<double>(it->second.bytes) / static_cast<double>(it->second.count);
1310 double percent = PercentOfObjectBytes(it->second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001311 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001312 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
1313 descriptor.c_str(), it->second.bytes, it->second.count,
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001314 average, percent);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001315 object_bytes_total += it->second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001316 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001317 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001318 CHECK_EQ(object_bytes, object_bytes_total);
1319
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001320 os << StringPrintf("oat_file_bytes = %8zd\n"
1321 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1322 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1323 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1324 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1325 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1326 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001327 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001328 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1329 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001330 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1331 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1332 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1333 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001334 << "DexFile sizes:\n";
Ian Rogers05f28c62012-10-23 18:12:13 -07001335 typedef std::vector<std::pair<std::string, size_t> >::const_iterator It2;
1336 for (It2 it = oat_dex_file_sizes.begin(); it != oat_dex_file_sizes.end();
1337 ++it) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001338 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
1339 it->first.c_str(), it->second, PercentOfOatBytes(it->second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001340 }
1341
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001342 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1343 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1344 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001345 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1346 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1347 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001348 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001349
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001350 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1351 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001352 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1353 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001354 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001355 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001356
1357 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001358 }
1359 } stats_;
1360
1361 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001362 enum {
1363 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1364 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1365 kLargeConstructorDexBytes = 4000,
1366 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1367 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1368 kLargeMethodDexBytes = 16000
1369 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001370 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001371 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001372 const std::string image_filename_;
1373 const std::string host_prefix_;
1374 Space& image_space_;
1375 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001376
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001377 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001378};
1379
Elliott Hughes72395bf2012-04-24 13:45:26 -07001380static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001381 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001382
Brian Carlstrom78128a62011-09-15 17:21:19 -07001383 // Skip over argv[0].
1384 argv++;
1385 argc--;
1386
1387 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001388 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001389 usage();
1390 }
1391
Brian Carlstromaded5f72011-10-07 17:15:04 -07001392 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001393 const char* image_filename = NULL;
1394 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001395 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001396 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001397 std::ostream* os = &std::cout;
1398 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001399
1400 for (int i = 0; i < argc; i++) {
1401 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001402 if (option.starts_with("--oat-file=")) {
1403 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001404 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001405 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001406 } else if (option.starts_with("--boot-image=")) {
1407 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001408 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001409 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001410 } else if (option.starts_with("--output=")) {
1411 const char* filename = option.substr(strlen("--output=")).data();
1412 out.reset(new std::ofstream(filename));
1413 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001414 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001415 usage();
1416 }
1417 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001418 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001419 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001420 usage();
1421 }
1422 }
1423
Brian Carlstromaded5f72011-10-07 17:15:04 -07001424 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001425 fprintf(stderr, "Either --image or --oat must be specified\n");
1426 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001427 }
1428
Brian Carlstromaded5f72011-10-07 17:15:04 -07001429 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001430 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1431 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001432 }
1433
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001434 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001435 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1436 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001437 host_prefix.reset(new std::string(android_product_out));
1438 } else {
1439 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001440 }
1441 }
1442
Brian Carlstromaded5f72011-10-07 17:15:04 -07001443 if (oat_filename != NULL) {
Logan Chien0c717dd2012-03-28 18:31:07 +08001444 OatFile* oat_file =
Brian Carlstrom1cac3432012-12-12 10:56:22 -08001445 OatFile::Open(oat_filename, oat_filename, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001446 if (oat_file == NULL) {
1447 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
1448 return EXIT_FAILURE;
1449 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001450 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001451 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001452 return EXIT_SUCCESS;
1453 }
1454
Brian Carlstrom78128a62011-09-15 17:21:19 -07001455 Runtime::Options options;
1456 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001457 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001458 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001459 std::string boot_oat_option;
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001460 if (boot_image_filename != NULL) {
1461 boot_image_option += "-Ximage:";
1462 boot_image_option += boot_image_filename;
1463 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001464 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001465 if (image_filename != NULL) {
1466 image_option += "-Ximage:";
1467 image_option += image_filename;
1468 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1469 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001470
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001471 if (!host_prefix->empty()) {
1472 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001473 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001474
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001475 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001476 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001477 return EXIT_FAILURE;
1478 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001479 UniquePtr<Runtime> runtime(Runtime::Current());
1480 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1481 // give it away now and then switch to a more managable ScopedObjectAccess.
1482 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1483 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001484
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001485 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001486 ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001487 CHECK(image_space != NULL);
1488 const ImageHeader& image_header = image_space->GetImageHeader();
1489 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001490 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001491 return EXIT_FAILURE;
1492 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001493 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001494 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001495 return EXIT_SUCCESS;
1496}
1497
1498} // namespace art
1499
1500int main(int argc, char** argv) {
1501 return art::oatdump(argc, argv);
1502}