blob: 5cff2ea2edbd99dca6a681e663ead952fa857d59 [file] [log] [blame]
Brian Carlstrom78128a62011-09-15 17:21:19 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include <stdio.h>
4#include <stdlib.h>
5
Brian Carlstrom27ec9612011-09-19 20:20:38 -07006#include <fstream>
7#include <iostream>
Brian Carlstrom78128a62011-09-15 17:21:19 -07008#include <string>
9#include <vector>
10
11#include "class_linker.h"
Brian Carlstrom916e74e2011-09-23 11:42:01 -070012#include "file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070013#include "image.h"
Brian Carlstrom916e74e2011-09-23 11:42:01 -070014#include "os.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080015#include "object_utils.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070016#include "runtime.h"
17#include "space.h"
18#include "stringpiece.h"
Brian Carlstrom916e74e2011-09-23 11:42:01 -070019#include "unordered_map.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070020
21namespace art {
22
23static void usage() {
24 fprintf(stderr,
25 "Usage: oatdump [options] ...\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070026 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/data/art-cache/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
27 " Example: adb shell oatdump --image=/data/art-cache/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070028 "\n");
29 fprintf(stderr,
Brian Carlstromaded5f72011-10-07 17:15:04 -070030 " --oat=<file.oat>: specifies an input oat filename.\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070031 " Example: --image=/data/art-cache/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070032 "\n");
33 fprintf(stderr,
34 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070035 " Example: --image=/data/art-cache/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070036 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070037 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070038 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070039 " Example: --boot-image=/data/art-cache/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070040 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070041 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070042 " --host-prefix may be used to translate host paths to target paths during\n"
43 " cross compilation.\n"
44 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070045 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070046 fprintf(stderr,
47 " --output=<file> may be used to send the output to a file.\n"
48 " Example: --output=/tmp/oatdump.txt\n"
49 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070050 exit(EXIT_FAILURE);
51}
52
Ian Rogersff1ed472011-09-20 13:46:24 -070053const char* image_roots_descriptions_[] = {
Brian Carlstrom78128a62011-09-15 17:21:19 -070054 "kJniStubArray",
Brian Carlstrome24fa612011-09-29 00:53:55 -070055 "kAbstractMethodErrorStubArray",
Ian Rogersad25ac52011-10-04 19:13:33 -070056 "kInstanceResolutionStubArray",
57 "kStaticResolutionStubArray",
Ian Rogers1cb0a1d2011-10-06 15:24:35 -070058 "kUnknownMethodResolutionStubArray",
Brian Carlstrome24fa612011-09-29 00:53:55 -070059 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070060 "kRefsOnlySaveMethod",
61 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070062 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070063 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070064 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070065};
66
Brian Carlstrom27ec9612011-09-19 20:20:38 -070067class OatDump {
Brian Carlstromaded5f72011-10-07 17:15:04 -070068 public:
69 static void Dump(const std::string& oat_filename,
70 const std::string& host_prefix,
71 std::ostream& os,
72 const OatFile& oat_file) {
73 const OatHeader& oat_header = oat_file.GetOatHeader();
74
75 os << "MAGIC:\n";
76 os << oat_header.GetMagic() << "\n\n";
77
78 os << "CHECKSUM:\n";
79 os << StringPrintf("%08x\n\n", oat_header.GetChecksum());
80
81 os << "DEX FILE COUNT:\n";
82 os << oat_header.GetDexFileCount() << "\n\n";
83
84 os << "EXECUTABLE OFFSET:\n";
85 os << StringPrintf("%08x\n\n", oat_header.GetExecutableOffset());
86
87 os << "BASE:\n";
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -070088 os << reinterpret_cast<const void*>(oat_file.GetBase()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -070089
90 os << "LIMIT:\n";
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -070091 os << reinterpret_cast<const void*>(oat_file.GetLimit()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -070092
93 os << std::flush;
94
95 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file.GetOatDexFiles() ;
96 for (size_t i = 0; i < oat_dex_files.size(); i++) {
97 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
98 CHECK(oat_dex_file != NULL);
99 DumpOatDexFile(host_prefix, os, oat_file, *oat_dex_file);
100 }
101 }
102
103 private:
104 static void DumpOatDexFile(const std::string& host_prefix,
105 std::ostream& os,
106 const OatFile& oat_file,
107 const OatFile::OatDexFile& oat_dex_file) {
108 os << "OAT DEX FILE:\n";
109 std::string dex_file_location = oat_dex_file.GetDexFileLocation();
110 os << "location: " << dex_file_location;
111 if (!host_prefix.empty()) {
112 dex_file_location = host_prefix + dex_file_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700113 os << " (" << dex_file_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700114 }
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700115 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700116 os << StringPrintf("checksum: %08x\n", oat_dex_file.GetDexFileChecksum());
117 const DexFile* dex_file = DexFile::Open(dex_file_location, "");
118 if (dex_file == NULL) {
119 os << "NOT FOUND\n\n";
120 return;
121 }
122 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
123 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
124 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700125 os << StringPrintf("%d: %s (type_idx=%d)\n", class_def_index, descriptor, class_def.class_idx_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700126 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
127 CHECK(oat_class.get() != NULL);
128 DumpOatClass(os, oat_file, *oat_class.get(), *dex_file, class_def);
129 }
130
131 os << std::flush;
132 }
133
134 static void DumpOatClass(std::ostream& os,
135 const OatFile& oat_file,
136 const OatFile::OatClass& oat_class,
137 const DexFile& dex_file,
138 const DexFile::ClassDef& class_def) {
139 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700140 if (class_data == NULL) { // empty class such as a marker interface?
141 return;
142 }
143 ClassDataItemIterator it(dex_file, class_data);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700144
145 // just skipping through the fields to advance class_data
Ian Rogers0571d352011-11-03 19:51:38 -0700146 while (it.HasNextStaticField()) {
147 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700148 }
Ian Rogers0571d352011-11-03 19:51:38 -0700149 while (it.HasNextInstanceField()) {
150 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700151 }
152
Ian Rogers0571d352011-11-03 19:51:38 -0700153 uint32_t method_index = 0;
154 while (it.HasNextDirectMethod()) {
155 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
156 DumpOatMethod(os, method_index, oat_file, oat_method, dex_file, it.GetMemberIndex());
157 method_index++;
158 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700159 }
Ian Rogers0571d352011-11-03 19:51:38 -0700160 while (it.HasNextVirtualMethod()) {
161 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
162 DumpOatMethod(os, method_index, oat_file, oat_method, dex_file, it.GetMemberIndex());
163 method_index++;
164 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700165 }
Ian Rogers0571d352011-11-03 19:51:38 -0700166 DCHECK(!it.HasNext());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700167 os << std::flush;
168 }
169 static void DumpOatMethod(std::ostream& os,
170 uint32_t method_index,
171 const OatFile& oat_file,
172 const OatFile::OatMethod& oat_method,
173 const DexFile& dex_file,
Ian Rogers0571d352011-11-03 19:51:38 -0700174 uint32_t method_idx) {
175 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700176 const char* name = dex_file.GetMethodName(method_id);
177 std::string signature = dex_file.GetMethodSignature(method_id);
178 os << StringPrintf("\t%d: %s %s (method_idx=%d)\n",
Ian Rogers0571d352011-11-03 19:51:38 -0700179 method_index, name, signature.c_str(), method_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700180 os << StringPrintf("\t\tcode: %p (offset=%08x)\n",
Brian Carlstromae826982011-11-09 01:33:42 -0800181 oat_method.GetCode(), oat_method.GetCodeOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700182 os << StringPrintf("\t\tframe_size_in_bytes: %d\n",
Brian Carlstromae826982011-11-09 01:33:42 -0800183 oat_method.GetFrameSizeInBytes());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700184 os << StringPrintf("\t\tcore_spill_mask: %08x\n",
Brian Carlstromae826982011-11-09 01:33:42 -0800185 oat_method.GetCoreSpillMask());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700186 os << StringPrintf("\t\tfp_spill_mask: %08x\n",
Brian Carlstromae826982011-11-09 01:33:42 -0800187 oat_method.GetFpSpillMask());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700188 os << StringPrintf("\t\tmapping_table: %p (offset=%08x)\n",
Brian Carlstromae826982011-11-09 01:33:42 -0800189 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700190 os << StringPrintf("\t\tvmap_table: %p (offset=%08x)\n",
Brian Carlstromae826982011-11-09 01:33:42 -0800191 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700192 os << StringPrintf("\t\tinvoke_stub: %p (offset=%08x)\n",
Brian Carlstromae826982011-11-09 01:33:42 -0800193 oat_method.GetInvokeStub(), oat_method.GetInvokeStubOffset());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700194 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700195};
196
197class ImageDump {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700198 public:
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700199 static void Dump(const std::string& image_filename,
Brian Carlstromaded5f72011-10-07 17:15:04 -0700200 const std::string& host_prefix,
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700201 std::ostream& os,
202 Space& image_space,
203 const ImageHeader& image_header) {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700204 os << "MAGIC:\n";
205 os << image_header.GetMagic() << "\n\n";
206
Brian Carlstrome24fa612011-09-29 00:53:55 -0700207 os << "IMAGE BASE:\n";
208 os << reinterpret_cast<void*>(image_header.GetImageBaseAddr()) << "\n\n";
209
Brian Carlstromaded5f72011-10-07 17:15:04 -0700210 os << "OAT CHECKSUM:\n";
211 os << StringPrintf("%08x\n\n", image_header.GetOatChecksum());
212
Brian Carlstrome24fa612011-09-29 00:53:55 -0700213 os << "OAT BASE:\n";
214 os << reinterpret_cast<void*>(image_header.GetOatBaseAddr()) << "\n\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700215
Brian Carlstromaded5f72011-10-07 17:15:04 -0700216 os << "OAT LIMIT:\n";
217 os << reinterpret_cast<void*>(image_header.GetOatLimitAddr()) << "\n\n";
218
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700219 os << "ROOTS:\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700220 os << reinterpret_cast<void*>(image_header.GetImageRoots()) << "\n";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700221 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700222 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
223 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700224 const char* image_root_description = image_roots_descriptions_[i];
225 Object* image_root_object = image_header.GetImageRoot(image_root);
226 os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
227 if (image_root_object->IsObjectArray()) {
228 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
229 ObjectArray<Object>* image_root_object_array
230 = down_cast<ObjectArray<Object>*>(image_root_object);
231 // = image_root_object->AsObjectArray<Object>();
232 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
233 os << StringPrintf("\t%d: %p\n", i, image_root_object_array->Get(i));
234 }
235 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700236 }
237 os << "\n";
238
239 os << "OBJECTS:\n" << std::flush;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700240 ImageDump state(image_space, os);
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700241 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
242 DCHECK(heap_bitmap != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700243 heap_bitmap->Walk(ImageDump::Callback, &state);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700244 os << "\n";
245
246 os << "STATS:\n" << std::flush;
247 UniquePtr<File> file(OS::OpenFile(image_filename.c_str(), false));
248 state.stats_.file_bytes = file->Length();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700249 size_t header_bytes = sizeof(ImageHeader);
250 state.stats_.header_bytes = header_bytes;
251 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
252 state.stats_.alignment_bytes += alignment_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700253 state.stats_.Dump(os);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700254 os << "\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700255
256 os << std::flush;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700257
258 os << "OAT LOCATION:\n" << std::flush;
259 Object* oat_location_object = image_header.GetImageRoot(ImageHeader::kOatLocation);
260 std::string oat_location = oat_location_object->AsString()->ToModifiedUtf8();
261 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
262 os << oat_location;
263 if (!host_prefix.empty()) {
264 oat_location = host_prefix + oat_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700265 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700266 }
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700267 os << "\n";
Brian Carlstromae826982011-11-09 01:33:42 -0800268 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700269 if (oat_file == NULL) {
270 os << "NOT FOUND\n";
271 os << std::flush;
272 return;
273 }
274 os << "\n";
275 os << std::flush;
276
277 OatDump::Dump(oat_location, host_prefix, os, *oat_file);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700278 }
279
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700280 private:
281
Brian Carlstromaded5f72011-10-07 17:15:04 -0700282 ImageDump(const Space& dump_space, std::ostream& os) : dump_space_(dump_space), os_(os) {}
Elliott Hughesd1bb4f62011-09-23 14:09:45 -0700283
Brian Carlstromaded5f72011-10-07 17:15:04 -0700284 ~ImageDump() {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700285
Brian Carlstrom78128a62011-09-15 17:21:19 -0700286 static void Callback(Object* obj, void* arg) {
287 DCHECK(obj != NULL);
288 DCHECK(arg != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700289 ImageDump* state = reinterpret_cast<ImageDump*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700290 if (!state->InDumpSpace(obj)) {
291 return;
292 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700293
294 size_t object_bytes = obj->SizeOf();
295 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
296 state->stats_.object_bytes += object_bytes;
297 state->stats_.alignment_bytes += alignment_bytes;
298
Brian Carlstrom78128a62011-09-15 17:21:19 -0700299 std::string summary;
300 StringAppendF(&summary, "%p: ", obj);
301 if (obj->IsClass()) {
302 Class* klass = obj->AsClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800303 summary += "CLASS ";
304 summary += ClassHelper(klass).GetDescriptor();
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700305 std::ostringstream ss;
Brian Carlstrome10b6972011-09-26 13:49:03 -0700306 ss << " (" << klass->GetStatus() << ")";
307 summary += ss.str();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700308 } else if (obj->IsMethod()) {
309 Method* method = obj->AsMethod();
310 StringAppendF(&summary, "METHOD %s", PrettyMethod(method).c_str());
311 } else if (obj->IsField()) {
312 Field* field = obj->AsField();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700313 StringAppendF(&summary, "FIELD %s", PrettyField(field).c_str());
314 } else if (obj->IsArrayInstance()) {
315 StringAppendF(&summary, "ARRAY %d", obj->AsArray()->GetLength());
Elliott Hughesdbb40792011-11-18 17:05:22 -0800316 } else if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700317 StringAppendF(&summary, "STRING %s", obj->AsString()->ToModifiedUtf8().c_str());
318 } else {
319 StringAppendF(&summary, "OBJECT");
320 }
321 StringAppendF(&summary, "\n");
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800322 std::string descriptor(ClassHelper(obj->GetClass()).GetDescriptor());
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700323 StringAppendF(&summary, "\tclass %p: %s\n", obj->GetClass(), descriptor.c_str());
324 state->stats_.descriptor_to_bytes[descriptor] += object_bytes;
325 state->stats_.descriptor_to_count[descriptor] += 1;
326 // StringAppendF(&summary, "\tsize %d (alignment padding %d)\n",
327 // object_bytes, RoundUp(object_bytes, kObjectAlignment) - object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700328 if (obj->IsMethod()) {
329 Method* method = obj->AsMethod();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700330 if (!method->IsCalleeSaveMethod()) {
331 const int8_t* code =reinterpret_cast<const int8_t*>(method->GetCode());
332 StringAppendF(&summary, "\tCODE %p\n", code);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700333
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700334 const Method::InvokeStub* invoke_stub = method->GetInvokeStub();
335 StringAppendF(&summary, "\tJNI STUB %p\n", invoke_stub);
Ian Rogersff1ed472011-09-20 13:46:24 -0700336 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700337 if (method->IsNative()) {
338 if (method->IsRegistered()) {
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700339 StringAppendF(&summary, "\tNATIVE REGISTERED %p\n", method->GetNativeMethod());
Brian Carlstrom78128a62011-09-15 17:21:19 -0700340 } else {
341 StringAppendF(&summary, "\tNATIVE UNREGISTERED\n");
342 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700343 DCHECK(method->GetGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700344 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700345 } else if (method->IsAbstract()) {
346 StringAppendF(&summary, "\tABSTRACT\n");
Ian Rogersd81871c2011-10-03 13:57:23 -0700347 DCHECK(method->GetGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700348 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
349 } else if (method->IsCalleeSaveMethod()) {
350 StringAppendF(&summary, "\tCALLEE SAVE METHOD\n");
Ian Rogersd81871c2011-10-03 13:57:23 -0700351 DCHECK(method->GetGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700352 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700353 } else {
Brian Carlstromae826982011-11-09 01:33:42 -0800354 if (method->GetGcMap() != NULL) {
355 size_t register_map_bytes = method->GetGcMap()->SizeOf();
356 state->stats_.register_map_bytes += register_map_bytes;
357 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700358
Brian Carlstrome10b6972011-09-26 13:49:03 -0700359 if (method->GetMappingTable() != NULL) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700360 size_t pc_mapping_table_bytes = method->GetMappingTableLength();
Brian Carlstrome10b6972011-09-26 13:49:03 -0700361 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
362 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700363
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800364 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -0700365 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700366 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700367 }
368 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700369 state->os_ << summary << std::flush;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700370 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700371
372 bool InDumpSpace(const Object* object) {
373 const byte* o = reinterpret_cast<const byte*>(object);
374 return (o >= dump_space_.GetBase() && o < dump_space_.GetLimit());
375 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700376
377 public:
378 struct Stats {
379 size_t file_bytes;
380
381 size_t header_bytes;
382 size_t object_bytes;
383 size_t alignment_bytes;
384
385 size_t managed_code_bytes;
386 size_t managed_to_native_code_bytes;
387 size_t native_to_managed_code_bytes;
388
389 size_t register_map_bytes;
390 size_t pc_mapping_table_bytes;
391
392 size_t dex_instruction_bytes;
393
394 Stats()
395 : file_bytes(0),
396 header_bytes(0),
397 object_bytes(0),
398 alignment_bytes(0),
399 managed_code_bytes(0),
400 managed_to_native_code_bytes(0),
401 native_to_managed_code_bytes(0),
402 register_map_bytes(0),
403 pc_mapping_table_bytes(0),
404 dex_instruction_bytes(0) {}
405
406 typedef std::tr1::unordered_map<std::string,size_t> TableBytes;
407 TableBytes descriptor_to_bytes;
408
409 typedef std::tr1::unordered_map<std::string,size_t> TableCount;
410 TableCount descriptor_to_count;
411
412 double PercentOfFileBytes(size_t size) {
413 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
414 }
415
416 double PercentOfObjectBytes(size_t size) {
417 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
418 }
419
420 void Dump(std::ostream& os) {
421 os << StringPrintf("\tfile_bytes = %d\n", file_bytes);
422 os << "\n";
423
424 os << "\tfile_bytes = header_bytes + object_bytes + alignment_bytes\n";
425 os << StringPrintf("\theader_bytes = %10d (%2.0f%% of file_bytes)\n",
426 header_bytes, PercentOfFileBytes(header_bytes));
427 os << StringPrintf("\tobject_bytes = %10d (%2.0f%% of file_bytes)\n",
428 object_bytes, PercentOfFileBytes(object_bytes));
429 os << StringPrintf("\talignment_bytes = %10d (%2.0f%% of file_bytes)\n",
430 alignment_bytes, PercentOfFileBytes(alignment_bytes));
431 os << "\n";
432 os << std::flush;
433 CHECK_EQ(file_bytes, header_bytes + object_bytes + alignment_bytes);
434
435 os << "\tobject_bytes = sum of descriptor_to_bytes values below:\n";
436 size_t object_bytes_total = 0;
437 typedef TableBytes::const_iterator It; // TODO: C++0x auto
438 for (It it = descriptor_to_bytes.begin(), end = descriptor_to_bytes.end(); it != end; ++it) {
439 const std::string& descriptor = it->first;
440 size_t bytes = it->second;
441 size_t count = descriptor_to_count[descriptor];
442 double average = static_cast<double>(bytes) / static_cast<double>(count);
443 double percent = PercentOfObjectBytes(bytes);
Brian Carlstromf153fe12011-09-27 16:27:12 -0700444 os << StringPrintf("\t%32s %8d bytes %6d instances "
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700445 "(%3.0f bytes/instance) %2.0f%% of object_bytes\n",
446 descriptor.c_str(), bytes, count,
447 average, percent);
448
449 object_bytes_total += bytes;
450 }
451 os << "\n";
452 os << std::flush;
453 CHECK_EQ(object_bytes, object_bytes_total);
454
455 os << StringPrintf("\tmanaged_code_bytes = %8d (%2.0f%% of object_bytes)\n",
456 managed_code_bytes, PercentOfObjectBytes(managed_code_bytes));
457 os << StringPrintf("\tmanaged_to_native_code_bytes = %8d (%2.0f%% of object_bytes)\n",
458 managed_to_native_code_bytes,
459 PercentOfObjectBytes(managed_to_native_code_bytes));
460 os << StringPrintf("\tnative_to_managed_code_bytes = %8d (%2.0f%% of object_bytes)\n",
461 native_to_managed_code_bytes,
462 PercentOfObjectBytes(native_to_managed_code_bytes));
463 os << "\n";
464 os << std::flush;
465
466 os << StringPrintf("\tregister_map_bytes = %7d (%2.0f%% of object_bytes)\n",
467 register_map_bytes, PercentOfObjectBytes(register_map_bytes));
468 os << StringPrintf("\tpc_mapping_table_bytes = %7d (%2.0f%% of object_bytes)\n",
469 pc_mapping_table_bytes, PercentOfObjectBytes(pc_mapping_table_bytes));
470 os << "\n";
471 os << std::flush;
472
473 os << StringPrintf("\tdex_instruction_bytes = %d\n", dex_instruction_bytes);
474 os << StringPrintf("\tmanaged_code_bytes expansion = %.2f\n",
475 static_cast<double>(managed_code_bytes)
476 / static_cast<double>(dex_instruction_bytes));
477 os << "\n";
478 os << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700479 }
480 } stats_;
481
482 private:
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700483 const Space& dump_space_;
484 std::ostream& os_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -0700485
Brian Carlstromaded5f72011-10-07 17:15:04 -0700486 DISALLOW_COPY_AND_ASSIGN(ImageDump);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700487};
488
489int oatdump(int argc, char** argv) {
490 // Skip over argv[0].
491 argv++;
492 argc--;
493
494 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700495 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -0700496 usage();
497 }
498
Brian Carlstromaded5f72011-10-07 17:15:04 -0700499 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700500 const char* image_filename = NULL;
501 const char* boot_image_filename = NULL;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700502 std::string host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700503 std::ostream* os = &std::cout;
504 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700505
506 for (int i = 0; i < argc; i++) {
507 const StringPiece option(argv[i]);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700508 if (option.starts_with("--oat=")) {
509 oat_filename = option.substr(strlen("--oat=")).data();
510 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700511 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700512 } else if (option.starts_with("--boot-image=")) {
513 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700514 } else if (option.starts_with("--host-prefix=")) {
515 host_prefix = option.substr(strlen("--host-prefix=")).data();
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700516 } else if (option.starts_with("--output=")) {
517 const char* filename = option.substr(strlen("--output=")).data();
518 out.reset(new std::ofstream(filename));
519 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700520 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700521 usage();
522 }
523 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700524 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700525 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -0700526 usage();
527 }
528 }
529
Brian Carlstromaded5f72011-10-07 17:15:04 -0700530 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700531 fprintf(stderr, "Either --image or --oat must be specified\n");
532 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700533 }
534
Brian Carlstromaded5f72011-10-07 17:15:04 -0700535 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700536 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
537 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700538 }
539
540 if (oat_filename != NULL) {
541 const OatFile* oat_file = OatFile::Open(oat_filename, "", NULL);
542 if (oat_file == NULL) {
543 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
544 return EXIT_FAILURE;
545 }
546 OatDump::Dump(oat_filename, host_prefix, *os, *oat_file);
547 return EXIT_SUCCESS;
548 }
549
Brian Carlstrom78128a62011-09-15 17:21:19 -0700550 Runtime::Options options;
551 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700552 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700553 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700554 std::string boot_oat_option;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700555 if (boot_image_filename != NULL) {
556 boot_image_option += "-Ximage:";
557 boot_image_option += boot_image_filename;
558 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -0700559 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700560 if (image_filename != NULL) {
561 image_option += "-Ximage:";
562 image_option += image_filename;
563 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
564 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700565
566 if (!host_prefix.empty()) {
567 options.push_back(std::make_pair("host-prefix", host_prefix.c_str()));
568 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700569
570 UniquePtr<Runtime> runtime(Runtime::Create(options, false));
571 if (runtime.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700572 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -0700573 return EXIT_FAILURE;
574 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700575
576 Space* image_space = Heap::GetSpaces()[Heap::GetSpaces().size()-2];
577 CHECK(image_space != NULL);
578 const ImageHeader& image_header = image_space->GetImageHeader();
579 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700580 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700581 return EXIT_FAILURE;
582 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700583 ImageDump::Dump(image_filename, host_prefix, *os, *image_space, image_header);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700584 return EXIT_SUCCESS;
585}
586
587} // namespace art
588
589int main(int argc, char** argv) {
590 return art::oatdump(argc, argv);
591}