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