blob: 73b92a010314c853a5e3655a96f55119ed469fc6 [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"
Brian Carlstrom78128a62011-09-15 17:21:19 -070015#include "runtime.h"
16#include "space.h"
17#include "stringpiece.h"
Brian Carlstrom916e74e2011-09-23 11:42:01 -070018#include "unordered_map.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070019
20namespace art {
21
22static void usage() {
23 fprintf(stderr,
24 "Usage: oatdump [options] ...\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070025 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/data/art-cache/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
26 " Example: adb shell oatdump --image=/data/art-cache/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070027 "\n");
28 fprintf(stderr,
Brian Carlstromaded5f72011-10-07 17:15:04 -070029 " --oat=<file.oat>: specifies an input oat filename.\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070030 " Example: --image=/data/art-cache/boot.oat\n"
Brian Carlstromaded5f72011-10-07 17:15:04 -070031 "\n");
32 fprintf(stderr,
33 " --image=<file.art>: specifies an input image filename.\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070034 " Example: --image=/data/art-cache/boot.art\n"
Brian Carlstrome24fa612011-09-29 00:53:55 -070035 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070036 fprintf(stderr,
Brian Carlstrome24fa612011-09-29 00:53:55 -070037 " --boot-image=<file.art>: provide the image file for the boot class path.\n"
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070038 " Example: --boot-image=/data/art-cache/boot.art\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070039 "\n");
Brian Carlstrome24fa612011-09-29 00:53:55 -070040 fprintf(stderr,
Brian Carlstrom58ae9412011-10-04 00:56:06 -070041 " --host-prefix may be used to translate host paths to target paths during\n"
42 " cross compilation.\n"
43 " Example: --host-prefix=out/target/product/crespo\n"
Brian Carlstrom78128a62011-09-15 17:21:19 -070044 "\n");
Brian Carlstrom27ec9612011-09-19 20:20:38 -070045 fprintf(stderr,
46 " --output=<file> may be used to send the output to a file.\n"
47 " Example: --output=/tmp/oatdump.txt\n"
48 "\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -070049 exit(EXIT_FAILURE);
50}
51
Ian Rogersff1ed472011-09-20 13:46:24 -070052const char* image_roots_descriptions_[] = {
Brian Carlstrom78128a62011-09-15 17:21:19 -070053 "kJniStubArray",
Brian Carlstrome24fa612011-09-29 00:53:55 -070054 "kAbstractMethodErrorStubArray",
Ian Rogersad25ac52011-10-04 19:13:33 -070055 "kInstanceResolutionStubArray",
56 "kStaticResolutionStubArray",
Ian Rogers1cb0a1d2011-10-06 15:24:35 -070057 "kUnknownMethodResolutionStubArray",
Brian Carlstrome24fa612011-09-29 00:53:55 -070058 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070059 "kRefsOnlySaveMethod",
60 "kRefsAndArgsSaveMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070061 "kOatLocation",
Brian Carlstrom58ae9412011-10-04 00:56:06 -070062 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070063 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070064};
65
Brian Carlstrom27ec9612011-09-19 20:20:38 -070066class OatDump {
Brian Carlstromaded5f72011-10-07 17:15:04 -070067 public:
68 static void Dump(const std::string& oat_filename,
69 const std::string& host_prefix,
70 std::ostream& os,
71 const OatFile& oat_file) {
72 const OatHeader& oat_header = oat_file.GetOatHeader();
73
74 os << "MAGIC:\n";
75 os << oat_header.GetMagic() << "\n\n";
76
77 os << "CHECKSUM:\n";
78 os << StringPrintf("%08x\n\n", oat_header.GetChecksum());
79
80 os << "DEX FILE COUNT:\n";
81 os << oat_header.GetDexFileCount() << "\n\n";
82
83 os << "EXECUTABLE OFFSET:\n";
84 os << StringPrintf("%08x\n\n", oat_header.GetExecutableOffset());
85
86 os << "BASE:\n";
87 os << oat_file.GetBase() << "\n\n";
88
89 os << "LIMIT:\n";
90 os << oat_file.GetLimit() << "\n\n";
91
92 os << std::flush;
93
94 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file.GetOatDexFiles() ;
95 for (size_t i = 0; i < oat_dex_files.size(); i++) {
96 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
97 CHECK(oat_dex_file != NULL);
98 DumpOatDexFile(host_prefix, os, oat_file, *oat_dex_file);
99 }
100 }
101
102 private:
103 static void DumpOatDexFile(const std::string& host_prefix,
104 std::ostream& os,
105 const OatFile& oat_file,
106 const OatFile::OatDexFile& oat_dex_file) {
107 os << "OAT DEX FILE:\n";
108 std::string dex_file_location = oat_dex_file.GetDexFileLocation();
109 os << "location: " << dex_file_location;
110 if (!host_prefix.empty()) {
111 dex_file_location = host_prefix + dex_file_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700112 os << " (" << dex_file_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700113 }
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700114 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700115 os << StringPrintf("checksum: %08x\n", oat_dex_file.GetDexFileChecksum());
116 const DexFile* dex_file = DexFile::Open(dex_file_location, "");
117 if (dex_file == NULL) {
118 os << "NOT FOUND\n\n";
119 return;
120 }
121 for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
122 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
123 const char* descriptor = dex_file->GetClassDescriptor(class_def);
124 os << StringPrintf("%d: %s (type_ide=%d)\n", class_def_index, descriptor, class_def.class_idx_);
125 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
126 CHECK(oat_class.get() != NULL);
127 DumpOatClass(os, oat_file, *oat_class.get(), *dex_file, class_def);
128 }
129
130 os << std::flush;
131 }
132
133 static void DumpOatClass(std::ostream& os,
134 const OatFile& oat_file,
135 const OatFile::OatClass& oat_class,
136 const DexFile& dex_file,
137 const DexFile::ClassDef& class_def) {
138 const byte* class_data = dex_file.GetClassData(class_def);
139 DexFile::ClassDataHeader header = dex_file.ReadClassDataHeader(&class_data);
140 size_t num_static_fields = header.static_fields_size_;
141 size_t num_instance_fields = header.instance_fields_size_;
142 size_t num_direct_methods = header.direct_methods_size_;
143 size_t num_virtual_methods = header.virtual_methods_size_;
144 uint32_t method_index = 0;
145
146 // just skipping through the fields to advance class_data
147 if (num_static_fields != 0) {
148 uint32_t last_idx = 0;
149 for (size_t i = 0; i < num_static_fields; ++i) {
150 DexFile::Field dex_field;
151 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
152 }
153 }
154 if (num_instance_fields != 0) {
155 uint32_t last_idx = 0;
156 for (size_t i = 0; i < num_instance_fields; ++i) {
157 DexFile::Field dex_field;
158 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
159 }
160 }
161
162 if (num_direct_methods != 0) {
163 uint32_t last_idx = 0;
164 for (size_t i = 0; i < num_direct_methods; ++i, method_index++) {
165 DexFile::Method dex_method;
166 dex_file.dexReadClassDataMethod(&class_data, &dex_method, &last_idx);
167 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
168 DumpOatMethod(os, method_index, oat_file, oat_method, dex_file, dex_method);
169 }
170 }
171 if (num_virtual_methods != 0) {
172 uint32_t last_idx = 0;
173 for (size_t i = 0; i < num_virtual_methods; ++i, method_index++) {
174 DexFile::Method dex_method;
175 dex_file.dexReadClassDataMethod(&class_data, &dex_method, &last_idx);
176 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
177 DumpOatMethod(os, method_index, oat_file, oat_method, dex_file, dex_method);
178 }
179 }
180 os << std::flush;
181 }
182 static void DumpOatMethod(std::ostream& os,
183 uint32_t method_index,
184 const OatFile& oat_file,
185 const OatFile::OatMethod& oat_method,
186 const DexFile& dex_file,
187 const DexFile::Method& dex_method) {
188 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method.method_idx_);
189 const char* name = dex_file.GetMethodName(method_id);
190 std::string signature = dex_file.GetMethodSignature(method_id);
191 os << StringPrintf("\t%d: %s %s (method_idx=%d)\n",
192 method_index, name, signature.c_str(), dex_method.method_idx_);
193 os << StringPrintf("\t\tcode: %p (offset=%08x)\n",
194 oat_method.code_,
195 reinterpret_cast<const byte*>(oat_method.code_) - oat_file.GetBase());
196 os << StringPrintf("\t\tframe_size_in_bytes: %d\n",
197 oat_method.frame_size_in_bytes_);
198 os << StringPrintf("\t\treturn_pc_offset_in_bytes: %d\n",
199 oat_method.return_pc_offset_in_bytes_);
200 os << StringPrintf("\t\tcore_spill_mask: %08x\n",
201 oat_method.core_spill_mask_);
202 os << StringPrintf("\t\tfp_spill_mask: %08x\n",
203 oat_method.fp_spill_mask_);
204 os << StringPrintf("\t\tmapping_table: %p (offset=%08x)\n",
205 oat_method.mapping_table_,
206 reinterpret_cast<const byte*>(oat_method.mapping_table_) - oat_file.GetBase());
207 os << StringPrintf("\t\tvmap_table: %p (offset=%08x)\n",
208 oat_method.vmap_table_,
209 reinterpret_cast<const byte*>(oat_method.vmap_table_) - oat_file.GetBase());
210 os << StringPrintf("\t\tinvoke_stub: %p (offset=%08x)\n",
211 oat_method.invoke_stub_,
212 reinterpret_cast<const byte*>(oat_method.invoke_stub_) - oat_file.GetBase());
213 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700214};
215
216class ImageDump {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700217 public:
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700218 static void Dump(const std::string& image_filename,
Brian Carlstromaded5f72011-10-07 17:15:04 -0700219 const std::string& host_prefix,
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700220 std::ostream& os,
221 Space& image_space,
222 const ImageHeader& image_header) {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700223 os << "MAGIC:\n";
224 os << image_header.GetMagic() << "\n\n";
225
Brian Carlstrome24fa612011-09-29 00:53:55 -0700226 os << "IMAGE BASE:\n";
227 os << reinterpret_cast<void*>(image_header.GetImageBaseAddr()) << "\n\n";
228
Brian Carlstromaded5f72011-10-07 17:15:04 -0700229 os << "OAT CHECKSUM:\n";
230 os << StringPrintf("%08x\n\n", image_header.GetOatChecksum());
231
Brian Carlstrome24fa612011-09-29 00:53:55 -0700232 os << "OAT BASE:\n";
233 os << reinterpret_cast<void*>(image_header.GetOatBaseAddr()) << "\n\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700234
Brian Carlstromaded5f72011-10-07 17:15:04 -0700235 os << "OAT LIMIT:\n";
236 os << reinterpret_cast<void*>(image_header.GetOatLimitAddr()) << "\n\n";
237
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700238 os << "ROOTS:\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700239 os << reinterpret_cast<void*>(image_header.GetImageRoots()) << "\n";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700240 CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700241 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
242 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700243 const char* image_root_description = image_roots_descriptions_[i];
244 Object* image_root_object = image_header.GetImageRoot(image_root);
245 os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
246 if (image_root_object->IsObjectArray()) {
247 // TODO: replace down_cast with AsObjectArray (g++ currently has a problem with this)
248 ObjectArray<Object>* image_root_object_array
249 = down_cast<ObjectArray<Object>*>(image_root_object);
250 // = image_root_object->AsObjectArray<Object>();
251 for (int i = 0; i < image_root_object_array->GetLength(); i++) {
252 os << StringPrintf("\t%d: %p\n", i, image_root_object_array->Get(i));
253 }
254 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700255 }
256 os << "\n";
257
258 os << "OBJECTS:\n" << std::flush;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700259 ImageDump state(image_space, os);
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700260 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
261 DCHECK(heap_bitmap != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700262 heap_bitmap->Walk(ImageDump::Callback, &state);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700263 os << "\n";
264
265 os << "STATS:\n" << std::flush;
266 UniquePtr<File> file(OS::OpenFile(image_filename.c_str(), false));
267 state.stats_.file_bytes = file->Length();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700268 size_t header_bytes = sizeof(ImageHeader);
269 state.stats_.header_bytes = header_bytes;
270 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
271 state.stats_.alignment_bytes += alignment_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700272 state.stats_.Dump(os);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700273 os << "\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700274
275 os << std::flush;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700276
277 os << "OAT LOCATION:\n" << std::flush;
278 Object* oat_location_object = image_header.GetImageRoot(ImageHeader::kOatLocation);
279 std::string oat_location = oat_location_object->AsString()->ToModifiedUtf8();
280 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
281 os << oat_location;
282 if (!host_prefix.empty()) {
283 oat_location = host_prefix + oat_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700284 os << " (" << oat_location << ")";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700285 }
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700286 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700287 const OatFile* oat_file = class_linker->FindOatFile(oat_location);
288 if (oat_file == NULL) {
289 os << "NOT FOUND\n";
290 os << std::flush;
291 return;
292 }
293 os << "\n";
294 os << std::flush;
295
296 OatDump::Dump(oat_location, host_prefix, os, *oat_file);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700297 }
298
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700299 private:
300
Brian Carlstromaded5f72011-10-07 17:15:04 -0700301 ImageDump(const Space& dump_space, std::ostream& os) : dump_space_(dump_space), os_(os) {}
Elliott Hughesd1bb4f62011-09-23 14:09:45 -0700302
Brian Carlstromaded5f72011-10-07 17:15:04 -0700303 ~ImageDump() {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700304
Brian Carlstrom78128a62011-09-15 17:21:19 -0700305 static void Callback(Object* obj, void* arg) {
306 DCHECK(obj != NULL);
307 DCHECK(arg != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700308 ImageDump* state = reinterpret_cast<ImageDump*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700309 if (!state->InDumpSpace(obj)) {
310 return;
311 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700312
313 size_t object_bytes = obj->SizeOf();
314 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
315 state->stats_.object_bytes += object_bytes;
316 state->stats_.alignment_bytes += alignment_bytes;
317
Brian Carlstrom78128a62011-09-15 17:21:19 -0700318 std::string summary;
319 StringAppendF(&summary, "%p: ", obj);
320 if (obj->IsClass()) {
321 Class* klass = obj->AsClass();
322 StringAppendF(&summary, "CLASS %s", klass->GetDescriptor()->ToModifiedUtf8().c_str());
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700323 std::ostringstream ss;
Brian Carlstrome10b6972011-09-26 13:49:03 -0700324 ss << " (" << klass->GetStatus() << ")";
325 summary += ss.str();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700326 } else if (obj->IsMethod()) {
327 Method* method = obj->AsMethod();
328 StringAppendF(&summary, "METHOD %s", PrettyMethod(method).c_str());
329 } else if (obj->IsField()) {
330 Field* field = obj->AsField();
331 Class* type = field->GetType();
332 std::string type_string;
333 type_string += (type == NULL) ? "<UNKNOWN>" : type->GetDescriptor()->ToModifiedUtf8();
334 StringAppendF(&summary, "FIELD %s", PrettyField(field).c_str());
335 } else if (obj->IsArrayInstance()) {
336 StringAppendF(&summary, "ARRAY %d", obj->AsArray()->GetLength());
337 } else if (obj->IsString()) {
338 StringAppendF(&summary, "STRING %s", obj->AsString()->ToModifiedUtf8().c_str());
339 } else {
340 StringAppendF(&summary, "OBJECT");
341 }
342 StringAppendF(&summary, "\n");
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700343 std::string descriptor = obj->GetClass()->GetDescriptor()->ToModifiedUtf8();
344 StringAppendF(&summary, "\tclass %p: %s\n", obj->GetClass(), descriptor.c_str());
345 state->stats_.descriptor_to_bytes[descriptor] += object_bytes;
346 state->stats_.descriptor_to_count[descriptor] += 1;
347 // StringAppendF(&summary, "\tsize %d (alignment padding %d)\n",
348 // object_bytes, RoundUp(object_bytes, kObjectAlignment) - object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700349 if (obj->IsMethod()) {
350 Method* method = obj->AsMethod();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700351 if (!method->IsCalleeSaveMethod()) {
352 const int8_t* code =reinterpret_cast<const int8_t*>(method->GetCode());
353 StringAppendF(&summary, "\tCODE %p\n", code);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700354
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700355 const Method::InvokeStub* invoke_stub = method->GetInvokeStub();
356 StringAppendF(&summary, "\tJNI STUB %p\n", invoke_stub);
Ian Rogersff1ed472011-09-20 13:46:24 -0700357 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700358 if (method->IsNative()) {
359 if (method->IsRegistered()) {
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700360 StringAppendF(&summary, "\tNATIVE REGISTERED %p\n", method->GetNativeMethod());
Brian Carlstrom78128a62011-09-15 17:21:19 -0700361 } else {
362 StringAppendF(&summary, "\tNATIVE UNREGISTERED\n");
363 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700364 DCHECK(method->GetGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700365 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700366 } else if (method->IsAbstract()) {
367 StringAppendF(&summary, "\tABSTRACT\n");
Ian Rogersd81871c2011-10-03 13:57:23 -0700368 DCHECK(method->GetGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700369 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
370 } else if (method->IsCalleeSaveMethod()) {
371 StringAppendF(&summary, "\tCALLEE SAVE METHOD\n");
Ian Rogersd81871c2011-10-03 13:57:23 -0700372 DCHECK(method->GetGcMap() == NULL) << PrettyMethod(method);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700373 DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700374 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -0700375 size_t register_map_bytes = method->GetGcMap()->SizeOf();
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700376 state->stats_.register_map_bytes += register_map_bytes;
377
Brian Carlstrome10b6972011-09-26 13:49:03 -0700378 if (method->GetMappingTable() != NULL) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700379 size_t pc_mapping_table_bytes = method->GetMappingTableLength();
Brian Carlstrome10b6972011-09-26 13:49:03 -0700380 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
381 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700382
383 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
384 class DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache();
385 const DexFile& dex_file = class_linker->FindDexFile(dex_cache);
386 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
Ian Rogersd81871c2011-10-03 13:57:23 -0700387 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700388 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700389 }
390 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700391 state->os_ << summary << std::flush;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700392 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700393
394 bool InDumpSpace(const Object* object) {
395 const byte* o = reinterpret_cast<const byte*>(object);
396 return (o >= dump_space_.GetBase() && o < dump_space_.GetLimit());
397 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700398
399 public:
400 struct Stats {
401 size_t file_bytes;
402
403 size_t header_bytes;
404 size_t object_bytes;
405 size_t alignment_bytes;
406
407 size_t managed_code_bytes;
408 size_t managed_to_native_code_bytes;
409 size_t native_to_managed_code_bytes;
410
411 size_t register_map_bytes;
412 size_t pc_mapping_table_bytes;
413
414 size_t dex_instruction_bytes;
415
416 Stats()
417 : file_bytes(0),
418 header_bytes(0),
419 object_bytes(0),
420 alignment_bytes(0),
421 managed_code_bytes(0),
422 managed_to_native_code_bytes(0),
423 native_to_managed_code_bytes(0),
424 register_map_bytes(0),
425 pc_mapping_table_bytes(0),
426 dex_instruction_bytes(0) {}
427
428 typedef std::tr1::unordered_map<std::string,size_t> TableBytes;
429 TableBytes descriptor_to_bytes;
430
431 typedef std::tr1::unordered_map<std::string,size_t> TableCount;
432 TableCount descriptor_to_count;
433
434 double PercentOfFileBytes(size_t size) {
435 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
436 }
437
438 double PercentOfObjectBytes(size_t size) {
439 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
440 }
441
442 void Dump(std::ostream& os) {
443 os << StringPrintf("\tfile_bytes = %d\n", file_bytes);
444 os << "\n";
445
446 os << "\tfile_bytes = header_bytes + object_bytes + alignment_bytes\n";
447 os << StringPrintf("\theader_bytes = %10d (%2.0f%% of file_bytes)\n",
448 header_bytes, PercentOfFileBytes(header_bytes));
449 os << StringPrintf("\tobject_bytes = %10d (%2.0f%% of file_bytes)\n",
450 object_bytes, PercentOfFileBytes(object_bytes));
451 os << StringPrintf("\talignment_bytes = %10d (%2.0f%% of file_bytes)\n",
452 alignment_bytes, PercentOfFileBytes(alignment_bytes));
453 os << "\n";
454 os << std::flush;
455 CHECK_EQ(file_bytes, header_bytes + object_bytes + alignment_bytes);
456
457 os << "\tobject_bytes = sum of descriptor_to_bytes values below:\n";
458 size_t object_bytes_total = 0;
459 typedef TableBytes::const_iterator It; // TODO: C++0x auto
460 for (It it = descriptor_to_bytes.begin(), end = descriptor_to_bytes.end(); it != end; ++it) {
461 const std::string& descriptor = it->first;
462 size_t bytes = it->second;
463 size_t count = descriptor_to_count[descriptor];
464 double average = static_cast<double>(bytes) / static_cast<double>(count);
465 double percent = PercentOfObjectBytes(bytes);
Brian Carlstromf153fe12011-09-27 16:27:12 -0700466 os << StringPrintf("\t%32s %8d bytes %6d instances "
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700467 "(%3.0f bytes/instance) %2.0f%% of object_bytes\n",
468 descriptor.c_str(), bytes, count,
469 average, percent);
470
471 object_bytes_total += bytes;
472 }
473 os << "\n";
474 os << std::flush;
475 CHECK_EQ(object_bytes, object_bytes_total);
476
477 os << StringPrintf("\tmanaged_code_bytes = %8d (%2.0f%% of object_bytes)\n",
478 managed_code_bytes, PercentOfObjectBytes(managed_code_bytes));
479 os << StringPrintf("\tmanaged_to_native_code_bytes = %8d (%2.0f%% of object_bytes)\n",
480 managed_to_native_code_bytes,
481 PercentOfObjectBytes(managed_to_native_code_bytes));
482 os << StringPrintf("\tnative_to_managed_code_bytes = %8d (%2.0f%% of object_bytes)\n",
483 native_to_managed_code_bytes,
484 PercentOfObjectBytes(native_to_managed_code_bytes));
485 os << "\n";
486 os << std::flush;
487
488 os << StringPrintf("\tregister_map_bytes = %7d (%2.0f%% of object_bytes)\n",
489 register_map_bytes, PercentOfObjectBytes(register_map_bytes));
490 os << StringPrintf("\tpc_mapping_table_bytes = %7d (%2.0f%% of object_bytes)\n",
491 pc_mapping_table_bytes, PercentOfObjectBytes(pc_mapping_table_bytes));
492 os << "\n";
493 os << std::flush;
494
495 os << StringPrintf("\tdex_instruction_bytes = %d\n", dex_instruction_bytes);
496 os << StringPrintf("\tmanaged_code_bytes expansion = %.2f\n",
497 static_cast<double>(managed_code_bytes)
498 / static_cast<double>(dex_instruction_bytes));
499 os << "\n";
500 os << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -0700501 }
502 } stats_;
503
504 private:
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700505 const Space& dump_space_;
506 std::ostream& os_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -0700507
Brian Carlstromaded5f72011-10-07 17:15:04 -0700508 DISALLOW_COPY_AND_ASSIGN(ImageDump);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700509};
510
511int oatdump(int argc, char** argv) {
512 // Skip over argv[0].
513 argv++;
514 argc--;
515
516 if (argc == 0) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700517 fprintf(stderr, "No arguments specified\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -0700518 usage();
519 }
520
Brian Carlstromaded5f72011-10-07 17:15:04 -0700521 const char* oat_filename = NULL;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700522 const char* image_filename = NULL;
523 const char* boot_image_filename = NULL;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700524 std::string host_prefix;
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700525 std::ostream* os = &std::cout;
526 UniquePtr<std::ofstream> out;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700527
528 for (int i = 0; i < argc; i++) {
529 const StringPiece option(argv[i]);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700530 if (option.starts_with("--oat=")) {
531 oat_filename = option.substr(strlen("--oat=")).data();
532 } else if (option.starts_with("--image=")) {
Brian Carlstrom78128a62011-09-15 17:21:19 -0700533 image_filename = option.substr(strlen("--image=")).data();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700534 } else if (option.starts_with("--boot-image=")) {
535 boot_image_filename = option.substr(strlen("--boot-image=")).data();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700536 } else if (option.starts_with("--host-prefix=")) {
537 host_prefix = option.substr(strlen("--host-prefix=")).data();
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700538 } else if (option.starts_with("--output=")) {
539 const char* filename = option.substr(strlen("--output=")).data();
540 out.reset(new std::ofstream(filename));
541 if (!out->good()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700542 fprintf(stderr, "Failed to open output filename %s\n", filename);
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700543 usage();
544 }
545 os = out.get();
Brian Carlstrom78128a62011-09-15 17:21:19 -0700546 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700547 fprintf(stderr, "Unknown argument %s\n", option.data());
Brian Carlstrom78128a62011-09-15 17:21:19 -0700548 usage();
549 }
550 }
551
Brian Carlstromaded5f72011-10-07 17:15:04 -0700552 if (image_filename == NULL && oat_filename == NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700553 fprintf(stderr, "Either --image or --oat must be specified\n");
554 return EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700555 }
556
Brian Carlstromaded5f72011-10-07 17:15:04 -0700557 if (image_filename != NULL && oat_filename != NULL) {
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700558 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
559 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700560 }
561
562 if (oat_filename != NULL) {
563 const OatFile* oat_file = OatFile::Open(oat_filename, "", NULL);
564 if (oat_file == NULL) {
565 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);
566 return EXIT_FAILURE;
567 }
568 OatDump::Dump(oat_filename, host_prefix, *os, *oat_file);
569 return EXIT_SUCCESS;
570 }
571
Brian Carlstrom78128a62011-09-15 17:21:19 -0700572 Runtime::Options options;
573 std::string image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700574 std::string oat_option;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700575 std::string boot_image_option;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700576 std::string boot_oat_option;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700577 if (boot_image_filename != NULL) {
578 boot_image_option += "-Ximage:";
579 boot_image_option += boot_image_filename;
580 options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom78128a62011-09-15 17:21:19 -0700581 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700582 if (image_filename != NULL) {
583 image_option += "-Ximage:";
584 image_option += image_filename;
585 options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
586 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700587
588 if (!host_prefix.empty()) {
589 options.push_back(std::make_pair("host-prefix", host_prefix.c_str()));
590 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700591
592 UniquePtr<Runtime> runtime(Runtime::Create(options, false));
593 if (runtime.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700594 fprintf(stderr, "Failed to create runtime\n");
Brian Carlstrom78128a62011-09-15 17:21:19 -0700595 return EXIT_FAILURE;
596 }
Brian Carlstrom78128a62011-09-15 17:21:19 -0700597
598 Space* image_space = Heap::GetSpaces()[Heap::GetSpaces().size()-2];
599 CHECK(image_space != NULL);
600 const ImageHeader& image_header = image_space->GetImageHeader();
601 if (!image_header.IsValid()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700602 fprintf(stderr, "Invalid image header %s\n", image_filename);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700603 return EXIT_FAILURE;
604 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700605 ImageDump::Dump(image_filename, host_prefix, *os, *image_space, image_header);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700606 return EXIT_SUCCESS;
607}
608
609} // namespace art
610
611int main(int argc, char** argv) {
612 return art::oatdump(argc, argv);
613}