oatdump.cc revision ef7d42fca18c16fbaf103822ad16f23246e2905d
1/*
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 */
16
17#include <stdio.h>
18#include <stdlib.h>
19
20#include <fstream>
21#include <iostream>
22#include <string>
23#include <vector>
24
25#include "base/stringpiece.h"
26#include "base/unix_file/fd_file.h"
27#include "class_linker.h"
28#include "class_linker-inl.h"
29#include "compiler_callbacks.h"
30#include "dex_file-inl.h"
31#include "dex_instruction.h"
32#include "disassembler.h"
33#include "gc_map.h"
34#include "gc/space/image_space.h"
35#include "gc/space/large_object_space.h"
36#include "gc/space/space-inl.h"
37#include "image.h"
38#include "indenter.h"
39#include "mapping_table.h"
40#include "mirror/art_field-inl.h"
41#include "mirror/art_method-inl.h"
42#include "mirror/array-inl.h"
43#include "mirror/class-inl.h"
44#include "mirror/object-inl.h"
45#include "mirror/object_array-inl.h"
46#include "oat.h"
47#include "object_utils.h"
48#include "os.h"
49#include "runtime.h"
50#include "safe_map.h"
51#include "scoped_thread_state_change.h"
52#include "verifier/dex_gc_map.h"
53#include "verifier/method_verifier.h"
54#include "vmap_table.h"
55
56namespace art {
57
58static void usage() {
59  fprintf(stderr,
60          "Usage: oatdump [options] ...\n"
61          "    Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art --host-prefix=$ANDROID_PRODUCT_OUT\n"
62          "    Example: adb shell oatdump --image=/system/framework/boot.art\n"
63          "\n");
64  fprintf(stderr,
65          "  --oat-file=<file.oat>: specifies an input oat filename.\n"
66          "      Example: --oat-file=/system/framework/boot.oat\n"
67          "\n");
68  fprintf(stderr,
69          "  --image=<file.art>: specifies an input image filename.\n"
70          "      Example: --image=/system/framework/boot.art\n"
71          "\n");
72  fprintf(stderr,
73          "  --boot-image=<file.art>: provide the image file for the boot class path.\n"
74          "      Example: --boot-image=/system/framework/boot.art\n"
75          "\n");
76  fprintf(stderr,
77          "  --host-prefix may be used to translate host paths to target paths during\n"
78          "      cross compilation.\n"
79          "      Example: --host-prefix=out/target/product/crespo\n"
80          "      Default: $ANDROID_PRODUCT_OUT\n"
81          "\n");
82  fprintf(stderr,
83          "  --output=<file> may be used to send the output to a file.\n"
84          "      Example: --output=/tmp/oatdump.txt\n"
85          "\n");
86  exit(EXIT_FAILURE);
87}
88
89const char* image_roots_descriptions_[] = {
90  "kResolutionMethod",
91  "kImtConflictMethod",
92  "kDefaultImt",
93  "kCalleeSaveMethod",
94  "kRefsOnlySaveMethod",
95  "kRefsAndArgsSaveMethod",
96  "kOatLocation",
97  "kDexCaches",
98  "kClassRoots",
99};
100
101class OatDumper {
102 public:
103  explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file)
104    : host_prefix_(host_prefix),
105      oat_file_(oat_file),
106      oat_dex_files_(oat_file.GetOatDexFiles()),
107      disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) {
108    AddAllOffsets();
109  }
110
111  void Dump(std::ostream& os) {
112    const OatHeader& oat_header = oat_file_.GetOatHeader();
113
114    os << "MAGIC:\n";
115    os << oat_header.GetMagic() << "\n\n";
116
117    os << "CHECKSUM:\n";
118    os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
119
120    os << "INSTRUCTION SET:\n";
121    os << oat_header.GetInstructionSet() << "\n\n";
122
123    os << "INSTRUCTION SET FEATURES:\n";
124    os << oat_header.GetInstructionSetFeatures().GetFeatureString() << "\n\n";
125
126    os << "DEX FILE COUNT:\n";
127    os << oat_header.GetDexFileCount() << "\n\n";
128
129    os << "EXECUTABLE OFFSET:\n";
130    os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
131
132    os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
133    os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
134
135    os << "IMAGE FILE LOCATION OAT BEGIN:\n";
136    os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
137
138    os << "IMAGE FILE LOCATION:\n";
139    const std::string image_file_location(oat_header.GetImageFileLocation());
140    os << image_file_location;
141    if (!image_file_location.empty() && !host_prefix_.empty()) {
142      os << " (" << host_prefix_ << image_file_location << ")";
143    }
144    os << "\n\n";
145
146    os << "BEGIN:\n";
147    os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
148
149    os << "END:\n";
150    os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
151
152    os << std::flush;
153
154    for (size_t i = 0; i < oat_dex_files_.size(); i++) {
155      const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
156      CHECK(oat_dex_file != NULL);
157      DumpOatDexFile(os, *oat_dex_file);
158    }
159  }
160
161  size_t ComputeSize(const void* oat_data) {
162    if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
163        reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
164      return 0;  // Address not in oat file
165    }
166    uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
167                             reinterpret_cast<uintptr_t>(oat_file_.Begin());
168    auto it = offsets_.upper_bound(begin_offset);
169    CHECK(it != offsets_.end());
170    uintptr_t end_offset = *it;
171    return end_offset - begin_offset;
172  }
173
174  InstructionSet GetInstructionSet() {
175    return oat_file_.GetOatHeader().GetInstructionSet();
176  }
177
178  const void* GetQuickOatCode(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
179    MethodHelper mh(m);
180    for (size_t i = 0; i < oat_dex_files_.size(); i++) {
181      const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
182      CHECK(oat_dex_file != nullptr);
183      std::string error_msg;
184      UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
185      if (dex_file.get() == nullptr) {
186        LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
187            << "': " << error_msg;
188      } else {
189        const DexFile::ClassDef* class_def =
190            dex_file->FindClassDef(mh.GetDeclaringClassDescriptor());
191        if (class_def != NULL) {
192          uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
193          const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
194          CHECK(oat_class != NULL);
195          size_t method_index = m->GetMethodIndex();
196          return oat_class->GetOatMethod(method_index).GetQuickCode();
197        }
198      }
199    }
200    return NULL;
201  }
202
203 private:
204  void AddAllOffsets() {
205    // We don't know the length of the code for each method, but we need to know where to stop
206    // when disassembling. What we do know is that a region of code will be followed by some other
207    // region, so if we keep a sorted sequence of the start of each region, we can infer the length
208    // of a piece of code by using upper_bound to find the start of the next region.
209    for (size_t i = 0; i < oat_dex_files_.size(); i++) {
210      const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
211      CHECK(oat_dex_file != NULL);
212      std::string error_msg;
213      UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
214      if (dex_file.get() == nullptr) {
215        LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
216            << "': " << error_msg;
217        continue;
218      }
219      offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
220      for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
221        const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
222        UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
223        const byte* class_data = dex_file->GetClassData(class_def);
224        if (class_data != NULL) {
225          ClassDataItemIterator it(*dex_file, class_data);
226          SkipAllFields(it);
227          uint32_t class_method_index = 0;
228          while (it.HasNextDirectMethod()) {
229            AddOffsets(oat_class->GetOatMethod(class_method_index++));
230            it.Next();
231          }
232          while (it.HasNextVirtualMethod()) {
233            AddOffsets(oat_class->GetOatMethod(class_method_index++));
234            it.Next();
235          }
236        }
237      }
238    }
239
240    // If the last thing in the file is code for a method, there won't be an offset for the "next"
241    // thing. Instead of having a special case in the upper_bound code, let's just add an entry
242    // for the end of the file.
243    offsets_.insert(oat_file_.Size());
244  }
245
246  void AddOffsets(const OatFile::OatMethod& oat_method) {
247    uint32_t code_offset = oat_method.GetCodeOffset();
248    if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
249      code_offset &= ~0x1;
250    }
251    offsets_.insert(code_offset);
252    offsets_.insert(oat_method.GetMappingTableOffset());
253    offsets_.insert(oat_method.GetVmapTableOffset());
254    offsets_.insert(oat_method.GetNativeGcMapOffset());
255  }
256
257  void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
258    os << "OAT DEX FILE:\n";
259    os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
260    os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
261
262    // Create the verifier early.
263
264    std::string error_msg;
265    UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
266    if (dex_file.get() == NULL) {
267      os << "NOT FOUND: " << error_msg << "\n\n";
268      return;
269    }
270    for (size_t class_def_index = 0; class_def_index < dex_file->NumClassDefs(); class_def_index++) {
271      const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
272      const char* descriptor = dex_file->GetClassDescriptor(class_def);
273      UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
274      CHECK(oat_class.get() != NULL);
275      os << StringPrintf("%zd: %s (type_idx=%d)", class_def_index, descriptor, class_def.class_idx_)
276         << " (" << oat_class->GetStatus() << ")"
277         << " (" << oat_class->GetType() << ")\n";
278      // TODO: include bitmap here if type is kOatClassBitmap?
279      Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
280      std::ostream indented_os(&indent_filter);
281      DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);
282    }
283
284    os << std::flush;
285  }
286
287  static void SkipAllFields(ClassDataItemIterator& it) {
288    while (it.HasNextStaticField()) {
289      it.Next();
290    }
291    while (it.HasNextInstanceField()) {
292      it.Next();
293    }
294  }
295
296  void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
297                    const DexFile::ClassDef& class_def) {
298    const byte* class_data = dex_file.GetClassData(class_def);
299    if (class_data == NULL) {  // empty class such as a marker interface?
300      return;
301    }
302    ClassDataItemIterator it(dex_file, class_data);
303    SkipAllFields(it);
304    uint32_t class_method_idx = 0;
305    while (it.HasNextDirectMethod()) {
306      const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
307      DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
308                    it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
309      class_method_idx++;
310      it.Next();
311    }
312    while (it.HasNextVirtualMethod()) {
313      const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
314      DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
315                    it.GetMemberIndex(), it.GetMethodCodeItem(), it.GetMemberAccessFlags());
316      class_method_idx++;
317      it.Next();
318    }
319    DCHECK(!it.HasNext());
320    os << std::flush;
321  }
322
323  void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
324                     uint32_t class_method_index,
325                     const OatFile::OatMethod& oat_method, const DexFile& dex_file,
326                     uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
327                     uint32_t method_access_flags) {
328    os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
329                       class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
330                       dex_method_idx);
331    Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
332    std::ostream indent1_os(&indent1_filter);
333    {
334      indent1_os << "DEX CODE:\n";
335      Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
336      std::ostream indent2_os(&indent2_filter);
337      DumpDexCode(indent2_os, dex_file, code_item);
338    }
339    if (Runtime::Current() != NULL) {
340      indent1_os << "VERIFIER TYPE ANALYSIS:\n";
341      Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
342      std::ostream indent2_os(&indent2_filter);
343      DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item,
344                   method_access_flags);
345    }
346    {
347      indent1_os << "OAT DATA:\n";
348      Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
349      std::ostream indent2_os(&indent2_filter);
350
351      indent2_os << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
352      indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
353      DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
354      indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
355      DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true);
356      indent2_os << StringPrintf("\nvmap_table: %p (offset=0x%08x)\n",
357                                 oat_method.GetVmapTable(), oat_method.GetVmapTableOffset());
358      DumpVmap(indent2_os, oat_method);
359      indent2_os << StringPrintf("mapping_table: %p (offset=0x%08x)\n",
360                                 oat_method.GetMappingTable(), oat_method.GetMappingTableOffset());
361      const bool kDumpRawMappingTable = false;
362      if (kDumpRawMappingTable) {
363        Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
364        std::ostream indent3_os(&indent3_filter);
365        DumpMappingTable(indent3_os, oat_method);
366      }
367      indent2_os << StringPrintf("gc_map: %p (offset=0x%08x)\n",
368                                 oat_method.GetNativeGcMap(), oat_method.GetNativeGcMapOffset());
369      const bool kDumpRawGcMap = false;
370      if (kDumpRawGcMap) {
371        Indenter indent3_filter(indent2_os.rdbuf(), kIndentChar, kIndentBy1Count);
372        std::ostream indent3_os(&indent3_filter);
373        DumpGcMap(indent3_os, oat_method, code_item);
374      }
375    }
376    {
377      const void* code = oat_method.GetQuickCode();
378      uint32_t code_size = oat_method.GetQuickCodeSize();
379      if (code == nullptr) {
380        code = oat_method.GetPortableCode();
381        code_size = oat_method.GetPortableCodeSize();
382      }
383      indent1_os << StringPrintf("CODE: %p (offset=0x%08x size=%d)%s\n",
384                                 code,
385                                 oat_method.GetCodeOffset(),
386                                 code_size,
387                                 code != nullptr ? "..." : "");
388      Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
389      std::ostream indent2_os(&indent2_filter);
390
391      Runtime* runtime = Runtime::Current();
392      if (runtime != nullptr) {
393        ScopedObjectAccess soa(Thread::Current());
394        SirtRef<mirror::DexCache> dex_cache(
395            soa.Self(), runtime->GetClassLinker()->FindDexCache(dex_file));
396        SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
397        verifier::MethodVerifier verifier(&dex_file, &dex_cache, &class_loader, &class_def, code_item,
398                                          dex_method_idx, nullptr, method_access_flags, true, true);
399        verifier.Verify();
400        DumpCode(indent2_os, &verifier, oat_method, code_item);
401      } else {
402        DumpCode(indent2_os, nullptr, oat_method, code_item);
403      }
404    }
405  }
406
407  void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
408    if (spill_mask == 0) {
409      return;
410    }
411    os << "(";
412    for (size_t i = 0; i < 32; i++) {
413      if ((spill_mask & (1 << i)) != 0) {
414        if (is_float) {
415          os << "fr" << i;
416        } else {
417          os << "r" << i;
418        }
419        spill_mask ^= 1 << i;  // clear bit
420        if (spill_mask != 0) {
421          os << ", ";
422        } else {
423          break;
424        }
425      }
426    }
427    os << ")";
428  }
429
430  void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) {
431    const uint8_t* raw_table = oat_method.GetVmapTable();
432    if (raw_table != NULL) {
433      const VmapTable vmap_table(raw_table);
434      bool first = true;
435      bool processing_fp = false;
436      uint32_t spill_mask = oat_method.GetCoreSpillMask();
437      for (size_t i = 0; i < vmap_table.Size(); i++) {
438        uint16_t dex_reg = vmap_table[i];
439        uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
440                                                      processing_fp ? kFloatVReg : kIntVReg);
441        os << (first ? "v" : ", v")  << dex_reg;
442        if (!processing_fp) {
443          os << "/r" << cpu_reg;
444        } else {
445          os << "/fr" << cpu_reg;
446        }
447        first = false;
448        if (!processing_fp && dex_reg == 0xFFFF) {
449          processing_fp = true;
450          spill_mask = oat_method.GetFpSpillMask();
451        }
452      }
453      os << "\n";
454    }
455  }
456
457  void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
458                    const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
459    const uint8_t* raw_table = oat_method.GetVmapTable();
460    if (raw_table != NULL) {
461      const VmapTable vmap_table(raw_table);
462      uint32_t vmap_offset;
463      if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
464        bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
465        uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
466                                       : oat_method.GetCoreSpillMask();
467        os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
468      } else {
469        uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
470                                                      oat_method.GetFpSpillMask(),
471                                                      oat_method.GetFrameSizeInBytes(), reg);
472        os << "[sp + #" << offset << "]";
473      }
474    }
475  }
476
477  void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
478                          const DexFile::CodeItem* code_item,
479                          size_t num_regs, const uint8_t* reg_bitmap) {
480    bool first = true;
481    for (size_t reg = 0; reg < num_regs; reg++) {
482      if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
483        if (first) {
484          os << "  v" << reg << " (";
485          DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
486          os << ")";
487          first = false;
488        } else {
489          os << ", v" << reg << " (";
490          DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
491          os << ")";
492        }
493      }
494    }
495    if (first) {
496      os << "No registers in GC map\n";
497    } else {
498      os << "\n";
499    }
500  }
501  void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
502                 const DexFile::CodeItem* code_item) {
503    const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
504    if (gc_map_raw == nullptr) {
505      return;  // No GC map.
506    }
507    const void* quick_code = oat_method.GetQuickCode();
508    if (quick_code != nullptr) {
509      NativePcOffsetToReferenceMap map(gc_map_raw);
510      for (size_t entry = 0; entry < map.NumEntries(); entry++) {
511        const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
512            map.GetNativePcOffset(entry);
513        os << StringPrintf("%p", native_pc);
514        DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
515      }
516    } else {
517      const void* portable_code = oat_method.GetPortableCode();
518      CHECK(portable_code != nullptr);
519      verifier::DexPcToReferenceMap map(gc_map_raw);
520      for (size_t entry = 0; entry < map.NumEntries(); entry++) {
521        uint32_t dex_pc = map.GetDexPc(entry);
522        os << StringPrintf("0x%08x", dex_pc);
523        DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
524      }
525    }
526  }
527
528  void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) {
529    const void* quick_code = oat_method.GetQuickCode();
530    if (quick_code == nullptr) {
531      return;
532    }
533    MappingTable table(oat_method.GetMappingTable());
534    if (table.TotalSize() != 0) {
535      Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
536      std::ostream indent_os(&indent_filter);
537      if (table.PcToDexSize() != 0) {
538        typedef MappingTable::PcToDexIterator It;
539        os << "suspend point mappings {\n";
540        for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
541          indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
542        }
543        os << "}\n";
544      }
545      if (table.DexToPcSize() != 0) {
546        typedef MappingTable::DexToPcIterator It;
547        os << "catch entry mappings {\n";
548        for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
549          indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
550        }
551        os << "}\n";
552      }
553    }
554  }
555
556  uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
557                               size_t offset, bool suspend_point_mapping) {
558    MappingTable table(oat_method.GetMappingTable());
559    if (suspend_point_mapping && table.PcToDexSize() > 0) {
560      typedef MappingTable::PcToDexIterator It;
561      for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
562        if (offset == cur.NativePcOffset()) {
563          os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
564          return cur.DexPc();
565        }
566      }
567    } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
568      typedef MappingTable::DexToPcIterator It;
569      for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
570        if (offset == cur.NativePcOffset()) {
571          os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
572          return cur.DexPc();
573        }
574      }
575    }
576    return DexFile::kDexNoIndex;
577  }
578
579  void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
580                                 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
581    const uint8_t* gc_map_raw = oat_method.GetNativeGcMap();
582    if (gc_map_raw != NULL) {
583      NativePcOffsetToReferenceMap map(gc_map_raw);
584      if (map.HasEntry(native_pc_offset)) {
585        size_t num_regs = map.RegWidth() * 8;
586        const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
587        bool first = true;
588        for (size_t reg = 0; reg < num_regs; reg++) {
589          if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
590            if (first) {
591              os << "GC map objects:  v" << reg << " (";
592              DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
593              os << ")";
594              first = false;
595            } else {
596              os << ", v" << reg << " (";
597              DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
598              os << ")";
599            }
600          }
601        }
602        if (!first) {
603          os << "\n";
604        }
605      }
606    }
607  }
608
609  void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
610                        const OatFile::OatMethod& oat_method,
611                        const DexFile::CodeItem* code_item, uint32_t dex_pc) {
612    DCHECK(verifier != nullptr);
613    std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
614    bool first = true;
615    for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
616      VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
617      if (kind != kUndefined) {
618        if (first) {
619          os << "VRegs:  v";
620          first = false;
621        } else {
622          os << ", v";
623        }
624        os << reg << " (";
625        switch (kind) {
626          case kImpreciseConstant:
627            os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
628            DescribeVReg(os, oat_method, code_item, reg, kind);
629            break;
630          case kConstant:
631            os << "Constant: " << kinds.at((reg * 2) + 1);
632            break;
633          default:
634            DescribeVReg(os, oat_method, code_item, reg, kind);
635            break;
636        }
637        os << ")";
638      }
639    }
640    if (!first) {
641      os << "\n";
642    }
643  }
644
645
646  void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
647    if (code_item != NULL) {
648      size_t i = 0;
649      while (i < code_item->insns_size_in_code_units_) {
650        const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
651        os << StringPrintf("0x%04zx: %s\n", i, instruction->DumpString(&dex_file).c_str());
652        i += instruction->SizeInCodeUnits();
653      }
654    }
655  }
656
657  void DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file,
658                    const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
659                    uint32_t method_access_flags) {
660    if ((method_access_flags & kAccNative) == 0) {
661      ScopedObjectAccess soa(Thread::Current());
662      SirtRef<mirror::DexCache> dex_cache(soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(*dex_file));
663      SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
664      verifier::MethodVerifier::VerifyMethodAndDump(os, dex_method_idx, dex_file, dex_cache,
665                                                    class_loader, &class_def, code_item, NULL,
666                                                    method_access_flags);
667    }
668  }
669
670  void DumpCode(std::ostream& os, verifier::MethodVerifier* verifier,
671                const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) {
672    const void* portable_code = oat_method.GetPortableCode();
673    const void* quick_code = oat_method.GetQuickCode();
674
675    size_t code_size = oat_method.GetQuickCodeSize();
676    if ((code_size == 0) || ((portable_code == nullptr) && (quick_code == nullptr))) {
677      os << "NO CODE!\n";
678      return;
679    } else if (quick_code != nullptr) {
680      const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
681      size_t offset = 0;
682      while (offset < code_size) {
683        DumpMappingAtOffset(os, oat_method, offset, false);
684        offset += disassembler_->Dump(os, quick_native_pc + offset);
685        uint32_t dex_pc = DumpMappingAtOffset(os, oat_method, offset, true);
686        if (dex_pc != DexFile::kDexNoIndex) {
687          DumpGcMapAtNativePcOffset(os, oat_method, code_item, offset);
688          if (verifier != nullptr) {
689            DumpVRegsAtDexPc(os, verifier, oat_method, code_item, dex_pc);
690          }
691        }
692      }
693    } else {
694      CHECK(portable_code != nullptr);
695      CHECK_EQ(code_size, 0U);  // TODO: disassembly of portable is currently not supported.
696    }
697  }
698
699  const std::string host_prefix_;
700  const OatFile& oat_file_;
701  std::vector<const OatFile::OatDexFile*> oat_dex_files_;
702  std::set<uintptr_t> offsets_;
703  UniquePtr<Disassembler> disassembler_;
704};
705
706class ImageDumper {
707 public:
708  explicit ImageDumper(std::ostream* os, const std::string& image_filename,
709                       const std::string& host_prefix, gc::space::ImageSpace& image_space,
710                       const ImageHeader& image_header)
711      : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
712        image_space_(image_space), image_header_(image_header) {}
713
714  void Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
715    std::ostream& os = *os_;
716    os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
717
718    os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
719
720    os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset())
721       << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n";
722
723    os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
724
725    os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
726
727    os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
728
729    os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
730
731    os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
732
733    {
734      os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
735      Indenter indent1_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
736      std::ostream indent1_os(&indent1_filter);
737      CHECK_EQ(arraysize(image_roots_descriptions_), size_t(ImageHeader::kImageRootsMax));
738      for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
739        ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
740        const char* image_root_description = image_roots_descriptions_[i];
741        mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
742        indent1_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
743        if (image_root_object->IsObjectArray()) {
744          Indenter indent2_filter(indent1_os.rdbuf(), kIndentChar, kIndentBy1Count);
745          std::ostream indent2_os(&indent2_filter);
746          mirror::ObjectArray<mirror::Object>* image_root_object_array
747              = image_root_object->AsObjectArray<mirror::Object>();
748          for (int i = 0; i < image_root_object_array->GetLength(); i++) {
749            mirror::Object* value = image_root_object_array->Get(i);
750            size_t run = 0;
751            for (int32_t j = i + 1; j < image_root_object_array->GetLength(); j++) {
752              if (value == image_root_object_array->Get(j)) {
753                run++;
754              } else {
755                break;
756              }
757            }
758            if (run == 0) {
759              indent2_os << StringPrintf("%d: ", i);
760            } else {
761              indent2_os << StringPrintf("%d to %zd: ", i, i + run);
762              i = i + run;
763            }
764            if (value != NULL) {
765              PrettyObjectValue(indent2_os, value->GetClass(), value);
766            } else {
767              indent2_os << i << ": null\n";
768            }
769          }
770        }
771      }
772    }
773    os << "\n";
774
775    ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
776    mirror::Object* oat_location_object = image_header_.GetImageRoot(ImageHeader::kOatLocation);
777    std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8());
778    os << "OAT LOCATION: " << oat_location;
779    if (!host_prefix_.empty()) {
780      oat_location = host_prefix_ + oat_location;
781      os << " (" << oat_location << ")";
782    }
783    os << "\n";
784    std::string error_msg;
785    const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location, &error_msg);
786    if (oat_file == NULL) {
787      os << "NOT FOUND: " << error_msg << "\n";
788      return;
789    }
790    os << "\n";
791
792    stats_.oat_file_bytes = oat_file->Size();
793
794    oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
795
796    for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
797      CHECK(oat_dex_file != NULL);
798      stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
799                                                         oat_dex_file->FileSize()));
800    }
801
802    os << "OBJECTS:\n" << std::flush;
803
804    // Loop through all the image spaces and dump their objects.
805    gc::Heap* heap = Runtime::Current()->GetHeap();
806    const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
807    Thread* self = Thread::Current();
808    {
809      WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
810      heap->FlushAllocStack();
811    }
812    {
813      std::ostream* saved_os = os_;
814      Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
815      std::ostream indent_os(&indent_filter);
816      os_ = &indent_os;
817      ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
818      for (const auto& space : spaces) {
819        if (space->IsImageSpace()) {
820          gc::space::ImageSpace* image_space = space->AsImageSpace();
821          image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
822          indent_os << "\n";
823        }
824      }
825      // Dump the large objects separately.
826      heap->GetLargeObjectsSpace()->GetLiveObjects()->Walk(ImageDumper::Callback, this);
827      indent_os << "\n";
828      os_ = saved_os;
829    }
830    os << "STATS:\n" << std::flush;
831    UniquePtr<File> file(OS::OpenFileForReading(image_filename_.c_str()));
832    if (file.get() == NULL) {
833      std::string cache_location(GetDalvikCacheFilenameOrDie(image_filename_.c_str()));
834      file.reset(OS::OpenFileForReading(cache_location.c_str()));
835      if (file.get() == NULL) {
836          LOG(WARNING) << "Failed to find image in " << image_filename_
837                       << " and " << cache_location;
838      }
839    }
840    if (file.get() != NULL) {
841        stats_.file_bytes = file->GetLength();
842    }
843    size_t header_bytes = sizeof(ImageHeader);
844    stats_.header_bytes = header_bytes;
845    size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
846    stats_.alignment_bytes += alignment_bytes;
847    stats_.alignment_bytes += image_header_.GetImageBitmapOffset() - image_header_.GetImageSize();
848    stats_.bitmap_bytes += image_header_.GetImageBitmapSize();
849    stats_.Dump(os);
850    os << "\n";
851
852    os << std::flush;
853
854    oat_dumper_->Dump(os);
855  }
856
857 private:
858  static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
859      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
860    CHECK(type != NULL);
861    if (value == NULL) {
862      os << StringPrintf("null   %s\n", PrettyDescriptor(type).c_str());
863    } else if (type->IsStringClass()) {
864      mirror::String* string = value->AsString();
865      os << StringPrintf("%p   String: %s\n", string,
866                         PrintableString(string->ToModifiedUtf8()).c_str());
867    } else if (type->IsClassClass()) {
868      mirror::Class* klass = value->AsClass();
869      os << StringPrintf("%p   Class: %s\n", klass, PrettyDescriptor(klass).c_str());
870    } else if (type->IsArtFieldClass()) {
871      mirror::ArtField* field = value->AsArtField();
872      os << StringPrintf("%p   Field: %s\n", field, PrettyField(field).c_str());
873    } else if (type->IsArtMethodClass()) {
874      mirror::ArtMethod* method = value->AsArtMethod();
875      os << StringPrintf("%p   Method: %s\n", method, PrettyMethod(method).c_str());
876    } else {
877      os << StringPrintf("%p   %s\n", value, PrettyDescriptor(type).c_str());
878    }
879  }
880
881  static void PrintField(std::ostream& os, mirror::ArtField* field, mirror::Object* obj)
882      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
883    FieldHelper fh(field);
884    const char* descriptor = fh.GetTypeDescriptor();
885    os << StringPrintf("%s: ", fh.GetName());
886    if (descriptor[0] != 'L' && descriptor[0] != '[') {
887      mirror::Class* type = fh.GetType();
888      if (type->IsPrimitiveLong()) {
889        os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
890      } else if (type->IsPrimitiveDouble()) {
891        os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
892      } else if (type->IsPrimitiveFloat()) {
893        os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
894      } else {
895        DCHECK(type->IsPrimitive());
896        os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
897      }
898    } else {
899      // Get the value, don't compute the type unless it is non-null as we don't want
900      // to cause class loading.
901      mirror::Object* value = field->GetObj(obj);
902      if (value == NULL) {
903        os << StringPrintf("null   %s\n", PrettyDescriptor(descriptor).c_str());
904      } else {
905        // Grab the field type without causing resolution.
906        mirror::Class* field_type = fh.GetType(false);
907        if (field_type != NULL) {
908          PrettyObjectValue(os, field_type, value);
909        } else {
910          os << StringPrintf("%p   %s\n", value, PrettyDescriptor(descriptor).c_str());
911        }
912      }
913    }
914  }
915
916  static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
917      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
918    mirror::Class* super = klass->GetSuperClass();
919    if (super != NULL) {
920      DumpFields(os, obj, super);
921    }
922    mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields();
923    if (fields != NULL) {
924      for (int32_t i = 0; i < fields->GetLength(); i++) {
925        mirror::ArtField* field = fields->Get(i);
926        PrintField(os, field, obj);
927      }
928    }
929  }
930
931  bool InDumpSpace(const mirror::Object* object) {
932    return image_space_.Contains(object);
933  }
934
935  const void* GetQuickOatCodeBegin(mirror::ArtMethod* m)
936      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
937    const void* quick_code = m->GetEntryPointFromQuickCompiledCode();
938    if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
939      quick_code = oat_dumper_->GetQuickOatCode(m);
940    }
941    if (oat_dumper_->GetInstructionSet() == kThumb2) {
942      quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
943    }
944    return quick_code;
945  }
946
947  uint32_t GetQuickOatCodeSize(mirror::ArtMethod* m)
948      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
949    const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
950    if (oat_code_begin == nullptr) {
951      return 0;
952    }
953    return oat_code_begin[-1];
954  }
955
956  const void* GetQuickOatCodeEnd(mirror::ArtMethod* m)
957      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
958    const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
959    if (oat_code_begin == NULL) {
960      return NULL;
961    }
962    return oat_code_begin + GetQuickOatCodeSize(m);
963  }
964
965  static void Callback(mirror::Object* obj, void* arg)
966      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
967    DCHECK(obj != NULL);
968    DCHECK(arg != NULL);
969    ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
970    if (!state->InDumpSpace(obj)) {
971      return;
972    }
973
974    size_t object_bytes = obj->SizeOf();
975    size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
976    state->stats_.object_bytes += object_bytes;
977    state->stats_.alignment_bytes += alignment_bytes;
978
979    std::ostream& os = *state->os_;
980    mirror::Class* obj_class = obj->GetClass();
981    if (obj_class->IsArrayClass()) {
982      os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
983                         obj->AsArray()->GetLength());
984    } else if (obj->IsClass()) {
985      mirror::Class* klass = obj->AsClass();
986      os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
987         << klass->GetStatus() << ")\n";
988    } else if (obj->IsArtField()) {
989      os << StringPrintf("%p: java.lang.reflect.ArtField %s\n", obj,
990                         PrettyField(obj->AsArtField()).c_str());
991    } else if (obj->IsArtMethod()) {
992      os << StringPrintf("%p: java.lang.reflect.ArtMethod %s\n", obj,
993                         PrettyMethod(obj->AsArtMethod()).c_str());
994    } else if (obj_class->IsStringClass()) {
995      os << StringPrintf("%p: java.lang.String %s\n", obj,
996                         PrintableString(obj->AsString()->ToModifiedUtf8()).c_str());
997    } else {
998      os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
999    }
1000    Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1001    std::ostream indent_os(&indent_filter);
1002    DumpFields(indent_os, obj, obj_class);
1003    if (obj->IsObjectArray()) {
1004      mirror::ObjectArray<mirror::Object>* obj_array = obj->AsObjectArray<mirror::Object>();
1005      int32_t length = obj_array->GetLength();
1006      for (int32_t i = 0; i < length; i++) {
1007        mirror::Object* value = obj_array->Get(i);
1008        size_t run = 0;
1009        for (int32_t j = i + 1; j < length; j++) {
1010          if (value == obj_array->Get(j)) {
1011            run++;
1012          } else {
1013            break;
1014          }
1015        }
1016        if (run == 0) {
1017          indent_os << StringPrintf("%d: ", i);
1018        } else {
1019          indent_os << StringPrintf("%d to %zd: ", i, i + run);
1020          i = i + run;
1021        }
1022        mirror::Class* value_class = value == NULL ? obj_class->GetComponentType() : value->GetClass();
1023        PrettyObjectValue(indent_os, value_class, value);
1024      }
1025    } else if (obj->IsClass()) {
1026      mirror::ObjectArray<mirror::ArtField>* sfields = obj->AsClass()->GetSFields();
1027      if (sfields != NULL) {
1028        indent_os << "STATICS:\n";
1029        Indenter indent2_filter(indent_os.rdbuf(), kIndentChar, kIndentBy1Count);
1030        std::ostream indent2_os(&indent2_filter);
1031        for (int32_t i = 0; i < sfields->GetLength(); i++) {
1032          mirror::ArtField* field = sfields->Get(i);
1033          PrintField(indent2_os, field, field->GetDeclaringClass());
1034        }
1035      }
1036    } else if (obj->IsArtMethod()) {
1037      mirror::ArtMethod* method = obj->AsArtMethod();
1038      if (method->IsNative()) {
1039        // TODO: portable dumping.
1040        DCHECK(method->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1041        DCHECK(method->GetMappingTable() == nullptr) << PrettyMethod(method);
1042        bool first_occurrence;
1043        const void* quick_oat_code = state->GetQuickOatCodeBegin(method);
1044        uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1045        state->ComputeOatSize(quick_oat_code, &first_occurrence);
1046        if (first_occurrence) {
1047          state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
1048        }
1049        if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) {
1050          indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
1051        }
1052      } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
1053          method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1054          MethodHelper(method).IsClassInitializer()) {
1055        DCHECK(method->GetNativeGcMap() == NULL) << PrettyMethod(method);
1056        DCHECK(method->GetMappingTable() == NULL) << PrettyMethod(method);
1057      } else {
1058        // TODO: we check there is a GC map here, we may not have a GC map if the code is pointing
1059        //       to the quick/portable to interpreter bridge.
1060        CHECK(method->GetNativeGcMap() != NULL) << PrettyMethod(method);
1061
1062        const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
1063        size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
1064        state->stats_.dex_instruction_bytes += dex_instruction_bytes;
1065
1066        bool first_occurrence;
1067        size_t gc_map_bytes = state->ComputeOatSize(method->GetNativeGcMap(), &first_occurrence);
1068        if (first_occurrence) {
1069          state->stats_.gc_map_bytes += gc_map_bytes;
1070        }
1071
1072        size_t pc_mapping_table_bytes =
1073            state->ComputeOatSize(method->GetMappingTable(), &first_occurrence);
1074        if (first_occurrence) {
1075          state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
1076        }
1077
1078        size_t vmap_table_bytes =
1079            state->ComputeOatSize(method->GetVmapTable(), &first_occurrence);
1080        if (first_occurrence) {
1081          state->stats_.vmap_table_bytes += vmap_table_bytes;
1082        }
1083
1084        // TODO: portable dumping.
1085        const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1086        const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
1087        uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
1088        state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
1089        if (first_occurrence) {
1090          state->stats_.managed_code_bytes += quick_oat_code_size;
1091          if (method->IsConstructor()) {
1092            if (method->IsStatic()) {
1093              state->stats_.class_initializer_code_bytes += quick_oat_code_size;
1094            } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
1095              state->stats_.large_initializer_code_bytes += quick_oat_code_size;
1096            }
1097          } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
1098            state->stats_.large_method_code_bytes += quick_oat_code_size;
1099          }
1100        }
1101        state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
1102
1103        indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
1104        indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd\n",
1105                                  dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes);
1106
1107        size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
1108            vmap_table_bytes + quick_oat_code_size + object_bytes;
1109
1110        double expansion =
1111            static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
1112        state->stats_.ComputeOutliers(total_size, expansion, method);
1113      }
1114    }
1115    state->stats_.Update(ClassHelper(obj_class).GetDescriptor(), object_bytes);
1116  }
1117
1118  std::set<const void*> already_seen_;
1119  // Compute the size of the given data within the oat file and whether this is the first time
1120  // this data has been requested
1121  size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
1122    if (already_seen_.count(oat_data) == 0) {
1123      *first_occurrence = true;
1124      already_seen_.insert(oat_data);
1125    } else {
1126      *first_occurrence = false;
1127    }
1128    return oat_dumper_->ComputeSize(oat_data);
1129  }
1130
1131 public:
1132  struct Stats {
1133    size_t oat_file_bytes;
1134    size_t file_bytes;
1135
1136    size_t header_bytes;
1137    size_t object_bytes;
1138    size_t bitmap_bytes;
1139    size_t alignment_bytes;
1140
1141    size_t managed_code_bytes;
1142    size_t managed_code_bytes_ignoring_deduplication;
1143    size_t managed_to_native_code_bytes;
1144    size_t native_to_managed_code_bytes;
1145    size_t class_initializer_code_bytes;
1146    size_t large_initializer_code_bytes;
1147    size_t large_method_code_bytes;
1148
1149    size_t gc_map_bytes;
1150    size_t pc_mapping_table_bytes;
1151    size_t vmap_table_bytes;
1152
1153    size_t dex_instruction_bytes;
1154
1155    std::vector<mirror::ArtMethod*> method_outlier;
1156    std::vector<size_t> method_outlier_size;
1157    std::vector<double> method_outlier_expansion;
1158    std::vector<std::pair<std::string, size_t> > oat_dex_file_sizes;
1159
1160    explicit Stats()
1161        : oat_file_bytes(0),
1162          file_bytes(0),
1163          header_bytes(0),
1164          object_bytes(0),
1165          bitmap_bytes(0),
1166          alignment_bytes(0),
1167          managed_code_bytes(0),
1168          managed_code_bytes_ignoring_deduplication(0),
1169          managed_to_native_code_bytes(0),
1170          native_to_managed_code_bytes(0),
1171          class_initializer_code_bytes(0),
1172          large_initializer_code_bytes(0),
1173          large_method_code_bytes(0),
1174          gc_map_bytes(0),
1175          pc_mapping_table_bytes(0),
1176          vmap_table_bytes(0),
1177          dex_instruction_bytes(0) {}
1178
1179    struct SizeAndCount {
1180      SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1181      size_t bytes;
1182      size_t count;
1183    };
1184    typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1185    SizeAndCountTable sizes_and_counts;
1186
1187    void Update(const char* descriptor, size_t object_bytes) {
1188      SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1189      if (it != sizes_and_counts.end()) {
1190        it->second.bytes += object_bytes;
1191        it->second.count += 1;
1192      } else {
1193        sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1194      }
1195    }
1196
1197    double PercentOfOatBytes(size_t size) {
1198      return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1199    }
1200
1201    double PercentOfFileBytes(size_t size) {
1202      return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1203    }
1204
1205    double PercentOfObjectBytes(size_t size) {
1206      return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1207    }
1208
1209    void ComputeOutliers(size_t total_size, double expansion, mirror::ArtMethod* method) {
1210      method_outlier_size.push_back(total_size);
1211      method_outlier_expansion.push_back(expansion);
1212      method_outlier.push_back(method);
1213    }
1214
1215    void DumpOutliers(std::ostream& os)
1216        SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1217      size_t sum_of_sizes = 0;
1218      size_t sum_of_sizes_squared = 0;
1219      size_t sum_of_expansion = 0;
1220      size_t sum_of_expansion_squared = 0;
1221      size_t n = method_outlier_size.size();
1222      for (size_t i = 0; i < n; i++) {
1223        size_t cur_size = method_outlier_size[i];
1224        sum_of_sizes += cur_size;
1225        sum_of_sizes_squared += cur_size * cur_size;
1226        double cur_expansion = method_outlier_expansion[i];
1227        sum_of_expansion += cur_expansion;
1228        sum_of_expansion_squared += cur_expansion * cur_expansion;
1229      }
1230      size_t size_mean = sum_of_sizes / n;
1231      size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1232      double expansion_mean = sum_of_expansion / n;
1233      double expansion_variance =
1234          (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1235
1236      // Dump methods whose size is a certain number of standard deviations from the mean
1237      size_t dumped_values = 0;
1238      size_t skipped_values = 0;
1239      for (size_t i = 100; i > 0; i--) {  // i is the current number of standard deviations
1240        size_t cur_size_variance = i * i * size_variance;
1241        bool first = true;
1242        for (size_t j = 0; j < n; j++) {
1243          size_t cur_size = method_outlier_size[j];
1244          if (cur_size > size_mean) {
1245            size_t cur_var = cur_size - size_mean;
1246            cur_var = cur_var * cur_var;
1247            if (cur_var > cur_size_variance) {
1248              if (dumped_values > 20) {
1249                if (i == 1) {
1250                  skipped_values++;
1251                } else {
1252                  i = 2;  // jump to counting for 1 standard deviation
1253                  break;
1254                }
1255              } else {
1256                if (first) {
1257                  os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
1258                  first = false;
1259                }
1260                os << PrettyMethod(method_outlier[j]) << " requires storage of "
1261                    << PrettySize(cur_size) << "\n";
1262                method_outlier_size[j] = 0;  // don't consider this method again
1263                dumped_values++;
1264              }
1265            }
1266          }
1267        }
1268      }
1269      if (skipped_values > 0) {
1270        os << "... skipped " << skipped_values
1271           << " methods with size > 1 standard deviation from the norm\n";
1272      }
1273      os << std::flush;
1274
1275      // Dump methods whose expansion is a certain number of standard deviations from the mean
1276      dumped_values = 0;
1277      skipped_values = 0;
1278      for (size_t i = 10; i > 0; i--) {  // i is the current number of standard deviations
1279        double cur_expansion_variance = i * i * expansion_variance;
1280        bool first = true;
1281        for (size_t j = 0; j < n; j++) {
1282          double cur_expansion = method_outlier_expansion[j];
1283          if (cur_expansion > expansion_mean) {
1284            size_t cur_var = cur_expansion - expansion_mean;
1285            cur_var = cur_var * cur_var;
1286            if (cur_var > cur_expansion_variance) {
1287              if (dumped_values > 20) {
1288                if (i == 1) {
1289                  skipped_values++;
1290                } else {
1291                  i = 2;  // jump to counting for 1 standard deviation
1292                  break;
1293                }
1294              } else {
1295                if (first) {
1296                  os << "\nLarge expansion methods (size > " << i
1297                      << " standard deviations the norm):\n";
1298                  first = false;
1299                }
1300                os << PrettyMethod(method_outlier[j]) << " expanded code by "
1301                   << cur_expansion << "\n";
1302                method_outlier_expansion[j] = 0.0;  // don't consider this method again
1303                dumped_values++;
1304              }
1305            }
1306          }
1307        }
1308      }
1309      if (skipped_values > 0) {
1310        os << "... skipped " << skipped_values
1311           << " methods with expansion > 1 standard deviation from the norm\n";
1312      }
1313      os << "\n" << std::flush;
1314    }
1315
1316    void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1317      {
1318        os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
1319           << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1320        Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1321        std::ostream indent_os(&indent_filter);
1322        indent_os << StringPrintf("header_bytes    =  %8zd (%2.0f%% of art file bytes)\n"
1323                                  "object_bytes    =  %8zd (%2.0f%% of art file bytes)\n"
1324                                  "bitmap_bytes    =  %8zd (%2.0f%% of art file bytes)\n"
1325                                  "alignment_bytes =  %8zd (%2.0f%% of art file bytes)\n\n",
1326                                  header_bytes, PercentOfFileBytes(header_bytes),
1327                                  object_bytes, PercentOfFileBytes(object_bytes),
1328                                  bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
1329                                  alignment_bytes, PercentOfFileBytes(alignment_bytes))
1330            << std::flush;
1331        CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
1332      }
1333
1334      os << "object_bytes breakdown:\n";
1335      size_t object_bytes_total = 0;
1336      for (const auto& sizes_and_count : sizes_and_counts) {
1337        const std::string& descriptor(sizes_and_count.first);
1338        double average = static_cast<double>(sizes_and_count.second.bytes) /
1339            static_cast<double>(sizes_and_count.second.count);
1340        double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
1341        os << StringPrintf("%32s %8zd bytes %6zd instances "
1342                           "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
1343                           descriptor.c_str(), sizes_and_count.second.bytes,
1344                           sizes_and_count.second.count, average, percent);
1345        object_bytes_total += sizes_and_count.second.bytes;
1346      }
1347      os << "\n" << std::flush;
1348      CHECK_EQ(object_bytes, object_bytes_total);
1349
1350      os << StringPrintf("oat_file_bytes               = %8zd\n"
1351                         "managed_code_bytes           = %8zd (%2.0f%% of oat file bytes)\n"
1352                         "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1353                         "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1354                         "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1355                         "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1356                         "large_method_code_bytes      = %8zd (%2.0f%% of oat file bytes)\n\n",
1357                         oat_file_bytes,
1358                         managed_code_bytes, PercentOfOatBytes(managed_code_bytes),
1359                         managed_to_native_code_bytes, PercentOfOatBytes(managed_to_native_code_bytes),
1360                         native_to_managed_code_bytes, PercentOfOatBytes(native_to_managed_code_bytes),
1361                         class_initializer_code_bytes, PercentOfOatBytes(class_initializer_code_bytes),
1362                         large_initializer_code_bytes, PercentOfOatBytes(large_initializer_code_bytes),
1363                         large_method_code_bytes, PercentOfOatBytes(large_method_code_bytes))
1364            << "DexFile sizes:\n";
1365      for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
1366        os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
1367                           oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
1368                           PercentOfOatBytes(oat_dex_file_size.second));
1369      }
1370
1371      os << "\n" << StringPrintf("gc_map_bytes           = %7zd (%2.0f%% of oat file bytes)\n"
1372                                 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1373                                 "vmap_table_bytes       = %7zd (%2.0f%% of oat file bytes)\n\n",
1374                                 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
1375                                 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
1376                                 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
1377         << std::flush;
1378
1379      os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
1380         << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
1381                         static_cast<double>(managed_code_bytes) / static_cast<double>(dex_instruction_bytes),
1382                         static_cast<double>(managed_code_bytes_ignoring_deduplication) /
1383                             static_cast<double>(dex_instruction_bytes))
1384         << std::flush;
1385
1386      DumpOutliers(os);
1387    }
1388  } stats_;
1389
1390 private:
1391  enum {
1392    // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1393    // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1394    kLargeConstructorDexBytes = 4000,
1395    // Number of bytes for a method to be considered large. Based on the 4000 basic block
1396    // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1397    kLargeMethodDexBytes = 16000
1398  };
1399  UniquePtr<OatDumper> oat_dumper_;
1400  std::ostream* os_;
1401  const std::string image_filename_;
1402  const std::string host_prefix_;
1403  gc::space::ImageSpace& image_space_;
1404  const ImageHeader& image_header_;
1405
1406  DISALLOW_COPY_AND_ASSIGN(ImageDumper);
1407};
1408
1409static int oatdump(int argc, char** argv) {
1410  InitLogging(argv);
1411
1412  // Skip over argv[0].
1413  argv++;
1414  argc--;
1415
1416  if (argc == 0) {
1417    fprintf(stderr, "No arguments specified\n");
1418    usage();
1419  }
1420
1421  const char* oat_filename = NULL;
1422  const char* image_filename = NULL;
1423  const char* boot_image_filename = NULL;
1424  std::string elf_filename_prefix;
1425  UniquePtr<std::string> host_prefix;
1426  std::ostream* os = &std::cout;
1427  UniquePtr<std::ofstream> out;
1428
1429  for (int i = 0; i < argc; i++) {
1430    const StringPiece option(argv[i]);
1431    if (option.starts_with("--oat-file=")) {
1432      oat_filename = option.substr(strlen("--oat-file=")).data();
1433    } else if (option.starts_with("--image=")) {
1434      image_filename = option.substr(strlen("--image=")).data();
1435    } else if (option.starts_with("--boot-image=")) {
1436      boot_image_filename = option.substr(strlen("--boot-image=")).data();
1437    } else if (option.starts_with("--host-prefix=")) {
1438      host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
1439    } else if (option.starts_with("--output=")) {
1440      const char* filename = option.substr(strlen("--output=")).data();
1441      out.reset(new std::ofstream(filename));
1442      if (!out->good()) {
1443        fprintf(stderr, "Failed to open output filename %s\n", filename);
1444        usage();
1445      }
1446      os = out.get();
1447    } else {
1448      fprintf(stderr, "Unknown argument %s\n", option.data());
1449      usage();
1450    }
1451  }
1452
1453  if (image_filename == NULL && oat_filename == NULL) {
1454    fprintf(stderr, "Either --image or --oat must be specified\n");
1455    return EXIT_FAILURE;
1456  }
1457
1458  if (image_filename != NULL && oat_filename != NULL) {
1459    fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1460    return EXIT_FAILURE;
1461  }
1462
1463  if (host_prefix.get() == NULL) {
1464    const char* android_product_out = getenv("ANDROID_PRODUCT_OUT");
1465    if (android_product_out != NULL) {
1466        host_prefix.reset(new std::string(android_product_out));
1467    } else {
1468        host_prefix.reset(new std::string(""));
1469    }
1470  }
1471
1472  if (oat_filename != NULL) {
1473    std::string error_msg;
1474    OatFile* oat_file =
1475        OatFile::Open(oat_filename, oat_filename, NULL, false, &error_msg);
1476    if (oat_file == NULL) {
1477      fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
1478      return EXIT_FAILURE;
1479    }
1480    OatDumper oat_dumper(*host_prefix.get(), *oat_file);
1481    oat_dumper.Dump(*os);
1482    return EXIT_SUCCESS;
1483  }
1484
1485  Runtime::Options options;
1486  std::string image_option;
1487  std::string oat_option;
1488  std::string boot_image_option;
1489  std::string boot_oat_option;
1490
1491  // We are more like a compiler than a run-time. We don't want to execute code.
1492  struct OatDumpCompilerCallbacks : CompilerCallbacks {
1493    virtual bool MethodVerified(verifier::MethodVerifier* /*verifier*/) { return true; }
1494    virtual void ClassRejected(ClassReference /*ref*/) { }
1495  } callbacks;
1496  options.push_back(std::make_pair("compilercallbacks",
1497                                   static_cast<CompilerCallbacks*>(&callbacks)));
1498
1499  if (boot_image_filename != NULL) {
1500    boot_image_option += "-Ximage:";
1501    boot_image_option += boot_image_filename;
1502    options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL)));
1503  }
1504  if (image_filename != NULL) {
1505    image_option += "-Ximage:";
1506    image_option += image_filename;
1507    options.push_back(std::make_pair(image_option.c_str(), reinterpret_cast<void*>(NULL)));
1508  }
1509
1510  if (!host_prefix->empty()) {
1511    options.push_back(std::make_pair("host-prefix", host_prefix->c_str()));
1512  }
1513
1514  if (!Runtime::Create(options, false)) {
1515    fprintf(stderr, "Failed to create runtime\n");
1516    return EXIT_FAILURE;
1517  }
1518  UniquePtr<Runtime> runtime(Runtime::Current());
1519  // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
1520  // give it away now and then switch to a more managable ScopedObjectAccess.
1521  Thread::Current()->TransitionFromRunnableToSuspended(kNative);
1522  ScopedObjectAccess soa(Thread::Current());
1523
1524  gc::Heap* heap = Runtime::Current()->GetHeap();
1525  gc::space::ImageSpace* image_space = heap->GetImageSpace();
1526  CHECK(image_space != NULL);
1527  const ImageHeader& image_header = image_space->GetImageHeader();
1528  if (!image_header.IsValid()) {
1529    fprintf(stderr, "Invalid image header %s\n", image_filename);
1530    return EXIT_FAILURE;
1531  }
1532  ImageDumper image_dumper(os, image_filename, *host_prefix.get(), *image_space, image_header);
1533  image_dumper.Dump();
1534  return EXIT_SUCCESS;
1535}
1536
1537}  // namespace art
1538
1539int main(int argc, char** argv) {
1540  return art::oatdump(argc, argv);
1541}
1542