blob: aa4635d6a46873f86717c9771dba4c14bb64bc4c [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstrom78128a62011-09-15 17:21:19 -070016
17#include <stdio.h>
18#include <stdlib.h>
19
Brian Carlstrom27ec9612011-09-19 20:20:38 -070020#include <fstream>
21#include <iostream>
Igor Murashkin37743352014-11-13 14:38:00 -080022#include <map>
23#include <set>
Brian Carlstrom78128a62011-09-15 17:21:19 -070024#include <string>
Andreas Gampe54fc26c2014-09-04 21:47:42 -070025#include <unordered_map>
Brian Carlstrom78128a62011-09-15 17:21:19 -070026#include <vector>
27
Ian Rogersd582fa42014-11-05 23:46:43 -080028#include "arch/instruction_set_features.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
Vladimir Marko10c13562015-11-25 14:33:36 +000031#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080032#include "base/unix_file/fd_file.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070033#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "class_linker-inl.h"
David Srbecky5d950762016-03-07 20:47:29 +000035#include "debug/elf_debug_writer.h"
36#include "debug/method_debug_info.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070037#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080038#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080039#include "disassembler.h"
Andreas Gampe54fc26c2014-09-04 21:47:42 -070040#include "elf_builder.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070041#include "gc/space/image_space.h"
42#include "gc/space/large_object_space.h"
43#include "gc/space/space-inl.h"
Mathieu Chartier4a26f172016-01-26 14:26:18 -080044#include "image-inl.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080045#include "indenter.h"
Vladimir Marko131980f2015-12-03 18:29:23 +000046#include "linker/buffered_output_stream.h"
47#include "linker/file_output_stream.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048#include "mirror/array-inl.h"
49#include "mirror/class-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010050#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "mirror/object-inl.h"
52#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080053#include "oat.h"
Vladimir Marko8a630572014-04-09 18:45:35 +010054#include "oat_file-inl.h"
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070055#include "oat_file_manager.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080056#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070057#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070058#include "scoped_thread_state_change.h"
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010059#include "stack_map.h"
Andreas Gampe00b25f32014-09-17 21:49:05 -070060#include "ScopedLocalRef.h"
Mathieu Chartierc22c59e2014-02-24 15:16:06 -080061#include "thread_list.h"
Andreas Gampe00bb7162016-04-29 17:52:07 -070062#include "type_lookup_table.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080063#include "verifier/method_verifier.h"
Andreas Gampe00b25f32014-09-17 21:49:05 -070064#include "well_known_classes.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070065
Igor Murashkin37743352014-11-13 14:38:00 -080066#include <sys/stat.h>
67#include "cmdline.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070068
Igor Murashkin37743352014-11-13 14:38:00 -080069namespace art {
Brian Carlstrom78128a62011-09-15 17:21:19 -070070
Mathieu Chartiere401d142015-04-22 13:56:20 -070071const char* image_methods_descriptions_[] = {
Ian Rogers19846512012-02-24 11:42:47 -080072 "kResolutionMethod",
Jeff Hao88474b42013-10-23 16:24:40 -070073 "kImtConflictMethod",
Mathieu Chartier2d2621a2014-10-23 16:48:06 -070074 "kImtUnimplementedMethod",
Brian Carlstrome24fa612011-09-29 00:53:55 -070075 "kCalleeSaveMethod",
Brian Carlstromaded5f72011-10-07 17:15:04 -070076 "kRefsOnlySaveMethod",
77 "kRefsAndArgsSaveMethod",
Mathieu Chartiere401d142015-04-22 13:56:20 -070078};
79
80const char* image_roots_descriptions_[] = {
Brian Carlstrom58ae9412011-10-04 00:56:06 -070081 "kDexCaches",
Brian Carlstrom34f426c2011-10-04 12:58:02 -070082 "kClassRoots",
Brian Carlstrom78128a62011-09-15 17:21:19 -070083};
84
Mathieu Chartierac8f4392015-08-27 13:54:20 -070085// Map is so that we don't allocate multiple dex files for the same OatDexFile.
86static std::map<const OatFile::OatDexFile*,
87 std::unique_ptr<const DexFile>> opened_dex_files;
88
89const DexFile* OpenDexFile(const OatFile::OatDexFile* oat_dex_file, std::string* error_msg) {
90 DCHECK(oat_dex_file != nullptr);
91 auto it = opened_dex_files.find(oat_dex_file);
92 if (it != opened_dex_files.end()) {
93 return it->second.get();
94 }
95 const DexFile* ret = oat_dex_file->OpenDexFile(error_msg).release();
96 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret));
97 return ret;
98}
99
Andreas Gampe2d8614b2016-03-07 16:31:34 -0800100template <typename ElfTypes>
David Srbeckybc90fd02015-04-22 19:40:27 +0100101class OatSymbolizer FINAL {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700102 public:
David Srbecky2fdd03c2016-03-10 15:32:37 +0000103 OatSymbolizer(const OatFile* oat_file, const std::string& output_name, bool no_bits) :
104 oat_file_(oat_file),
105 builder_(nullptr),
106 output_name_(output_name.empty() ? "symbolized.oat" : output_name),
107 no_bits_(no_bits) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700108 }
109
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700110 bool Symbolize() {
David Srbecky6d8c8f02015-10-26 10:57:09 +0000111 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet();
David Srbecky5d811202016-03-08 13:21:22 +0000112 const InstructionSetFeatures* features = InstructionSetFeatures::FromBitmap(
113 isa, oat_file_->GetOatHeader().GetInstructionSetFeaturesBitmap());
David Srbecky6d8c8f02015-10-26 10:57:09 +0000114
115 File* elf_file = OS::CreateEmptyFile(output_name_.c_str());
116 std::unique_ptr<BufferedOutputStream> output_stream(
Vladimir Marko10c13562015-11-25 14:33:36 +0000117 MakeUnique<BufferedOutputStream>(MakeUnique<FileOutputStream>(elf_file)));
Andreas Gampe2d8614b2016-03-07 16:31:34 -0800118 builder_.reset(new ElfBuilder<ElfTypes>(isa, features, output_stream.get()));
David Srbecky6d8c8f02015-10-26 10:57:09 +0000119
120 builder_->Start();
121
122 auto* rodata = builder_->GetRoData();
123 auto* text = builder_->GetText();
124 auto* bss = builder_->GetBss();
David Srbecky6d8c8f02015-10-26 10:57:09 +0000125
David Srbecky6d8c8f02015-10-26 10:57:09 +0000126 const uint8_t* rodata_begin = oat_file_->Begin();
127 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset();
David Srbecky2fdd03c2016-03-10 15:32:37 +0000128 if (no_bits_) {
129 rodata->WriteNoBitsSection(rodata_size);
130 } else {
131 rodata->Start();
132 rodata->WriteFully(rodata_begin, rodata_size);
133 rodata->End();
134 }
David Srbecky6d8c8f02015-10-26 10:57:09 +0000135
David Srbecky6d8c8f02015-10-26 10:57:09 +0000136 const uint8_t* text_begin = oat_file_->Begin() + rodata_size;
137 const size_t text_size = oat_file_->End() - text_begin;
David Srbecky2fdd03c2016-03-10 15:32:37 +0000138 if (no_bits_) {
139 text->WriteNoBitsSection(text_size);
140 } else {
141 text->Start();
142 text->WriteFully(text_begin, text_size);
143 text->End();
144 }
David Srbecky6d8c8f02015-10-26 10:57:09 +0000145
146 if (oat_file_->BssSize() != 0) {
David Srbecky5b1c2ca2016-01-25 17:32:41 +0000147 bss->WriteNoBitsSection(oat_file_->BssSize());
David Srbecky6d8c8f02015-10-26 10:57:09 +0000148 }
149
Douglas Leung316a2182015-09-17 15:26:25 -0700150 if (isa == kMips || isa == kMips64) {
151 builder_->WriteMIPSabiflagsSection();
152 }
Vladimir Marko944da602016-02-19 12:27:55 +0000153 builder_->PrepareDynamicSection(
154 elf_file->GetPath(), rodata_size, text_size, oat_file_->BssSize());
155 builder_->WriteDynamicSection();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700156
David Srbecky5d950762016-03-07 20:47:29 +0000157 Walk();
158 for (const auto& trampoline : debug::MakeTrampolineInfos(oat_file_->GetOatHeader())) {
159 method_debug_infos_.push_back(trampoline);
160 }
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700161
David Srbecky5d950762016-03-07 20:47:29 +0000162 debug::WriteDebugInfo(builder_.get(),
163 ArrayRef<const debug::MethodDebugInfo>(method_debug_infos_),
164 dwarf::DW_DEBUG_FRAME_FORMAT,
165 true /* write_oat_patches */);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700166
David Srbecky6d8c8f02015-10-26 10:57:09 +0000167 builder_->End();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700168
Vladimir Marko10c13562015-11-25 14:33:36 +0000169 return builder_->Good();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700170 }
171
David Srbecky5d950762016-03-07 20:47:29 +0000172 void Walk() {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700173 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles();
174 for (size_t i = 0; i < oat_dex_files.size(); i++) {
175 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700176 CHECK(oat_dex_file != nullptr);
David Srbecky5d950762016-03-07 20:47:29 +0000177 WalkOatDexFile(oat_dex_file);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700178 }
179 }
180
David Srbecky5d950762016-03-07 20:47:29 +0000181 void WalkOatDexFile(const OatFile::OatDexFile* oat_dex_file) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700182 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700183 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg);
184 if (dex_file == nullptr) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700185 return;
186 }
187 for (size_t class_def_index = 0;
188 class_def_index < dex_file->NumClassDefs();
189 class_def_index++) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700190 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
191 OatClassType type = oat_class.GetType();
192 switch (type) {
193 case kOatClassAllCompiled:
194 case kOatClassSomeCompiled:
David Srbecky5d950762016-03-07 20:47:29 +0000195 WalkOatClass(oat_class, *dex_file, class_def_index);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700196 break;
197
198 case kOatClassNoneCompiled:
199 case kOatClassMax:
200 // Ignore.
201 break;
202 }
203 }
204 }
205
David Srbecky5d950762016-03-07 20:47:29 +0000206 void WalkOatClass(const OatFile::OatClass& oat_class,
207 const DexFile& dex_file,
208 uint32_t class_def_index) {
209 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700210 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700211 if (class_data == nullptr) { // empty class such as a marker interface?
212 return;
213 }
214 // Note: even if this is an interface or a native class, we still have to walk it, as there
215 // might be a static initializer.
216 ClassDataItemIterator it(dex_file, class_data);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700217 uint32_t class_method_idx = 0;
David Srbecky5d950762016-03-07 20:47:29 +0000218 for (; it.HasNextStaticField(); it.Next()) { /* skip */ }
219 for (; it.HasNextInstanceField(); it.Next()) { /* skip */ }
220 for (; it.HasNextDirectMethod() || it.HasNextVirtualMethod(); it.Next()) {
221 WalkOatMethod(oat_class.GetOatMethod(class_method_idx++),
222 dex_file,
223 class_def_index,
224 it.GetMemberIndex(),
225 it.GetMethodCodeItem(),
226 it.GetMethodAccessFlags());
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700227 }
228 DCHECK(!it.HasNext());
229 }
230
David Srbecky5d950762016-03-07 20:47:29 +0000231 void WalkOatMethod(const OatFile::OatMethod& oat_method,
232 const DexFile& dex_file,
233 uint32_t class_def_index,
234 uint32_t dex_method_index,
235 const DexFile::CodeItem* code_item,
236 uint32_t method_access_flags) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700237 if ((method_access_flags & kAccAbstract) != 0) {
238 // Abstract method, no code.
239 return;
240 }
David Srbecky5d950762016-03-07 20:47:29 +0000241 const OatHeader& oat_header = oat_file_->GetOatHeader();
242 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader();
243 if (method_header == nullptr || method_header->GetCodeSize() == 0) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700244 // No code.
245 return;
246 }
247
David Srbeckya1b4c5f2016-03-31 18:17:59 +0100248 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset();
249 // Clear Thumb2 bit.
250 const void* code_address = EntryPointToCodePointer(reinterpret_cast<void*>(entry_point));
251
David Srbecky5d950762016-03-07 20:47:29 +0000252 debug::MethodDebugInfo info = debug::MethodDebugInfo();
253 info.trampoline_name = nullptr;
254 info.dex_file = &dex_file;
255 info.class_def_index = class_def_index;
256 info.dex_method_index = dex_method_index;
257 info.access_flags = method_access_flags;
258 info.code_item = code_item;
259 info.isa = oat_header.GetInstructionSet();
260 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second;
261 info.is_native_debuggable = oat_header.IsNativeDebuggable();
262 info.is_optimized = method_header->IsOptimized();
263 info.is_code_address_text_relative = true;
David Srbeckya1b4c5f2016-03-31 18:17:59 +0100264 info.code_address = reinterpret_cast<uintptr_t>(code_address);
David Srbecky5d950762016-03-07 20:47:29 +0000265 info.code_size = method_header->GetCodeSize();
266 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
267 info.code_info = info.is_optimized ? method_header->GetOptimizedCodeInfoPtr() : nullptr;
268 info.cfi = ArrayRef<uint8_t>();
269 method_debug_infos_.push_back(info);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700270 }
271
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700272 private:
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700273 const OatFile* oat_file_;
Andreas Gampe2d8614b2016-03-07 16:31:34 -0800274 std::unique_ptr<ElfBuilder<ElfTypes> > builder_;
David Srbecky5d950762016-03-07 20:47:29 +0000275 std::vector<debug::MethodDebugInfo> method_debug_infos_;
276 std::unordered_set<uint32_t> seen_offsets_;
Ian Rogers0279ebb2014-10-08 17:27:48 -0700277 const std::string output_name_;
David Srbecky2fdd03c2016-03-10 15:32:37 +0000278 bool no_bits_;
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700279};
280
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700281class OatDumperOptions {
282 public:
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100283 OatDumperOptions(bool dump_vmap,
Roland Levillainf2650d12015-05-28 14:53:28 +0100284 bool dump_code_info_stack_maps,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700285 bool disassemble_code,
Andreas Gampe00b25f32014-09-17 21:49:05 -0700286 bool absolute_addresses,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800287 const char* class_filter,
288 const char* method_filter,
289 bool list_classes,
290 bool list_methods,
David Brazdilc03d7b62016-03-02 12:18:03 +0000291 bool dump_header_only,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800292 const char* export_dex_location,
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800293 const char* app_image,
294 const char* app_oat,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800295 uint32_t addr2instr)
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100296 : dump_vmap_(dump_vmap),
Roland Levillainf2650d12015-05-28 14:53:28 +0100297 dump_code_info_stack_maps_(dump_code_info_stack_maps),
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700298 disassemble_code_(disassemble_code),
Andreas Gampe00b25f32014-09-17 21:49:05 -0700299 absolute_addresses_(absolute_addresses),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800300 class_filter_(class_filter),
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000301 method_filter_(method_filter),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800302 list_classes_(list_classes),
303 list_methods_(list_methods),
David Brazdilc03d7b62016-03-02 12:18:03 +0000304 dump_header_only_(dump_header_only),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800305 export_dex_location_(export_dex_location),
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800306 app_image_(app_image),
307 app_oat_(app_oat),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800308 addr2instr_(addr2instr),
Igor Murashkin37743352014-11-13 14:38:00 -0800309 class_loader_(nullptr) {}
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700310
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700311 const bool dump_vmap_;
Roland Levillainf2650d12015-05-28 14:53:28 +0100312 const bool dump_code_info_stack_maps_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700313 const bool disassemble_code_;
314 const bool absolute_addresses_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800315 const char* const class_filter_;
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000316 const char* const method_filter_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800317 const bool list_classes_;
318 const bool list_methods_;
David Brazdilc03d7b62016-03-02 12:18:03 +0000319 const bool dump_header_only_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800320 const char* const export_dex_location_;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800321 const char* const app_image_;
322 const char* const app_oat_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800323 uint32_t addr2instr_;
Andreas Gampe00b25f32014-09-17 21:49:05 -0700324 Handle<mirror::ClassLoader>* class_loader_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700325};
326
Elliott Hughese3c845c2012-02-28 17:23:01 -0800327class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700328 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100329 OatDumper(const OatFile& oat_file, const OatDumperOptions& options)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000330 : oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800331 oat_dex_files_(oat_file.GetOatDexFiles()),
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700332 options_(options),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800333 resolved_addr2instr_(0),
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800334 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
335 disassembler_(Disassembler::Create(instruction_set_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800336 new DisassemblerOptions(options_.absolute_addresses_,
Alexandre Ramesa37d9252014-10-27 11:28:14 +0000337 oat_file.Begin(),
Aart Bika6e95b32016-05-11 10:30:47 -0700338 oat_file.End(),
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100339 true /* can_read_literals_ */))) {
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800340 CHECK(options_.class_loader_ != nullptr);
341 CHECK(options_.class_filter_ != nullptr);
342 CHECK(options_.method_filter_ != nullptr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800343 AddAllOffsets();
344 }
345
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700346 ~OatDumper() {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700347 delete disassembler_;
348 }
349
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800350 InstructionSet GetInstructionSet() {
351 return instruction_set_;
352 }
353
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700354 bool Dump(std::ostream& os) {
355 bool success = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800356 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700357
358 os << "MAGIC:\n";
359 os << oat_header.GetMagic() << "\n\n";
360
Jeff Hao4b07a6e2016-01-15 12:50:44 -0800361 os << "LOCATION:\n";
362 os << oat_file_.GetLocation() << "\n\n";
363
Brian Carlstromaded5f72011-10-07 17:15:04 -0700364 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800365 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700366
Elliott Hughesa72ec822012-03-05 17:12:22 -0800367 os << "INSTRUCTION SET:\n";
368 os << oat_header.GetInstructionSet() << "\n\n";
369
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700370 {
371 std::unique_ptr<const InstructionSetFeatures> features(
372 InstructionSetFeatures::FromBitmap(oat_header.GetInstructionSet(),
373 oat_header.GetInstructionSetFeaturesBitmap()));
374 os << "INSTRUCTION SET FEATURES:\n";
375 os << features->GetFeatureString() << "\n\n";
376 }
Dave Allison70202782013-10-22 17:52:19 -0700377
Brian Carlstromaded5f72011-10-07 17:15:04 -0700378 os << "DEX FILE COUNT:\n";
379 os << oat_header.GetDexFileCount() << "\n\n";
380
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800381#define DUMP_OAT_HEADER_OFFSET(label, offset) \
382 os << label " OFFSET:\n"; \
383 os << StringPrintf("0x%08x", oat_header.offset()); \
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800384 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800385 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
386 } \
387 os << StringPrintf("\n\n");
388
389 DUMP_OAT_HEADER_OFFSET("EXECUTABLE", GetExecutableOffset);
390 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO INTERPRETER BRIDGE",
391 GetInterpreterToInterpreterBridgeOffset);
392 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE",
393 GetInterpreterToCompiledCodeBridgeOffset);
394 DUMP_OAT_HEADER_OFFSET("JNI DLSYM LOOKUP",
395 GetJniDlsymLookupOffset);
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800396 DUMP_OAT_HEADER_OFFSET("QUICK GENERIC JNI TRAMPOLINE",
397 GetQuickGenericJniTrampolineOffset);
398 DUMP_OAT_HEADER_OFFSET("QUICK IMT CONFLICT TRAMPOLINE",
399 GetQuickImtConflictTrampolineOffset);
400 DUMP_OAT_HEADER_OFFSET("QUICK RESOLUTION TRAMPOLINE",
401 GetQuickResolutionTrampolineOffset);
402 DUMP_OAT_HEADER_OFFSET("QUICK TO INTERPRETER BRIDGE",
403 GetQuickToInterpreterBridgeOffset);
404#undef DUMP_OAT_HEADER_OFFSET
Brian Carlstromaded5f72011-10-07 17:15:04 -0700405
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700406 os << "IMAGE PATCH DELTA:\n";
407 os << StringPrintf("%d (0x%08x)\n\n",
408 oat_header.GetImagePatchDelta(),
409 oat_header.GetImagePatchDelta());
Alex Lighta59dd802014-07-02 16:28:08 -0700410
Brian Carlstrom28db0122012-10-18 16:20:41 -0700411 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
412 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
413
414 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800415 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700416
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700417 // Print the key-value store.
418 {
419 os << "KEY VALUE STORE:\n";
420 size_t index = 0;
421 const char* key;
422 const char* value;
423 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) {
424 os << key << " = " << value << "\n";
425 index++;
426 }
427 os << "\n";
428 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700429
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800430 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700431 os << "BEGIN:\n";
432 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700433
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700434 os << "END:\n";
435 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
436 }
437
438 os << "SIZE:\n";
439 os << oat_file_.Size() << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700440
441 os << std::flush;
442
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800443 // If set, adjust relative address to be searched
444 if (options_.addr2instr_ != 0) {
445 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset();
446 os << "SEARCH ADDRESS (executable offset + input):\n";
447 os << StringPrintf("0x%08x\n\n", resolved_addr2instr_);
448 }
449
David Brazdilc03d7b62016-03-02 12:18:03 +0000450 if (!options_.dump_header_only_) {
451 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
452 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
453 CHECK(oat_dex_file != nullptr);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800454
David Brazdilc03d7b62016-03-02 12:18:03 +0000455 // If file export selected skip file analysis
456 if (options_.export_dex_location_) {
457 if (!ExportDexFile(os, *oat_dex_file)) {
458 success = false;
459 }
460 } else {
461 if (!DumpOatDexFile(os, *oat_dex_file)) {
462 success = false;
463 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800464 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700465 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700466 }
David Brazdilc03d7b62016-03-02 12:18:03 +0000467
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700468 os << std::flush;
469 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700470 }
471
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800472 size_t ComputeSize(const void* oat_data) {
Ian Rogers13735952014-10-08 12:43:28 -0700473 if (reinterpret_cast<const uint8_t*>(oat_data) < oat_file_.Begin() ||
474 reinterpret_cast<const uint8_t*>(oat_data) > oat_file_.End()) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800475 return 0; // Address not in oat file
476 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800477 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
478 reinterpret_cast<uintptr_t>(oat_file_.Begin());
479 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800480 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800481 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800482 return end_offset - begin_offset;
483 }
484
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800485 InstructionSet GetOatInstructionSet() {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700486 return oat_file_.GetOatHeader().GetInstructionSet();
487 }
488
Mathieu Chartier90443472015-07-16 20:32:27 -0700489 const void* GetQuickOatCode(ArtMethod* m) SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800490 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
491 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700492 CHECK(oat_dex_file != nullptr);
493 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700494 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg);
495 if (dex_file == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700496 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
497 << "': " << error_msg;
498 } else {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800499 const char* descriptor = m->GetDeclaringClassDescriptor();
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700500 const DexFile::ClassDef* class_def =
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800501 dex_file->FindClassDef(descriptor, ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700502 if (class_def != nullptr) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700503 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100504 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800505 size_t method_index = m->GetMethodIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100506 return oat_class.GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800507 }
508 }
509 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700510 return nullptr;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800511 }
512
Brian Carlstromaded5f72011-10-07 17:15:04 -0700513 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800514 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800515 // We don't know the length of the code for each method, but we need to know where to stop
516 // when disassembling. What we do know is that a region of code will be followed by some other
517 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
518 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800519 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
520 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700521 CHECK(oat_dex_file != nullptr);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700522 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700523 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg);
524 if (dex_file == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700525 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
526 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800527 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800528 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800529 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800530 for (size_t class_def_index = 0;
531 class_def_index < dex_file->NumClassDefs();
532 class_def_index++) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800533 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100534 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700535 const uint8_t* class_data = dex_file->GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700536 if (class_data != nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800537 ClassDataItemIterator it(*dex_file, class_data);
538 SkipAllFields(it);
539 uint32_t class_method_index = 0;
540 while (it.HasNextDirectMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100541 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800542 it.Next();
543 }
544 while (it.HasNextVirtualMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100545 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800546 it.Next();
547 }
548 }
549 }
550 }
551
552 // If the last thing in the file is code for a method, there won't be an offset for the "next"
553 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
554 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800555 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800556 }
557
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700558 static uint32_t AlignCodeOffset(uint32_t maybe_thumb_offset) {
559 return maybe_thumb_offset & ~0x1; // TODO: Make this Thumb2 specific.
560 }
561
Elliott Hughese3c845c2012-02-28 17:23:01 -0800562 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800563 uint32_t code_offset = oat_method.GetCodeOffset();
564 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
565 code_offset &= ~0x1;
566 }
567 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800568 offsets_.insert(oat_method.GetVmapTableOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800569 }
570
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700571 bool DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
572 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800573 bool stop_analysis = false;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700574 os << "OatDexFile:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800575 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800576 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700577
Andreas Gampe00bb7162016-04-29 17:52:07 -0700578 // Print embedded dex file data range.
579 const uint8_t* const oat_file_begin = oat_dex_file.GetOatFile()->Begin();
580 const uint8_t* const dex_file_pointer = oat_dex_file.GetDexFilePointer();
581 uint32_t dex_offset = dchecked_integral_cast<uint32_t>(dex_file_pointer - oat_file_begin);
582 os << StringPrintf("dex-file: 0x%08x..0x%08x\n",
583 dex_offset,
584 dchecked_integral_cast<uint32_t>(dex_offset + oat_dex_file.FileSize() - 1));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700585
Andreas Gampe00bb7162016-04-29 17:52:07 -0700586 // Create the dex file early. A lot of print-out things depend on it.
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700587 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700588 const DexFile* const dex_file = OpenDexFile(&oat_dex_file, &error_msg);
589 if (dex_file == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700590 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700591 os << std::flush;
592 return false;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700593 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100594
Andreas Gampe00bb7162016-04-29 17:52:07 -0700595 // Print lookup table, if it exists.
596 if (oat_dex_file.GetLookupTableData() != nullptr) {
597 uint32_t table_offset = dchecked_integral_cast<uint32_t>(
598 oat_dex_file.GetLookupTableData() - oat_file_begin);
599 uint32_t table_size = TypeLookupTable::RawDataLength(*dex_file);
600 os << StringPrintf("type-table: 0x%08x..0x%08x\n",
601 table_offset,
602 table_offset + table_size - 1);
603 }
604
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100605 VariableIndentationOutputStream vios(&os);
606 ScopedIndentation indent1(&vios);
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800607 for (size_t class_def_index = 0;
608 class_def_index < dex_file->NumClassDefs();
609 class_def_index++) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700610 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
611 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800612
613 // TODO: Support regex
614 if (DescriptorToDot(descriptor).find(options_.class_filter_) == std::string::npos) {
615 continue;
616 }
617
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700618 uint32_t oat_class_offset = oat_dex_file.GetOatClassOffset(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100619 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700620 os << StringPrintf("%zd: %s (offset=0x%08x) (type_idx=%d)",
621 class_def_index, descriptor, oat_class_offset, class_def.class_idx_)
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100622 << " (" << oat_class.GetStatus() << ")"
623 << " (" << oat_class.GetType() << ")\n";
624 // TODO: include bitmap here if type is kOatClassSomeCompiled?
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800625 if (options_.list_classes_) continue;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700626 if (!DumpOatClass(&vios, oat_class, *dex_file, class_def, &stop_analysis)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700627 success = false;
628 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800629 if (stop_analysis) {
630 os << std::flush;
631 return success;
632 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700633 }
634
635 os << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700636 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700637 }
638
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800639 bool ExportDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
640 std::string error_msg;
641 std::string dex_file_location = oat_dex_file.GetDexFileLocation();
642
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700643 const DexFile* const dex_file = OpenDexFile(&oat_dex_file, &error_msg);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800644 if (dex_file == nullptr) {
645 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg;
646 return false;
647 }
648 size_t fsize = oat_dex_file.FileSize();
649
650 // Some quick checks just in case
651 if (fsize == 0 || fsize < sizeof(DexFile::Header)) {
652 os << "Invalid dex file\n";
653 return false;
654 }
655
656 // Verify output directory exists
657 if (!OS::DirectoryExists(options_.export_dex_location_)) {
658 // TODO: Extend OS::DirectoryExists if symlink support is required
659 os << options_.export_dex_location_ << " output directory not found or symlink\n";
660 return false;
661 }
662
663 // Beautify path names
664 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) {
665 return false;
666 }
667
668 std::string dex_orig_name;
669 size_t dex_orig_pos = dex_file_location.rfind('/');
670 if (dex_orig_pos == std::string::npos)
671 dex_orig_name = dex_file_location;
672 else
673 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1);
674
675 // A more elegant approach to efficiently name user installed apps is welcome
676 if (dex_orig_name.size() == 8 && !dex_orig_name.compare("base.apk")) {
677 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1);
678 size_t apk_orig_pos = dex_file_location.rfind('/');
679 if (apk_orig_pos != std::string::npos) {
680 dex_orig_name = dex_file_location.substr(++apk_orig_pos);
681 }
682 }
683
684 std::string out_dex_path(options_.export_dex_location_);
685 if (out_dex_path.back() != '/') {
686 out_dex_path.append("/");
687 }
688 out_dex_path.append(dex_orig_name);
689 out_dex_path.append("_export.dex");
690 if (out_dex_path.length() > PATH_MAX) {
691 return false;
692 }
693
694 std::unique_ptr<File> file(OS::CreateEmptyFile(out_dex_path.c_str()));
695 if (file.get() == nullptr) {
696 os << "Failed to open output dex file " << out_dex_path;
697 return false;
698 }
699
700 if (!file->WriteFully(dex_file->Begin(), fsize)) {
701 os << "Failed to write dex file";
702 file->Erase();
703 return false;
704 }
705
706 if (file->FlushCloseOrErase() != 0) {
707 os << "Flush and close failed";
708 return false;
709 }
710
711 os << StringPrintf("Dex file exported at %s (%zd bytes)\n", out_dex_path.c_str(), fsize);
712 os << std::flush;
713
714 return true;
715 }
716
Elliott Hughese3c845c2012-02-28 17:23:01 -0800717 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700718 while (it.HasNextStaticField()) {
719 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700720 }
Ian Rogers0571d352011-11-03 19:51:38 -0700721 while (it.HasNextInstanceField()) {
722 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700723 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800724 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700725
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100726 bool DumpOatClass(VariableIndentationOutputStream* vios,
727 const OatFile::OatClass& oat_class, const DexFile& dex_file,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800728 const DexFile::ClassDef& class_def, bool* stop_analysis) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700729 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800730 bool addr_found = false;
Ian Rogers13735952014-10-08 12:43:28 -0700731 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700732 if (class_data == nullptr) { // empty class such as a marker interface?
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100733 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700734 return success;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800735 }
736 ClassDataItemIterator it(dex_file, class_data);
737 SkipAllFields(it);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700738 uint32_t class_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700739 while (it.HasNextDirectMethod()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100740 if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700741 it.GetMemberIndex(), it.GetMethodCodeItem(),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800742 it.GetRawMemberAccessFlags(), &addr_found)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700743 success = false;
744 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800745 if (addr_found) {
746 *stop_analysis = true;
747 return success;
748 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700749 class_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -0700750 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700751 }
Ian Rogers0571d352011-11-03 19:51:38 -0700752 while (it.HasNextVirtualMethod()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100753 if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700754 it.GetMemberIndex(), it.GetMethodCodeItem(),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800755 it.GetRawMemberAccessFlags(), &addr_found)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700756 success = false;
757 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800758 if (addr_found) {
759 *stop_analysis = true;
760 return success;
761 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700762 class_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -0700763 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700764 }
Ian Rogers0571d352011-11-03 19:51:38 -0700765 DCHECK(!it.HasNext());
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100766 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700767 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700768 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800769
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700770 static constexpr uint32_t kPrologueBytes = 16;
771
772 // When this was picked, the largest arm method was 55,256 bytes and arm64 was 50,412 bytes.
773 static constexpr uint32_t kMaxCodeSize = 100 * 1000;
774
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100775 bool DumpOatMethod(VariableIndentationOutputStream* vios,
776 const DexFile::ClassDef& class_def,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700777 uint32_t class_method_index,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700778 const OatFile::OatClass& oat_class, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800779 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800780 uint32_t method_access_flags, bool* addr_found) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700781 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800782
783 // TODO: Support regex
784 std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx));
785 if (method_name.find(options_.method_filter_) == std::string::npos) {
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000786 return success;
787 }
788
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800789 std::string pretty_method = PrettyMethod(dex_method_idx, dex_file, true);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100790 vios->Stream() << StringPrintf("%d: %s (dex_method_idx=%d)\n",
791 class_method_index, pretty_method.c_str(),
792 dex_method_idx);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800793 if (options_.list_methods_) return success;
794
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800795 uint32_t oat_method_offsets_offset = oat_class.GetOatMethodOffsetsOffset(class_method_index);
796 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index);
797 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index);
798 uint32_t code_offset = oat_method.GetCodeOffset();
799 uint32_t code_size = oat_method.GetQuickCodeSize();
800 if (resolved_addr2instr_ != 0) {
801 if (resolved_addr2instr_ > code_offset + code_size) {
802 return success;
803 } else {
804 *addr_found = true; // stop analyzing file at next iteration
805 }
806 }
807
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100808 // Everything below is indented at least once.
809 ScopedIndentation indent1(vios);
810
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800811 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100812 vios->Stream() << "DEX CODE:\n";
813 ScopedIndentation indent2(vios);
814 DumpDexCode(vios->Stream(), dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700815 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700816
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700817 std::unique_ptr<StackHandleScope<1>> hs;
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700818 std::unique_ptr<verifier::MethodVerifier> verifier;
819 if (Runtime::Current() != nullptr) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700820 // We need to have the handle scope stay live until after the verifier since the verifier has
821 // a handle to the dex cache from hs.
822 hs.reset(new StackHandleScope<1>(Thread::Current()));
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100823 vios->Stream() << "VERIFIER TYPE ANALYSIS:\n";
824 ScopedIndentation indent2(vios);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700825 verifier.reset(DumpVerifier(vios, hs.get(),
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100826 dex_method_idx, &dex_file, class_def, code_item,
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700827 method_access_flags));
Ian Rogersb23a7722012-10-09 16:54:26 -0700828 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800829 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100830 vios->Stream() << "OatMethodOffsets ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800831 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100832 vios->Stream() << StringPrintf("%p ", oat_method_offsets);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100833 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100834 vios->Stream() << StringPrintf("(offset=0x%08x)\n", oat_method_offsets_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700835 if (oat_method_offsets_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100836 vios->Stream() << StringPrintf(
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700837 "WARNING: oat method offsets offset 0x%08x is past end of file 0x%08zx.\n",
838 oat_method_offsets_offset, oat_file_.Size());
839 // If we can't read OatMethodOffsets, the rest of the data is dangerous to read.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100840 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700841 return false;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800842 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700843
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100844 ScopedIndentation indent2(vios);
845 vios->Stream() << StringPrintf("code_offset: 0x%08x ", code_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700846 uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset());
847 if (aligned_code_begin > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100848 vios->Stream() << StringPrintf("WARNING: "
849 "code offset 0x%08x is past end of file 0x%08zx.\n",
850 aligned_code_begin, oat_file_.Size());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700851 success = false;
852 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100853 vios->Stream() << "\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800854 }
855 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100856 vios->Stream() << "OatQuickMethodHeader ";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700857 uint32_t method_header_offset = oat_method.GetOatQuickMethodHeaderOffset();
858 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700859
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800860 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100861 vios->Stream() << StringPrintf("%p ", method_header);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700862 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100863 vios->Stream() << StringPrintf("(offset=0x%08x)\n", method_header_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700864 if (method_header_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100865 vios->Stream() << StringPrintf(
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700866 "WARNING: oat quick method header offset 0x%08x is past end of file 0x%08zx.\n",
867 method_header_offset, oat_file_.Size());
868 // If we can't read the OatQuickMethodHeader, the rest of the data is dangerous to read.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100869 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700870 return false;
871 }
872
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100873 ScopedIndentation indent2(vios);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100874 vios->Stream() << "vmap_table: ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800875 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100876 vios->Stream() << StringPrintf("%p ", oat_method.GetVmapTable());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700877 }
878 uint32_t vmap_table_offset = oat_method.GetVmapTableOffset();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100879 vios->Stream() << StringPrintf("(offset=0x%08x)\n", vmap_table_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700880 if (vmap_table_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100881 vios->Stream() << StringPrintf("WARNING: "
882 "vmap table offset 0x%08x is past end of file 0x%08zx. "
883 "vmap table offset was loaded from offset 0x%08x.\n",
884 vmap_table_offset, oat_file_.Size(),
885 oat_method.GetVmapTableOffsetOffset());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700886 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800887 } else if (options_.dump_vmap_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100888 DumpVmapData(vios, oat_method, code_item);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700889 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800890 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700891 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100892 vios->Stream() << "QuickMethodFrameInfo\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700893
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100894 ScopedIndentation indent2(vios);
895 vios->Stream()
896 << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
897 vios->Stream() << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
898 DumpSpillMask(vios->Stream(), oat_method.GetCoreSpillMask(), false);
899 vios->Stream() << "\n";
900 vios->Stream() << StringPrintf("fp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
901 DumpSpillMask(vios->Stream(), oat_method.GetFpSpillMask(), true);
902 vios->Stream() << "\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700903 }
904 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100905 // Based on spill masks from QuickMethodFrameInfo so placed
906 // after it is dumped, but useful for understanding quick
907 // code, so dumped here.
908 ScopedIndentation indent2(vios);
909 DumpVregLocations(vios->Stream(), oat_method, code_item);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700910 }
911 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100912 vios->Stream() << "CODE: ";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700913 uint32_t code_size_offset = oat_method.GetQuickCodeSizeOffset();
914 if (code_size_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100915 ScopedIndentation indent2(vios);
916 vios->Stream() << StringPrintf("WARNING: "
917 "code size offset 0x%08x is past end of file 0x%08zx.",
918 code_size_offset, oat_file_.Size());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700919 success = false;
920 } else {
921 const void* code = oat_method.GetQuickCode();
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700922 uint32_t aligned_code_begin = AlignCodeOffset(code_offset);
923 uint64_t aligned_code_end = aligned_code_begin + code_size;
924
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800925 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100926 vios->Stream() << StringPrintf("%p ", code);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700927 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100928 vios->Stream() << StringPrintf("(code_offset=0x%08x size_offset=0x%08x size=%u)%s\n",
929 code_offset,
930 code_size_offset,
931 code_size,
932 code != nullptr ? "..." : "");
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700933
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100934 ScopedIndentation indent2(vios);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700935 if (aligned_code_begin > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100936 vios->Stream() << StringPrintf("WARNING: "
937 "start of code at 0x%08x is past end of file 0x%08zx.",
938 aligned_code_begin, oat_file_.Size());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700939 success = false;
940 } else if (aligned_code_end > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100941 vios->Stream() << StringPrintf(
942 "WARNING: "
943 "end of code at 0x%08" PRIx64 " is past end of file 0x%08zx. "
944 "code size is 0x%08x loaded from offset 0x%08x.\n",
945 aligned_code_end, oat_file_.Size(),
946 code_size, code_size_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700947 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800948 if (options_.disassemble_code_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700949 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100950 DumpCode(vios, oat_method, code_item, true, kPrologueBytes);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700951 }
952 }
953 } else if (code_size > kMaxCodeSize) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100954 vios->Stream() << StringPrintf(
955 "WARNING: "
956 "code size %d is bigger than max expected threshold of %d. "
957 "code size is 0x%08x loaded from offset 0x%08x.\n",
958 code_size, kMaxCodeSize,
959 code_size, code_size_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700960 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800961 if (options_.disassemble_code_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700962 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100963 DumpCode(vios, oat_method, code_item, true, kPrologueBytes);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700964 }
965 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800966 } else if (options_.disassemble_code_) {
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100967 DumpCode(vios, oat_method, code_item, !success, 0);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700968 }
969 }
970 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100971 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700972 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700973 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800974
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800975 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
976 if (spill_mask == 0) {
977 return;
978 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800979 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800980 for (size_t i = 0; i < 32; i++) {
981 if ((spill_mask & (1 << i)) != 0) {
982 if (is_float) {
983 os << "fr" << i;
984 } else {
985 os << "r" << i;
986 }
987 spill_mask ^= 1 << i; // clear bit
988 if (spill_mask != 0) {
989 os << ", ";
990 } else {
991 break;
992 }
993 }
994 }
995 os << ")";
996 }
997
Roland Levillain442b46a2015-02-18 16:54:21 +0000998 // Display data stored at the the vmap offset of an oat method.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100999 void DumpVmapData(VariableIndentationOutputStream* vios,
Roland Levillain442b46a2015-02-18 16:54:21 +00001000 const OatFile::OatMethod& oat_method,
1001 const DexFile::CodeItem* code_item) {
Roland Levillainf2650d12015-05-28 14:53:28 +01001002 if (IsMethodGeneratedByOptimizingCompiler(oat_method, code_item)) {
1003 // The optimizing compiler outputs its CodeInfo data in the vmap table.
Roland Levillain442b46a2015-02-18 16:54:21 +00001004 const void* raw_code_info = oat_method.GetVmapTable();
1005 if (raw_code_info != nullptr) {
1006 CodeInfo code_info(raw_code_info);
1007 DCHECK(code_item != nullptr);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001008 ScopedIndentation indent1(vios);
1009 DumpCodeInfo(vios, code_info, oat_method, *code_item);
Roland Levillain442b46a2015-02-18 16:54:21 +00001010 }
Nicolas Geoffray0a5cd122015-07-16 14:15:05 +01001011 } else if (IsMethodGeneratedByDexToDexCompiler(oat_method, code_item)) {
1012 // We don't encode the size in the table, so just emit that we have quickened
1013 // information.
1014 ScopedIndentation indent(vios);
1015 vios->Stream() << "quickened data\n";
Roland Levillain442b46a2015-02-18 16:54:21 +00001016 } else {
Vladimir Marko9d07e3d2016-03-31 12:02:28 +01001017 // Otherwise, there is nothing to display.
Nicolas Geoffray20d3eae2014-09-17 11:27:23 +01001018 }
Roland Levillain442b46a2015-02-18 16:54:21 +00001019 }
1020
1021 // Display a CodeInfo object emitted by the optimizing compiler.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001022 void DumpCodeInfo(VariableIndentationOutputStream* vios,
Roland Levillain442b46a2015-02-18 16:54:21 +00001023 const CodeInfo& code_info,
Roland Levillainf2650d12015-05-28 14:53:28 +01001024 const OatFile::OatMethod& oat_method,
Roland Levillain442b46a2015-02-18 16:54:21 +00001025 const DexFile::CodeItem& code_item) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001026 code_info.Dump(vios,
Roland Levillainf2650d12015-05-28 14:53:28 +01001027 oat_method.GetCodeOffset(),
1028 code_item.registers_size_,
1029 options_.dump_code_info_stack_maps_);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001030 }
1031
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -07001032 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method,
1033 const DexFile::CodeItem* code_item) {
1034 if (code_item != nullptr) {
1035 size_t num_locals_ins = code_item->registers_size_;
1036 size_t num_ins = code_item->ins_size_;
1037 size_t num_locals = num_locals_ins - num_ins;
1038 size_t num_outs = code_item->outs_size_;
1039
1040 os << "vr_stack_locations:";
1041 for (size_t reg = 0; reg <= num_locals_ins; reg++) {
1042 // For readability, delimit the different kinds of VRs.
1043 if (reg == num_locals_ins) {
1044 os << "\n\tmethod*:";
1045 } else if (reg == num_locals && num_ins > 0) {
1046 os << "\n\tins:";
1047 } else if (reg == 0 && num_locals > 0) {
1048 os << "\n\tlocals:";
1049 }
1050
Nicolas Geoffray15b9d522015-03-12 15:05:13 +00001051 uint32_t offset = StackVisitor::GetVRegOffsetFromQuickCode(
1052 code_item,
1053 oat_method.GetCoreSpillMask(),
1054 oat_method.GetFpSpillMask(),
1055 oat_method.GetFrameSizeInBytes(),
1056 reg,
1057 GetInstructionSet());
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -07001058 os << " v" << reg << "[sp + #" << offset << "]";
1059 }
1060
1061 for (size_t out_reg = 0; out_reg < num_outs; out_reg++) {
1062 if (out_reg == 0) {
1063 os << "\n\touts:";
1064 }
1065
1066 uint32_t offset = StackVisitor::GetOutVROffset(out_reg, GetInstructionSet());
1067 os << " v" << out_reg << "[sp + #" << offset << "]";
1068 }
1069
1070 os << "\n";
1071 }
1072 }
1073
Ian Rogersb23a7722012-10-09 16:54:26 -07001074 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001075 if (code_item != nullptr) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001076 size_t i = 0;
1077 while (i < code_item->insns_size_in_code_units_) {
1078 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001079 os << StringPrintf("0x%04zx: ", i) << instruction->DumpHexLE(5)
1080 << StringPrintf("\t| %s\n", instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -07001081 i += instruction->SizeInCodeUnits();
1082 }
1083 }
1084 }
1085
Roland Levillainf2650d12015-05-28 14:53:28 +01001086 // Has `oat_method` -- corresponding to the Dex `code_item` -- been compiled by
1087 // the optimizing compiler?
1088 static bool IsMethodGeneratedByOptimizingCompiler(const OatFile::OatMethod& oat_method,
1089 const DexFile::CodeItem* code_item) {
1090 // If the native GC map is null and the Dex `code_item` is not
1091 // null, then this method has been compiled with the optimizing
1092 // compiler.
Nicolas Geoffray0a5cd122015-07-16 14:15:05 +01001093 return oat_method.GetQuickCode() != nullptr &&
Vladimir Marko9d07e3d2016-03-31 12:02:28 +01001094 oat_method.GetVmapTable() != nullptr &&
Nicolas Geoffray0a5cd122015-07-16 14:15:05 +01001095 code_item != nullptr;
1096 }
1097
1098 // Has `oat_method` -- corresponding to the Dex `code_item` -- been compiled by
1099 // the dextodex compiler?
1100 static bool IsMethodGeneratedByDexToDexCompiler(const OatFile::OatMethod& oat_method,
1101 const DexFile::CodeItem* code_item) {
1102 // If the quick code is null, the Dex `code_item` is not
1103 // null, and the vmap table is not null, then this method has been compiled
1104 // with the dextodex compiler.
1105 return oat_method.GetQuickCode() == nullptr &&
1106 oat_method.GetVmapTable() != nullptr &&
1107 code_item != nullptr;
Roland Levillainf2650d12015-05-28 14:53:28 +01001108 }
1109
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001110 verifier::MethodVerifier* DumpVerifier(VariableIndentationOutputStream* vios,
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001111 StackHandleScope<1>* hs,
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001112 uint32_t dex_method_idx,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001113 const DexFile* dex_file,
1114 const DexFile::ClassDef& class_def,
1115 const DexFile::CodeItem* code_item,
1116 uint32_t method_access_flags) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001117 if ((method_access_flags & kAccNative) == 0) {
1118 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001119 Runtime* const runtime = Runtime::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001120 Handle<mirror::DexCache> dex_cache(
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -07001121 hs->NewHandle(runtime->GetClassLinker()->RegisterDexFile(*dex_file, nullptr)));
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001122 DCHECK(options_.class_loader_ != nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001123 return verifier::MethodVerifier::VerifyMethodAndDump(
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001124 soa.Self(), vios, dex_method_idx, dex_file, dex_cache, *options_.class_loader_,
1125 &class_def, code_item, nullptr, method_access_flags);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001126 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001127
1128 return nullptr;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001129 }
1130
Vladimir Markoadbf93e2016-04-08 11:18:25 +01001131 // The StackMapsHelper provides the stack maps in the native PC order.
1132 // For identical native PCs, the order from the CodeInfo is preserved.
1133 class StackMapsHelper {
1134 public:
1135 explicit StackMapsHelper(const uint8_t* raw_code_info)
1136 : code_info_(raw_code_info),
1137 encoding_(code_info_.ExtractEncoding()),
1138 number_of_stack_maps_(code_info_.GetNumberOfStackMaps(encoding_)),
1139 indexes_(),
1140 offset_(static_cast<size_t>(-1)),
1141 stack_map_index_(0u) {
1142 if (number_of_stack_maps_ != 0u) {
1143 // Check if native PCs are ordered.
1144 bool ordered = true;
1145 StackMap last = code_info_.GetStackMapAt(0u, encoding_);
1146 for (size_t i = 1; i != number_of_stack_maps_; ++i) {
1147 StackMap current = code_info_.GetStackMapAt(i, encoding_);
1148 if (last.GetNativePcOffset(encoding_.stack_map_encoding) >
1149 current.GetNativePcOffset(encoding_.stack_map_encoding)) {
1150 ordered = false;
1151 break;
1152 }
1153 last = current;
1154 }
1155 if (!ordered) {
1156 // Create indirection indexes for access in native PC order. We do not optimize
1157 // for the fact that there can currently be only two separately ordered ranges,
1158 // namely normal stack maps and catch-point stack maps.
1159 indexes_.resize(number_of_stack_maps_);
1160 std::iota(indexes_.begin(), indexes_.end(), 0u);
1161 std::sort(indexes_.begin(),
1162 indexes_.end(),
1163 [this](size_t lhs, size_t rhs) {
1164 StackMap left = code_info_.GetStackMapAt(lhs, encoding_);
1165 uint32_t left_pc = left.GetNativePcOffset(encoding_.stack_map_encoding);
1166 StackMap right = code_info_.GetStackMapAt(rhs, encoding_);
1167 uint32_t right_pc = right.GetNativePcOffset(encoding_.stack_map_encoding);
1168 // If the PCs are the same, compare indexes to preserve the original order.
1169 return (left_pc < right_pc) || (left_pc == right_pc && lhs < rhs);
1170 });
1171 }
1172 offset_ = GetStackMapAt(0).GetNativePcOffset(encoding_.stack_map_encoding);
1173 }
1174 }
1175
1176 const CodeInfo& GetCodeInfo() const {
1177 return code_info_;
1178 }
1179
1180 const CodeInfoEncoding& GetEncoding() const {
1181 return encoding_;
1182 }
1183
1184 size_t GetOffset() const {
1185 return offset_;
1186 }
1187
1188 StackMap GetStackMap() const {
1189 return GetStackMapAt(stack_map_index_);
1190 }
1191
1192 void Next() {
1193 ++stack_map_index_;
1194 offset_ = (stack_map_index_ == number_of_stack_maps_)
1195 ? static_cast<size_t>(-1)
1196 : GetStackMapAt(stack_map_index_).GetNativePcOffset(encoding_.stack_map_encoding);
1197 }
1198
1199 private:
1200 StackMap GetStackMapAt(size_t i) const {
1201 if (!indexes_.empty()) {
1202 i = indexes_[i];
1203 }
1204 DCHECK_LT(i, number_of_stack_maps_);
1205 return code_info_.GetStackMapAt(i, encoding_);
1206 }
1207
1208 const CodeInfo code_info_;
1209 const CodeInfoEncoding encoding_;
1210 const size_t number_of_stack_maps_;
1211 dchecked_vector<size_t> indexes_; // Used if stack map native PCs are not ordered.
1212 size_t offset_;
1213 size_t stack_map_index_;
1214 };
1215
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001216 void DumpCode(VariableIndentationOutputStream* vios,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001217 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item,
1218 bool bad_input, size_t code_size) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001219 const void* quick_code = oat_method.GetQuickCode();
1220
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001221 if (code_size == 0) {
1222 code_size = oat_method.GetQuickCodeSize();
1223 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001224 if (code_size == 0 || quick_code == nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001225 vios->Stream() << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -07001226 return;
Vladimir Markoadbf93e2016-04-08 11:18:25 +01001227 } else if (!bad_input && IsMethodGeneratedByOptimizingCompiler(oat_method, code_item)) {
1228 // The optimizing compiler outputs its CodeInfo data in the vmap table.
1229 StackMapsHelper helper(oat_method.GetVmapTable());
1230 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
1231 size_t offset = 0;
1232 while (offset < code_size) {
1233 offset += disassembler_->Dump(vios->Stream(), quick_native_pc + offset);
1234 if (offset == helper.GetOffset()) {
1235 ScopedIndentation indent1(vios);
1236 StackMap stack_map = helper.GetStackMap();
1237 DCHECK(stack_map.IsValid());
1238 stack_map.Dump(vios,
1239 helper.GetCodeInfo(),
1240 helper.GetEncoding(),
1241 oat_method.GetCodeOffset(),
1242 code_item->registers_size_);
1243 do {
1244 helper.Next();
1245 // There may be multiple stack maps at a given PC. We display only the first one.
1246 } while (offset == helper.GetOffset());
1247 }
1248 DCHECK_LT(offset, helper.GetOffset());
1249 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001250 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001251 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
1252 size_t offset = 0;
1253 while (offset < code_size) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001254 offset += disassembler_->Dump(vios->Stream(), quick_native_pc + offset);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001255 }
Ian Rogersb23a7722012-10-09 16:54:26 -07001256 }
1257 }
1258
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001259 const OatFile& oat_file_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001260 const std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001261 const OatDumperOptions& options_;
1262 uint32_t resolved_addr2instr_;
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001263 InstructionSet instruction_set_;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001264 std::set<uintptr_t> offsets_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001265 Disassembler* disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001266};
1267
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001268class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001269 public:
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001270 ImageDumper(std::ostream* os,
1271 gc::space::ImageSpace& image_space,
1272 const ImageHeader& image_header,
1273 OatDumperOptions* oat_dumper_options)
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001274 : os_(os),
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001275 vios_(os),
1276 indent1_(&vios_),
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001277 image_space_(image_space),
1278 image_header_(image_header),
1279 oat_dumper_options_(oat_dumper_options) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001280
Mathieu Chartier90443472015-07-16 20:32:27 -07001281 bool Dump() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001282 std::ostream& os = *os_;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001283 std::ostream& indent_os = vios_.Stream();
1284
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001285 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -07001286
Jeff Haodcdc85b2015-12-04 14:06:18 -08001287 os << "IMAGE LOCATION: " << image_space_.GetImageLocation() << "\n\n";
1288
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001289 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001290
Mathieu Chartiere401d142015-04-22 13:56:20 -07001291 os << "IMAGE SIZE: " << image_header_.GetImageSize() << "\n\n";
1292
1293 for (size_t i = 0; i < ImageHeader::kSectionCount; ++i) {
1294 auto section = static_cast<ImageHeader::ImageSections>(i);
1295 os << "IMAGE SECTION " << section << ": " << image_header_.GetImageSection(section) << "\n\n";
1296 }
Mathieu Chartier31e89252013-08-28 11:29:12 -07001297
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001298 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001299
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001300 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001301
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001302 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
1303
1304 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
1305
1306 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001307
Alex Lighta59dd802014-07-02 16:28:08 -07001308 os << "PATCH DELTA:" << image_header_.GetPatchDelta() << "\n\n";
1309
Igor Murashkin46774762014-10-22 11:37:02 -07001310 os << "COMPILE PIC: " << (image_header_.CompilePic() ? "yes" : "no") << "\n\n";
1311
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001312 {
1313 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
Mathieu Chartiere401d142015-04-22 13:56:20 -07001314 static_assert(arraysize(image_roots_descriptions_) ==
1315 static_cast<size_t>(ImageHeader::kImageRootsMax), "sizes must match");
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001316 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
1317 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
1318 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001319 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001320 indent_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001321 if (image_root_object->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001322 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -08001323 = image_root_object->AsObjectArray<mirror::Object>();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001324 ScopedIndentation indent2(&vios_);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001325 for (int j = 0; j < image_root_object_array->GetLength(); j++) {
1326 mirror::Object* value = image_root_object_array->Get(j);
Ian Rogersfa824272013-11-05 16:12:57 -08001327 size_t run = 0;
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001328 for (int32_t k = j + 1; k < image_root_object_array->GetLength(); k++) {
1329 if (value == image_root_object_array->Get(k)) {
Ian Rogersfa824272013-11-05 16:12:57 -08001330 run++;
1331 } else {
1332 break;
1333 }
1334 }
1335 if (run == 0) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001336 indent_os << StringPrintf("%d: ", j);
Ian Rogersfa824272013-11-05 16:12:57 -08001337 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001338 indent_os << StringPrintf("%d to %zd: ", j, j + run);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001339 j = j + run;
Ian Rogersfa824272013-11-05 16:12:57 -08001340 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001341 if (value != nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001342 PrettyObjectValue(indent_os, value->GetClass(), value);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001343 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001344 indent_os << j << ": null\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001345 }
Ian Rogersd5b32602012-02-26 16:40:04 -08001346 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -07001347 }
1348 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001349 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001350
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001351 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001352 os << "METHOD ROOTS\n";
1353 static_assert(arraysize(image_methods_descriptions_) ==
1354 static_cast<size_t>(ImageHeader::kImageMethodsCount), "sizes must match");
1355 for (int i = 0; i < ImageHeader::kImageMethodsCount; i++) {
1356 auto image_root = static_cast<ImageHeader::ImageMethod>(i);
1357 const char* description = image_methods_descriptions_[i];
1358 auto* image_method = image_header_.GetImageMethod(image_root);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001359 indent_os << StringPrintf("%s: %p\n", description, image_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001360 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001361 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001362 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001363
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001364 Runtime* const runtime = Runtime::Current();
1365 ClassLinker* class_linker = runtime->GetClassLinker();
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001366 std::string image_filename = image_space_.GetImageFilename();
1367 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001368 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001369 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001370 std::string error_msg;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001371 const OatFile* oat_file = image_space_.GetOatFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001372 if (oat_file == nullptr) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001373 oat_file = runtime->GetOatFileManager().FindOpenedOatFileFromOatLocation(oat_location);
1374 }
1375 if (oat_file == nullptr) {
1376 oat_file = OatFile::Open(oat_location,
1377 oat_location,
1378 nullptr,
1379 nullptr,
1380 false,
1381 /*low_4gb*/false,
1382 nullptr,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001383 &error_msg);
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001384 }
1385 if (oat_file == nullptr) {
1386 os << "OAT FILE NOT FOUND: " << error_msg << "\n";
1387 return EXIT_FAILURE;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001388 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001389 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001390
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001391 stats_.oat_file_bytes = oat_file->Size();
1392
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001393 oat_dumper_.reset(new OatDumper(*oat_file, *oat_dumper_options_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001394
Mathieu Chartier02e25112013-08-14 16:14:24 -07001395 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001396 CHECK(oat_dex_file != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001397 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
1398 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -07001399 }
1400
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001401 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001402
Jeff Haodcdc85b2015-12-04 14:06:18 -08001403 // Loop through the image space and dump its objects.
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001404 gc::Heap* heap = runtime->GetHeap();
Ian Rogers50b35e22012-10-04 10:09:15 -07001405 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001406 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -08001407 {
1408 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1409 heap->FlushAllocStack();
1410 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -08001411 // Since FlushAllocStack() above resets the (active) allocation
1412 // stack. Need to revoke the thread-local allocation stacks that
1413 // point into it.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07001414 ScopedThreadSuspension sts(self, kNative);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001415 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07001416 heap->RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001417 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001418 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001419 // Mark dex caches.
Vladimir Marko05792b92015-08-03 11:56:49 +01001420 dex_caches_.clear();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001421 {
1422 ReaderMutexLock mu(self, *class_linker->DexLock());
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08001423 for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001424 mirror::DexCache* dex_cache =
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08001425 down_cast<mirror::DexCache*>(self->DecodeJObject(data.weak_root));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001426 if (dex_cache != nullptr) {
Vladimir Marko05792b92015-08-03 11:56:49 +01001427 dex_caches_.insert(dex_cache);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001428 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001429 }
1430 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001431 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Jeff Haodcdc85b2015-12-04 14:06:18 -08001432 // Dump the normal objects before ArtMethods.
1433 image_space_.GetLiveBitmap()->Walk(ImageDumper::Callback, this);
1434 indent_os << "\n";
1435 // TODO: Dump fields.
1436 // Dump methods after.
Jeff Haodcdc85b2015-12-04 14:06:18 -08001437 DumpArtMethodVisitor visitor(this);
Mathieu Chartiercdca4762016-04-28 09:44:54 -07001438 image_header_.VisitPackedArtMethods(&visitor,
1439 image_space_.Begin(),
1440 image_header_.GetPointerSize());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001441 // Dump the large objects separately.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -07001442 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001443 indent_os << "\n";
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001444 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001445 os << "STATS:\n" << std::flush;
Ian Rogers700a4022014-05-19 16:49:03 -07001446 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001447 size_t data_size = image_header_.GetDataSize(); // stored size in file.
1448 if (file == nullptr) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001449 LOG(WARNING) << "Failed to find image in " << image_filename;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001450 } else {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001451 stats_.file_bytes = file->GetLength();
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001452 // If the image is compressed, adjust to decompressed size.
1453 size_t uncompressed_size = image_header_.GetImageSize() - sizeof(ImageHeader);
1454 if (image_header_.GetStorageMode() == ImageHeader::kStorageModeUncompressed) {
1455 DCHECK_EQ(uncompressed_size, data_size) << "Sizes should match for uncompressed image";
1456 }
1457 stats_.file_bytes += uncompressed_size - data_size;
Brian Carlstrom6f277752013-09-30 17:56:45 -07001458 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001459 size_t header_bytes = sizeof(ImageHeader);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001460 const auto& object_section = image_header_.GetImageSection(ImageHeader::kSectionObjects);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001461 const auto& field_section = image_header_.GetImageSection(ImageHeader::kSectionArtFields);
1462 const auto& method_section = image_header_.GetMethodsSection();
Vladimir Marko05792b92015-08-03 11:56:49 +01001463 const auto& dex_cache_arrays_section = image_header_.GetImageSection(
1464 ImageHeader::kSectionDexCacheArrays);
Mathieu Chartierd39645e2015-06-09 17:50:29 -07001465 const auto& intern_section = image_header_.GetImageSection(
1466 ImageHeader::kSectionInternedStrings);
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08001467 const auto& class_table_section = image_header_.GetImageSection(
1468 ImageHeader::kSectionClassTable);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001469 const auto& bitmap_section = image_header_.GetImageSection(ImageHeader::kSectionImageBitmap);
1470
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001471 stats_.header_bytes = header_bytes;
Andreas Gampeace0dc12016-01-20 13:33:13 -08001472
1473 // Objects are kObjectAlignment-aligned.
1474 // CHECK_EQ(RoundUp(header_bytes, kObjectAlignment), object_section.Offset());
1475 if (object_section.Offset() > header_bytes) {
1476 stats_.alignment_bytes += object_section.Offset() - header_bytes;
1477 }
1478
1479 // Field section is 4-byte aligned.
1480 constexpr size_t kFieldSectionAlignment = 4U;
1481 uint32_t end_objects = object_section.Offset() + object_section.Size();
1482 CHECK_EQ(RoundUp(end_objects, kFieldSectionAlignment), field_section.Offset());
1483 stats_.alignment_bytes += field_section.Offset() - end_objects;
1484
1485 // Method section is 4/8 byte aligned depending on target. Just check for 4-byte alignment.
1486 uint32_t end_fields = field_section.Offset() + field_section.Size();
1487 CHECK_ALIGNED(method_section.Offset(), 4);
1488 stats_.alignment_bytes += method_section.Offset() - end_fields;
1489
1490 // Dex cache arrays section is aligned depending on the target. Just check for 4-byte alignment.
1491 uint32_t end_methods = method_section.Offset() + method_section.Size();
1492 CHECK_ALIGNED(dex_cache_arrays_section.Offset(), 4);
1493 stats_.alignment_bytes += dex_cache_arrays_section.Offset() - end_methods;
1494
1495 // Intern table is 8-byte aligned.
1496 uint32_t end_caches = dex_cache_arrays_section.Offset() + dex_cache_arrays_section.Size();
1497 CHECK_EQ(RoundUp(end_caches, 8U), intern_section.Offset());
1498 stats_.alignment_bytes += intern_section.Offset() - end_caches;
1499
1500 // Add space between intern table and class table.
1501 uint32_t end_intern = intern_section.Offset() + intern_section.Size();
1502 stats_.alignment_bytes += class_table_section.Offset() - end_intern;
1503
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001504 // Add space between end of image data and bitmap. Expect the bitmap to be page-aligned.
1505 const size_t bitmap_offset = sizeof(ImageHeader) + data_size;
Andreas Gampeace0dc12016-01-20 13:33:13 -08001506 CHECK_ALIGNED(bitmap_section.Offset(), kPageSize);
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001507 stats_.alignment_bytes += RoundUp(bitmap_offset, kPageSize) - bitmap_offset;
Andreas Gampeace0dc12016-01-20 13:33:13 -08001508
Mathieu Chartiere401d142015-04-22 13:56:20 -07001509 stats_.bitmap_bytes += bitmap_section.Size();
1510 stats_.art_field_bytes += field_section.Size();
Vladimir Markocf36d492015-08-12 19:27:26 +01001511 stats_.art_method_bytes += method_section.Size();
Vladimir Marko05792b92015-08-03 11:56:49 +01001512 stats_.dex_cache_arrays_bytes += dex_cache_arrays_section.Size();
Mathieu Chartierd39645e2015-06-09 17:50:29 -07001513 stats_.interned_strings_bytes += intern_section.Size();
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08001514 stats_.class_table_bytes += class_table_section.Size();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001515 stats_.Dump(os, indent_os);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001516 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001517
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001518 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001519
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001520 return oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001521 }
1522
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001523 private:
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001524 class DumpArtMethodVisitor : public ArtMethodVisitor {
1525 public:
1526 explicit DumpArtMethodVisitor(ImageDumper* image_dumper) : image_dumper_(image_dumper) {}
1527
1528 virtual void Visit(ArtMethod* method) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
1529 std::ostream& indent_os = image_dumper_->vios_.Stream();
1530 indent_os << method << " " << " ArtMethod: " << PrettyMethod(method) << "\n";
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001531 image_dumper_->DumpMethod(method, indent_os);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001532 indent_os << "\n";
1533 }
1534
1535 private:
1536 ImageDumper* const image_dumper_;
1537 };
1538
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001539 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Mathieu Chartier90443472015-07-16 20:32:27 -07001540 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001541 CHECK(type != nullptr);
1542 if (value == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001543 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001544 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001545 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001546 os << StringPrintf("%p String: %s\n", string,
Ian Rogers68b56852014-08-29 20:19:11 -07001547 PrintableString(string->ToModifiedUtf8().c_str()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -07001548 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001549 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001550 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001551 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001552 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001553 }
1554 }
1555
Mathieu Chartierc7853442015-03-27 14:35:38 -07001556 static void PrintField(std::ostream& os, ArtField* field, mirror::Object* obj)
Mathieu Chartier90443472015-07-16 20:32:27 -07001557 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001558 os << StringPrintf("%s: ", field->GetName());
Ian Rogers08f1f502014-12-02 15:04:37 -08001559 switch (field->GetTypeAsPrimitiveType()) {
1560 case Primitive::kPrimLong:
Ian Rogersef7d42f2014-01-06 12:55:46 -08001561 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001562 break;
1563 case Primitive::kPrimDouble:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001564 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001565 break;
1566 case Primitive::kPrimFloat:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001567 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001568 break;
1569 case Primitive::kPrimInt:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001570 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001571 break;
1572 case Primitive::kPrimChar:
Fred Shih37f05ef2014-07-16 18:38:08 -07001573 os << StringPrintf("%u (0x%x)\n", field->GetChar(obj), field->GetChar(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001574 break;
1575 case Primitive::kPrimShort:
Fred Shih37f05ef2014-07-16 18:38:08 -07001576 os << StringPrintf("%d (0x%x)\n", field->GetShort(obj), field->GetShort(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001577 break;
1578 case Primitive::kPrimBoolean:
Fred Shih37f05ef2014-07-16 18:38:08 -07001579 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj)? "true" : "false",
1580 field->GetBoolean(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001581 break;
1582 case Primitive::kPrimByte:
Fred Shih37f05ef2014-07-16 18:38:08 -07001583 os << StringPrintf("%d (0x%x)\n", field->GetByte(obj), field->GetByte(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001584 break;
1585 case Primitive::kPrimNot: {
1586 // Get the value, don't compute the type unless it is non-null as we don't want
1587 // to cause class loading.
1588 mirror::Object* value = field->GetObj(obj);
1589 if (value == nullptr) {
1590 os << StringPrintf("null %s\n", PrettyDescriptor(field->GetTypeDescriptor()).c_str());
Ian Rogers50239c72013-06-17 14:53:22 -07001591 } else {
Ian Rogers08f1f502014-12-02 15:04:37 -08001592 // Grab the field type without causing resolution.
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001593 mirror::Class* field_type = field->GetType<false>();
Ian Rogers08f1f502014-12-02 15:04:37 -08001594 if (field_type != nullptr) {
1595 PrettyObjectValue(os, field_type, value);
1596 } else {
1597 os << StringPrintf("%p %s\n", value,
1598 PrettyDescriptor(field->GetTypeDescriptor()).c_str());
1599 }
Ian Rogers50239c72013-06-17 14:53:22 -07001600 }
Ian Rogers08f1f502014-12-02 15:04:37 -08001601 break;
Ian Rogers48efc2b2012-08-27 17:20:31 -07001602 }
Ian Rogers08f1f502014-12-02 15:04:37 -08001603 default:
1604 os << "unexpected field type: " << field->GetTypeDescriptor() << "\n";
1605 break;
Ian Rogersd5b32602012-02-26 16:40:04 -08001606 }
1607 }
1608
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001609 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Mathieu Chartier90443472015-07-16 20:32:27 -07001610 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001611 mirror::Class* super = klass->GetSuperClass();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001612 if (super != nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001613 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -08001614 }
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001615 for (ArtField& field : klass->GetIFields()) {
1616 PrintField(os, &field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -08001617 }
1618 }
1619
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001620 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001621 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001622 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001623
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001624 const void* GetQuickOatCodeBegin(ArtMethod* m) SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001625 const void* quick_code = m->GetEntryPointFromQuickCompiledCodePtrSize(
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001626 image_header_.GetPointerSize());
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001627 if (Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(quick_code)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001628 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001629 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001630 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001631 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001632 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001633 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001634 }
1635
Mathieu Chartiere401d142015-04-22 13:56:20 -07001636 uint32_t GetQuickOatCodeSize(ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07001637 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001638 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
1639 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001640 return 0;
1641 }
1642 return oat_code_begin[-1];
1643 }
1644
Mathieu Chartiere401d142015-04-22 13:56:20 -07001645 const void* GetQuickOatCodeEnd(ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07001646 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001647 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001648 if (oat_code_begin == nullptr) {
1649 return nullptr;
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001650 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001651 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001652 }
1653
Mathieu Chartier90443472015-07-16 20:32:27 -07001654 static void Callback(mirror::Object* obj, void* arg) SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001655 DCHECK(obj != nullptr);
1656 DCHECK(arg != nullptr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001657 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001658 if (!state->InDumpSpace(obj)) {
1659 return;
1660 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001661
1662 size_t object_bytes = obj->SizeOf();
1663 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1664 state->stats_.object_bytes += object_bytes;
1665 state->stats_.alignment_bytes += alignment_bytes;
1666
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001667 std::ostream& os = state->vios_.Stream();
1668
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001669 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001670 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001671 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1672 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001673 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001674 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001675 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1676 << klass->GetStatus() << ")\n";
Ian Rogersd5b32602012-02-26 16:40:04 -08001677 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001678 os << StringPrintf("%p: java.lang.String %s\n", obj,
Ian Rogers68b56852014-08-29 20:19:11 -07001679 PrintableString(obj->AsString()->ToModifiedUtf8().c_str()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001680 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001681 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001682 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001683 ScopedIndentation indent1(&state->vios_);
1684 DumpFields(os, obj, obj_class);
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001685 const size_t image_pointer_size = state->image_header_.GetPointerSize();
Ian Rogersd5b32602012-02-26 16:40:04 -08001686 if (obj->IsObjectArray()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001687 auto* obj_array = obj->AsObjectArray<mirror::Object>();
1688 for (int32_t i = 0, length = obj_array->GetLength(); i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001689 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001690 size_t run = 0;
1691 for (int32_t j = i + 1; j < length; j++) {
1692 if (value == obj_array->Get(j)) {
1693 run++;
1694 } else {
1695 break;
1696 }
1697 }
1698 if (run == 0) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001699 os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001700 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001701 os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001702 i = i + run;
1703 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001704 mirror::Class* value_class =
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001705 (value == nullptr) ? obj_class->GetComponentType() : value->GetClass();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001706 PrettyObjectValue(os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001707 }
1708 } else if (obj->IsClass()) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001709 mirror::Class* klass = obj->AsClass();
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001710 if (klass->NumStaticFields() != 0) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001711 os << "STATICS:\n";
1712 ScopedIndentation indent2(&state->vios_);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001713 for (ArtField& field : klass->GetSFields()) {
1714 PrintField(os, &field, field.GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001715 }
1716 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001717 } else {
Vladimir Marko05792b92015-08-03 11:56:49 +01001718 auto it = state->dex_caches_.find(obj);
1719 if (it != state->dex_caches_.end()) {
1720 auto* dex_cache = down_cast<mirror::DexCache*>(obj);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001721 const auto& field_section = state->image_header_.GetImageSection(
1722 ImageHeader::kSectionArtFields);
1723 const auto& method_section = state->image_header_.GetMethodsSection();
Vladimir Marko05792b92015-08-03 11:56:49 +01001724 size_t num_methods = dex_cache->NumResolvedMethods();
1725 if (num_methods != 0u) {
1726 os << "Methods (size=" << num_methods << "):";
1727 ScopedIndentation indent2(&state->vios_);
1728 auto* resolved_methods = dex_cache->GetResolvedMethods();
1729 for (size_t i = 0, length = dex_cache->NumResolvedMethods(); i < length; ++i) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001730 auto* elem = mirror::DexCache::GetElementPtrSize(resolved_methods,
1731 i,
1732 image_pointer_size);
Vladimir Marko05792b92015-08-03 11:56:49 +01001733 size_t run = 0;
1734 for (size_t j = i + 1;
1735 j != length && elem == mirror::DexCache::GetElementPtrSize(resolved_methods,
1736 j,
1737 image_pointer_size);
1738 ++j, ++run) {}
1739 if (run == 0) {
1740 os << StringPrintf("%zd: ", i);
1741 } else {
1742 os << StringPrintf("%zd to %zd: ", i, i + run);
1743 i = i + run;
1744 }
1745 std::string msg;
1746 if (elem == nullptr) {
1747 msg = "null";
1748 } else if (method_section.Contains(
1749 reinterpret_cast<uint8_t*>(elem) - state->image_space_.Begin())) {
1750 msg = PrettyMethod(reinterpret_cast<ArtMethod*>(elem));
1751 } else {
1752 msg = "<not in method section>";
1753 }
1754 os << StringPrintf("%p %s\n", elem, msg.c_str());
Ian Rogers0d2d3782012-04-10 11:09:18 -07001755 }
Vladimir Marko05792b92015-08-03 11:56:49 +01001756 }
1757 size_t num_fields = dex_cache->NumResolvedFields();
1758 if (num_fields != 0u) {
1759 os << "Fields (size=" << num_fields << "):";
1760 ScopedIndentation indent2(&state->vios_);
1761 auto* resolved_fields = dex_cache->GetResolvedFields();
1762 for (size_t i = 0, length = dex_cache->NumResolvedFields(); i < length; ++i) {
1763 auto* elem = mirror::DexCache::GetElementPtrSize(resolved_fields, i, image_pointer_size);
1764 size_t run = 0;
1765 for (size_t j = i + 1;
1766 j != length && elem == mirror::DexCache::GetElementPtrSize(resolved_fields,
1767 j,
1768 image_pointer_size);
1769 ++j, ++run) {}
1770 if (run == 0) {
1771 os << StringPrintf("%zd: ", i);
1772 } else {
1773 os << StringPrintf("%zd to %zd: ", i, i + run);
1774 i = i + run;
1775 }
1776 std::string msg;
1777 if (elem == nullptr) {
1778 msg = "null";
1779 } else if (field_section.Contains(
1780 reinterpret_cast<uint8_t*>(elem) - state->image_space_.Begin())) {
1781 msg = PrettyField(reinterpret_cast<ArtField*>(elem));
1782 } else {
1783 msg = "<not in field section>";
1784 }
1785 os << StringPrintf("%p %s\n", elem, msg.c_str());
Mathieu Chartiere401d142015-04-22 13:56:20 -07001786 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001787 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001788 }
1789 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001790 std::string temp;
1791 state->stats_.Update(obj_class->GetDescriptor(&temp), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001792 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001793
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001794 void DumpMethod(ArtMethod* method, std::ostream& indent_os)
Mathieu Chartier90443472015-07-16 20:32:27 -07001795 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001796 DCHECK(method != nullptr);
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001797 const void* quick_oat_code_begin = GetQuickOatCodeBegin(method);
1798 const void* quick_oat_code_end = GetQuickOatCodeEnd(method);
Mathieu Chartiercdca4762016-04-28 09:44:54 -07001799 const size_t pointer_size = image_header_.GetPointerSize();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01001800 OatQuickMethodHeader* method_header = reinterpret_cast<OatQuickMethodHeader*>(
1801 reinterpret_cast<uintptr_t>(quick_oat_code_begin) - sizeof(OatQuickMethodHeader));
Mathieu Chartiere401d142015-04-22 13:56:20 -07001802 if (method->IsNative()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001803 bool first_occurrence;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001804 uint32_t quick_oat_code_size = GetQuickOatCodeSize(method);
1805 ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001806 if (first_occurrence) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001807 stats_.native_to_managed_code_bytes += quick_oat_code_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001808 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001809 if (quick_oat_code_begin != method->GetEntryPointFromQuickCompiledCodePtrSize(
1810 image_header_.GetPointerSize())) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +01001811 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code_begin);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001812 }
Mathieu Chartiercdca4762016-04-28 09:44:54 -07001813 } else if (method->IsAbstract() || method->IsClassInitializer()) {
Nicolas Geoffray796d6302016-03-13 22:22:31 +00001814 // Don't print information for these.
Mathieu Chartiercdca4762016-04-28 09:44:54 -07001815 } else if (method->IsRuntimeMethod()) {
1816 ImtConflictTable* table = method->GetImtConflictTable(image_header_.GetPointerSize());
1817 if (table != nullptr) {
1818 indent_os << "IMT conflict table " << table << " method: ";
1819 for (size_t i = 0, count = table->NumEntries(pointer_size); i < count; ++i) {
1820 indent_os << PrettyMethod(table->GetImplementationMethod(i, pointer_size)) << " ";
1821 }
1822 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001823 } else {
1824 const DexFile::CodeItem* code_item = method->GetCodeItem();
1825 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001826 stats_.dex_instruction_bytes += dex_instruction_bytes;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001827
1828 bool first_occurrence;
Roland Levillain6d7f1792015-07-02 10:59:15 +01001829 size_t vmap_table_bytes = 0u;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01001830 if (!method_header->IsOptimized()) {
Roland Levillain6d7f1792015-07-02 10:59:15 +01001831 // Method compiled with the optimizing compiler have no vmap table.
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001832 vmap_table_bytes = ComputeOatSize(method_header->GetVmapTable(), &first_occurrence);
Roland Levillain6d7f1792015-07-02 10:59:15 +01001833 if (first_occurrence) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001834 stats_.vmap_table_bytes += vmap_table_bytes;
Roland Levillain6d7f1792015-07-02 10:59:15 +01001835 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001836 }
1837
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001838 uint32_t quick_oat_code_size = GetQuickOatCodeSize(method);
1839 ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001840 if (first_occurrence) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001841 stats_.managed_code_bytes += quick_oat_code_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001842 if (method->IsConstructor()) {
1843 if (method->IsStatic()) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001844 stats_.class_initializer_code_bytes += quick_oat_code_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001845 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001846 stats_.large_initializer_code_bytes += quick_oat_code_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001847 }
1848 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001849 stats_.large_method_code_bytes += quick_oat_code_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001850 }
1851 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001852 stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001853
Igor Murashkin7617abd2015-07-10 18:27:47 -07001854 uint32_t method_access_flags = method->GetAccessFlags();
1855
Mathieu Chartiere401d142015-04-22 13:56:20 -07001856 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Vladimir Marko9d07e3d2016-03-31 12:02:28 +01001857 indent_os << StringPrintf("SIZE: Dex Instructions=%zd StackMaps=%zd AccessFlags=0x%x\n",
1858 dex_instruction_bytes,
1859 vmap_table_bytes,
Igor Murashkin7617abd2015-07-10 18:27:47 -07001860 method_access_flags);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001861
Vladimir Marko9d07e3d2016-03-31 12:02:28 +01001862 size_t total_size = dex_instruction_bytes +
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001863 vmap_table_bytes + quick_oat_code_size + ArtMethod::Size(image_header_.GetPointerSize());
Mathieu Chartiere401d142015-04-22 13:56:20 -07001864
1865 double expansion =
1866 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08001867 stats_.ComputeOutliers(total_size, expansion, method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001868 }
1869 }
1870
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001871 std::set<const void*> already_seen_;
1872 // Compute the size of the given data within the oat file and whether this is the first time
1873 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07001874 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001875 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001876 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001877 already_seen_.insert(oat_data);
1878 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001879 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001880 }
1881 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001882 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001883
1884 public:
1885 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001886 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001887 size_t file_bytes;
1888
1889 size_t header_bytes;
1890 size_t object_bytes;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001891 size_t art_field_bytes;
1892 size_t art_method_bytes;
Vladimir Marko05792b92015-08-03 11:56:49 +01001893 size_t dex_cache_arrays_bytes;
Mathieu Chartierd39645e2015-06-09 17:50:29 -07001894 size_t interned_strings_bytes;
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08001895 size_t class_table_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07001896 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001897 size_t alignment_bytes;
1898
1899 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001900 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001901 size_t managed_to_native_code_bytes;
1902 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07001903 size_t class_initializer_code_bytes;
1904 size_t large_initializer_code_bytes;
1905 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001906
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001907 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001908
1909 size_t dex_instruction_bytes;
1910
Mathieu Chartiere401d142015-04-22 13:56:20 -07001911 std::vector<ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001912 std::vector<size_t> method_outlier_size;
1913 std::vector<double> method_outlier_expansion;
Ian Rogers700a4022014-05-19 16:49:03 -07001914 std::vector<std::pair<std::string, size_t>> oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001915
Roland Levillain3887c462015-08-12 18:15:42 +01001916 Stats()
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001917 : oat_file_bytes(0),
1918 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001919 header_bytes(0),
1920 object_bytes(0),
Mathieu Chartiere401d142015-04-22 13:56:20 -07001921 art_field_bytes(0),
1922 art_method_bytes(0),
Vladimir Marko05792b92015-08-03 11:56:49 +01001923 dex_cache_arrays_bytes(0),
Mathieu Chartierd39645e2015-06-09 17:50:29 -07001924 interned_strings_bytes(0),
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08001925 class_table_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07001926 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001927 alignment_bytes(0),
1928 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001929 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001930 managed_to_native_code_bytes(0),
1931 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07001932 class_initializer_code_bytes(0),
1933 large_initializer_code_bytes(0),
1934 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001935 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001936 dex_instruction_bytes(0) {}
1937
Elliott Hughesa0e18062012-04-13 15:59:59 -07001938 struct SizeAndCount {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001939 SizeAndCount(size_t bytes_in, size_t count_in) : bytes(bytes_in), count(count_in) {}
Elliott Hughesa0e18062012-04-13 15:59:59 -07001940 size_t bytes;
1941 size_t count;
1942 };
1943 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
1944 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001945
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001946 void Update(const char* descriptor, size_t object_bytes_in) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001947 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
1948 if (it != sizes_and_counts.end()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001949 it->second.bytes += object_bytes_in;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001950 it->second.count += 1;
1951 } else {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001952 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes_in, 1));
Elliott Hughesa0e18062012-04-13 15:59:59 -07001953 }
1954 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001955
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001956 double PercentOfOatBytes(size_t size) {
1957 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
1958 }
1959
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001960 double PercentOfFileBytes(size_t size) {
1961 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
1962 }
1963
1964 double PercentOfObjectBytes(size_t size) {
1965 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1966 }
1967
Mathieu Chartiere401d142015-04-22 13:56:20 -07001968 void ComputeOutliers(size_t total_size, double expansion, ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001969 method_outlier_size.push_back(total_size);
1970 method_outlier_expansion.push_back(expansion);
1971 method_outlier.push_back(method);
1972 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001973
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001974 void DumpOutliers(std::ostream& os)
Mathieu Chartier90443472015-07-16 20:32:27 -07001975 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001976 size_t sum_of_sizes = 0;
1977 size_t sum_of_sizes_squared = 0;
1978 size_t sum_of_expansion = 0;
1979 size_t sum_of_expansion_squared = 0;
1980 size_t n = method_outlier_size.size();
Jeff Haodcdc85b2015-12-04 14:06:18 -08001981 if (n == 0) {
1982 return;
1983 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001984 for (size_t i = 0; i < n; i++) {
1985 size_t cur_size = method_outlier_size[i];
1986 sum_of_sizes += cur_size;
1987 sum_of_sizes_squared += cur_size * cur_size;
1988 double cur_expansion = method_outlier_expansion[i];
1989 sum_of_expansion += cur_expansion;
1990 sum_of_expansion_squared += cur_expansion * cur_expansion;
1991 }
1992 size_t size_mean = sum_of_sizes / n;
1993 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
1994 double expansion_mean = sum_of_expansion / n;
1995 double expansion_variance =
1996 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
1997
1998 // Dump methods whose size is a certain number of standard deviations from the mean
1999 size_t dumped_values = 0;
2000 size_t skipped_values = 0;
2001 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
2002 size_t cur_size_variance = i * i * size_variance;
2003 bool first = true;
2004 for (size_t j = 0; j < n; j++) {
2005 size_t cur_size = method_outlier_size[j];
2006 if (cur_size > size_mean) {
2007 size_t cur_var = cur_size - size_mean;
2008 cur_var = cur_var * cur_var;
2009 if (cur_var > cur_size_variance) {
2010 if (dumped_values > 20) {
2011 if (i == 1) {
2012 skipped_values++;
2013 } else {
2014 i = 2; // jump to counting for 1 standard deviation
2015 break;
2016 }
2017 } else {
2018 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07002019 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002020 first = false;
2021 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002022 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07002023 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002024 method_outlier_size[j] = 0; // don't consider this method again
2025 dumped_values++;
2026 }
2027 }
2028 }
2029 }
2030 }
2031 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002032 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07002033 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002034 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002035 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002036
2037 // Dump methods whose expansion is a certain number of standard deviations from the mean
2038 dumped_values = 0;
2039 skipped_values = 0;
2040 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
2041 double cur_expansion_variance = i * i * expansion_variance;
2042 bool first = true;
2043 for (size_t j = 0; j < n; j++) {
2044 double cur_expansion = method_outlier_expansion[j];
2045 if (cur_expansion > expansion_mean) {
2046 size_t cur_var = cur_expansion - expansion_mean;
2047 cur_var = cur_var * cur_var;
2048 if (cur_var > cur_expansion_variance) {
2049 if (dumped_values > 20) {
2050 if (i == 1) {
2051 skipped_values++;
2052 } else {
2053 i = 2; // jump to counting for 1 standard deviation
2054 break;
2055 }
2056 } else {
2057 if (first) {
2058 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07002059 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002060 first = false;
2061 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002062 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07002063 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002064 method_outlier_expansion[j] = 0.0; // don't consider this method again
2065 dumped_values++;
2066 }
2067 }
2068 }
2069 }
2070 }
2071 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002072 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07002073 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002074 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002075 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002076 }
2077
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01002078 void Dump(std::ostream& os, std::ostream& indent_os)
Mathieu Chartier90443472015-07-16 20:32:27 -07002079 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002080 {
2081 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
2082 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
Vladimir Marko05792b92015-08-03 11:56:49 +01002083 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
2084 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
2085 "art_field_bytes = %8zd (%2.0f%% of art file bytes)\n"
2086 "art_method_bytes = %8zd (%2.0f%% of art file bytes)\n"
2087 "dex_cache_arrays_bytes = %8zd (%2.0f%% of art file bytes)\n"
2088 "interned_string_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002089 "class_table_bytes = %8zd (%2.0f%% of art file bytes)\n"
Vladimir Marko05792b92015-08-03 11:56:49 +01002090 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
2091 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002092 header_bytes, PercentOfFileBytes(header_bytes),
2093 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartiere401d142015-04-22 13:56:20 -07002094 art_field_bytes, PercentOfFileBytes(art_field_bytes),
2095 art_method_bytes, PercentOfFileBytes(art_method_bytes),
Vladimir Marko05792b92015-08-03 11:56:49 +01002096 dex_cache_arrays_bytes,
2097 PercentOfFileBytes(dex_cache_arrays_bytes),
Mathieu Chartierd39645e2015-06-09 17:50:29 -07002098 interned_strings_bytes,
2099 PercentOfFileBytes(interned_strings_bytes),
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002100 class_table_bytes, PercentOfFileBytes(class_table_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07002101 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002102 alignment_bytes, PercentOfFileBytes(alignment_bytes))
2103 << std::flush;
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002104 CHECK_EQ(file_bytes,
2105 header_bytes + object_bytes + art_field_bytes + art_method_bytes +
2106 dex_cache_arrays_bytes + interned_strings_bytes + class_table_bytes +
2107 bitmap_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002108 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002109
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002110 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002111 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07002112 for (const auto& sizes_and_count : sizes_and_counts) {
2113 const std::string& descriptor(sizes_and_count.first);
2114 double average = static_cast<double>(sizes_and_count.second.bytes) /
2115 static_cast<double>(sizes_and_count.second.count);
2116 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002117 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07002118 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07002119 descriptor.c_str(), sizes_and_count.second.bytes,
2120 sizes_and_count.second.count, average, percent);
2121 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002122 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002123 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002124 CHECK_EQ(object_bytes, object_bytes_total);
2125
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002126 os << StringPrintf("oat_file_bytes = %8zd\n"
2127 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2128 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2129 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
2130 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2131 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2132 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07002133 oat_file_bytes,
Brian Carlstrom2ec65202014-03-03 15:16:37 -08002134 managed_code_bytes,
2135 PercentOfOatBytes(managed_code_bytes),
2136 managed_to_native_code_bytes,
2137 PercentOfOatBytes(managed_to_native_code_bytes),
2138 native_to_managed_code_bytes,
2139 PercentOfOatBytes(native_to_managed_code_bytes),
2140 class_initializer_code_bytes,
2141 PercentOfOatBytes(class_initializer_code_bytes),
2142 large_initializer_code_bytes,
2143 PercentOfOatBytes(large_initializer_code_bytes),
2144 large_method_code_bytes,
2145 PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002146 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07002147 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002148 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07002149 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
2150 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07002151 }
2152
Vladimir Marko9d07e3d2016-03-31 12:02:28 +01002153 os << "\n" << StringPrintf("vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07002154 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07002155 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002156
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002157 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
2158 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Brian Carlstrom2ec65202014-03-03 15:16:37 -08002159 static_cast<double>(managed_code_bytes) /
2160 static_cast<double>(dex_instruction_bytes),
Elliott Hughesc073b072012-05-24 19:29:17 -07002161 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07002162 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07002163 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002164
2165 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002166 }
2167 } stats_;
2168
2169 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07002170 enum {
2171 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
2172 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
2173 kLargeConstructorDexBytes = 4000,
2174 // Number of bytes for a method to be considered large. Based on the 4000 basic block
2175 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
2176 kLargeMethodDexBytes = 16000
2177 };
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01002178
2179 // For performance, use the *os_ directly for anything that doesn't need indentation
2180 // and prepare an indentation stream with default indentation 1.
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002181 std::ostream* os_;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01002182 VariableIndentationOutputStream vios_;
2183 ScopedIndentation indent1_;
2184
Ian Rogers1d54e732013-05-02 21:10:01 -07002185 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002186 const ImageHeader& image_header_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07002187 std::unique_ptr<OatDumper> oat_dumper_;
Andreas Gampedf2bb1f2015-05-04 18:25:23 -07002188 OatDumperOptions* oat_dumper_options_;
Vladimir Marko05792b92015-08-03 11:56:49 +01002189 std::set<mirror::Object*> dex_caches_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07002190
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002191 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002192};
2193
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002194static int DumpImage(gc::space::ImageSpace* image_space,
2195 OatDumperOptions* options,
2196 std::ostream* os) SHARED_REQUIRES(Locks::mutator_lock_) {
2197 const ImageHeader& image_header = image_space->GetImageHeader();
2198 if (!image_header.IsValid()) {
2199 fprintf(stderr, "Invalid image header %s\n", image_space->GetImageLocation().c_str());
2200 return EXIT_FAILURE;
2201 }
2202 ImageDumper image_dumper(os, *image_space, image_header, options);
2203 if (!image_dumper.Dump()) {
2204 return EXIT_FAILURE;
2205 }
2206 return EXIT_SUCCESS;
2207}
2208
2209static int DumpImages(Runtime* runtime, OatDumperOptions* options, std::ostream* os) {
Andreas Gampe00b25f32014-09-17 21:49:05 -07002210 // Dumping the image, no explicit class loader.
Mathieu Chartier9865bde2015-12-21 09:58:16 -08002211 ScopedNullHandle<mirror::ClassLoader> null_class_loader;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002212 options->class_loader_ = &null_class_loader;
2213
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002214 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002215 if (options->app_image_ != nullptr) {
2216 if (options->app_oat_ == nullptr) {
2217 LOG(ERROR) << "Can not dump app image without app oat file";
Jeff Haodcdc85b2015-12-04 14:06:18 -08002218 return EXIT_FAILURE;
2219 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002220 // We can't know if the app image is 32 bits yet, but it contains pointers into the oat file.
2221 // We need to map the oat file in the low 4gb or else the fixup wont be able to fit oat file
2222 // pointers into 32 bit pointer sized ArtMethods.
2223 std::string error_msg;
2224 std::unique_ptr<OatFile> oat_file(OatFile::Open(options->app_oat_,
2225 options->app_oat_,
2226 nullptr,
2227 nullptr,
2228 false,
2229 /*low_4gb*/true,
2230 nullptr,
2231 &error_msg));
2232 if (oat_file == nullptr) {
2233 LOG(ERROR) << "Failed to open oat file " << options->app_oat_ << " with error " << error_msg;
Jeff Haodcdc85b2015-12-04 14:06:18 -08002234 return EXIT_FAILURE;
2235 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002236 std::unique_ptr<gc::space::ImageSpace> space(
2237 gc::space::ImageSpace::CreateFromAppImage(options->app_image_, oat_file.get(), &error_msg));
2238 if (space == nullptr) {
2239 LOG(ERROR) << "Failed to open app image " << options->app_image_ << " with error "
2240 << error_msg;
2241 }
2242 // Open dex files for the image.
2243 std::vector<std::unique_ptr<const DexFile>> dex_files;
2244 if (!runtime->GetClassLinker()->OpenImageDexFiles(space.get(), &dex_files, &error_msg)) {
2245 LOG(ERROR) << "Failed to open app image dex files " << options->app_image_ << " with error "
2246 << error_msg;
2247 }
2248 // Dump the actual image.
2249 int result = DumpImage(space.get(), options, os);
2250 if (result != EXIT_SUCCESS) {
2251 return result;
2252 }
2253 // Fall through to dump the boot images.
2254 }
2255
2256 gc::Heap* heap = runtime->GetHeap();
2257 CHECK(heap->HasBootImageSpace()) << "No image spaces";
2258 for (gc::space::ImageSpace* image_space : heap->GetBootImageSpaces()) {
2259 int result = DumpImage(image_space, options, os);
2260 if (result != EXIT_SUCCESS) {
2261 return result;
2262 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07002263 }
Jeff Haodcdc85b2015-12-04 14:06:18 -08002264 return EXIT_SUCCESS;
Brian Carlstrom78128a62011-09-15 17:21:19 -07002265}
2266
Andreas Gampe00b25f32014-09-17 21:49:05 -07002267static int DumpOatWithRuntime(Runtime* runtime, OatFile* oat_file, OatDumperOptions* options,
2268 std::ostream* os) {
2269 CHECK(runtime != nullptr && oat_file != nullptr && options != nullptr);
2270
2271 Thread* self = Thread::Current();
2272 CHECK(self != nullptr);
2273 // Need well-known-classes.
2274 WellKnownClasses::Init(self->GetJniEnv());
2275
2276 // Need to register dex files to get a working dex cache.
2277 ScopedObjectAccess soa(self);
2278 ClassLinker* class_linker = runtime->GetClassLinker();
Mathieu Chartierd57d4542015-10-14 10:55:30 -07002279 runtime->GetOatFileManager().RegisterOatFile(std::unique_ptr<const OatFile>(oat_file));
Mathieu Chartierac8f4392015-08-27 13:54:20 -07002280 std::vector<const DexFile*> class_path;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002281 for (const OatFile::OatDexFile* odf : oat_file->GetOatDexFiles()) {
2282 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -07002283 const DexFile* const dex_file = OpenDexFile(odf, &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002284 CHECK(dex_file != nullptr) << error_msg;
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -07002285 class_linker->RegisterDexFile(*dex_file, nullptr);
Mathieu Chartierac8f4392015-08-27 13:54:20 -07002286 class_path.push_back(dex_file);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002287 }
2288
2289 // Need a class loader.
Andreas Gampe00b25f32014-09-17 21:49:05 -07002290 // Fake that we're a compiler.
Mathieu Chartier966878d2016-01-14 14:33:29 -08002291 jobject class_loader = class_linker->CreatePathClassLoader(self, class_path);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002292
2293 // Use the class loader while dumping.
2294 StackHandleScope<1> scope(self);
2295 Handle<mirror::ClassLoader> loader_handle = scope.NewHandle(
2296 soa.Decode<mirror::ClassLoader*>(class_loader));
2297 options->class_loader_ = &loader_handle;
2298
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002299 OatDumper oat_dumper(*oat_file, *options);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002300 bool success = oat_dumper.Dump(*os);
2301 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
2302}
2303
2304static int DumpOatWithoutRuntime(OatFile* oat_file, OatDumperOptions* options, std::ostream* os) {
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002305 CHECK(oat_file != nullptr && options != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002306 // No image = no class loader.
Mathieu Chartier9865bde2015-12-21 09:58:16 -08002307 ScopedNullHandle<mirror::ClassLoader> null_class_loader;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002308 options->class_loader_ = &null_class_loader;
2309
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002310 OatDumper oat_dumper(*oat_file, *options);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002311 bool success = oat_dumper.Dump(*os);
2312 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
2313}
2314
2315static int DumpOat(Runtime* runtime, const char* oat_filename, OatDumperOptions* options,
2316 std::ostream* os) {
2317 std::string error_msg;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002318 OatFile* oat_file = OatFile::Open(oat_filename,
2319 oat_filename,
2320 nullptr,
2321 nullptr,
2322 false,
2323 /*low_4gb*/false,
2324 nullptr,
2325 &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002326 if (oat_file == nullptr) {
2327 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
2328 return EXIT_FAILURE;
2329 }
2330
2331 if (runtime != nullptr) {
2332 return DumpOatWithRuntime(runtime, oat_file, options, os);
2333 } else {
2334 return DumpOatWithoutRuntime(oat_file, options, os);
2335 }
2336}
2337
David Srbecky2fdd03c2016-03-10 15:32:37 +00002338static int SymbolizeOat(const char* oat_filename, std::string& output_name, bool no_bits) {
Andreas Gampe00b25f32014-09-17 21:49:05 -07002339 std::string error_msg;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002340 OatFile* oat_file = OatFile::Open(oat_filename,
2341 oat_filename,
2342 nullptr,
2343 nullptr,
2344 false,
2345 /*low_4gb*/false,
2346 nullptr,
2347 &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002348 if (oat_file == nullptr) {
2349 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
2350 return EXIT_FAILURE;
2351 }
2352
Andreas Gampe2d8614b2016-03-07 16:31:34 -08002353 bool result;
2354 // Try to produce an ELF file of the same type. This is finicky, as we have used 32-bit ELF
2355 // files for 64-bit code in the past.
2356 if (Is64BitInstructionSet(oat_file->GetOatHeader().GetInstructionSet())) {
David Srbecky2fdd03c2016-03-10 15:32:37 +00002357 OatSymbolizer<ElfTypes64> oat_symbolizer(oat_file, output_name, no_bits);
Andreas Gampe2d8614b2016-03-07 16:31:34 -08002358 result = oat_symbolizer.Symbolize();
2359 } else {
David Srbecky2fdd03c2016-03-10 15:32:37 +00002360 OatSymbolizer<ElfTypes32> oat_symbolizer(oat_file, output_name, no_bits);
Andreas Gampe2d8614b2016-03-07 16:31:34 -08002361 result = oat_symbolizer.Symbolize();
2362 }
2363 if (!result) {
Andreas Gampe00b25f32014-09-17 21:49:05 -07002364 fprintf(stderr, "Failed to symbolize\n");
2365 return EXIT_FAILURE;
2366 }
2367
2368 return EXIT_SUCCESS;
2369}
2370
Igor Murashkin37743352014-11-13 14:38:00 -08002371struct OatdumpArgs : public CmdlineArgs {
2372 protected:
2373 using Base = CmdlineArgs;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002374
Igor Murashkin37743352014-11-13 14:38:00 -08002375 virtual ParseStatus ParseCustom(const StringPiece& option,
2376 std::string* error_msg) OVERRIDE {
2377 {
2378 ParseStatus base_parse = Base::ParseCustom(option, error_msg);
2379 if (base_parse != kParseUnknownArgument) {
2380 return base_parse;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002381 }
2382 }
2383
Igor Murashkin37743352014-11-13 14:38:00 -08002384 if (option.starts_with("--oat-file=")) {
2385 oat_filename_ = option.substr(strlen("--oat-file=")).data();
2386 } else if (option.starts_with("--image=")) {
2387 image_location_ = option.substr(strlen("--image=")).data();
Igor Murashkin37743352014-11-13 14:38:00 -08002388 } else if (option == "--no-dump:vmap") {
2389 dump_vmap_ = false;
Roland Levillainf2650d12015-05-28 14:53:28 +01002390 } else if (option =="--dump:code_info_stack_maps") {
2391 dump_code_info_stack_maps_ = true;
Igor Murashkin37743352014-11-13 14:38:00 -08002392 } else if (option == "--no-disassemble") {
2393 disassemble_code_ = false;
David Brazdilc03d7b62016-03-02 12:18:03 +00002394 } else if (option =="--header-only") {
2395 dump_header_only_ = true;
Igor Murashkin37743352014-11-13 14:38:00 -08002396 } else if (option.starts_with("--symbolize=")) {
2397 oat_filename_ = option.substr(strlen("--symbolize=")).data();
2398 symbolize_ = true;
David Srbecky2fdd03c2016-03-10 15:32:37 +00002399 } else if (option.starts_with("--only-keep-debug")) {
2400 only_keep_debug_ = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002401 } else if (option.starts_with("--class-filter=")) {
2402 class_filter_ = option.substr(strlen("--class-filter=")).data();
Igor Murashkin37743352014-11-13 14:38:00 -08002403 } else if (option.starts_with("--method-filter=")) {
2404 method_filter_ = option.substr(strlen("--method-filter=")).data();
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002405 } else if (option.starts_with("--list-classes")) {
2406 list_classes_ = true;
2407 } else if (option.starts_with("--list-methods")) {
2408 list_methods_ = true;
2409 } else if (option.starts_with("--export-dex-to=")) {
2410 export_dex_location_ = option.substr(strlen("--export-dex-to=")).data();
2411 } else if (option.starts_with("--addr2instr=")) {
2412 if (!ParseUint(option.substr(strlen("--addr2instr=")).data(), &addr2instr_)) {
2413 *error_msg = "Address conversion failed";
2414 return kParseError;
2415 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002416 } else if (option.starts_with("--app-image=")) {
2417 app_image_ = option.substr(strlen("--app-image=")).data();
2418 } else if (option.starts_with("--app-oat=")) {
2419 app_oat_ = option.substr(strlen("--app-oat=")).data();
Igor Murashkin37743352014-11-13 14:38:00 -08002420 } else {
2421 return kParseUnknownArgument;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002422 }
2423
Igor Murashkin37743352014-11-13 14:38:00 -08002424 return kParseOk;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002425 }
2426
Igor Murashkin37743352014-11-13 14:38:00 -08002427 virtual ParseStatus ParseChecks(std::string* error_msg) OVERRIDE {
2428 // Infer boot image location from the image location if possible.
2429 if (boot_image_location_ == nullptr) {
2430 boot_image_location_ = image_location_;
2431 }
2432
2433 // Perform the parent checks.
2434 ParseStatus parent_checks = Base::ParseChecks(error_msg);
2435 if (parent_checks != kParseOk) {
2436 return parent_checks;
2437 }
2438
2439 // Perform our own checks.
2440 if (image_location_ == nullptr && oat_filename_ == nullptr) {
2441 *error_msg = "Either --image or --oat-file must be specified";
2442 return kParseError;
2443 } else if (image_location_ != nullptr && oat_filename_ != nullptr) {
2444 *error_msg = "Either --image or --oat-file must be specified but not both";
2445 return kParseError;
2446 }
2447
2448 return kParseOk;
2449 }
2450
2451 virtual std::string GetUsage() const {
2452 std::string usage;
2453
2454 usage +=
2455 "Usage: oatdump [options] ...\n"
2456 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art\n"
2457 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
2458 "\n"
2459 // Either oat-file or image is required.
2460 " --oat-file=<file.oat>: specifies an input oat filename.\n"
2461 " Example: --oat-file=/system/framework/boot.oat\n"
2462 "\n"
2463 " --image=<file.art>: specifies an input image location.\n"
2464 " Example: --image=/system/framework/boot.art\n"
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002465 "\n"
2466 " --app-image=<file.art>: specifies an input app image. Must also have a specified\n"
2467 " boot image and app oat file.\n"
2468 " Example: --app-image=app.art\n"
2469 "\n"
2470 " --app-oat=<file.odex>: specifies an input app oat.\n"
2471 " Example: --app-oat=app.odex\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002472 "\n";
2473
2474 usage += Base::GetUsage();
2475
2476 usage += // Optional.
Igor Murashkin37743352014-11-13 14:38:00 -08002477 " --no-dump:vmap may be used to disable vmap dumping.\n"
2478 " Example: --no-dump:vmap\n"
2479 "\n"
Roland Levillainf2650d12015-05-28 14:53:28 +01002480 " --dump:code_info_stack_maps enables dumping of stack maps in CodeInfo sections.\n"
2481 " Example: --dump:code_info_stack_maps\n"
2482 "\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002483 " --no-disassemble may be used to disable disassembly.\n"
2484 " Example: --no-disassemble\n"
2485 "\n"
David Brazdilc03d7b62016-03-02 12:18:03 +00002486 " --header-only may be used to print only the oat header.\n"
2487 " Example: --header-only\n"
2488 "\n"
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002489 " --list-classes may be used to list target file classes (can be used with filters).\n"
2490 " Example: --list-classes\n"
2491 " Example: --list-classes --class-filter=com.example.foo\n"
2492 "\n"
2493 " --list-methods may be used to list target file methods (can be used with filters).\n"
2494 " Example: --list-methods\n"
2495 " Example: --list-methods --class-filter=com.example --method-filter=foo\n"
2496 "\n"
2497 " --symbolize=<file.oat>: output a copy of file.oat with elf symbols included.\n"
2498 " Example: --symbolize=/system/framework/boot.oat\n"
2499 "\n"
David Srbecky2fdd03c2016-03-10 15:32:37 +00002500 " --only-keep-debug<file.oat>: Modifies the behaviour of --symbolize so that\n"
2501 " .rodata and .text sections are omitted in the output file to save space.\n"
2502 " Example: --symbolize=/system/framework/boot.oat --only-keep-debug\n"
2503 "\n"
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002504 " --class-filter=<class name>: only dumps classes that contain the filter.\n"
2505 " Example: --class-filter=com.example.foo\n"
2506 "\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002507 " --method-filter=<method name>: only dumps methods that contain the filter.\n"
2508 " Example: --method-filter=foo\n"
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002509 "\n"
2510 " --export-dex-to=<directory>: may be used to export oat embedded dex files.\n"
2511 " Example: --export-dex-to=/data/local/tmp\n"
2512 "\n"
2513 " --addr2instr=<address>: output matching method disassembled code from relative\n"
2514 " address (e.g. PC from crash dump)\n"
2515 " Example: --addr2instr=0x00001a3b\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002516 "\n";
2517
2518 return usage;
2519 }
2520
2521 public:
Andreas Gampe00b25f32014-09-17 21:49:05 -07002522 const char* oat_filename_ = nullptr;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002523 const char* class_filter_ = "";
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +00002524 const char* method_filter_ = "";
Andreas Gampe00b25f32014-09-17 21:49:05 -07002525 const char* image_location_ = nullptr;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002526 std::string elf_filename_prefix_;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002527 bool dump_vmap_ = true;
Roland Levillainf2650d12015-05-28 14:53:28 +01002528 bool dump_code_info_stack_maps_ = false;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002529 bool disassemble_code_ = true;
2530 bool symbolize_ = false;
David Srbecky2fdd03c2016-03-10 15:32:37 +00002531 bool only_keep_debug_ = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002532 bool list_classes_ = false;
2533 bool list_methods_ = false;
David Brazdilc03d7b62016-03-02 12:18:03 +00002534 bool dump_header_only_ = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002535 uint32_t addr2instr_ = 0;
2536 const char* export_dex_location_ = nullptr;
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002537 const char* app_image_ = nullptr;
2538 const char* app_oat_ = nullptr;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002539};
2540
Igor Murashkin37743352014-11-13 14:38:00 -08002541struct OatdumpMain : public CmdlineMain<OatdumpArgs> {
2542 virtual bool NeedsRuntime() OVERRIDE {
2543 CHECK(args_ != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002544
Igor Murashkin37743352014-11-13 14:38:00 -08002545 // If we are only doing the oat file, disable absolute_addresses. Keep them for image dumping.
2546 bool absolute_addresses = (args_->oat_filename_ == nullptr);
2547
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002548 oat_dumper_options_.reset(new OatDumperOptions(
Igor Murashkin37743352014-11-13 14:38:00 -08002549 args_->dump_vmap_,
Roland Levillainf2650d12015-05-28 14:53:28 +01002550 args_->dump_code_info_stack_maps_,
Igor Murashkin37743352014-11-13 14:38:00 -08002551 args_->disassemble_code_,
2552 absolute_addresses,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002553 args_->class_filter_,
2554 args_->method_filter_,
2555 args_->list_classes_,
2556 args_->list_methods_,
David Brazdilc03d7b62016-03-02 12:18:03 +00002557 args_->dump_header_only_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002558 args_->export_dex_location_,
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002559 args_->app_image_,
2560 args_->app_oat_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002561 args_->addr2instr_));
Igor Murashkin37743352014-11-13 14:38:00 -08002562
2563 return (args_->boot_image_location_ != nullptr || args_->image_location_ != nullptr) &&
2564 !args_->symbolize_;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002565 }
2566
Igor Murashkin37743352014-11-13 14:38:00 -08002567 virtual bool ExecuteWithoutRuntime() OVERRIDE {
2568 CHECK(args_ != nullptr);
Andreas Gampec24f3992014-12-17 20:40:11 -08002569 CHECK(args_->oat_filename_ != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002570
Mathieu Chartierd424d082014-10-15 10:31:46 -07002571 MemMap::Init();
Igor Murashkin37743352014-11-13 14:38:00 -08002572
Andreas Gampec24f3992014-12-17 20:40:11 -08002573 if (args_->symbolize_) {
David Srbecky2fdd03c2016-03-10 15:32:37 +00002574 // ELF has special kind of section called SHT_NOBITS which allows us to create
2575 // sections which exist but their data is omitted from the ELF file to save space.
2576 // This is what "strip --only-keep-debug" does when it creates separate ELF file
2577 // with only debug data. We use it in similar way to exclude .rodata and .text.
2578 bool no_bits = args_->only_keep_debug_;
2579 return SymbolizeOat(args_->oat_filename_, args_->output_name_, no_bits) == EXIT_SUCCESS;
Andreas Gampec24f3992014-12-17 20:40:11 -08002580 } else {
2581 return DumpOat(nullptr,
2582 args_->oat_filename_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002583 oat_dumper_options_.get(),
Andreas Gampec24f3992014-12-17 20:40:11 -08002584 args_->os_) == EXIT_SUCCESS;
2585 }
Andreas Gampe00b25f32014-09-17 21:49:05 -07002586 }
2587
Igor Murashkin37743352014-11-13 14:38:00 -08002588 virtual bool ExecuteWithRuntime(Runtime* runtime) {
2589 CHECK(args_ != nullptr);
2590
2591 if (args_->oat_filename_ != nullptr) {
2592 return DumpOat(runtime,
2593 args_->oat_filename_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002594 oat_dumper_options_.get(),
Igor Murashkin37743352014-11-13 14:38:00 -08002595 args_->os_) == EXIT_SUCCESS;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002596 }
Igor Murashkin37743352014-11-13 14:38:00 -08002597
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -08002598 return DumpImages(runtime, oat_dumper_options_.get(), args_->os_) == EXIT_SUCCESS;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002599 }
2600
Igor Murashkin37743352014-11-13 14:38:00 -08002601 std::unique_ptr<OatDumperOptions> oat_dumper_options_;
2602};
Andreas Gampe00b25f32014-09-17 21:49:05 -07002603
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002604} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07002605
2606int main(int argc, char** argv) {
Igor Murashkin37743352014-11-13 14:38:00 -08002607 art::OatdumpMain main;
2608 return main.Main(argc, argv);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002609}