blob: a717f192b9ffe983fdef870b23881a2e303639d5 [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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/abstract_method-inl.h"
40#include "mirror/array-inl.h"
41#include "mirror/class-inl.h"
42#include "mirror/field-inl.h"
43#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
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 }
242
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800243 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700244 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800245 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800246 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800247 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile());
248 if (dex_file.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700249 os << "NOT FOUND\n\n";
250 return;
251 }
252 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
253 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
254 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700255 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
256 CHECK(oat_class.get() != NULL);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800257 os << StringPrintf("%zd: %s (type_idx=%d) (", class_def_index, descriptor, class_def.class_idx_)
mikaelpeltier6ffd0962012-10-25 15:37:45 +0200258 << oat_class->GetStatus() << ")"
259 // TODO: JACK CLASS ACCESS (HACK TO BE REMOVED)
260 << ( (class_def.access_flags_ & kAccClassJack) == kAccClassJack ? " (Jack)" : "" )
261 << "\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800262 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
263 std::ostream indented_os(&indent_filter);
264 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700265 }
266
267 os << std::flush;
268 }
269
Elliott Hughese3c845c2012-02-28 17:23:01 -0800270 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700271 while (it.HasNextStaticField()) {
272 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700273 }
Ian Rogers0571d352011-11-03 19:51:38 -0700274 while (it.HasNextInstanceField()) {
275 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700276 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800277 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700278
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800279 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
280 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800281 const byte* class_data = dex_file.GetClassData(class_def);
282 if (class_data == NULL) { // empty class such as a marker interface?
283 return;
284 }
285 ClassDataItemIterator it(dex_file, class_data);
286 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800287 uint32_t class_def_idx = dex_file.GetIndexForClassDef(class_def);
288 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700289 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800290 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
291 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
292 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
293 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700294 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700295 }
Ian Rogers0571d352011-11-03 19:51:38 -0700296 while (it.HasNextVirtualMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800297 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
298 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
299 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
300 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700301 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700302 }
Ian Rogers0571d352011-11-03 19:51:38 -0700303 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700304 os << std::flush;
305 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800306
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800307 void DumpOatMethod(std::ostream& os, uint32_t class_def_idx, uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800308 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800309 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
310 uint32_t method_access_flags) {
311 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700312 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
313 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800314 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
315 std::ostream indent1_os(&indent1_filter);
316 {
317 indent1_os << "DEX CODE:\n";
318 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
319 std::ostream indent2_os(&indent2_filter);
320 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700321 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800322 if (Runtime::Current() != NULL) {
323 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
324 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
325 std::ostream indent2_os(&indent2_filter);
326 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def_idx, code_item, method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700327 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800328 {
329 indent1_os << "OAT DATA:\n";
330 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
331 std::ostream indent2_os(&indent2_filter);
332
333 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
334 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
335 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
336 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
337 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
338 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
339 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
340 DumpVmap(indent2_os, oat_method);
341 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
342 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
343 const bool kDumpRawMappingTable = false;
344 if (kDumpRawMappingTable) {
345 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
346 std::ostream indent3_os(&indent3_filter);
347 DumpMappingTable(indent3_os, oat_method);
348 }
349 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
350 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
351 const bool kDumpRawGcMap = false;
352 if (kDumpRawGcMap) {
353 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
354 std::ostream indent3_os(&indent3_filter);
355 DumpGcMap(indent3_os, oat_method, code_item);
356 }
357 }
358 {
359 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
360 oat_method.GetCode(),
361 oat_method.GetCodeOffset(),
362 oat_method.GetCodeSize(),
363 oat_method.GetCode() != NULL ? "..." : "");
364 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
365 std::ostream indent2_os(&indent2_filter);
366 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def_idx, code_item,
367 method_access_flags);
368 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700369 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800370
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800371 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
372 if (spill_mask == 0) {
373 return;
374 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800375 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800376 for (size_t i = 0; i < 32; i++) {
377 if ((spill_mask & (1 << i)) != 0) {
378 if (is_float) {
379 os << "fr" << i;
380 } else {
381 os << "r" << i;
382 }
383 spill_mask ^= 1 << i; // clear bit
384 if (spill_mask != 0) {
385 os << ", ";
386 } else {
387 break;
388 }
389 }
390 }
391 os << ")";
392 }
393
Ian Rogersb23a7722012-10-09 16:54:26 -0700394 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
Ian Rogers1809a722013-08-09 22:05:32 -0700395 const uint8_t* raw_table = oat_method.GetVmapTable();
396 if (raw_table != NULL) {
397 const VmapTable vmap_table(raw_table);
398 bool first = true;
399 bool processing_fp = false;
400 uint32_t spill_mask = oat_method.GetCoreSpillMask();
401 for (size_t i = 0; i < vmap_table.Size(); i++) {
402 uint16_t dex_reg = vmap_table[i];
403 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
404 processing_fp ? kFloatVReg : kIntVReg);
405 os << (first ? "v" : ", v") << dex_reg;
406 if (!processing_fp) {
407 os << "/r" << cpu_reg;
408 } else {
409 os << "/fr" << cpu_reg;
410 }
411 first = false;
412 if (!processing_fp && dex_reg == 0xFFFF) {
413 processing_fp = true;
414 spill_mask = oat_method.GetFpSpillMask();
415 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800416 }
Ian Rogers1809a722013-08-09 22:05:32 -0700417 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800418 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800419 }
420
Ian Rogersb23a7722012-10-09 16:54:26 -0700421 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800422 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -0700423 const uint8_t* raw_table = oat_method.GetVmapTable();
Ian Rogersb23a7722012-10-09 16:54:26 -0700424 if (raw_table != NULL) {
425 const VmapTable vmap_table(raw_table);
426 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -0700427 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800428 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
429 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
430 : oat_method.GetCoreSpillMask();
431 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700432 } else {
433 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
434 oat_method.GetFpSpillMask(),
435 oat_method.GetFrameSizeInBytes(), reg);
436 os << "[sp + #" << offset << "]";
437 }
438 }
439 }
440
441 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
442 const DexFile::CodeItem* code_item) {
443 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800444 if (gc_map_raw == NULL) {
445 return;
446 }
Ian Rogers0c7abda2012-09-19 13:33:42 -0700447 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogersb23a7722012-10-09 16:54:26 -0700448 const void* code = oat_method.GetCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800449 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
Ian Rogersbb6723f2012-09-21 09:49:06 -0700450 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) +
451 map.GetNativePcOffset(entry);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800452 os << StringPrintf("%p", native_pc);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800453 size_t num_regs = map.RegWidth() * 8;
454 const uint8_t* reg_bitmap = map.GetBitMap(entry);
455 bool first = true;
456 for (size_t reg = 0; reg < num_regs; reg++) {
457 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
458 if (first) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700459 os << " v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800460 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700461 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800462 first = false;
463 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700464 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800465 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700466 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800467 }
468 }
469 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700470 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800471 }
472 }
473
474 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800475 const void* code = oat_method.GetCode();
Ian Rogers1809a722013-08-09 22:05:32 -0700476 if (code == NULL) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800477 return;
478 }
Ian Rogers1809a722013-08-09 22:05:32 -0700479 MappingTable table(oat_method.GetMappingTable());
480 if (table.TotalSize() != 0) {
481 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
482 std::ostream indent_os(&indent_filter);
483 if (table.PcToDexSize() != 0) {
484 typedef MappingTable::PcToDexIterator It;
485 os << "suspend point mappings {\n";
486 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
487 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
488 }
489 os << "}\n";
490 }
491 if (table.DexToPcSize() != 0) {
492 typedef MappingTable::DexToPcIterator It;
493 os << "catch entry mappings {\n";
494 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
495 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
496 }
497 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800498 }
499 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800500 }
501
Ian Rogers1809a722013-08-09 22:05:32 -0700502 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
503 size_t offset, bool suspend_point_mapping) {
504 MappingTable table(oat_method.GetMappingTable());
505 if (suspend_point_mapping && table.PcToDexSize() > 0) {
506 typedef MappingTable::PcToDexIterator It;
507 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
508 if (offset == cur.NativePcOffset()) {
509 os << "suspend point dex PC: 0x" << cur.DexPc() << "\n";
510 return cur.DexPc();
511 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800512 }
Ian Rogers1809a722013-08-09 22:05:32 -0700513 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
514 typedef MappingTable::DexToPcIterator It;
515 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
516 if (offset == cur.NativePcOffset()) {
517 os << "catch entry dex PC: 0x" << cur.DexPc() << "\n";
518 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -0700519 }
520 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800521 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800522 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700523 }
524
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800525 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
526 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700527 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
528 if (gc_map_raw != NULL) {
529 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800530 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700531 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800532 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700533 bool first = true;
534 for (size_t reg = 0; reg < num_regs; reg++) {
535 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
536 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800537 os << "GC map objects: v" << reg << " (";
538 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700539 os << ")";
540 first = false;
541 } else {
542 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800543 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700544 os << ")";
545 }
546 }
547 }
548 if (!first) {
549 os << "\n";
550 }
551 }
552 }
553 }
554
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800555 void DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method,
556 uint32_t dex_method_idx, const DexFile* dex_file,
557 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
558 uint32_t method_access_flags, uint32_t dex_pc) {
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800559 static UniquePtr<verifier::MethodVerifier> verifier;
560 static const DexFile* verified_dex_file = NULL;
561 static uint32_t verified_dex_method_idx = DexFile::kDexNoIndex;
562 if (dex_file != verified_dex_file || verified_dex_method_idx != dex_method_idx) {
563 ScopedObjectAccess soa(Thread::Current());
564 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
565 mirror::ClassLoader* class_loader = NULL;
566 verifier.reset(new verifier::MethodVerifier(dex_file, dex_cache, class_loader, class_def_idx,
567 code_item, dex_method_idx, NULL,
Jeff Haoee988952013-04-16 14:23:47 -0700568 method_access_flags, true, true));
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800569 verifier->Verify();
570 verified_dex_file = dex_file;
571 verified_dex_method_idx = dex_method_idx;
572 }
573 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800574 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800575 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
576 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
577 if (kind != kUndefined) {
578 if (first) {
579 os << "VRegs: v";
580 first = false;
581 } else {
582 os << ", v";
583 }
584 os << reg << " (";
585 switch (kind) {
586 case kImpreciseConstant:
587 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
588 DescribeVReg(os, oat_method, code_item, reg, kind);
589 break;
590 case kConstant:
591 os << "Constant: " << kinds.at((reg * 2) + 1);
592 break;
593 default:
594 DescribeVReg(os, oat_method, code_item, reg, kind);
595 break;
596 }
597 os << ")";
598 }
599 }
600 if (!first) {
601 os << "\n";
602 }
603 }
604
605
Ian Rogersb23a7722012-10-09 16:54:26 -0700606 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
607 if (code_item != NULL) {
608 size_t i = 0;
609 while (i < code_item->insns_size_in_code_units_) {
610 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800611 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700612 i += instruction->SizeInCodeUnits();
613 }
614 }
615 }
616
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800617 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
618 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
619 uint32_t method_access_flags) {
620 if ((method_access_flags & kAccNative) == 0) {
621 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800622 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
623 mirror::ClassLoader* class_loader = NULL;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800624 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
625 class_loader, class_def_idx, code_item, NULL,
626 method_access_flags);
627 }
628 }
629
630 void DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method,
631 uint32_t dex_method_idx, const DexFile* dex_file,
632 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
633 uint32_t method_access_flags) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700634 const void* code = oat_method.GetCode();
635 size_t code_size = oat_method.GetCodeSize();
636 if (code == NULL || code_size == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800637 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700638 return;
639 }
640 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code);
641 size_t offset = 0;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800642 const bool kDumpVRegs = (Runtime::Current() != NULL);
Ian Rogersb23a7722012-10-09 16:54:26 -0700643 while (offset < code_size) {
644 DumpMappingAtOffset(os, oat_method, offset, false);
645 offset += disassembler_->Dump(os, native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800646 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
647 if (dex_pc != DexFile::kDexNoIndex) {
648 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
649 if (kDumpVRegs) {
650 DumpVRegsAtDexPc(os, oat_method, dex_method_idx, dex_file, class_def_idx, code_item,
651 method_access_flags, dex_pc);
652 }
653 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700654 }
655 }
656
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700657 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800658 const OatFile& oat_file_;
659 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800660 std::set<uint32_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800661 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700662};
663
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800664class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700665 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800666 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers1d54e732013-05-02 21:10:01 -0700667 const std::string& host_prefix, gc::space::ImageSpace& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700668 const ImageHeader& image_header)
669 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
670 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700671
Ian Rogersb726dcb2012-09-05 08:57:23 -0700672 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800673 std::ostream& os = *os_;
674 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700675
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800676 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700677
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800678 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700679
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800680 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700681
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800682 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
683
684 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
685
686 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800687
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800688 {
689 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
690 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
691 std::ostream indent1_os(&indent1_filter);
692 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
693 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
694 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
695 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800696 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800697 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
698 if (image_root_object->IsObjectArray()) {
699 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
700 std::ostream indent2_os(&indent2_filter);
701 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800702 mirror::ObjectArray<mirror::Object>* image_root_object_array
703 = down_cast<mirror::ObjectArray<mirror::Object>*>(image_root_object);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800704 // = image_root_object->AsObjectArray<Object>();
705 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800706 mirror::Object* value = image_root_object_array->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800707 if (value != NULL) {
708 indent2_os << i << ": ";
709 PrettyObjectValue(indent2_os, value->GetClass(), value);
710 } else {
711 indent2_os << i << ": null\n";
712 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800713 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700714 }
715 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700716 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800717 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700718
Brian Carlstromaded5f72011-10-07 17:15:04 -0700719 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800720 mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800721 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800722 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800723 if (!host_prefix_.empty()) {
724 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800725 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700726 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800727 os << "\n";
Brian Carlstromae826982011-11-09 01:33:42 -0800728 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700729 if (oat_file == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800730 os << "NOT FOUND\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700731 return;
732 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800733 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700734
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800735 stats_.oat_file_bytes = oat_file->Size();
736
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700737 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800738
Ian Rogers05f28c62012-10-23 18:12:13 -0700739 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
740 for (size_t i = 0; i < oat_dex_files.size(); i++) {
741 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
742 CHECK(oat_dex_file != NULL);
743 std::pair<std::string, size_t> entry(oat_dex_file->GetDexFileLocation(),
744 oat_dex_file->FileSize());
745 stats_.oat_dex_file_sizes.push_back(entry);
746 }
747
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800748 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700749
750 // Loop through all the image spaces and dump their objects.
Ian Rogers1d54e732013-05-02 21:10:01 -0700751 gc::Heap* heap = Runtime::Current()->GetHeap();
752 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700753 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700754 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700755 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700756 heap->FlushAllocStack();
757 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800758 {
759 std::ostream* saved_os = os_;
760 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
761 std::ostream indent_os(&indent_filter);
762 os_ = &indent_os;
763 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
764 // TODO: C++0x auto
Ian Rogers1d54e732013-05-02 21:10:01 -0700765 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
766 for (It it = spaces.begin(), end = spaces.end(); it != end; ++it) {
767 gc::space::Space* space = *it;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800768 if (space->IsImageSpace()) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700769 gc::space::ImageSpace* image_space = space->AsImageSpace();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800770 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
771 indent_os << "\n";
772 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700773 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800774 // Dump the large objects separately.
775 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
776 indent_os << "\n";
777 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700778 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800779 os << "STATS:\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800780 UniquePtr<File> file(OS::OpenFile(image_filename_.c_str(), false));
Elliott Hughes76160052012-12-12 16:31:20 -0800781 stats_.file_bytes = file->GetLength();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800782 size_t header_bytes = sizeof(ImageHeader);
783 stats_.header_bytes = header_bytes;
784 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
785 stats_.alignment_bytes += alignment_bytes;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800786 stats_.Dump(os);
787 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800788
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800789 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800790
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800791 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700792 }
793
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700794 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800795 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700796 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800797 CHECK(type != NULL);
798 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800799 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800800 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800801 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800802 os << StringPrintf("%p String: %s\n", string,
803 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700804 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800805 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800806 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700807 } else if (type->IsFieldClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800808 mirror::Field* field = value->AsField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800809 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700810 } else if (type->IsMethodClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800811 mirror::AbstractMethod* method = value->AsMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800812 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800813 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800814 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800815 }
816 }
817
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800818 static void PrintField(std::ostream& os, mirror::Field* field, mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700819 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800820 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700821 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800822 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700823 if (descriptor[0] != 'L' && descriptor[0] != '[') {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800824 mirror::Class* type = fh.GetType();
Ian Rogers48efc2b2012-08-27 17:20:31 -0700825 if (type->IsPrimitiveLong()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800826 os << StringPrintf("%lld (0x%llx)\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700827 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800828 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700829 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800830 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700831 } else {
832 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800833 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700834 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800835 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700836 // Get the value, don't compute the type unless it is non-null as we don't want
837 // to cause class loading.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800838 mirror::Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700839 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800840 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700841 } else {
Ian Rogers50239c72013-06-17 14:53:22 -0700842 // Grab the field type without causing resolution.
843 mirror::Class* field_type = fh.GetType(false);
844 if (field_type != NULL) {
845 PrettyObjectValue(os, field_type, value);
846 } else {
847 os << StringPrintf("%p %s\n", value, PrettyDescriptor(descriptor).c_str());
848 }
Ian Rogers48efc2b2012-08-27 17:20:31 -0700849 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800850 }
851 }
852
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800853 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700854 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800855 mirror::Class* super = klass->GetSuperClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800856 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800857 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800858 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800859 mirror::ObjectArray<mirror::Field>* fields = klass->GetIFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800860 if (fields != NULL) {
861 for (int32_t i = 0; i < fields->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800862 mirror::Field* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800863 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800864 }
865 }
866 }
867
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800868 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800869 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700870 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800871
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800872 const void* GetOatCodeBegin(mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700873 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700874 const void* code = m->GetEntryPointFromCompiledCode();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700875 if (code == GetResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800876 code = oat_dumper_->GetOatCode(m);
877 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700878 if (oat_dumper_->GetInstructionSet() == kThumb2) {
879 code = reinterpret_cast<void*>(reinterpret_cast<uint32_t>(code) & ~0x1);
880 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800881 return code;
882 }
883
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800884 uint32_t GetOatCodeSize(mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700885 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700886 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetOatCodeBegin(m));
887 if (oat_code_begin == NULL) {
888 return 0;
889 }
890 return oat_code_begin[-1];
891 }
892
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800893 const void* GetOatCodeEnd(mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700894 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700895 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetOatCodeBegin(m));
896 if (oat_code_begin == NULL) {
897 return NULL;
898 }
899 return oat_code_begin + GetOatCodeSize(m);
900 }
901
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800902 static void Callback(mirror::Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700903 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700904 DCHECK(obj != NULL);
905 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800906 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700907 if (!state->InDumpSpace(obj)) {
908 return;
909 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700910
911 size_t object_bytes = obj->SizeOf();
912 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
913 state->stats_.object_bytes += object_bytes;
914 state->stats_.alignment_bytes += alignment_bytes;
915
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800916 std::ostream& os = *state->os_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800917 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -0800918 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800919 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
920 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800921 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800922 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800923 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
924 << klass->GetStatus() << ")\n";
Ian Rogersd5b32602012-02-26 16:40:04 -0800925 } else if (obj->IsField()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800926 os << StringPrintf("%p: java.lang.reflect.Field %s\n", obj,
927 PrettyField(obj->AsField()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800928 } else if (obj->IsMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800929 os << StringPrintf("%p: java.lang.reflect.Method %s\n", obj,
930 PrettyMethod(obj->AsMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800931 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800932 os << StringPrintf("%p: java.lang.String %s\n", obj,
933 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800934 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800935 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800936 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800937 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
938 std::ostream indent_os(&indent_filter);
939 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -0800940 if (obj->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800941 mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
Ian Rogersd5b32602012-02-26 16:40:04 -0800942 int32_t length = obj_array->GetLength();
943 for (int32_t i = 0; i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800944 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800945 size_t run = 0;
946 for (int32_t j = i + 1; j < length; j++) {
947 if (value == obj_array->Get(j)) {
948 run++;
949 } else {
950 break;
951 }
952 }
953 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800954 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800955 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800956 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -0800957 i = i + run;
958 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800959 mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800960 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -0800961 }
962 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800963 mirror::ObjectArray<mirror::Field>* sfields = obj->AsClass()->GetSFields();
Ian Rogersd5b32602012-02-26 16:40:04 -0800964 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800965 indent_os << "STATICS:\n";
966 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
967 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -0800968 for (int32_t i = 0; i < sfields->GetLength(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800969 mirror::Field* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800970 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -0800971 }
972 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700973 } else if (obj->IsMethod()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800974 mirror::AbstractMethod* method = obj->AsMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700975 if (method->IsNative()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700976 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700977 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800978 bool first_occurrence;
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700979 const void* oat_code = state->GetOatCodeBegin(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700980 uint32_t oat_code_size = state->GetOatCodeSize(method);
981 state->ComputeOatSize(oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800982 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700983 state->stats_.native_to_managed_code_bytes += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800984 }
Jeff Haoaa4a7932013-05-13 11:28:27 -0700985 if (oat_code != method->GetEntryPointFromCompiledCode()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800986 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800987 }
Ian Rogers19846512012-02-24 11:42:47 -0800988 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
Jeff Hao58df3272013-04-22 15:28:53 -0700989 method->IsResolutionMethod() || MethodHelper(method).IsClassInitializer()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700990 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700991 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700992 } else {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700993 CHECK((method->GetEntryPointFromCompiledCode() == NULL) || (method->GetNativeGcMap() != NULL));
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700994
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800995 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -0700996 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700997 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800998
Elliott Hughesa0e18062012-04-13 15:59:59 -0700999 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001000 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001001 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001002 state->stats_.gc_map_bytes += gc_map_bytes;
1003 }
1004
1005 size_t pc_mapping_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001006 state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001007 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001008 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1009 }
1010
1011 size_t vmap_table_bytes =
Ian Rogers1809a722013-08-09 22:05:32 -07001012 state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001013 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001014 state->stats_.vmap_table_bytes += vmap_table_bytes;
1015 }
1016
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001017 const void* oat_code_begin = state->GetOatCodeBegin(method);
1018 const void* oat_code_end = state->GetOatCodeEnd(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001019 uint32_t oat_code_size = state->GetOatCodeSize(method);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001020 state->ComputeOatSize(oat_code_begin, &first_occurrence);
1021 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001022 state->stats_.managed_code_bytes += oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001023 if (method->IsConstructor()) {
1024 if (method->IsStatic()) {
1025 state->stats_.class_initializer_code_bytes += oat_code_size;
1026 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1027 state->stats_.large_initializer_code_bytes += oat_code_size;
1028 }
1029 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1030 state->stats_.large_method_code_bytes += oat_code_size;
1031 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001032 }
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001033 state->stats_.managed_code_bytes_ignoring_deduplication += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001034
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001035 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1036 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1037 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001038
1039 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Jeff Hao74180ca2013-03-27 15:29:11 -07001040 vmap_table_bytes + oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001041
1042 double expansion =
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001043 static_cast<double>(oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001044 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001045 }
1046 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001047 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001048 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001049
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001050 std::set<const void*> already_seen_;
1051 // Compute the size of the given data within the oat file and whether this is the first time
1052 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001053 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001054 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001055 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001056 already_seen_.insert(oat_data);
1057 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001058 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001059 }
1060 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001061 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001062
1063 public:
1064 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001065 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001066 size_t file_bytes;
1067
1068 size_t header_bytes;
1069 size_t object_bytes;
1070 size_t alignment_bytes;
1071
1072 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001073 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001074 size_t managed_to_native_code_bytes;
1075 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001076 size_t class_initializer_code_bytes;
1077 size_t large_initializer_code_bytes;
1078 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001079
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001080 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001081 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001082 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001083
1084 size_t dex_instruction_bytes;
1085
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001086 std::vector<mirror::AbstractMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001087 std::vector<size_t> method_outlier_size;
1088 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001089 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001090
1091 explicit Stats()
1092 : oat_file_bytes(0),
1093 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001094 header_bytes(0),
1095 object_bytes(0),
1096 alignment_bytes(0),
1097 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001098 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001099 managed_to_native_code_bytes(0),
1100 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001101 class_initializer_code_bytes(0),
1102 large_initializer_code_bytes(0),
1103 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001104 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001105 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001106 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001107 dex_instruction_bytes(0) {}
1108
Elliott Hughesa0e18062012-04-13 15:59:59 -07001109 struct SizeAndCount {
1110 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1111 size_t bytes;
1112 size_t count;
1113 };
1114 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1115 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001116
Elliott Hughesa0e18062012-04-13 15:59:59 -07001117 void Update(const std::string& descriptor, size_t object_bytes) {
1118 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1119 if (it != sizes_and_counts.end()) {
1120 it->second.bytes += object_bytes;
1121 it->second.count += 1;
1122 } else {
1123 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1124 }
1125 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001126
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001127 double PercentOfOatBytes(size_t size) {
1128 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1129 }
1130
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001131 double PercentOfFileBytes(size_t size) {
1132 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1133 }
1134
1135 double PercentOfObjectBytes(size_t size) {
1136 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1137 }
1138
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001139 void ComputeOutliers(size_t total_size, double expansion, mirror::AbstractMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001140 method_outlier_size.push_back(total_size);
1141 method_outlier_expansion.push_back(expansion);
1142 method_outlier.push_back(method);
1143 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001144
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001145 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001146 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001147 size_t sum_of_sizes = 0;
1148 size_t sum_of_sizes_squared = 0;
1149 size_t sum_of_expansion = 0;
1150 size_t sum_of_expansion_squared = 0;
1151 size_t n = method_outlier_size.size();
1152 for (size_t i = 0; i < n; i++) {
1153 size_t cur_size = method_outlier_size[i];
1154 sum_of_sizes += cur_size;
1155 sum_of_sizes_squared += cur_size * cur_size;
1156 double cur_expansion = method_outlier_expansion[i];
1157 sum_of_expansion += cur_expansion;
1158 sum_of_expansion_squared += cur_expansion * cur_expansion;
1159 }
1160 size_t size_mean = sum_of_sizes / n;
1161 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1162 double expansion_mean = sum_of_expansion / n;
1163 double expansion_variance =
1164 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1165
1166 // Dump methods whose size is a certain number of standard deviations from the mean
1167 size_t dumped_values = 0;
1168 size_t skipped_values = 0;
1169 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1170 size_t cur_size_variance = i * i * size_variance;
1171 bool first = true;
1172 for (size_t j = 0; j < n; j++) {
1173 size_t cur_size = method_outlier_size[j];
1174 if (cur_size > size_mean) {
1175 size_t cur_var = cur_size - size_mean;
1176 cur_var = cur_var * cur_var;
1177 if (cur_var > cur_size_variance) {
1178 if (dumped_values > 20) {
1179 if (i == 1) {
1180 skipped_values++;
1181 } else {
1182 i = 2; // jump to counting for 1 standard deviation
1183 break;
1184 }
1185 } else {
1186 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001187 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001188 first = false;
1189 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001190 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001191 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001192 method_outlier_size[j] = 0; // don't consider this method again
1193 dumped_values++;
1194 }
1195 }
1196 }
1197 }
1198 }
1199 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001200 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001201 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001202 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001203 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001204
1205 // Dump methods whose expansion is a certain number of standard deviations from the mean
1206 dumped_values = 0;
1207 skipped_values = 0;
1208 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1209 double cur_expansion_variance = i * i * expansion_variance;
1210 bool first = true;
1211 for (size_t j = 0; j < n; j++) {
1212 double cur_expansion = method_outlier_expansion[j];
1213 if (cur_expansion > expansion_mean) {
1214 size_t cur_var = cur_expansion - expansion_mean;
1215 cur_var = cur_var * cur_var;
1216 if (cur_var > cur_expansion_variance) {
1217 if (dumped_values > 20) {
1218 if (i == 1) {
1219 skipped_values++;
1220 } else {
1221 i = 2; // jump to counting for 1 standard deviation
1222 break;
1223 }
1224 } else {
1225 if (first) {
1226 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001227 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001228 first = false;
1229 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001230 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001231 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001232 method_outlier_expansion[j] = 0.0; // don't consider this method again
1233 dumped_values++;
1234 }
1235 }
1236 }
1237 }
1238 }
1239 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001240 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001241 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001242 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001243 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001244 }
1245
Ian Rogersb726dcb2012-09-05 08:57:23 -07001246 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001247 {
1248 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1249 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1250 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1251 std::ostream indent_os(&indent_filter);
1252 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1253 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
1254 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1255 header_bytes, PercentOfFileBytes(header_bytes),
1256 object_bytes, PercentOfFileBytes(object_bytes),
1257 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1258 << std::flush;
1259 CHECK_EQ(file_bytes, header_bytes + object_bytes + alignment_bytes);
1260 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001261
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001262 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001263 size_t object_bytes_total = 0;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001264 typedef SizeAndCountTable::const_iterator It; // TODO: C++0x auto
1265 for (It it = sizes_and_counts.begin(), end = sizes_and_counts.end(); it != end; ++it) {
Elliott Hughes95572412011-12-13 18:14:20 -08001266 const std::string& descriptor(it->first);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001267 double average = static_cast<double>(it->second.bytes) / static_cast<double>(it->second.count);
1268 double percent = PercentOfObjectBytes(it->second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001269 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001270 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
1271 descriptor.c_str(), it->second.bytes, it->second.count,
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001272 average, percent);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001273 object_bytes_total += it->second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001274 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001275 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001276 CHECK_EQ(object_bytes, object_bytes_total);
1277
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001278 os << StringPrintf("oat_file_bytes = %8zd\n"
1279 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1280 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1281 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1282 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1283 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1284 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001285 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001286 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1287 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001288 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1289 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1290 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1291 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001292 << "DexFile sizes:\n";
Ian Rogers05f28c62012-10-23 18:12:13 -07001293 typedef std::vector<std::pair<std::string, size_t> >::const_iterator It2;
1294 for (It2 it = oat_dex_file_sizes.begin(); it != oat_dex_file_sizes.end();
1295 ++it) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001296 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
1297 it->first.c_str(), it->second, PercentOfOatBytes(it->second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001298 }
1299
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001300 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1301 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1302 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001303 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1304 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1305 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001306 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001307
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001308 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1309 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001310 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1311 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001312 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001313 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001314
1315 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001316 }
1317 } stats_;
1318
1319 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001320 enum {
1321 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1322 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1323 kLargeConstructorDexBytes = 4000,
1324 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1325 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1326 kLargeMethodDexBytes = 16000
1327 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001328 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001329 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001330 const std::string image_filename_;
1331 const std::string host_prefix_;
Ian Rogers1d54e732013-05-02 21:10:01 -07001332 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001333 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001334
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001335 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001336};
1337
Elliott Hughes72395bf2012-04-24 13:45:26 -07001338static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001339 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001340
Brian Carlstrom78128a62011-09-15 17:21:19 -07001341 // Skip over argv[0].
1342 argv++;
1343 argc--;
1344
1345 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001346 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001347 usage();
1348 }
1349
Brian Carlstromaded5f72011-10-07 17:15:04 -07001350 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001351 const char* image_filename = NULL;
1352 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001353 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001354 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001355 std::ostream* os = &std::cout;
1356 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001357
1358 for (int i = 0; i < argc; i++) {
1359 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001360 if (option.starts_with("--oat-file=")) {
1361 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001362 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001363 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001364 } else if (option.starts_with("--boot-image=")) {
1365 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001366 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001367 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001368 } else if (option.starts_with("--output=")) {
1369 const char* filename = option.substr(strlen("--output=")).data();
1370 out.reset(new std::ofstream(filename));
1371 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001372 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001373 usage();
1374 }
1375 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001376 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001377 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001378 usage();
1379 }
1380 }
1381
Brian Carlstromaded5f72011-10-07 17:15:04 -07001382 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001383 fprintf(stderr, "Either --image or --oat must be specified\n");
1384 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001385 }
1386
Brian Carlstromaded5f72011-10-07 17:15:04 -07001387 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001388 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1389 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001390 }
1391
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001392 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001393 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1394 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001395 host_prefix.reset(new std::string(android_product_out));
1396 } else {
1397 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001398 }
1399 }
1400
Brian Carlstromaded5f72011-10-07 17:15:04 -07001401 if (oat_filename != NULL) {
Logan Chien0c717dd2012-03-28 18:31:07 +08001402 OatFile* oat_file =
Brian Carlstromf1d34552013-07-12 20:22:23 -07001403 OatFile::Open(oat_filename, oat_filename, NULL, false);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001404 if (oat_file == NULL) {
1405 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
1406 return EXIT_FAILURE;
1407 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001408 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001409 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001410 return EXIT_SUCCESS;
1411 }
1412
Brian Carlstrom78128a62011-09-15 17:21:19 -07001413 Runtime::Options options;
1414 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001415 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001416 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001417 std::string boot_oat_option;
Brian Carlstrom6c871802013-07-17 14:25:35 -07001418
1419 // We are more like a compiler than a run-time. We don't want to execute code.
1420 options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));
1421
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001422 if (boot_image_filename != NULL) {
1423 boot_image_option += "-Ximage:";
1424 boot_image_option += boot_image_filename;
1425 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001426 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001427 if (image_filename != NULL) {
1428 image_option += "-Ximage:";
1429 image_option += image_filename;
1430 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1431 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001432
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001433 if (!host_prefix->empty()) {
1434 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001435 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001436
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001437 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001438 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001439 return EXIT_FAILURE;
1440 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001441 UniquePtr<Runtime> runtime(Runtime::Current());
1442 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1443 // give it away now and then switch to a more managable ScopedObjectAccess.
1444 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1445 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001446
Ian Rogers1d54e732013-05-02 21:10:01 -07001447 gc::Heap* heap = Runtime::Current()->GetHeap();
1448 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001449 CHECK(image_space != NULL);
1450 const ImageHeader& image_header = image_space->GetImageHeader();
1451 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001452 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001453 return EXIT_FAILURE;
1454 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001455 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001456 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001457 return EXIT_SUCCESS;
1458}
1459
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001460} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07001461
1462int main(int argc, char** argv) {
1463 return art::oatdump(argc, argv);
1464}