blob: 5ee433c4e12ec3d075f22fabd1a578a1b70fe2d5 [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"
Elliott Hughese3c845c2012-02-28 17:23:01 -080028#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080029#include "disassembler.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080030#include "gc_map.h"
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070031#include "gc/large_object_space.h"
32#include "gc/space.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070033#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080034#include "indenter.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080035#include "oat.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080036#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080037#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070038#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070039#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070040#include "scoped_thread_state_change.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080041#include "verifier/method_verifier.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070042
43namespace art {
44
45static void usage() {
46 fprintf(stderr,
47 "Usage: oatdump [options] ...\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080048 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
49 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070050 "\n");
51 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080052 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070053 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070054 "\n");
55 fprintf(stderr,
56 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080057 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070058 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070059 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070060 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080061 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070062 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070063 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070064 " --host-prefix may be used to translate host paths to target paths during\n"
65 " cross compilation.\n"
66 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080067 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070068 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070069 fprintf(stderr,
70 " --output=<file> may be used to send the output to a file.\n"
71 " Example: --output=/tmp/oatdump.txt\n"
72 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070073 exit(EXIT_FAILURE);
74}
75
Ian Rogersff1ed472011-09-20 13:46:24 -070076const char* image_roots_descriptions_[] = {
Brian Carlstrom78128a62011-09-15 17:21:19 -070077 "kJniStubArray",
Brian Carlstrome24fa612011-09-29 00:53:55 -070078 "kAbstractMethodErrorStubArray",
Ian Rogersad25ac52011-10-04 19:13:33 -070079 "kStaticResolutionStubArray",
Ian Rogers1cb0a1d2011-10-06 15:24:35 -070080 "kUnknownMethodResolutionStubArray",
Ian Rogers19846512012-02-24 11:42:47 -080081 "kResolutionMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070082 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070083 "kRefsOnlySaveMethod",
84 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070085 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070086 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070087 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070088};
89
Elliott Hughese3c845c2012-02-28 17:23:01 -080090class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -070091 public:
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070092 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file)
93 : host_prefix_(host_prefix),
94 oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -080095 oat_dex_files_(oat_file.GetOatDexFiles()),
96 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080097 AddAllOffsets();
98 }
99
100 void Dump(std::ostream& os) {
101 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700102
103 os << "MAGIC:\n";
104 os << oat_header.GetMagic() << "\n\n";
105
106 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800107 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700108
Elliott Hughesa72ec822012-03-05 17:12:22 -0800109 os << "INSTRUCTION SET:\n";
110 os << oat_header.GetInstructionSet() << "\n\n";
111
Brian Carlstromaded5f72011-10-07 17:15:04 -0700112 os << "DEX FILE COUNT:\n";
113 os << oat_header.GetDexFileCount() << "\n\n";
114
115 os << "EXECUTABLE OFFSET:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800116 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700117
Brian Carlstrom28db0122012-10-18 16:20:41 -0700118 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
119 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
120
121 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800122 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700123
124 os << "IMAGE FILE LOCATION:\n";
125 const std::string image_file_location(oat_header.GetImageFileLocation());
126 os << image_file_location;
127 if (!image_file_location.empty() && !host_prefix_.empty()) {
128 os << " (" << host_prefix_ << image_file_location << ")";
129 }
130 os << "\n\n";
131
Ian Rogers30fab402012-01-23 15:43:46 -0800132 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800133 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700134
Ian Rogers30fab402012-01-23 15:43:46 -0800135 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800136 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700137
138 os << std::flush;
139
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800140 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
141 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700142 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800143 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700144 }
145 }
146
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800147 size_t ComputeSize(const void* oat_data) {
148 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
149 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
150 return 0; // Address not in oat file
151 }
152 uint32_t begin_offset = reinterpret_cast<size_t>(oat_data) -
153 reinterpret_cast<size_t>(oat_file_.Begin());
154 typedef std::set<uint32_t>::iterator It;
155 It it = offsets_.upper_bound(begin_offset);
156 CHECK(it != offsets_.end());
157 uint32_t end_offset = *it;
158 return end_offset - begin_offset;
159 }
160
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700161 InstructionSet GetInstructionSet() {
162 return oat_file_.GetOatHeader().GetInstructionSet();
163 }
164
Mathieu Chartier66f19252012-09-18 08:57:04 -0700165 const void* GetOatCode(AbstractMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800166 MethodHelper mh(m);
167 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
168 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
169 CHECK(oat_dex_file != NULL);
170 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
171 if (dex_file.get() != NULL) {
172 uint32_t class_def_index;
173 bool found = dex_file->FindClassDefIndex(mh.GetDeclaringClassDescriptor(), class_def_index);
174 if (found) {
175 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
176 CHECK(oat_class != NULL);
177 size_t method_index = m->GetMethodIndex();
178 return oat_class->GetOatMethod(method_index).GetCode();
179 }
180 }
181 }
182 return NULL;
183 }
184
Brian Carlstromaded5f72011-10-07 17:15:04 -0700185 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800186 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800187 // We don't know the length of the code for each method, but we need to know where to stop
188 // when disassembling. What we do know is that a region of code will be followed by some other
189 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
190 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800191 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
192 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800193 CHECK(oat_dex_file != NULL);
194 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
195 if (dex_file.get() == NULL) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800196 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800197 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800198 offsets_.insert(reinterpret_cast<uint32_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800199 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
200 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
201 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
202 const byte* class_data = dex_file->GetClassData(class_def);
203 if (class_data != NULL) {
204 ClassDataItemIterator it(*dex_file, class_data);
205 SkipAllFields(it);
206 uint32_t class_method_index = 0;
207 while (it.HasNextDirectMethod()) {
208 AddOffsets(oat_class->GetOatMethod(class_method_index++));
209 it.Next();
210 }
211 while (it.HasNextVirtualMethod()) {
212 AddOffsets(oat_class->GetOatMethod(class_method_index++));
213 it.Next();
214 }
215 }
216 }
217 }
218
219 // If the last thing in the file is code for a method, there won't be an offset for the "next"
220 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
221 // for the end of the file.
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800222 offsets_.insert(static_cast<uint32_t>(oat_file_.Size()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800223 }
224
225 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800226 uint32_t code_offset = oat_method.GetCodeOffset();
227 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
228 code_offset &= ~0x1;
229 }
230 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800231 offsets_.insert(oat_method.GetMappingTableOffset());
232 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700233 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800234 offsets_.insert(oat_method.GetInvokeStubOffset());
235 }
236
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800237 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700238 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800239 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800240 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800241 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile());
242 if (dex_file.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700243 os << "NOT FOUND\n\n";
244 return;
245 }
246 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
247 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
248 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700249 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
250 CHECK(oat_class.get() != NULL);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800251 os << StringPrintf("%zd: %s (type_idx=%d) (", class_def_index, descriptor, class_def.class_idx_)
mikaelpeltier6ffd0962012-10-25 15:37:45 +0200252 << oat_class->GetStatus() << ")"
253 // TODO: JACK CLASS ACCESS (HACK TO BE REMOVED)
254 << ( (class_def.access_flags_ & kAccClassJack) == kAccClassJack ? " (Jack)" : "" )
255 << "\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800256 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
257 std::ostream indented_os(&indent_filter);
258 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700259 }
260
261 os << std::flush;
262 }
263
Elliott Hughese3c845c2012-02-28 17:23:01 -0800264 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700265 while (it.HasNextStaticField()) {
266 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700267 }
Ian Rogers0571d352011-11-03 19:51:38 -0700268 while (it.HasNextInstanceField()) {
269 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700270 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800271 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700272
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800273 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
274 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800275 const byte* class_data = dex_file.GetClassData(class_def);
276 if (class_data == NULL) { // empty class such as a marker interface?
277 return;
278 }
279 ClassDataItemIterator it(dex_file, class_data);
280 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800281 uint32_t class_def_idx = dex_file.GetIndexForClassDef(class_def);
282 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700283 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800284 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
285 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
286 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
287 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700288 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700289 }
Ian Rogers0571d352011-11-03 19:51:38 -0700290 while (it.HasNextVirtualMethod()) {
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 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700298 os << std::flush;
299 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800300
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800301 void DumpOatMethod(std::ostream& os, uint32_t class_def_idx, uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800302 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800303 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
304 uint32_t method_access_flags) {
305 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700306 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
307 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800308 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
309 std::ostream indent1_os(&indent1_filter);
310 {
311 indent1_os << "DEX CODE:\n";
312 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
313 std::ostream indent2_os(&indent2_filter);
314 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700315 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800316 if (Runtime::Current() != NULL) {
317 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
318 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
319 std::ostream indent2_os(&indent2_filter);
320 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def_idx, code_item, method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700321 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800322 {
323 indent1_os << "OAT DATA:\n";
324 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
325 std::ostream indent2_os(&indent2_filter);
326
327 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
328 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
329 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
330 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
331 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
332 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
333 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
334 DumpVmap(indent2_os, oat_method);
335 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
336 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
337 const bool kDumpRawMappingTable = false;
338 if (kDumpRawMappingTable) {
339 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
340 std::ostream indent3_os(&indent3_filter);
341 DumpMappingTable(indent3_os, oat_method);
342 }
343 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
344 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
345 const bool kDumpRawGcMap = false;
346 if (kDumpRawGcMap) {
347 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
348 std::ostream indent3_os(&indent3_filter);
349 DumpGcMap(indent3_os, oat_method, code_item);
350 }
351 }
352 {
353 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
354 oat_method.GetCode(),
355 oat_method.GetCodeOffset(),
356 oat_method.GetCodeSize(),
357 oat_method.GetCode() != NULL ? "..." : "");
358 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
359 std::ostream indent2_os(&indent2_filter);
360 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def_idx, code_item,
361 method_access_flags);
362 }
363 {
364 indent1_os << StringPrintf("INVOKE STUB: %p (offset=0x%08x size=%d)%s\n",
365 oat_method.GetInvokeStub(),
366 oat_method.GetInvokeStubOffset(),
367 oat_method.GetInvokeStubSize(),
368 oat_method.GetInvokeStub() != NULL ? "..." : "");
369 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
370 std::ostream indent2_os(&indent2_filter);
371 DumpInvokeStub(indent2_os, oat_method);
372 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700373 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800374
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800375 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
376 if (spill_mask == 0) {
377 return;
378 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800379 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800380 for (size_t i = 0; i < 32; i++) {
381 if ((spill_mask & (1 << i)) != 0) {
382 if (is_float) {
383 os << "fr" << i;
384 } else {
385 os << "r" << i;
386 }
387 spill_mask ^= 1 << i; // clear bit
388 if (spill_mask != 0) {
389 os << ", ";
390 } else {
391 break;
392 }
393 }
394 }
395 os << ")";
396 }
397
Ian Rogersb23a7722012-10-09 16:54:26 -0700398 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
399 const uint16_t* raw_table = oat_method.GetVmapTable();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800400 if (raw_table == NULL) {
401 return;
402 }
403 const VmapTable vmap_table(raw_table);
404 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800405 bool processing_fp = false;
406 uint32_t spill_mask = oat_method.GetCoreSpillMask();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800407 for (size_t i = 0; i < vmap_table.size(); i++) {
408 uint16_t dex_reg = vmap_table[i];
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800409 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
410 processing_fp ? kFloatVReg : kIntVReg);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800411 os << (first ? "v" : ", v") << dex_reg;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800412 if (!processing_fp) {
413 os << "/r" << cpu_reg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800414 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800415 os << "/fr" << cpu_reg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800416 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800417 first = false;
418 if (!processing_fp && dex_reg == 0xFFFF) {
419 processing_fp = true;
420 spill_mask = oat_method.GetFpSpillMask();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800421 }
422 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700423 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800424 }
425
Ian Rogersb23a7722012-10-09 16:54:26 -0700426 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800427 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700428 const uint16_t* raw_table = oat_method.GetVmapTable();
429 if (raw_table != NULL) {
430 const VmapTable vmap_table(raw_table);
431 uint32_t vmap_offset;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800432 if (vmap_table.IsInContext(reg, vmap_offset, kind)) {
433 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
434 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
435 : oat_method.GetCoreSpillMask();
436 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700437 } else {
438 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
439 oat_method.GetFpSpillMask(),
440 oat_method.GetFrameSizeInBytes(), reg);
441 os << "[sp + #" << offset << "]";
442 }
443 }
444 }
445
446 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
447 const DexFile::CodeItem* code_item) {
448 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800449 if (gc_map_raw == NULL) {
450 return;
451 }
Ian Rogers0c7abda2012-09-19 13:33:42 -0700452 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogersb23a7722012-10-09 16:54:26 -0700453 const void* code = oat_method.GetCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800454 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
Ian Rogersbb6723f2012-09-21 09:49:06 -0700455 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) +
456 map.GetNativePcOffset(entry);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800457 os << StringPrintf("%p", native_pc);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800458 size_t num_regs = map.RegWidth() * 8;
459 const uint8_t* reg_bitmap = map.GetBitMap(entry);
460 bool first = true;
461 for (size_t reg = 0; reg < num_regs; reg++) {
462 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
463 if (first) {
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 first = false;
468 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700469 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800470 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700471 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800472 }
473 }
474 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700475 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800476 }
477 }
478
479 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800480 const uint32_t* raw_table = oat_method.GetMappingTable();
481 const void* code = oat_method.GetCode();
482 if (raw_table == NULL || code == NULL) {
483 return;
484 }
485
buzbee4d7a1892012-10-03 11:03:37 -0700486 ++raw_table;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800487 uint32_t length = *raw_table;
488 ++raw_table;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800489 if (length == 0) {
490 return;
491 }
Bill Buzbeea5b30242012-09-28 07:19:44 -0700492 uint32_t pc_to_dex_entries = *raw_table;
493 ++raw_table;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800494 if (pc_to_dex_entries != 0) {
495 os << "suspend point mappings {\n";
496 } else {
497 os << "catch entry mappings {\n";
498 }
499 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
500 std::ostream indent_os(&indent_filter);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800501 for (size_t i = 0; i < length; i += 2) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800502 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) + raw_table[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800503 uint32_t dex_pc = raw_table[i + 1];
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800504 indent_os << StringPrintf("%p -> 0x%04x\n", native_pc, dex_pc);
505 if (i + 2 == pc_to_dex_entries && pc_to_dex_entries != length) {
Bill Buzbeea5b30242012-09-28 07:19:44 -0700506 // Separate the pc -> dex from dex -> pc sections
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800507 indent_os << std::flush;
508 os << "}\ncatch entry mappings {\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800509 }
510 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700511 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800512 }
513
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800514 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, size_t offset,
515 bool suspend_point_mapping) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700516 const uint32_t* raw_table = oat_method.GetMappingTable();
517 if (raw_table != NULL) {
518 ++raw_table;
519 uint32_t length = *raw_table;
520 ++raw_table;
521 uint32_t pc_to_dex_entries = *raw_table;
522 ++raw_table;
523 size_t start, end;
524 if (suspend_point_mapping) {
525 start = 0;
526 end = pc_to_dex_entries;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800527 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700528 start = pc_to_dex_entries;
529 end = length;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800530 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700531 for (size_t i = start; i < end; i += 2) {
532 if (offset == raw_table[i]) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800533 uint32_t dex_pc = raw_table[i + 1];
Ian Rogersb23a7722012-10-09 16:54:26 -0700534 if (suspend_point_mapping) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800535 os << "suspend point dex PC: 0x";
Ian Rogersb23a7722012-10-09 16:54:26 -0700536 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800537 os << "catch entry dex PC: 0x";
Ian Rogersb23a7722012-10-09 16:54:26 -0700538 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800539 os << std::hex << dex_pc << std::dec << "\n";
540 return dex_pc;
Ian Rogersb23a7722012-10-09 16:54:26 -0700541 }
542 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800543 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800544 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700545 }
546
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800547 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
548 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700549 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
550 if (gc_map_raw != NULL) {
551 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800552 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700553 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800554 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700555 bool first = true;
556 for (size_t reg = 0; reg < num_regs; reg++) {
557 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
558 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800559 os << "GC map objects: v" << reg << " (";
560 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700561 os << ")";
562 first = false;
563 } else {
564 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800565 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700566 os << ")";
567 }
568 }
569 }
570 if (!first) {
571 os << "\n";
572 }
573 }
574 }
575 }
576
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800577 void DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method,
578 uint32_t dex_method_idx, const DexFile* dex_file,
579 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
580 uint32_t method_access_flags, uint32_t dex_pc) {
581 bool first = true;
582 ScopedObjectAccess soa(Thread::Current());
583 DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
584 ClassLoader* class_loader = NULL;
585 std::vector<int32_t> kinds =
586 verifier::MethodVerifier::DescribeVRegs(dex_method_idx, dex_file, dex_cache,
587 class_loader, class_def_idx, code_item, NULL,
588 method_access_flags, dex_pc);
589 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
590 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
591 if (kind != kUndefined) {
592 if (first) {
593 os << "VRegs: v";
594 first = false;
595 } else {
596 os << ", v";
597 }
598 os << reg << " (";
599 switch (kind) {
600 case kImpreciseConstant:
601 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
602 DescribeVReg(os, oat_method, code_item, reg, kind);
603 break;
604 case kConstant:
605 os << "Constant: " << kinds.at((reg * 2) + 1);
606 break;
607 default:
608 DescribeVReg(os, oat_method, code_item, reg, kind);
609 break;
610 }
611 os << ")";
612 }
613 }
614 if (!first) {
615 os << "\n";
616 }
617 }
618
619
Ian Rogersb23a7722012-10-09 16:54:26 -0700620 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
621 if (code_item != NULL) {
622 size_t i = 0;
623 while (i < code_item->insns_size_in_code_units_) {
624 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800625 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700626 i += instruction->SizeInCodeUnits();
627 }
628 }
629 }
630
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800631 void DumpVerifier(std::ostream& os, 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) {
634 if ((method_access_flags & kAccNative) == 0) {
635 ScopedObjectAccess soa(Thread::Current());
636 DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
637 ClassLoader* class_loader = NULL;
638 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
639 class_loader, class_def_idx, code_item, NULL,
640 method_access_flags);
641 }
642 }
643
644 void DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method,
645 uint32_t dex_method_idx, const DexFile* dex_file,
646 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
647 uint32_t method_access_flags) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700648 const void* code = oat_method.GetCode();
649 size_t code_size = oat_method.GetCodeSize();
650 if (code == NULL || code_size == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800651 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700652 return;
653 }
654 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code);
655 size_t offset = 0;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800656 const bool kDumpVRegs = (Runtime::Current() != NULL);
Ian Rogersb23a7722012-10-09 16:54:26 -0700657 while (offset < code_size) {
658 DumpMappingAtOffset(os, oat_method, offset, false);
659 offset += disassembler_->Dump(os, native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800660 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
661 if (dex_pc != DexFile::kDexNoIndex) {
662 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
663 if (kDumpVRegs) {
664 DumpVRegsAtDexPc(os, oat_method, dex_method_idx, dex_file, class_def_idx, code_item,
665 method_access_flags, dex_pc);
666 }
667 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700668 }
669 }
670
671 void DumpInvokeStub(std::ostream& os, const OatFile::OatMethod& oat_method) {
672 const uint8_t* begin = reinterpret_cast<const uint8_t*>(oat_method.GetInvokeStub());
673 const uint8_t* end = begin + oat_method.GetInvokeStubSize();
674 disassembler_->Dump(os, begin, end);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800675 }
676
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700677 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800678 const OatFile& oat_file_;
679 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800680 std::set<uint32_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800681 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700682};
683
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800684class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700685 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800686 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800687 const std::string& host_prefix, Space& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700688 const ImageHeader& image_header)
689 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
690 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700691
Ian Rogersb726dcb2012-09-05 08:57:23 -0700692 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800693 std::ostream& os = *os_;
694 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700695
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800696 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700697
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800698 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700699
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800700 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700701
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800702 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
703
704 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
705
706 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800707
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800708 {
709 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
710 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
711 std::ostream indent1_os(&indent1_filter);
712 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
713 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
714 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
715 const char* image_root_description = image_roots_descriptions_[i];
716 Object* image_root_object = image_header_.GetImageRoot(image_root);
717 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
718 if (image_root_object->IsObjectArray()) {
719 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
720 std::ostream indent2_os(&indent2_filter);
721 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
722 ObjectArray<Object>* image_root_object_array
723 = down_cast<ObjectArray<Object>*>(image_root_object);
724 // = image_root_object->AsObjectArray<Object>();
725 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
726 Object* value = image_root_object_array->Get(i);
727 if (value != NULL) {
728 indent2_os << i << ": ";
729 PrettyObjectValue(indent2_os, value->GetClass(), value);
730 } else {
731 indent2_os << i << ": null\n";
732 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800733 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700734 }
735 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700736 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800737 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700738
Brian Carlstromaded5f72011-10-07 17:15:04 -0700739 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800740 Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
741 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800742 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800743 if (!host_prefix_.empty()) {
744 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800745 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700746 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800747 os << "\n";
Brian Carlstromae826982011-11-09 01:33:42 -0800748 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700749 if (oat_file == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800750 os << "NOT FOUND\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700751 return;
752 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800753 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700754
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800755 stats_.oat_file_bytes = oat_file->Size();
756
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700757 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800758
Ian Rogers05f28c62012-10-23 18:12:13 -0700759 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
760 for (size_t i = 0; i < oat_dex_files.size(); i++) {
761 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
762 CHECK(oat_dex_file != NULL);
763 std::pair<std::string, size_t> entry(oat_dex_file->GetDexFileLocation(),
764 oat_dex_file->FileSize());
765 stats_.oat_dex_file_sizes.push_back(entry);
766 }
767
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800768 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700769
770 // Loop through all the image spaces and dump their objects.
771 Heap* heap = Runtime::Current()->GetHeap();
772 const Spaces& spaces = heap->GetSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700773 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700774 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700775 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700776 heap->FlushAllocStack();
777 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800778 {
779 std::ostream* saved_os = os_;
780 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
781 std::ostream indent_os(&indent_filter);
782 os_ = &indent_os;
783 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
784 // TODO: C++0x auto
785 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
786 Space* space = *it;
787 if (space->IsImageSpace()) {
788 ImageSpace* image_space = space->AsImageSpace();
789 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
790 indent_os << "\n";
791 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700792 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800793 // Dump the large objects separately.
794 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
795 indent_os << "\n";
796 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700797 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800798 os << "STATS:\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800799 UniquePtr<File> file(OS::OpenFile(image_filename_.c_str(), false));
Elliott Hughes76160052012-12-12 16:31:20 -0800800 stats_.file_bytes = file->GetLength();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800801 size_t header_bytes = sizeof(ImageHeader);
802 stats_.header_bytes = header_bytes;
803 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
804 stats_.alignment_bytes += alignment_bytes;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800805 stats_.Dump(os);
806 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800807
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800808 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800809
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800810 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700811 }
812
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700813 private:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800814 static void PrettyObjectValue(std::ostream& os, Class* type, Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700815 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800816 CHECK(type != NULL);
817 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800818 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800819 } else if (type->IsStringClass()) {
820 String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800821 os << StringPrintf("%p String: %s\n", string,
822 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700823 } else if (type->IsClassClass()) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800824 Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800825 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700826 } else if (type->IsFieldClass()) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800827 Field* field = value->AsField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800828 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700829 } else if (type->IsMethodClass()) {
Mathieu Chartier66f19252012-09-18 08:57:04 -0700830 AbstractMethod* method = value->AsMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800831 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800832 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800833 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800834 }
835 }
836
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800837 static void PrintField(std::ostream& os, Field* field, Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700838 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800839 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700840 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800841 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700842 if (descriptor[0] != 'L' && descriptor[0] != '[') {
843 Class* type = fh.GetType();
844 if (type->IsPrimitiveLong()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800845 os << StringPrintf("%lld (0x%llx)\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700846 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800847 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700848 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800849 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700850 } else {
851 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800852 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700853 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800854 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700855 // Get the value, don't compute the type unless it is non-null as we don't want
856 // to cause class loading.
Ian Rogersd5b32602012-02-26 16:40:04 -0800857 Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700858 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800859 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700860 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800861 PrettyObjectValue(os, fh.GetType(), value);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700862 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800863 }
864 }
865
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800866 static void DumpFields(std::ostream& os, Object* obj, Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700867 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800868 Class* super = klass->GetSuperClass();
869 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800870 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800871 }
872 ObjectArray<Field>* fields = klass->GetIFields();
873 if (fields != NULL) {
874 for (int32_t i = 0; i < fields->GetLength(); i++) {
875 Field* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800876 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800877 }
878 }
879 }
880
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800881 bool InDumpSpace(const Object* object) {
882 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700883 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800884
Mathieu Chartier66f19252012-09-18 08:57:04 -0700885 const void* GetOatCodeBegin(AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700886 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800887 Runtime* runtime = Runtime::Current();
888 const void* code = m->GetCode();
Ian Rogersfb6adba2012-03-04 21:51:51 -0800889 if (code == runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData()) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800890 code = oat_dumper_->GetOatCode(m);
891 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700892 if (oat_dumper_->GetInstructionSet() == kThumb2) {
893 code = reinterpret_cast<void*>(reinterpret_cast<uint32_t>(code) & ~0x1);
894 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800895 return code;
896 }
897
Mathieu Chartier66f19252012-09-18 08:57:04 -0700898 uint32_t GetOatCodeSize(AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700899 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700900 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetOatCodeBegin(m));
901 if (oat_code_begin == NULL) {
902 return 0;
903 }
904 return oat_code_begin[-1];
905 }
906
Mathieu Chartier66f19252012-09-18 08:57:04 -0700907 const void* GetOatCodeEnd(AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700908 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700909 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetOatCodeBegin(m));
910 if (oat_code_begin == NULL) {
911 return NULL;
912 }
913 return oat_code_begin + GetOatCodeSize(m);
914 }
915
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700916 static void Callback(Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700917 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700918 DCHECK(obj != NULL);
919 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800920 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700921 if (!state->InDumpSpace(obj)) {
922 return;
923 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700924
925 size_t object_bytes = obj->SizeOf();
926 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
927 state->stats_.object_bytes += object_bytes;
928 state->stats_.alignment_bytes += alignment_bytes;
929
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800930 std::ostream& os = *state->os_;
Ian Rogersd5b32602012-02-26 16:40:04 -0800931 Class* obj_class = obj->GetClass();
932 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800933 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
934 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800935 } else if (obj->IsClass()) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700936 Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800937 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
938 << klass->GetStatus() << ")\n";
Ian Rogersd5b32602012-02-26 16:40:04 -0800939 } else if (obj->IsField()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800940 os << StringPrintf("%p: java.lang.reflect.Field %s\n", obj,
941 PrettyField(obj->AsField()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800942 } else if (obj->IsMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800943 os << StringPrintf("%p: java.lang.reflect.Method %s\n", obj,
944 PrettyMethod(obj->AsMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800945 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800946 os << StringPrintf("%p: java.lang.String %s\n", obj,
947 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800948 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800949 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800950 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800951 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
952 std::ostream indent_os(&indent_filter);
953 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -0800954 if (obj->IsObjectArray()) {
955 ObjectArray<Object>* obj_array = obj->AsObjectArray<Object>();
956 int32_t length = obj_array->GetLength();
957 for (int32_t i = 0; i < length; i++) {
958 Object* value = obj_array->Get(i);
959 size_t run = 0;
960 for (int32_t j = i + 1; j < length; j++) {
961 if (value == obj_array->Get(j)) {
962 run++;
963 } else {
964 break;
965 }
966 }
967 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800968 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800969 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800970 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -0800971 i = i + run;
972 }
973 Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800974 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -0800975 }
976 } else if (obj->IsClass()) {
977 ObjectArray<Field>* sfields = obj->AsClass()->GetSFields();
978 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800979 indent_os << "STATICS:\n";
980 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
981 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -0800982 for (int32_t i = 0; i < sfields->GetLength(); i++) {
983 Field* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800984 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -0800985 }
986 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700987 } else if (obj->IsMethod()) {
Mathieu Chartier66f19252012-09-18 08:57:04 -0700988 AbstractMethod* method = obj->AsMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700989 if (method->IsNative()) {
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);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800992 bool first_occurrence;
993 size_t invoke_stub_size = state->ComputeOatSize(
994 reinterpret_cast<const void*>(method->GetInvokeStub()), &first_occurrence);
995 if (first_occurrence) {
996 state->stats_.managed_to_native_code_bytes += invoke_stub_size;
997 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700998 const void* oat_code = state->GetOatCodeBegin(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700999 uint32_t oat_code_size = state->GetOatCodeSize(method);
1000 state->ComputeOatSize(oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001001 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001002 state->stats_.native_to_managed_code_bytes += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001003 }
1004 if (oat_code != method->GetCode()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001005 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001006 }
Ian Rogers19846512012-02-24 11:42:47 -08001007 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
1008 method->IsResolutionMethod()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001009 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001010 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001011 } else {
TDYa1273db52852012-04-01 15:11:43 -07001012#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers0c7abda2012-09-19 13:33:42 -07001013 DCHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
TDYa1273db52852012-04-01 15:11:43 -07001014#endif
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001015
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001016 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001017 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001018 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001019
Elliott Hughesa0e18062012-04-13 15:59:59 -07001020 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001021 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001022 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001023 state->stats_.gc_map_bytes += gc_map_bytes;
1024 }
1025
1026 size_t pc_mapping_table_bytes =
Elliott Hughesa0e18062012-04-13 15:59:59 -07001027 state->ComputeOatSize(method->GetMappingTableRaw(), &first_occurrence);
1028 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001029 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1030 }
1031
1032 size_t vmap_table_bytes =
Elliott Hughesa0e18062012-04-13 15:59:59 -07001033 state->ComputeOatSize(method->GetVmapTableRaw(), &first_occurrence);
1034 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001035 state->stats_.vmap_table_bytes += vmap_table_bytes;
1036 }
1037
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001038 // TODO: compute invoke stub using length from oat file.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001039 size_t invoke_stub_size = state->ComputeOatSize(
Elliott Hughesa0e18062012-04-13 15:59:59 -07001040 reinterpret_cast<const void*>(method->GetInvokeStub()), &first_occurrence);
1041 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001042 state->stats_.native_to_managed_code_bytes += invoke_stub_size;
1043 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001044 const void* oat_code_begin = state->GetOatCodeBegin(method);
1045 const void* oat_code_end = state->GetOatCodeEnd(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001046 uint32_t oat_code_size = state->GetOatCodeSize(method);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001047 state->ComputeOatSize(oat_code_begin, &first_occurrence);
1048 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001049 state->stats_.managed_code_bytes += oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001050 if (method->IsConstructor()) {
1051 if (method->IsStatic()) {
1052 state->stats_.class_initializer_code_bytes += oat_code_size;
1053 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1054 state->stats_.large_initializer_code_bytes += oat_code_size;
1055 }
1056 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1057 state->stats_.large_method_code_bytes += oat_code_size;
1058 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001059 }
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001060 state->stats_.managed_code_bytes_ignoring_deduplication += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001061
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001062 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1063 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1064 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001065
1066 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001067 vmap_table_bytes + invoke_stub_size + oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001068
1069 double expansion =
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001070 static_cast<double>(oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001071 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001072 }
1073 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001074 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001075 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001076
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001077 std::set<const void*> already_seen_;
1078 // Compute the size of the given data within the oat file and whether this is the first time
1079 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001080 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001081 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001082 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001083 already_seen_.insert(oat_data);
1084 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001085 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001086 }
1087 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001088 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001089
1090 public:
1091 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001092 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001093 size_t file_bytes;
1094
1095 size_t header_bytes;
1096 size_t object_bytes;
1097 size_t alignment_bytes;
1098
1099 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001100 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001101 size_t managed_to_native_code_bytes;
1102 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001103 size_t class_initializer_code_bytes;
1104 size_t large_initializer_code_bytes;
1105 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001106
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001107 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001108 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001109 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001110
1111 size_t dex_instruction_bytes;
1112
Mathieu Chartier66f19252012-09-18 08:57:04 -07001113 std::vector<AbstractMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001114 std::vector<size_t> method_outlier_size;
1115 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001116 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001117
1118 explicit Stats()
1119 : oat_file_bytes(0),
1120 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001121 header_bytes(0),
1122 object_bytes(0),
1123 alignment_bytes(0),
1124 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001125 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001126 managed_to_native_code_bytes(0),
1127 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001128 class_initializer_code_bytes(0),
1129 large_initializer_code_bytes(0),
1130 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001131 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001132 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001133 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001134 dex_instruction_bytes(0) {}
1135
Elliott Hughesa0e18062012-04-13 15:59:59 -07001136 struct SizeAndCount {
1137 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1138 size_t bytes;
1139 size_t count;
1140 };
1141 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1142 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001143
Elliott Hughesa0e18062012-04-13 15:59:59 -07001144 void Update(const std::string& descriptor, size_t object_bytes) {
1145 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1146 if (it != sizes_and_counts.end()) {
1147 it->second.bytes += object_bytes;
1148 it->second.count += 1;
1149 } else {
1150 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1151 }
1152 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001153
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001154 double PercentOfOatBytes(size_t size) {
1155 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1156 }
1157
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001158 double PercentOfFileBytes(size_t size) {
1159 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1160 }
1161
1162 double PercentOfObjectBytes(size_t size) {
1163 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1164 }
1165
Mathieu Chartier66f19252012-09-18 08:57:04 -07001166 void ComputeOutliers(size_t total_size, double expansion, AbstractMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001167 method_outlier_size.push_back(total_size);
1168 method_outlier_expansion.push_back(expansion);
1169 method_outlier.push_back(method);
1170 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001171
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001172 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001173 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001174 size_t sum_of_sizes = 0;
1175 size_t sum_of_sizes_squared = 0;
1176 size_t sum_of_expansion = 0;
1177 size_t sum_of_expansion_squared = 0;
1178 size_t n = method_outlier_size.size();
1179 for (size_t i = 0; i < n; i++) {
1180 size_t cur_size = method_outlier_size[i];
1181 sum_of_sizes += cur_size;
1182 sum_of_sizes_squared += cur_size * cur_size;
1183 double cur_expansion = method_outlier_expansion[i];
1184 sum_of_expansion += cur_expansion;
1185 sum_of_expansion_squared += cur_expansion * cur_expansion;
1186 }
1187 size_t size_mean = sum_of_sizes / n;
1188 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1189 double expansion_mean = sum_of_expansion / n;
1190 double expansion_variance =
1191 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1192
1193 // Dump methods whose size is a certain number of standard deviations from the mean
1194 size_t dumped_values = 0;
1195 size_t skipped_values = 0;
1196 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1197 size_t cur_size_variance = i * i * size_variance;
1198 bool first = true;
1199 for (size_t j = 0; j < n; j++) {
1200 size_t cur_size = method_outlier_size[j];
1201 if (cur_size > size_mean) {
1202 size_t cur_var = cur_size - size_mean;
1203 cur_var = cur_var * cur_var;
1204 if (cur_var > cur_size_variance) {
1205 if (dumped_values > 20) {
1206 if (i == 1) {
1207 skipped_values++;
1208 } else {
1209 i = 2; // jump to counting for 1 standard deviation
1210 break;
1211 }
1212 } else {
1213 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001214 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001215 first = false;
1216 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001217 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001218 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001219 method_outlier_size[j] = 0; // don't consider this method again
1220 dumped_values++;
1221 }
1222 }
1223 }
1224 }
1225 }
1226 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001227 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001228 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001229 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001230 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001231
1232 // Dump methods whose expansion is a certain number of standard deviations from the mean
1233 dumped_values = 0;
1234 skipped_values = 0;
1235 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1236 double cur_expansion_variance = i * i * expansion_variance;
1237 bool first = true;
1238 for (size_t j = 0; j < n; j++) {
1239 double cur_expansion = method_outlier_expansion[j];
1240 if (cur_expansion > expansion_mean) {
1241 size_t cur_var = cur_expansion - expansion_mean;
1242 cur_var = cur_var * cur_var;
1243 if (cur_var > cur_expansion_variance) {
1244 if (dumped_values > 20) {
1245 if (i == 1) {
1246 skipped_values++;
1247 } else {
1248 i = 2; // jump to counting for 1 standard deviation
1249 break;
1250 }
1251 } else {
1252 if (first) {
1253 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001254 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001255 first = false;
1256 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001257 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001258 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001259 method_outlier_expansion[j] = 0.0; // don't consider this method again
1260 dumped_values++;
1261 }
1262 }
1263 }
1264 }
1265 }
1266 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001267 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001268 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001269 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001270 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001271 }
1272
Ian Rogersb726dcb2012-09-05 08:57:23 -07001273 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001274 {
1275 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1276 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1277 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1278 std::ostream indent_os(&indent_filter);
1279 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1280 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
1281 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1282 header_bytes, PercentOfFileBytes(header_bytes),
1283 object_bytes, PercentOfFileBytes(object_bytes),
1284 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1285 << std::flush;
1286 CHECK_EQ(file_bytes, header_bytes + object_bytes + alignment_bytes);
1287 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001288
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001289 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001290 size_t object_bytes_total = 0;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001291 typedef SizeAndCountTable::const_iterator It; // TODO: C++0x auto
1292 for (It it = sizes_and_counts.begin(), end = sizes_and_counts.end(); it != end; ++it) {
Elliott Hughes95572412011-12-13 18:14:20 -08001293 const std::string& descriptor(it->first);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001294 double average = static_cast<double>(it->second.bytes) / static_cast<double>(it->second.count);
1295 double percent = PercentOfObjectBytes(it->second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001296 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001297 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
1298 descriptor.c_str(), it->second.bytes, it->second.count,
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001299 average, percent);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001300 object_bytes_total += it->second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001301 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001302 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001303 CHECK_EQ(object_bytes, object_bytes_total);
1304
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001305 os << StringPrintf("oat_file_bytes = %8zd\n"
1306 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1307 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1308 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1309 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1310 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1311 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001312 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001313 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1314 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001315 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1316 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1317 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1318 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001319 << "DexFile sizes:\n";
Ian Rogers05f28c62012-10-23 18:12:13 -07001320 typedef std::vector<std::pair<std::string, size_t> >::const_iterator It2;
1321 for (It2 it = oat_dex_file_sizes.begin(); it != oat_dex_file_sizes.end();
1322 ++it) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001323 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
1324 it->first.c_str(), it->second, PercentOfOatBytes(it->second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001325 }
1326
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001327 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1328 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1329 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001330 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1331 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1332 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001333 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001334
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001335 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1336 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001337 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1338 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001339 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001340 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001341
1342 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001343 }
1344 } stats_;
1345
1346 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001347 enum {
1348 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1349 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1350 kLargeConstructorDexBytes = 4000,
1351 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1352 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1353 kLargeMethodDexBytes = 16000
1354 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001355 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001356 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001357 const std::string image_filename_;
1358 const std::string host_prefix_;
1359 Space& image_space_;
1360 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001361
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001362 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001363};
1364
Elliott Hughes72395bf2012-04-24 13:45:26 -07001365static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001366 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001367
Brian Carlstrom78128a62011-09-15 17:21:19 -07001368 // Skip over argv[0].
1369 argv++;
1370 argc--;
1371
1372 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001373 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001374 usage();
1375 }
1376
Brian Carlstromaded5f72011-10-07 17:15:04 -07001377 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001378 const char* image_filename = NULL;
1379 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001380 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001381 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001382 std::ostream* os = &std::cout;
1383 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001384
1385 for (int i = 0; i < argc; i++) {
1386 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001387 if (option.starts_with("--oat-file=")) {
1388 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001389 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001390 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001391 } else if (option.starts_with("--boot-image=")) {
1392 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001393 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001394 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001395 } else if (option.starts_with("--output=")) {
1396 const char* filename = option.substr(strlen("--output=")).data();
1397 out.reset(new std::ofstream(filename));
1398 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001399 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001400 usage();
1401 }
1402 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001403 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001404 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001405 usage();
1406 }
1407 }
1408
Brian Carlstromaded5f72011-10-07 17:15:04 -07001409 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001410 fprintf(stderr, "Either --image or --oat must be specified\n");
1411 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001412 }
1413
Brian Carlstromaded5f72011-10-07 17:15:04 -07001414 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001415 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1416 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001417 }
1418
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001419 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001420 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1421 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001422 host_prefix.reset(new std::string(android_product_out));
1423 } else {
1424 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001425 }
1426 }
1427
Brian Carlstromaded5f72011-10-07 17:15:04 -07001428 if (oat_filename != NULL) {
Logan Chien0c717dd2012-03-28 18:31:07 +08001429 OatFile* oat_file =
Brian Carlstrom1cac3432012-12-12 10:56:22 -08001430 OatFile::Open(oat_filename, oat_filename, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001431 if (oat_file == NULL) {
1432 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
1433 return EXIT_FAILURE;
1434 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001435 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001436 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001437 return EXIT_SUCCESS;
1438 }
1439
Brian Carlstrom78128a62011-09-15 17:21:19 -07001440 Runtime::Options options;
1441 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001442 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001443 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001444 std::string boot_oat_option;
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001445 if (boot_image_filename != NULL) {
1446 boot_image_option += "-Ximage:";
1447 boot_image_option += boot_image_filename;
1448 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001449 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001450 if (image_filename != NULL) {
1451 image_option += "-Ximage:";
1452 image_option += image_filename;
1453 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1454 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001455
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001456 if (!host_prefix->empty()) {
1457 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001458 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001459
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001460 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001461 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001462 return EXIT_FAILURE;
1463 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001464 UniquePtr<Runtime> runtime(Runtime::Current());
1465 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1466 // give it away now and then switch to a more managable ScopedObjectAccess.
1467 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1468 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001469
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001470 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001471 ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001472 CHECK(image_space != NULL);
1473 const ImageHeader& image_header = image_space->GetImageHeader();
1474 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001475 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001476 return EXIT_FAILURE;
1477 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001478 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001479 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001480 return EXIT_SUCCESS;
1481}
1482
1483} // namespace art
1484
1485int main(int argc, char** argv) {
1486 return art::oatdump(argc, argv);
1487}