blob: cac89fd1ec87f9a6ed223ecbbbcb3e07ba572ac6 [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"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080035#include "object_utils.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080036#include "os.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070037#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070038#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070039#include "scoped_thread_state_change.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080040#include "verifier/method_verifier.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070041
42namespace art {
43
44static void usage() {
45 fprintf(stderr,
46 "Usage: oatdump [options] ...\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080047 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
48 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070049 "\n");
50 fprintf(stderr,
Brian Carlstroma6cc8932012-01-04 14:44:07 -080051 " --oat-file=<file.oat>: specifies an input oat filename.\n"
TDYa127a0a2a6c2012-10-16 22:47:38 -070052 " Example: --oat-file=/system/framework/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070053 "\n");
54 fprintf(stderr,
55 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080056 " Example: --image=/system/framework/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070057 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070058 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070059 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom29e7ac72011-12-05 23:42:57 -080060 " Example: --boot-image=/system/framework/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070061 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070062 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070063 " --host-prefix may be used to translate host paths to target paths during\n"
64 " cross compilation.\n"
65 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstromfe487d02012-02-29 18:49:16 -080066 " Default: $ANDROID_PRODUCT_OUT\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070067 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070068 fprintf(stderr,
69 " --output=<file> may be used to send the output to a file.\n"
70 " Example: --output=/tmp/oatdump.txt\n"
71 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070072 exit(EXIT_FAILURE);
73}
74
Ian Rogersff1ed472011-09-20 13:46:24 -070075const char* image_roots_descriptions_[] = {
Brian Carlstrom78128a62011-09-15 17:21:19 -070076 "kJniStubArray",
Brian Carlstrome24fa612011-09-29 00:53:55 -070077 "kAbstractMethodErrorStubArray",
Ian Rogersad25ac52011-10-04 19:13:33 -070078 "kStaticResolutionStubArray",
Ian Rogers1cb0a1d2011-10-06 15:24:35 -070079 "kUnknownMethodResolutionStubArray",
Ian Rogers19846512012-02-24 11:42:47 -080080 "kResolutionMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070081 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070082 "kRefsOnlySaveMethod",
83 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070084 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070085 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070086 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070087};
88
Elliott Hughese3c845c2012-02-28 17:23:01 -080089class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -070090 public:
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070091 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file)
92 : host_prefix_(host_prefix),
93 oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -080094 oat_dex_files_(oat_file.GetOatDexFiles()),
95 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080096 AddAllOffsets();
97 }
98
99 void Dump(std::ostream& os) {
100 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700101
102 os << "MAGIC:\n";
103 os << oat_header.GetMagic() << "\n\n";
104
105 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800106 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700107
Elliott Hughesa72ec822012-03-05 17:12:22 -0800108 os << "INSTRUCTION SET:\n";
109 os << oat_header.GetInstructionSet() << "\n\n";
110
Brian Carlstromaded5f72011-10-07 17:15:04 -0700111 os << "DEX FILE COUNT:\n";
112 os << oat_header.GetDexFileCount() << "\n\n";
113
114 os << "EXECUTABLE OFFSET:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800115 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700116
Brian Carlstrom28db0122012-10-18 16:20:41 -0700117 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
118 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
119
120 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
121 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700122
123 os << "IMAGE FILE LOCATION:\n";
124 const std::string image_file_location(oat_header.GetImageFileLocation());
125 os << image_file_location;
126 if (!image_file_location.empty() && !host_prefix_.empty()) {
127 os << " (" << host_prefix_ << image_file_location << ")";
128 }
129 os << "\n\n";
130
Ian Rogers30fab402012-01-23 15:43:46 -0800131 os << "BEGIN:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800132 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700133
Ian Rogers30fab402012-01-23 15:43:46 -0800134 os << "END:\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800135 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700136
137 os << std::flush;
138
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800139 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
140 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Brian Carlstromaded5f72011-10-07 17:15:04 -0700141 CHECK(oat_dex_file != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800142 DumpOatDexFile(os, *oat_dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700143 }
144 }
145
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800146 size_t ComputeSize(const void* oat_data) {
147 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
148 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
149 return 0; // Address not in oat file
150 }
151 uint32_t begin_offset = reinterpret_cast<size_t>(oat_data) -
152 reinterpret_cast<size_t>(oat_file_.Begin());
153 typedef std::set<uint32_t>::iterator It;
154 It it = offsets_.upper_bound(begin_offset);
155 CHECK(it != offsets_.end());
156 uint32_t end_offset = *it;
157 return end_offset - begin_offset;
158 }
159
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700160 InstructionSet GetInstructionSet() {
161 return oat_file_.GetOatHeader().GetInstructionSet();
162 }
163
Mathieu Chartier66f19252012-09-18 08:57:04 -0700164 const void* GetOatCode(AbstractMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800165 MethodHelper mh(m);
166 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
167 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
168 CHECK(oat_dex_file != NULL);
169 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
170 if (dex_file.get() != NULL) {
171 uint32_t class_def_index;
172 bool found = dex_file->FindClassDefIndex(mh.GetDeclaringClassDescriptor(), class_def_index);
173 if (found) {
174 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
175 CHECK(oat_class != NULL);
176 size_t method_index = m->GetMethodIndex();
177 return oat_class->GetOatMethod(method_index).GetCode();
178 }
179 }
180 }
181 return NULL;
182 }
183
Brian Carlstromaded5f72011-10-07 17:15:04 -0700184 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800185 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800186 // We don't know the length of the code for each method, but we need to know where to stop
187 // when disassembling. What we do know is that a region of code will be followed by some other
188 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
189 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800190 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
191 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800192 CHECK(oat_dex_file != NULL);
193 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
194 if (dex_file.get() == NULL) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800195 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800196 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800197 offsets_.insert(reinterpret_cast<uint32_t>(&dex_file->GetHeader()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800198 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
199 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
200 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
201 const byte* class_data = dex_file->GetClassData(class_def);
202 if (class_data != NULL) {
203 ClassDataItemIterator it(*dex_file, class_data);
204 SkipAllFields(it);
205 uint32_t class_method_index = 0;
206 while (it.HasNextDirectMethod()) {
207 AddOffsets(oat_class->GetOatMethod(class_method_index++));
208 it.Next();
209 }
210 while (it.HasNextVirtualMethod()) {
211 AddOffsets(oat_class->GetOatMethod(class_method_index++));
212 it.Next();
213 }
214 }
215 }
216 }
217
218 // If the last thing in the file is code for a method, there won't be an offset for the "next"
219 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
220 // for the end of the file.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800221 offsets_.insert(static_cast<uint32_t>(oat_file_.End() - oat_file_.Begin()));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800222 }
223
224 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800225 uint32_t code_offset = oat_method.GetCodeOffset();
226 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
227 code_offset &= ~0x1;
228 }
229 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800230 offsets_.insert(oat_method.GetMappingTableOffset());
231 offsets_.insert(oat_method.GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700232 offsets_.insert(oat_method.GetNativeGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800233 offsets_.insert(oat_method.GetInvokeStubOffset());
234 }
235
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800236 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700237 os << "OAT DEX FILE:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800238 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800239 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800240 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile());
241 if (dex_file.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700242 os << "NOT FOUND\n\n";
243 return;
244 }
245 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
246 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
247 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700248 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
249 CHECK(oat_class.get() != NULL);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800250 os << StringPrintf("%zd: %s (type_idx=%d) (", class_def_index, descriptor, class_def.class_idx_)
mikaelpeltier6ffd0962012-10-25 15:37:45 +0200251 << oat_class->GetStatus() << ")"
252 // TODO: JACK CLASS ACCESS (HACK TO BE REMOVED)
253 << ( (class_def.access_flags_ & kAccClassJack) == kAccClassJack ? " (Jack)" : "" )
254 << "\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800255 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
256 std::ostream indented_os(&indent_filter);
257 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700258 }
259
260 os << std::flush;
261 }
262
Elliott Hughese3c845c2012-02-28 17:23:01 -0800263 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700264 while (it.HasNextStaticField()) {
265 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700266 }
Ian Rogers0571d352011-11-03 19:51:38 -0700267 while (it.HasNextInstanceField()) {
268 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700269 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800270 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700271
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800272 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
273 const DexFile::ClassDef& class_def) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800274 const byte* class_data = dex_file.GetClassData(class_def);
275 if (class_data == NULL) { // empty class such as a marker interface?
276 return;
277 }
278 ClassDataItemIterator it(dex_file, class_data);
279 SkipAllFields(it);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800280 uint32_t class_def_idx = dex_file.GetIndexForClassDef(class_def);
281 uint32_t class_method_idx = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700282 while (it.HasNextDirectMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800283 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
284 DumpOatMethod(os, class_def_idx, class_method_idx, oat_method, dex_file,
285 it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
286 class_method_idx++;
Ian Rogers0571d352011-11-03 19:51:38 -0700287 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700288 }
Ian Rogers0571d352011-11-03 19:51:38 -0700289 while (it.HasNextVirtualMethod()) {
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 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700297 os << std::flush;
298 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800299
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800300 void DumpOatMethod(std::ostream& os, uint32_t class_def_idx, uint32_t class_method_index,
Elliott Hughese3c845c2012-02-28 17:23:01 -0800301 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800302 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
303 uint32_t method_access_flags) {
304 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700305 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
306 dex_method_idx);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800307 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
308 std::ostream indent1_os(&indent1_filter);
309 {
310 indent1_os << "DEX CODE:\n";
311 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
312 std::ostream indent2_os(&indent2_filter);
313 DumpDexCode(indent2_os, dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700314 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800315 if (Runtime::Current() != NULL) {
316 indent1_os << "VERIFIER TYPE ANALYSIS:\n";
317 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
318 std::ostream indent2_os(&indent2_filter);
319 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def_idx, code_item, method_access_flags);
Ian Rogersb23a7722012-10-09 16:54:26 -0700320 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800321 {
322 indent1_os << "OAT DATA:\n";
323 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
324 std::ostream indent2_os(&indent2_filter);
325
326 indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
327 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
328 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
329 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
330 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
331 indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
332 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
333 DumpVmap(indent2_os, oat_method);
334 indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
335 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
336 const bool kDumpRawMappingTable = false;
337 if (kDumpRawMappingTable) {
338 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
339 std::ostream indent3_os(&indent3_filter);
340 DumpMappingTable(indent3_os, oat_method);
341 }
342 indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
343 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
344 const bool kDumpRawGcMap = false;
345 if (kDumpRawGcMap) {
346 Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
347 std::ostream indent3_os(&indent3_filter);
348 DumpGcMap(indent3_os, oat_method, code_item);
349 }
350 }
351 {
352 indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
353 oat_method.GetCode(),
354 oat_method.GetCodeOffset(),
355 oat_method.GetCodeSize(),
356 oat_method.GetCode() != NULL ? "..." : "");
357 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
358 std::ostream indent2_os(&indent2_filter);
359 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def_idx, code_item,
360 method_access_flags);
361 }
362 {
363 indent1_os << StringPrintf("INVOKE STUB: %p (offset=0x%08x size=%d)%s\n",
364 oat_method.GetInvokeStub(),
365 oat_method.GetInvokeStubOffset(),
366 oat_method.GetInvokeStubSize(),
367 oat_method.GetInvokeStub() != NULL ? "..." : "");
368 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
369 std::ostream indent2_os(&indent2_filter);
370 DumpInvokeStub(indent2_os, oat_method);
371 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700372 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800373
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800374 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
375 if (spill_mask == 0) {
376 return;
377 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800378 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800379 for (size_t i = 0; i < 32; i++) {
380 if ((spill_mask & (1 << i)) != 0) {
381 if (is_float) {
382 os << "fr" << i;
383 } else {
384 os << "r" << i;
385 }
386 spill_mask ^= 1 << i; // clear bit
387 if (spill_mask != 0) {
388 os << ", ";
389 } else {
390 break;
391 }
392 }
393 }
394 os << ")";
395 }
396
Ian Rogersb23a7722012-10-09 16:54:26 -0700397 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
398 const uint16_t* raw_table = oat_method.GetVmapTable();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800399 if (raw_table == NULL) {
400 return;
401 }
402 const VmapTable vmap_table(raw_table);
403 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800404 bool processing_fp = false;
405 uint32_t spill_mask = oat_method.GetCoreSpillMask();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800406 for (size_t i = 0; i < vmap_table.size(); i++) {
407 uint16_t dex_reg = vmap_table[i];
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800408 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
409 processing_fp ? kFloatVReg : kIntVReg);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800410 os << (first ? "v" : ", v") << dex_reg;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800411 if (!processing_fp) {
412 os << "/r" << cpu_reg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800413 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800414 os << "/fr" << cpu_reg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800415 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800416 first = false;
417 if (!processing_fp && dex_reg == 0xFFFF) {
418 processing_fp = true;
419 spill_mask = oat_method.GetFpSpillMask();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800420 }
421 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700422 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800423 }
424
Ian Rogersb23a7722012-10-09 16:54:26 -0700425 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800426 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700427 const uint16_t* raw_table = oat_method.GetVmapTable();
428 if (raw_table != NULL) {
429 const VmapTable vmap_table(raw_table);
430 uint32_t vmap_offset;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800431 if (vmap_table.IsInContext(reg, vmap_offset, kind)) {
432 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
433 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
434 : oat_method.GetCoreSpillMask();
435 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -0700436 } else {
437 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
438 oat_method.GetFpSpillMask(),
439 oat_method.GetFrameSizeInBytes(), reg);
440 os << "[sp + #" << offset << "]";
441 }
442 }
443 }
444
445 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
446 const DexFile::CodeItem* code_item) {
447 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800448 if (gc_map_raw == NULL) {
449 return;
450 }
Ian Rogers0c7abda2012-09-19 13:33:42 -0700451 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogersb23a7722012-10-09 16:54:26 -0700452 const void* code = oat_method.GetCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800453 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
Ian Rogersbb6723f2012-09-21 09:49:06 -0700454 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) +
455 map.GetNativePcOffset(entry);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800456 os << StringPrintf("%p", native_pc);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800457 size_t num_regs = map.RegWidth() * 8;
458 const uint8_t* reg_bitmap = map.GetBitMap(entry);
459 bool first = true;
460 for (size_t reg = 0; reg < num_regs; reg++) {
461 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
462 if (first) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700463 os << " v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800464 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700465 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800466 first = false;
467 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700468 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800469 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700470 os << ")";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800471 }
472 }
473 }
Elliott Hughesc073b072012-05-24 19:29:17 -0700474 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800475 }
476 }
477
478 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800479 const uint32_t* raw_table = oat_method.GetMappingTable();
480 const void* code = oat_method.GetCode();
481 if (raw_table == NULL || code == NULL) {
482 return;
483 }
484
buzbee4d7a1892012-10-03 11:03:37 -0700485 ++raw_table;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800486 uint32_t length = *raw_table;
487 ++raw_table;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800488 if (length == 0) {
489 return;
490 }
Bill Buzbeea5b30242012-09-28 07:19:44 -0700491 uint32_t pc_to_dex_entries = *raw_table;
492 ++raw_table;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800493 if (pc_to_dex_entries != 0) {
494 os << "suspend point mappings {\n";
495 } else {
496 os << "catch entry mappings {\n";
497 }
498 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
499 std::ostream indent_os(&indent_filter);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800500 for (size_t i = 0; i < length; i += 2) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800501 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code) + raw_table[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800502 uint32_t dex_pc = raw_table[i + 1];
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800503 indent_os << StringPrintf("%p -> 0x%04x\n", native_pc, dex_pc);
504 if (i + 2 == pc_to_dex_entries && pc_to_dex_entries != length) {
Bill Buzbeea5b30242012-09-28 07:19:44 -0700505 // Separate the pc -> dex from dex -> pc sections
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800506 indent_os << std::flush;
507 os << "}\ncatch entry mappings {\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800508 }
509 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700510 os << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800511 }
512
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800513 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, size_t offset,
514 bool suspend_point_mapping) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700515 const uint32_t* raw_table = oat_method.GetMappingTable();
516 if (raw_table != NULL) {
517 ++raw_table;
518 uint32_t length = *raw_table;
519 ++raw_table;
520 uint32_t pc_to_dex_entries = *raw_table;
521 ++raw_table;
522 size_t start, end;
523 if (suspend_point_mapping) {
524 start = 0;
525 end = pc_to_dex_entries;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800526 } else {
Ian Rogersb23a7722012-10-09 16:54:26 -0700527 start = pc_to_dex_entries;
528 end = length;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800529 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700530 for (size_t i = start; i < end; i += 2) {
531 if (offset == raw_table[i]) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800532 uint32_t dex_pc = raw_table[i + 1];
Ian Rogersb23a7722012-10-09 16:54:26 -0700533 if (suspend_point_mapping) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800534 os << "suspend point dex PC: 0x";
Ian Rogersb23a7722012-10-09 16:54:26 -0700535 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800536 os << "catch entry dex PC: 0x";
Ian Rogersb23a7722012-10-09 16:54:26 -0700537 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800538 os << std::hex << dex_pc << std::dec << "\n";
539 return dex_pc;
Ian Rogersb23a7722012-10-09 16:54:26 -0700540 }
541 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800542 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800543 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -0700544 }
545
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800546 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
547 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700548 const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
549 if (gc_map_raw != NULL) {
550 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800551 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700552 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800553 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -0700554 bool first = true;
555 for (size_t reg = 0; reg < num_regs; reg++) {
556 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
557 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800558 os << "GC map objects: v" << reg << " (";
559 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700560 os << ")";
561 first = false;
562 } else {
563 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800564 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -0700565 os << ")";
566 }
567 }
568 }
569 if (!first) {
570 os << "\n";
571 }
572 }
573 }
574 }
575
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800576 void DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method,
577 uint32_t dex_method_idx, const DexFile* dex_file,
578 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
579 uint32_t method_access_flags, uint32_t dex_pc) {
580 bool first = true;
581 ScopedObjectAccess soa(Thread::Current());
582 DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
583 ClassLoader* class_loader = NULL;
584 std::vector<int32_t> kinds =
585 verifier::MethodVerifier::DescribeVRegs(dex_method_idx, dex_file, dex_cache,
586 class_loader, class_def_idx, code_item, NULL,
587 method_access_flags, dex_pc);
588 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
589 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
590 if (kind != kUndefined) {
591 if (first) {
592 os << "VRegs: v";
593 first = false;
594 } else {
595 os << ", v";
596 }
597 os << reg << " (";
598 switch (kind) {
599 case kImpreciseConstant:
600 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
601 DescribeVReg(os, oat_method, code_item, reg, kind);
602 break;
603 case kConstant:
604 os << "Constant: " << kinds.at((reg * 2) + 1);
605 break;
606 default:
607 DescribeVReg(os, oat_method, code_item, reg, kind);
608 break;
609 }
610 os << ")";
611 }
612 }
613 if (!first) {
614 os << "\n";
615 }
616 }
617
618
Ian Rogersb23a7722012-10-09 16:54:26 -0700619 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
620 if (code_item != NULL) {
621 size_t i = 0;
622 while (i < code_item->insns_size_in_code_units_) {
623 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800624 os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -0700625 i += instruction->SizeInCodeUnits();
626 }
627 }
628 }
629
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800630 void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
631 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
632 uint32_t method_access_flags) {
633 if ((method_access_flags & kAccNative) == 0) {
634 ScopedObjectAccess soa(Thread::Current());
635 DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file);
636 ClassLoader* class_loader = NULL;
637 verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
638 class_loader, class_def_idx, code_item, NULL,
639 method_access_flags);
640 }
641 }
642
643 void DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method,
644 uint32_t dex_method_idx, const DexFile* dex_file,
645 uint32_t class_def_idx, const DexFile::CodeItem* code_item,
646 uint32_t method_access_flags) {
Ian Rogersb23a7722012-10-09 16:54:26 -0700647 const void* code = oat_method.GetCode();
648 size_t code_size = oat_method.GetCodeSize();
649 if (code == NULL || code_size == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800650 os << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -0700651 return;
652 }
653 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(code);
654 size_t offset = 0;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800655 const bool kDumpVRegs = (Runtime::Current() != NULL);
Ian Rogersb23a7722012-10-09 16:54:26 -0700656 while (offset < code_size) {
657 DumpMappingAtOffset(os, oat_method, offset, false);
658 offset += disassembler_->Dump(os, native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800659 uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
660 if (dex_pc != DexFile::kDexNoIndex) {
661 DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
662 if (kDumpVRegs) {
663 DumpVRegsAtDexPc(os, oat_method, dex_method_idx, dex_file, class_def_idx, code_item,
664 method_access_flags, dex_pc);
665 }
666 }
Ian Rogersb23a7722012-10-09 16:54:26 -0700667 }
668 }
669
670 void DumpInvokeStub(std::ostream& os, const OatFile::OatMethod& oat_method) {
671 const uint8_t* begin = reinterpret_cast<const uint8_t*>(oat_method.GetInvokeStub());
672 const uint8_t* end = begin + oat_method.GetInvokeStubSize();
673 disassembler_->Dump(os, begin, end);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800674 }
675
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700676 const std::string host_prefix_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800677 const OatFile& oat_file_;
678 std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800679 std::set<uint32_t> offsets_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800680 UniquePtr<Disassembler> disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700681};
682
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800683class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700684 public:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800685 explicit ImageDumper(std::ostream* os, const std::string& image_filename,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800686 const std::string& host_prefix, Space& image_space,
Ian Rogersca190662012-06-26 15:45:57 -0700687 const ImageHeader& image_header)
688 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
689 image_space_(image_space), image_header_(image_header) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700690
Ian Rogersb726dcb2012-09-05 08:57:23 -0700691 void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800692 std::ostream& os = *os_;
693 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -0700694
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800695 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700696
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800697 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700698
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800699 os << "OAT BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700700
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800701 os << "OAT END:" << reinterpret_cast<void*>(image_header_.GetOatEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800702
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800703 {
704 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
705 Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
706 std::ostream indent1_os(&indent1_filter);
707 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
708 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
709 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
710 const char* image_root_description = image_roots_descriptions_[i];
711 Object* image_root_object = image_header_.GetImageRoot(image_root);
712 indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
713 if (image_root_object->IsObjectArray()) {
714 Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
715 std::ostream indent2_os(&indent2_filter);
716 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
717 ObjectArray<Object>* image_root_object_array
718 = down_cast<ObjectArray<Object>*>(image_root_object);
719 // = image_root_object->AsObjectArray<Object>();
720 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
721 Object* value = image_root_object_array->Get(i);
722 if (value != NULL) {
723 indent2_os << i << ": ";
724 PrettyObjectValue(indent2_os, value->GetClass(), value);
725 } else {
726 indent2_os << i << ": null\n";
727 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800728 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700729 }
730 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700731 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800732 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700733
Brian Carlstromaded5f72011-10-07 17:15:04 -0700734 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800735 Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
736 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800737 os << "OAT LOCATION: " << oat_location;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800738 if (!host_prefix_.empty()) {
739 oat_location = host_prefix_ + oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800740 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700741 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800742 os << "\n";
Brian Carlstromae826982011-11-09 01:33:42 -0800743 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700744 if (oat_file == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800745 os << "NOT FOUND\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700746 return;
747 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800748 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700749
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800750 stats_.oat_file_bytes = oat_file->Size();
751
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700752 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800753
Ian Rogers05f28c62012-10-23 18:12:13 -0700754 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
755 for (size_t i = 0; i < oat_dex_files.size(); i++) {
756 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
757 CHECK(oat_dex_file != NULL);
758 std::pair<std::string, size_t> entry(oat_dex_file->GetDexFileLocation(),
759 oat_dex_file->FileSize());
760 stats_.oat_dex_file_sizes.push_back(entry);
761 }
762
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800763 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700764
765 // Loop through all the image spaces and dump their objects.
766 Heap* heap = Runtime::Current()->GetHeap();
767 const Spaces& spaces = heap->GetSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -0700768 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700769 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700770 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700771 heap->FlushAllocStack();
772 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800773 {
774 std::ostream* saved_os = os_;
775 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
776 std::ostream indent_os(&indent_filter);
777 os_ = &indent_os;
778 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
779 // TODO: C++0x auto
780 for (Spaces::const_iterator it = spaces.begin(); it != spaces.end(); ++it) {
781 Space* space = *it;
782 if (space->IsImageSpace()) {
783 ImageSpace* image_space = space->AsImageSpace();
784 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
785 indent_os << "\n";
786 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700787 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800788 // Dump the large objects separately.
789 heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
790 indent_os << "\n";
791 os_ = saved_os;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700792 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800793 os << "STATS:\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800794 UniquePtr<File> file(OS::OpenFile(image_filename_.c_str(), false));
Elliott Hughes76160052012-12-12 16:31:20 -0800795 stats_.file_bytes = file->GetLength();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800796 size_t header_bytes = sizeof(ImageHeader);
797 stats_.header_bytes = header_bytes;
798 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
799 stats_.alignment_bytes += alignment_bytes;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800800 stats_.Dump(os);
801 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800802
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800803 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800804
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800805 oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700806 }
807
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700808 private:
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800809 static void PrettyObjectValue(std::ostream& os, Class* type, Object* value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700810 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800811 CHECK(type != NULL);
812 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800813 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800814 } else if (type->IsStringClass()) {
815 String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800816 os << StringPrintf("%p String: %s\n", string,
817 PrintableString(string->ToModifiedUtf8()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700818 } else if (type->IsClassClass()) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800819 Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800820 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700821 } else if (type->IsFieldClass()) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800822 Field* field = value->AsField();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800823 os << StringPrintf("%p Field: %s\n", field, PrettyField(field).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -0700824 } else if (type->IsMethodClass()) {
Mathieu Chartier66f19252012-09-18 08:57:04 -0700825 AbstractMethod* method = value->AsMethod();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800826 os << StringPrintf("%p Method: %s\n", method, PrettyMethod(method).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800827 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800828 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800829 }
830 }
831
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800832 static void PrintField(std::ostream& os, Field* field, Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700833 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800834 FieldHelper fh(field);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700835 const char* descriptor = fh.GetTypeDescriptor();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800836 os << StringPrintf("%s: ", fh.GetName());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700837 if (descriptor[0] != 'L' && descriptor[0] != '[') {
838 Class* type = fh.GetType();
839 if (type->IsPrimitiveLong()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800840 os << StringPrintf("%lld (0x%llx)\n", field->Get64(obj), field->Get64(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700841 } else if (type->IsPrimitiveDouble()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800842 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700843 } else if (type->IsPrimitiveFloat()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800844 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700845 } else {
846 DCHECK(type->IsPrimitive());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800847 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers48efc2b2012-08-27 17:20:31 -0700848 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800849 } else {
Ian Rogers48efc2b2012-08-27 17:20:31 -0700850 // Get the value, don't compute the type unless it is non-null as we don't want
851 // to cause class loading.
Ian Rogersd5b32602012-02-26 16:40:04 -0800852 Object* value = field->GetObj(obj);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700853 if (value == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800854 os << StringPrintf("null %s\n", PrettyDescriptor(descriptor).c_str());
Ian Rogers48efc2b2012-08-27 17:20:31 -0700855 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800856 PrettyObjectValue(os, fh.GetType(), value);
Ian Rogers48efc2b2012-08-27 17:20:31 -0700857 }
Ian Rogersd5b32602012-02-26 16:40:04 -0800858 }
859 }
860
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800861 static void DumpFields(std::ostream& os, Object* obj, Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700862 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd5b32602012-02-26 16:40:04 -0800863 Class* super = klass->GetSuperClass();
864 if (super != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800865 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -0800866 }
867 ObjectArray<Field>* fields = klass->GetIFields();
868 if (fields != NULL) {
869 for (int32_t i = 0; i < fields->GetLength(); i++) {
870 Field* field = fields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800871 PrintField(os, field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -0800872 }
873 }
874 }
875
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800876 bool InDumpSpace(const Object* object) {
877 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700878 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800879
Mathieu Chartier66f19252012-09-18 08:57:04 -0700880 const void* GetOatCodeBegin(AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700881 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800882 Runtime* runtime = Runtime::Current();
883 const void* code = m->GetCode();
Ian Rogersfb6adba2012-03-04 21:51:51 -0800884 if (code == runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData()) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800885 code = oat_dumper_->GetOatCode(m);
886 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700887 if (oat_dumper_->GetInstructionSet() == kThumb2) {
888 code = reinterpret_cast<void*>(reinterpret_cast<uint32_t>(code) & ~0x1);
889 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800890 return code;
891 }
892
Mathieu Chartier66f19252012-09-18 08:57:04 -0700893 uint32_t GetOatCodeSize(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 uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetOatCodeBegin(m));
896 if (oat_code_begin == NULL) {
897 return 0;
898 }
899 return oat_code_begin[-1];
900 }
901
Mathieu Chartier66f19252012-09-18 08:57:04 -0700902 const void* GetOatCodeEnd(AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700903 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700904 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetOatCodeBegin(m));
905 if (oat_code_begin == NULL) {
906 return NULL;
907 }
908 return oat_code_begin + GetOatCodeSize(m);
909 }
910
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700911 static void Callback(Object* obj, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700912 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700913 DCHECK(obj != NULL);
914 DCHECK(arg != NULL);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800915 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700916 if (!state->InDumpSpace(obj)) {
917 return;
918 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700919
920 size_t object_bytes = obj->SizeOf();
921 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
922 state->stats_.object_bytes += object_bytes;
923 state->stats_.alignment_bytes += alignment_bytes;
924
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800925 std::ostream& os = *state->os_;
Ian Rogersd5b32602012-02-26 16:40:04 -0800926 Class* obj_class = obj->GetClass();
927 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800928 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
929 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -0800930 } else if (obj->IsClass()) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700931 Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800932 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
933 << klass->GetStatus() << ")\n";
Ian Rogersd5b32602012-02-26 16:40:04 -0800934 } else if (obj->IsField()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800935 os << StringPrintf("%p: java.lang.reflect.Field %s\n", obj,
936 PrettyField(obj->AsField()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800937 } else if (obj->IsMethod()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800938 os << StringPrintf("%p: java.lang.reflect.Method %s\n", obj,
939 PrettyMethod(obj->AsMethod()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800940 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800941 os << StringPrintf("%p: java.lang.String %s\n", obj,
942 PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800943 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800944 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -0800945 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800946 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
947 std::ostream indent_os(&indent_filter);
948 DumpFields(indent_os, obj, obj_class);
Ian Rogersd5b32602012-02-26 16:40:04 -0800949 if (obj->IsObjectArray()) {
950 ObjectArray<Object>* obj_array = obj->AsObjectArray<Object>();
951 int32_t length = obj_array->GetLength();
952 for (int32_t i = 0; i < length; i++) {
953 Object* value = obj_array->Get(i);
954 size_t run = 0;
955 for (int32_t j = i + 1; j < length; j++) {
956 if (value == obj_array->Get(j)) {
957 run++;
958 } else {
959 break;
960 }
961 }
962 if (run == 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800963 indent_os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -0800964 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800965 indent_os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -0800966 i = i + run;
967 }
968 Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800969 PrettyObjectValue(indent_os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -0800970 }
971 } else if (obj->IsClass()) {
972 ObjectArray<Field>* sfields = obj->AsClass()->GetSFields();
973 if (sfields != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800974 indent_os << "STATICS:\n";
975 Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
976 std::ostream indent2_os(&indent2_filter);
Ian Rogersd5b32602012-02-26 16:40:04 -0800977 for (int32_t i = 0; i < sfields->GetLength(); i++) {
978 Field* field = sfields->Get(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800979 PrintField(indent2_os, field, field->GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -0800980 }
981 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700982 } else if (obj->IsMethod()) {
Mathieu Chartier66f19252012-09-18 08:57:04 -0700983 AbstractMethod* method = obj->AsMethod();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700984 if (method->IsNative()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700985 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700986 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800987 bool first_occurrence;
988 size_t invoke_stub_size = state->ComputeOatSize(
989 reinterpret_cast<const void*>(method->GetInvokeStub()), &first_occurrence);
990 if (first_occurrence) {
991 state->stats_.managed_to_native_code_bytes += invoke_stub_size;
992 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700993 const void* oat_code = state->GetOatCodeBegin(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700994 uint32_t oat_code_size = state->GetOatCodeSize(method);
995 state->ComputeOatSize(oat_code, &first_occurrence);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800996 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -0700997 state->stats_.native_to_managed_code_bytes += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800998 }
999 if (oat_code != method->GetCode()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001000 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001001 }
Ian Rogers19846512012-02-24 11:42:47 -08001002 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
1003 method->IsResolutionMethod()) {
Ian Rogers0c7abda2012-09-19 13:33:42 -07001004 DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001005 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001006 } else {
TDYa1273db52852012-04-01 15:11:43 -07001007#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers0c7abda2012-09-19 13:33:42 -07001008 DCHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
TDYa1273db52852012-04-01 15:11:43 -07001009#endif
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001010
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001011 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -07001012 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001013 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001014
Elliott Hughesa0e18062012-04-13 15:59:59 -07001015 bool first_occurrence;
Ian Rogers0c7abda2012-09-19 13:33:42 -07001016 size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001017 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001018 state->stats_.gc_map_bytes += gc_map_bytes;
1019 }
1020
1021 size_t pc_mapping_table_bytes =
Elliott Hughesa0e18062012-04-13 15:59:59 -07001022 state->ComputeOatSize(method->GetMappingTableRaw(), &first_occurrence);
1023 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001024 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1025 }
1026
1027 size_t vmap_table_bytes =
Elliott Hughesa0e18062012-04-13 15:59:59 -07001028 state->ComputeOatSize(method->GetVmapTableRaw(), &first_occurrence);
1029 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001030 state->stats_.vmap_table_bytes += vmap_table_bytes;
1031 }
1032
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001033 // TODO: compute invoke stub using length from oat file.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001034 size_t invoke_stub_size = state->ComputeOatSize(
Elliott Hughesa0e18062012-04-13 15:59:59 -07001035 reinterpret_cast<const void*>(method->GetInvokeStub()), &first_occurrence);
1036 if (first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001037 state->stats_.native_to_managed_code_bytes += invoke_stub_size;
1038 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001039 const void* oat_code_begin = state->GetOatCodeBegin(method);
1040 const void* oat_code_end = state->GetOatCodeEnd(method);
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001041 uint32_t oat_code_size = state->GetOatCodeSize(method);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001042 state->ComputeOatSize(oat_code_begin, &first_occurrence);
1043 if (first_occurrence) {
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001044 state->stats_.managed_code_bytes += oat_code_size;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001045 if (method->IsConstructor()) {
1046 if (method->IsStatic()) {
1047 state->stats_.class_initializer_code_bytes += oat_code_size;
1048 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1049 state->stats_.large_initializer_code_bytes += oat_code_size;
1050 }
1051 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1052 state->stats_.large_method_code_bytes += oat_code_size;
1053 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001054 }
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001055 state->stats_.managed_code_bytes_ignoring_deduplication += oat_code_size;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001056
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001057 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1058 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1059 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001060
1061 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001062 vmap_table_bytes + invoke_stub_size + oat_code_size + object_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001063
1064 double expansion =
Ian Rogersdb7bdc12012-04-09 21:27:15 -07001065 static_cast<double>(oat_code_size) / static_cast<double>(dex_instruction_bytes);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001066 state->stats_.ComputeOutliers(total_size, expansion, method);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001067 }
1068 }
Elliott Hughesa0e18062012-04-13 15:59:59 -07001069 state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001070 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001071
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001072 std::set<const void*> already_seen_;
1073 // Compute the size of the given data within the oat file and whether this is the first time
1074 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001075 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001076 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001077 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001078 already_seen_.insert(oat_data);
1079 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001080 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001081 }
1082 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001083 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001084
1085 public:
1086 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001087 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001088 size_t file_bytes;
1089
1090 size_t header_bytes;
1091 size_t object_bytes;
1092 size_t alignment_bytes;
1093
1094 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001095 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001096 size_t managed_to_native_code_bytes;
1097 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001098 size_t class_initializer_code_bytes;
1099 size_t large_initializer_code_bytes;
1100 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001101
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001102 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001103 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001104 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001105
1106 size_t dex_instruction_bytes;
1107
Mathieu Chartier66f19252012-09-18 08:57:04 -07001108 std::vector<AbstractMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001109 std::vector<size_t> method_outlier_size;
1110 std::vector<double> method_outlier_expansion;
Ian Rogers05f28c62012-10-23 18:12:13 -07001111 std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001112
1113 explicit Stats()
1114 : oat_file_bytes(0),
1115 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001116 header_bytes(0),
1117 object_bytes(0),
1118 alignment_bytes(0),
1119 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001120 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001121 managed_to_native_code_bytes(0),
1122 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001123 class_initializer_code_bytes(0),
1124 large_initializer_code_bytes(0),
1125 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001126 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001127 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001128 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001129 dex_instruction_bytes(0) {}
1130
Elliott Hughesa0e18062012-04-13 15:59:59 -07001131 struct SizeAndCount {
1132 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1133 size_t bytes;
1134 size_t count;
1135 };
1136 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1137 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001138
Elliott Hughesa0e18062012-04-13 15:59:59 -07001139 void Update(const std::string& descriptor, size_t object_bytes) {
1140 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1141 if (it != sizes_and_counts.end()) {
1142 it->second.bytes += object_bytes;
1143 it->second.count += 1;
1144 } else {
1145 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1146 }
1147 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001148
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001149 double PercentOfOatBytes(size_t size) {
1150 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1151 }
1152
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001153 double PercentOfFileBytes(size_t size) {
1154 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1155 }
1156
1157 double PercentOfObjectBytes(size_t size) {
1158 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1159 }
1160
Mathieu Chartier66f19252012-09-18 08:57:04 -07001161 void ComputeOutliers(size_t total_size, double expansion, AbstractMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001162 method_outlier_size.push_back(total_size);
1163 method_outlier_expansion.push_back(expansion);
1164 method_outlier.push_back(method);
1165 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001166
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001167 void DumpOutliers(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001168 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001169 size_t sum_of_sizes = 0;
1170 size_t sum_of_sizes_squared = 0;
1171 size_t sum_of_expansion = 0;
1172 size_t sum_of_expansion_squared = 0;
1173 size_t n = method_outlier_size.size();
1174 for (size_t i = 0; i < n; i++) {
1175 size_t cur_size = method_outlier_size[i];
1176 sum_of_sizes += cur_size;
1177 sum_of_sizes_squared += cur_size * cur_size;
1178 double cur_expansion = method_outlier_expansion[i];
1179 sum_of_expansion += cur_expansion;
1180 sum_of_expansion_squared += cur_expansion * cur_expansion;
1181 }
1182 size_t size_mean = sum_of_sizes / n;
1183 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1184 double expansion_mean = sum_of_expansion / n;
1185 double expansion_variance =
1186 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1187
1188 // Dump methods whose size is a certain number of standard deviations from the mean
1189 size_t dumped_values = 0;
1190 size_t skipped_values = 0;
1191 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
1192 size_t cur_size_variance = i * i * size_variance;
1193 bool first = true;
1194 for (size_t j = 0; j < n; j++) {
1195 size_t cur_size = method_outlier_size[j];
1196 if (cur_size > size_mean) {
1197 size_t cur_var = cur_size - size_mean;
1198 cur_var = cur_var * cur_var;
1199 if (cur_var > cur_size_variance) {
1200 if (dumped_values > 20) {
1201 if (i == 1) {
1202 skipped_values++;
1203 } else {
1204 i = 2; // jump to counting for 1 standard deviation
1205 break;
1206 }
1207 } else {
1208 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001209 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001210 first = false;
1211 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001212 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07001213 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001214 method_outlier_size[j] = 0; // don't consider this method again
1215 dumped_values++;
1216 }
1217 }
1218 }
1219 }
1220 }
1221 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001222 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001223 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001224 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001225 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001226
1227 // Dump methods whose expansion is a certain number of standard deviations from the mean
1228 dumped_values = 0;
1229 skipped_values = 0;
1230 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
1231 double cur_expansion_variance = i * i * expansion_variance;
1232 bool first = true;
1233 for (size_t j = 0; j < n; j++) {
1234 double cur_expansion = method_outlier_expansion[j];
1235 if (cur_expansion > expansion_mean) {
1236 size_t cur_var = cur_expansion - expansion_mean;
1237 cur_var = cur_var * cur_var;
1238 if (cur_var > cur_expansion_variance) {
1239 if (dumped_values > 20) {
1240 if (i == 1) {
1241 skipped_values++;
1242 } else {
1243 i = 2; // jump to counting for 1 standard deviation
1244 break;
1245 }
1246 } else {
1247 if (first) {
1248 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07001249 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001250 first = false;
1251 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001252 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07001253 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001254 method_outlier_expansion[j] = 0.0; // don't consider this method again
1255 dumped_values++;
1256 }
1257 }
1258 }
1259 }
1260 }
1261 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001262 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07001263 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001264 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001265 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001266 }
1267
Ian Rogersb726dcb2012-09-05 08:57:23 -07001268 void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001269 {
1270 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1271 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1272 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1273 std::ostream indent_os(&indent_filter);
1274 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1275 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
1276 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1277 header_bytes, PercentOfFileBytes(header_bytes),
1278 object_bytes, PercentOfFileBytes(object_bytes),
1279 alignment_bytes, PercentOfFileBytes(alignment_bytes))
1280 << std::flush;
1281 CHECK_EQ(file_bytes, header_bytes + object_bytes + alignment_bytes);
1282 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001283
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001284 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001285 size_t object_bytes_total = 0;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001286 typedef SizeAndCountTable::const_iterator It; // TODO: C++0x auto
1287 for (It it = sizes_and_counts.begin(), end = sizes_and_counts.end(); it != end; ++it) {
Elliott Hughes95572412011-12-13 18:14:20 -08001288 const std::string& descriptor(it->first);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001289 double average = static_cast<double>(it->second.bytes) / static_cast<double>(it->second.count);
1290 double percent = PercentOfObjectBytes(it->second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001291 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07001292 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
1293 descriptor.c_str(), it->second.bytes, it->second.count,
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001294 average, percent);
Elliott Hughesa0e18062012-04-13 15:59:59 -07001295 object_bytes_total += it->second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001296 }
Elliott Hughesc073b072012-05-24 19:29:17 -07001297 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001298 CHECK_EQ(object_bytes, object_bytes_total);
1299
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001300 os << StringPrintf("oat_file_bytes = %8zd\n"
1301 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1302 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1303 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1304 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1305 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1306 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001307 oat_file_bytes,
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001308 managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1309 managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001310 native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1311 class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1312 large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1313 large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001314 << "DexFile sizes:\n";
Ian Rogers05f28c62012-10-23 18:12:13 -07001315 typedef std::vector<std::pair<std::string, size_t> >::const_iterator It2;
1316 for (It2 it = oat_dex_file_sizes.begin(); it != oat_dex_file_sizes.end();
1317 ++it) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001318 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
1319 it->first.c_str(), it->second, PercentOfOatBytes(it->second));
Ian Rogers05f28c62012-10-23 18:12:13 -07001320 }
1321
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001322 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1323 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1324 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07001325 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1326 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1327 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001328 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001329
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001330 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1331 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Elliott Hughesc073b072012-05-24 19:29:17 -07001332 static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1333 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07001334 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07001335 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001336
1337 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001338 }
1339 } stats_;
1340
1341 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07001342 enum {
1343 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1344 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1345 kLargeConstructorDexBytes = 4000,
1346 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1347 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1348 kLargeMethodDexBytes = 16000
1349 };
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001350 UniquePtr<OatDumper> oat_dumper_;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001351 std::ostream* os_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001352 const std::string image_filename_;
1353 const std::string host_prefix_;
1354 Space& image_space_;
1355 const ImageHeader& image_header_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07001356
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001357 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001358};
1359
Elliott Hughes72395bf2012-04-24 13:45:26 -07001360static int oatdump(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -07001361 InitLogging(argv);
Elliott Hughes72395bf2012-04-24 13:45:26 -07001362
Brian Carlstrom78128a62011-09-15 17:21:19 -07001363 // Skip over argv[0].
1364 argv++;
1365 argc--;
1366
1367 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001368 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001369 usage();
1370 }
1371
Brian Carlstromaded5f72011-10-07 17:15:04 -07001372 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001373 const char* image_filename = NULL;
1374 const char* boot_image_filename = NULL;
Logan Chien0cc6ab62012-03-20 22:57:52 +08001375 std::string elf_filename_prefix;
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001376 UniquePtr<std::string> host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001377 std::ostream* os = &std::cout;
1378 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001379
1380 for (int i = 0; i < argc; i++) {
1381 const StringPiece option(argv[i]);
Brian Carlstroma6cc8932012-01-04 14:44:07 -08001382 if (option.starts_with("--oat-file=")) {
1383 oat_filename = option.substr(strlen("--oat-file=")).data();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001384 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -07001385 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001386 } else if (option.starts_with("--boot-image=")) {
1387 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001388 } else if (option.starts_with("--host-prefix=")) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001389 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001390 } else if (option.starts_with("--output=")) {
1391 const char* filename = option.substr(strlen("--output=")).data();
1392 out.reset(new std::ofstream(filename));
1393 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001394 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001395 usage();
1396 }
1397 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001398 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001399 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001400 usage();
1401 }
1402 }
1403
Brian Carlstromaded5f72011-10-07 17:15:04 -07001404 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001405 fprintf(stderr, "Either --image or --oat must be specified\n");
1406 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001407 }
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 but not both\n");
1411 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001412 }
1413
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001414 if (host_prefix.get() == NULL) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001415 const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1416 if (android_product_out != NULL) {
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001417 host_prefix.reset(new std::string(android_product_out));
1418 } else {
1419 host_prefix.reset(new std::string(""));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001420 }
1421 }
1422
Brian Carlstromaded5f72011-10-07 17:15:04 -07001423 if (oat_filename != NULL) {
Logan Chien0c717dd2012-03-28 18:31:07 +08001424 OatFile* oat_file =
Brian Carlstrom1cac3432012-12-12 10:56:22 -08001425 OatFile::Open(oat_filename, oat_filename, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001426 if (oat_file == NULL) {
1427 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
1428 return EXIT_FAILURE;
1429 }
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001430 OatDumper oat_dumper(*host_prefix.get(), *oat_file);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001431 oat_dumper.Dump(*os);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001432 return EXIT_SUCCESS;
1433 }
1434
Brian Carlstrom78128a62011-09-15 17:21:19 -07001435 Runtime::Options options;
1436 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001437 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -07001438 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001439 std::string boot_oat_option;
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001440 if (boot_image_filename != NULL) {
1441 boot_image_option += "-Ximage:";
1442 boot_image_option += boot_image_filename;
1443 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -07001444 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001445 if (image_filename != NULL) {
1446 image_option += "-Ximage:";
1447 image_option += image_filename;
1448 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1449 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001450
Brian Carlstrom13c492b2012-03-22 17:09:17 -07001451 if (!host_prefix->empty()) {
1452 options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001453 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001454
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001455 if (!Runtime::Create(options, false)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001456 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -07001457 return EXIT_FAILURE;
1458 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001459 UniquePtr<Runtime> runtime(Runtime::Current());
1460 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1461 // give it away now and then switch to a more managable ScopedObjectAccess.
1462 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1463 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom78128a62011-09-15 17:21:19 -07001464
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001465 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001466 ImageSpace* image_space = heap->GetImageSpace();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001467 CHECK(image_space != NULL);
1468 const ImageHeader& image_header = image_space->GetImageHeader();
1469 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001470 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001471 return EXIT_FAILURE;
1472 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001473 ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001474 image_dumper.Dump();
Brian Carlstrom78128a62011-09-15 17:21:19 -07001475 return EXIT_SUCCESS;
1476}
1477
1478} // namespace art
1479
1480int main(int argc, char** argv) {
1481 return art::oatdump(argc, argv);
1482}