blob: 6199808e29fb21758771810441fd412d47356cd7 [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"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070035#include "dex_file-inl.h"
Elliott Hughese3c845c2012-02-28 17:23:01 -080036#include "dex_instruction.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080037#include "disassembler.h"
Andreas Gampe54fc26c2014-09-04 21:47:42 -070038#include "elf_builder.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080039#include "gc_map.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070040#include "gc/space/image_space.h"
41#include "gc/space/large_object_space.h"
42#include "gc/space/space-inl.h"
Brian Carlstrom78128a62011-09-15 17:21:19 -070043#include "image.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080044#include "indenter.h"
Ian Rogers1809a722013-08-09 22:05:32 -070045#include "mapping_table.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080046#include "mirror/array-inl.h"
47#include "mirror/class-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010048#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049#include "mirror/object-inl.h"
50#include "mirror/object_array-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080051#include "oat.h"
Vladimir Marko8a630572014-04-09 18:45:35 +010052#include "oat_file-inl.h"
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070053#include "oat_file_manager.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080054#include "os.h"
Andreas Gampe54fc26c2014-09-04 21:47:42 -070055#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070056#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070057#include "scoped_thread_state_change.h"
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010058#include "stack_map.h"
Andreas Gampe00b25f32014-09-17 21:49:05 -070059#include "ScopedLocalRef.h"
Mathieu Chartierc22c59e2014-02-24 15:16:06 -080060#include "thread_list.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080061#include "verifier/dex_gc_map.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080062#include "verifier/method_verifier.h"
Ian Rogers1809a722013-08-09 22:05:32 -070063#include "vmap_table.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
David Srbeckybc90fd02015-04-22 19:40:27 +0100100class OatSymbolizer FINAL {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700101 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100102 OatSymbolizer(const OatFile* oat_file, const std::string& output_name) :
David Srbeckybc90fd02015-04-22 19:40:27 +0100103 oat_file_(oat_file), builder_(nullptr),
104 output_name_(output_name.empty() ? "symbolized.oat" : output_name) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700105 }
106
107 typedef void (OatSymbolizer::*Callback)(const DexFile::ClassDef&,
108 uint32_t,
109 const OatFile::OatMethod&,
110 const DexFile&,
111 uint32_t,
112 const DexFile::CodeItem*,
113 uint32_t);
114
115 bool Symbolize() {
David Srbecky6d8c8f02015-10-26 10:57:09 +0000116 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet();
117
118 File* elf_file = OS::CreateEmptyFile(output_name_.c_str());
119 std::unique_ptr<BufferedOutputStream> output_stream(
Vladimir Marko10c13562015-11-25 14:33:36 +0000120 MakeUnique<BufferedOutputStream>(MakeUnique<FileOutputStream>(elf_file)));
David Srbecky6d8c8f02015-10-26 10:57:09 +0000121 builder_.reset(new ElfBuilder<ElfTypes32>(isa, output_stream.get()));
122
123 builder_->Start();
124
125 auto* rodata = builder_->GetRoData();
126 auto* text = builder_->GetText();
127 auto* bss = builder_->GetBss();
128 auto* strtab = builder_->GetStrTab();
129 auto* symtab = builder_->GetSymTab();
130
131 rodata->Start();
132 const uint8_t* rodata_begin = oat_file_->Begin();
133 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset();
134 rodata->WriteFully(rodata_begin, rodata_size);
135 rodata->End();
136
137 text->Start();
138 const uint8_t* text_begin = oat_file_->Begin() + rodata_size;
139 const size_t text_size = oat_file_->End() - text_begin;
140 text->WriteFully(text_begin, text_size);
141 text->End();
142
143 if (oat_file_->BssSize() != 0) {
144 bss->Start();
145 bss->SetSize(oat_file_->BssSize());
146 bss->End();
147 }
148
149 builder_->WriteDynamicSection(elf_file->GetPath());
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700150
151 Walk(&art::OatSymbolizer::RegisterForDedup);
152
153 NormalizeState();
154
David Srbecky6d8c8f02015-10-26 10:57:09 +0000155 strtab->Start();
156 strtab->Write(""); // strtab should start with empty string.
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700157 Walk(&art::OatSymbolizer::AddSymbol);
David Srbecky6d8c8f02015-10-26 10:57:09 +0000158 strtab->End();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700159
David Srbecky6d8c8f02015-10-26 10:57:09 +0000160 symtab->Start();
161 symtab->Write();
162 symtab->End();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700163
David Srbecky6d8c8f02015-10-26 10:57:09 +0000164 builder_->End();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700165
Vladimir Marko10c13562015-11-25 14:33:36 +0000166 return builder_->Good();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700167 }
168
169 void Walk(Callback callback) {
170 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles();
171 for (size_t i = 0; i < oat_dex_files.size(); i++) {
172 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700173 CHECK(oat_dex_file != nullptr);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700174 WalkOatDexFile(oat_dex_file, callback);
175 }
176 }
177
178 void WalkOatDexFile(const OatFile::OatDexFile* oat_dex_file, Callback callback) {
179 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700180 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg);
181 if (dex_file == nullptr) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700182 return;
183 }
184 for (size_t class_def_index = 0;
185 class_def_index < dex_file->NumClassDefs();
186 class_def_index++) {
187 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
188 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
189 OatClassType type = oat_class.GetType();
190 switch (type) {
191 case kOatClassAllCompiled:
192 case kOatClassSomeCompiled:
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700193 WalkOatClass(oat_class, *dex_file, class_def, callback);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700194 break;
195
196 case kOatClassNoneCompiled:
197 case kOatClassMax:
198 // Ignore.
199 break;
200 }
201 }
202 }
203
204 void WalkOatClass(const OatFile::OatClass& oat_class, const DexFile& dex_file,
205 const DexFile::ClassDef& class_def, Callback callback) {
Ian Rogers13735952014-10-08 12:43:28 -0700206 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700207 if (class_data == nullptr) { // empty class such as a marker interface?
208 return;
209 }
210 // Note: even if this is an interface or a native class, we still have to walk it, as there
211 // might be a static initializer.
212 ClassDataItemIterator it(dex_file, class_data);
213 SkipAllFields(&it);
214 uint32_t class_method_idx = 0;
215 while (it.HasNextDirectMethod()) {
216 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
217 WalkOatMethod(class_def, class_method_idx, oat_method, dex_file, it.GetMemberIndex(),
Andreas Gampe51829322014-08-25 15:05:04 -0700218 it.GetMethodCodeItem(), it.GetMethodAccessFlags(), callback);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700219 class_method_idx++;
220 it.Next();
221 }
222 while (it.HasNextVirtualMethod()) {
223 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx);
224 WalkOatMethod(class_def, class_method_idx, oat_method, dex_file, it.GetMemberIndex(),
Andreas Gampe51829322014-08-25 15:05:04 -0700225 it.GetMethodCodeItem(), it.GetMethodAccessFlags(), callback);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700226 class_method_idx++;
227 it.Next();
228 }
229 DCHECK(!it.HasNext());
230 }
231
232 void WalkOatMethod(const DexFile::ClassDef& class_def, uint32_t class_method_index,
233 const OatFile::OatMethod& oat_method, const DexFile& dex_file,
234 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
235 uint32_t method_access_flags, Callback callback) {
236 if ((method_access_flags & kAccAbstract) != 0) {
237 // Abstract method, no code.
238 return;
239 }
240 if (oat_method.GetCodeOffset() == 0) {
241 // No code.
242 return;
243 }
244
245 (this->*callback)(class_def, class_method_index, oat_method, dex_file, dex_method_idx, code_item,
246 method_access_flags);
247 }
248
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700249 void RegisterForDedup(const DexFile::ClassDef& class_def ATTRIBUTE_UNUSED,
250 uint32_t class_method_index ATTRIBUTE_UNUSED,
251 const OatFile::OatMethod& oat_method,
252 const DexFile& dex_file ATTRIBUTE_UNUSED,
253 uint32_t dex_method_idx ATTRIBUTE_UNUSED,
254 const DexFile::CodeItem* code_item ATTRIBUTE_UNUSED,
255 uint32_t method_access_flags ATTRIBUTE_UNUSED) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700256 state_[oat_method.GetCodeOffset()]++;
257 }
258
259 void NormalizeState() {
260 for (auto& x : state_) {
261 if (x.second == 1) {
262 state_[x.first] = 0;
263 }
264 }
265 }
266
267 enum class DedupState { // private
268 kNotDeduplicated,
269 kDeduplicatedFirst,
270 kDeduplicatedOther
271 };
272 DedupState IsDuplicated(uint32_t offset) {
273 if (state_[offset] == 0) {
274 return DedupState::kNotDeduplicated;
275 }
276 if (state_[offset] == 1) {
277 return DedupState::kDeduplicatedOther;
278 }
279 state_[offset] = 1;
280 return DedupState::kDeduplicatedFirst;
281 }
282
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700283 void AddSymbol(const DexFile::ClassDef& class_def ATTRIBUTE_UNUSED,
284 uint32_t class_method_index ATTRIBUTE_UNUSED,
285 const OatFile::OatMethod& oat_method,
286 const DexFile& dex_file,
287 uint32_t dex_method_idx,
288 const DexFile::CodeItem* code_item ATTRIBUTE_UNUSED,
289 uint32_t method_access_flags ATTRIBUTE_UNUSED) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700290 DedupState dedup = IsDuplicated(oat_method.GetCodeOffset());
291 if (dedup != DedupState::kDeduplicatedOther) {
292 std::string pretty_name = PrettyMethod(dex_method_idx, dex_file, true);
293
294 if (dedup == DedupState::kDeduplicatedFirst) {
295 pretty_name = "[Dedup]" + pretty_name;
296 }
297
David Srbecky6d8c8f02015-10-26 10:57:09 +0000298 int name_offset = builder_->GetStrTab()->Write(pretty_name);
299 builder_->GetSymTab()->Add(name_offset, builder_->GetText(),
Ian Rogers0279ebb2014-10-08 17:27:48 -0700300 oat_method.GetCodeOffset() - oat_file_->GetOatHeader().GetExecutableOffset(),
301 true, oat_method.GetQuickCodeSize(), STB_GLOBAL, STT_FUNC);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700302 }
303 }
304
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700305 private:
306 static void SkipAllFields(ClassDataItemIterator* it) {
307 while (it->HasNextStaticField()) {
308 it->Next();
309 }
310 while (it->HasNextInstanceField()) {
311 it->Next();
312 }
313 }
314
315 const OatFile* oat_file_;
David Srbecky533c2072015-04-22 12:20:22 +0100316 std::unique_ptr<ElfBuilder<ElfTypes32> > builder_;
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700317 std::unordered_map<uint32_t, uint32_t> state_;
Ian Rogers0279ebb2014-10-08 17:27:48 -0700318 const std::string output_name_;
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700319};
320
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700321class OatDumperOptions {
322 public:
323 OatDumperOptions(bool dump_raw_mapping_table,
324 bool dump_raw_gc_map,
325 bool dump_vmap,
Roland Levillainf2650d12015-05-28 14:53:28 +0100326 bool dump_code_info_stack_maps,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700327 bool disassemble_code,
Andreas Gampe00b25f32014-09-17 21:49:05 -0700328 bool absolute_addresses,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800329 const char* class_filter,
330 const char* method_filter,
331 bool list_classes,
332 bool list_methods,
333 const char* export_dex_location,
334 uint32_t addr2instr)
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700335 : dump_raw_mapping_table_(dump_raw_mapping_table),
336 dump_raw_gc_map_(dump_raw_gc_map),
337 dump_vmap_(dump_vmap),
Roland Levillainf2650d12015-05-28 14:53:28 +0100338 dump_code_info_stack_maps_(dump_code_info_stack_maps),
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700339 disassemble_code_(disassemble_code),
Andreas Gampe00b25f32014-09-17 21:49:05 -0700340 absolute_addresses_(absolute_addresses),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800341 class_filter_(class_filter),
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000342 method_filter_(method_filter),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800343 list_classes_(list_classes),
344 list_methods_(list_methods),
345 export_dex_location_(export_dex_location),
346 addr2instr_(addr2instr),
Igor Murashkin37743352014-11-13 14:38:00 -0800347 class_loader_(nullptr) {}
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700348
349 const bool dump_raw_mapping_table_;
350 const bool dump_raw_gc_map_;
351 const bool dump_vmap_;
Roland Levillainf2650d12015-05-28 14:53:28 +0100352 const bool dump_code_info_stack_maps_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700353 const bool disassemble_code_;
354 const bool absolute_addresses_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800355 const char* const class_filter_;
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000356 const char* const method_filter_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800357 const bool list_classes_;
358 const bool list_methods_;
359 const char* const export_dex_location_;
360 uint32_t addr2instr_;
Andreas Gampe00b25f32014-09-17 21:49:05 -0700361 Handle<mirror::ClassLoader>* class_loader_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700362};
363
Elliott Hughese3c845c2012-02-28 17:23:01 -0800364class OatDumper {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700365 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100366 OatDumper(const OatFile& oat_file, const OatDumperOptions& options)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000367 : oat_file_(oat_file),
Elliott Hughesa72ec822012-03-05 17:12:22 -0800368 oat_dex_files_(oat_file.GetOatDexFiles()),
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700369 options_(options),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800370 resolved_addr2instr_(0),
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800371 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
372 disassembler_(Disassembler::Create(instruction_set_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800373 new DisassemblerOptions(options_.absolute_addresses_,
Alexandre Ramesa37d9252014-10-27 11:28:14 +0000374 oat_file.Begin(),
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100375 true /* can_read_literals_ */))) {
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800376 CHECK(options_.class_loader_ != nullptr);
377 CHECK(options_.class_filter_ != nullptr);
378 CHECK(options_.method_filter_ != nullptr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800379 AddAllOffsets();
380 }
381
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700382 ~OatDumper() {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700383 delete disassembler_;
384 }
385
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800386 InstructionSet GetInstructionSet() {
387 return instruction_set_;
388 }
389
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700390 bool Dump(std::ostream& os) {
391 bool success = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800392 const OatHeader& oat_header = oat_file_.GetOatHeader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700393
394 os << "MAGIC:\n";
395 os << oat_header.GetMagic() << "\n\n";
396
397 os << "CHECKSUM:\n";
Elliott Hughesed2adb62012-02-29 14:41:01 -0800398 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700399
Elliott Hughesa72ec822012-03-05 17:12:22 -0800400 os << "INSTRUCTION SET:\n";
401 os << oat_header.GetInstructionSet() << "\n\n";
402
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700403 {
404 std::unique_ptr<const InstructionSetFeatures> features(
405 InstructionSetFeatures::FromBitmap(oat_header.GetInstructionSet(),
406 oat_header.GetInstructionSetFeaturesBitmap()));
407 os << "INSTRUCTION SET FEATURES:\n";
408 os << features->GetFeatureString() << "\n\n";
409 }
Dave Allison70202782013-10-22 17:52:19 -0700410
Brian Carlstromaded5f72011-10-07 17:15:04 -0700411 os << "DEX FILE COUNT:\n";
412 os << oat_header.GetDexFileCount() << "\n\n";
413
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800414#define DUMP_OAT_HEADER_OFFSET(label, offset) \
415 os << label " OFFSET:\n"; \
416 os << StringPrintf("0x%08x", oat_header.offset()); \
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800417 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800418 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
419 } \
420 os << StringPrintf("\n\n");
421
422 DUMP_OAT_HEADER_OFFSET("EXECUTABLE", GetExecutableOffset);
423 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO INTERPRETER BRIDGE",
424 GetInterpreterToInterpreterBridgeOffset);
425 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE",
426 GetInterpreterToCompiledCodeBridgeOffset);
427 DUMP_OAT_HEADER_OFFSET("JNI DLSYM LOOKUP",
428 GetJniDlsymLookupOffset);
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800429 DUMP_OAT_HEADER_OFFSET("QUICK GENERIC JNI TRAMPOLINE",
430 GetQuickGenericJniTrampolineOffset);
431 DUMP_OAT_HEADER_OFFSET("QUICK IMT CONFLICT TRAMPOLINE",
432 GetQuickImtConflictTrampolineOffset);
433 DUMP_OAT_HEADER_OFFSET("QUICK RESOLUTION TRAMPOLINE",
434 GetQuickResolutionTrampolineOffset);
435 DUMP_OAT_HEADER_OFFSET("QUICK TO INTERPRETER BRIDGE",
436 GetQuickToInterpreterBridgeOffset);
437#undef DUMP_OAT_HEADER_OFFSET
Brian Carlstromaded5f72011-10-07 17:15:04 -0700438
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700439 os << "IMAGE PATCH DELTA:\n";
440 os << StringPrintf("%d (0x%08x)\n\n",
441 oat_header.GetImagePatchDelta(),
442 oat_header.GetImagePatchDelta());
Alex Lighta59dd802014-07-02 16:28:08 -0700443
Brian Carlstrom28db0122012-10-18 16:20:41 -0700444 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
445 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
446
447 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800448 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700449
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700450 // Print the key-value store.
451 {
452 os << "KEY VALUE STORE:\n";
453 size_t index = 0;
454 const char* key;
455 const char* value;
456 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) {
457 os << key << " = " << value << "\n";
458 index++;
459 }
460 os << "\n";
461 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700462
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800463 if (options_.absolute_addresses_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700464 os << "BEGIN:\n";
465 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700466
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700467 os << "END:\n";
468 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
469 }
470
471 os << "SIZE:\n";
472 os << oat_file_.Size() << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -0700473
474 os << std::flush;
475
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800476 // If set, adjust relative address to be searched
477 if (options_.addr2instr_ != 0) {
478 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset();
479 os << "SEARCH ADDRESS (executable offset + input):\n";
480 os << StringPrintf("0x%08x\n\n", resolved_addr2instr_);
481 }
482
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800483 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
484 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700485 CHECK(oat_dex_file != nullptr);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800486
487 // If file export selected skip file analysis
488 if (options_.export_dex_location_) {
489 if (!ExportDexFile(os, *oat_dex_file)) {
490 success = false;
491 }
492 } else {
493 if (!DumpOatDexFile(os, *oat_dex_file)) {
494 success = false;
495 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700496 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700497 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700498 os << std::flush;
499 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700500 }
501
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800502 size_t ComputeSize(const void* oat_data) {
Ian Rogers13735952014-10-08 12:43:28 -0700503 if (reinterpret_cast<const uint8_t*>(oat_data) < oat_file_.Begin() ||
504 reinterpret_cast<const uint8_t*>(oat_data) > oat_file_.End()) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800505 return 0; // Address not in oat file
506 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800507 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) -
508 reinterpret_cast<uintptr_t>(oat_file_.Begin());
509 auto it = offsets_.upper_bound(begin_offset);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800510 CHECK(it != offsets_.end());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800511 uintptr_t end_offset = *it;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800512 return end_offset - begin_offset;
513 }
514
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800515 InstructionSet GetOatInstructionSet() {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700516 return oat_file_.GetOatHeader().GetInstructionSet();
517 }
518
Mathieu Chartier90443472015-07-16 20:32:27 -0700519 const void* GetQuickOatCode(ArtMethod* m) SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800520 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
521 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700522 CHECK(oat_dex_file != nullptr);
523 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700524 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg);
525 if (dex_file == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700526 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
527 << "': " << error_msg;
528 } else {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800529 const char* descriptor = m->GetDeclaringClassDescriptor();
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700530 const DexFile::ClassDef* class_def =
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800531 dex_file->FindClassDef(descriptor, ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700532 if (class_def != nullptr) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700533 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100534 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800535 size_t method_index = m->GetMethodIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100536 return oat_class.GetOatMethod(method_index).GetQuickCode();
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800537 }
538 }
539 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700540 return nullptr;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800541 }
542
Brian Carlstromaded5f72011-10-07 17:15:04 -0700543 private:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800544 void AddAllOffsets() {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800545 // We don't know the length of the code for each method, but we need to know where to stop
546 // when disassembling. What we do know is that a region of code will be followed by some other
547 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
548 // of a piece of code by using upper_bound to find the start of the next region.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800549 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
550 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700551 CHECK(oat_dex_file != nullptr);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700552 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700553 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg);
554 if (dex_file == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700555 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
556 << "': " << error_msg;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800557 continue;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800558 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800559 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800560 for (size_t class_def_index = 0;
561 class_def_index < dex_file->NumClassDefs();
562 class_def_index++) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800563 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100564 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700565 const uint8_t* class_data = dex_file->GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700566 if (class_data != nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800567 ClassDataItemIterator it(*dex_file, class_data);
568 SkipAllFields(it);
569 uint32_t class_method_index = 0;
570 while (it.HasNextDirectMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100571 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800572 it.Next();
573 }
574 while (it.HasNextVirtualMethod()) {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100575 AddOffsets(oat_class.GetOatMethod(class_method_index++));
Elliott Hughese3c845c2012-02-28 17:23:01 -0800576 it.Next();
577 }
578 }
579 }
580 }
581
582 // If the last thing in the file is code for a method, there won't be an offset for the "next"
583 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
584 // for the end of the file.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800585 offsets_.insert(oat_file_.Size());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800586 }
587
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700588 static uint32_t AlignCodeOffset(uint32_t maybe_thumb_offset) {
589 return maybe_thumb_offset & ~0x1; // TODO: Make this Thumb2 specific.
590 }
591
Elliott Hughese3c845c2012-02-28 17:23:01 -0800592 void AddOffsets(const OatFile::OatMethod& oat_method) {
Brian Carlstrom95ba0dc2012-03-05 22:06:14 -0800593 uint32_t code_offset = oat_method.GetCodeOffset();
594 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
595 code_offset &= ~0x1;
596 }
597 offsets_.insert(code_offset);
Elliott Hughese3c845c2012-02-28 17:23:01 -0800598 offsets_.insert(oat_method.GetMappingTableOffset());
599 offsets_.insert(oat_method.GetVmapTableOffset());
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800600 offsets_.insert(oat_method.GetGcMapOffset());
Elliott Hughese3c845c2012-02-28 17:23:01 -0800601 }
602
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700603 bool DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
604 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800605 bool stop_analysis = false;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700606 os << "OatDexFile:\n";
Brian Carlstroma004aa92012-02-08 18:05:09 -0800607 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
Elliott Hughesed2adb62012-02-29 14:41:01 -0800608 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700609
610 // Create the verifier early.
611
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700612 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700613 const DexFile* const dex_file = OpenDexFile(&oat_dex_file, &error_msg);
614 if (dex_file == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700615 os << "NOT FOUND: " << error_msg << "\n\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700616 os << std::flush;
617 return false;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700618 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100619
620 VariableIndentationOutputStream vios(&os);
621 ScopedIndentation indent1(&vios);
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800622 for (size_t class_def_index = 0;
623 class_def_index < dex_file->NumClassDefs();
624 class_def_index++) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700625 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
626 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800627
628 // TODO: Support regex
629 if (DescriptorToDot(descriptor).find(options_.class_filter_) == std::string::npos) {
630 continue;
631 }
632
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700633 uint32_t oat_class_offset = oat_dex_file.GetOatClassOffset(class_def_index);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100634 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700635 os << StringPrintf("%zd: %s (offset=0x%08x) (type_idx=%d)",
636 class_def_index, descriptor, oat_class_offset, class_def.class_idx_)
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100637 << " (" << oat_class.GetStatus() << ")"
638 << " (" << oat_class.GetType() << ")\n";
639 // TODO: include bitmap here if type is kOatClassSomeCompiled?
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800640 if (options_.list_classes_) continue;
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700641 if (!DumpOatClass(&vios, oat_class, *dex_file, class_def, &stop_analysis)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700642 success = false;
643 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800644 if (stop_analysis) {
645 os << std::flush;
646 return success;
647 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700648 }
649
650 os << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700651 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700652 }
653
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800654 bool ExportDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
655 std::string error_msg;
656 std::string dex_file_location = oat_dex_file.GetDexFileLocation();
657
Mathieu Chartierac8f4392015-08-27 13:54:20 -0700658 const DexFile* const dex_file = OpenDexFile(&oat_dex_file, &error_msg);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800659 if (dex_file == nullptr) {
660 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg;
661 return false;
662 }
663 size_t fsize = oat_dex_file.FileSize();
664
665 // Some quick checks just in case
666 if (fsize == 0 || fsize < sizeof(DexFile::Header)) {
667 os << "Invalid dex file\n";
668 return false;
669 }
670
671 // Verify output directory exists
672 if (!OS::DirectoryExists(options_.export_dex_location_)) {
673 // TODO: Extend OS::DirectoryExists if symlink support is required
674 os << options_.export_dex_location_ << " output directory not found or symlink\n";
675 return false;
676 }
677
678 // Beautify path names
679 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) {
680 return false;
681 }
682
683 std::string dex_orig_name;
684 size_t dex_orig_pos = dex_file_location.rfind('/');
685 if (dex_orig_pos == std::string::npos)
686 dex_orig_name = dex_file_location;
687 else
688 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1);
689
690 // A more elegant approach to efficiently name user installed apps is welcome
691 if (dex_orig_name.size() == 8 && !dex_orig_name.compare("base.apk")) {
692 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1);
693 size_t apk_orig_pos = dex_file_location.rfind('/');
694 if (apk_orig_pos != std::string::npos) {
695 dex_orig_name = dex_file_location.substr(++apk_orig_pos);
696 }
697 }
698
699 std::string out_dex_path(options_.export_dex_location_);
700 if (out_dex_path.back() != '/') {
701 out_dex_path.append("/");
702 }
703 out_dex_path.append(dex_orig_name);
704 out_dex_path.append("_export.dex");
705 if (out_dex_path.length() > PATH_MAX) {
706 return false;
707 }
708
709 std::unique_ptr<File> file(OS::CreateEmptyFile(out_dex_path.c_str()));
710 if (file.get() == nullptr) {
711 os << "Failed to open output dex file " << out_dex_path;
712 return false;
713 }
714
715 if (!file->WriteFully(dex_file->Begin(), fsize)) {
716 os << "Failed to write dex file";
717 file->Erase();
718 return false;
719 }
720
721 if (file->FlushCloseOrErase() != 0) {
722 os << "Flush and close failed";
723 return false;
724 }
725
726 os << StringPrintf("Dex file exported at %s (%zd bytes)\n", out_dex_path.c_str(), fsize);
727 os << std::flush;
728
729 return true;
730 }
731
Elliott Hughese3c845c2012-02-28 17:23:01 -0800732 static void SkipAllFields(ClassDataItemIterator& it) {
Ian Rogers0571d352011-11-03 19:51:38 -0700733 while (it.HasNextStaticField()) {
734 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700735 }
Ian Rogers0571d352011-11-03 19:51:38 -0700736 while (it.HasNextInstanceField()) {
737 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700738 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800739 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700740
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100741 bool DumpOatClass(VariableIndentationOutputStream* vios,
742 const OatFile::OatClass& oat_class, const DexFile& dex_file,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800743 const DexFile::ClassDef& class_def, bool* stop_analysis) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700744 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800745 bool addr_found = false;
Ian Rogers13735952014-10-08 12:43:28 -0700746 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700747 if (class_data == nullptr) { // empty class such as a marker interface?
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100748 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700749 return success;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800750 }
751 ClassDataItemIterator it(dex_file, class_data);
752 SkipAllFields(it);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700753 uint32_t class_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700754 while (it.HasNextDirectMethod()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100755 if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700756 it.GetMemberIndex(), it.GetMethodCodeItem(),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800757 it.GetRawMemberAccessFlags(), &addr_found)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700758 success = false;
759 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800760 if (addr_found) {
761 *stop_analysis = true;
762 return success;
763 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700764 class_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -0700765 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700766 }
Ian Rogers0571d352011-11-03 19:51:38 -0700767 while (it.HasNextVirtualMethod()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100768 if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700769 it.GetMemberIndex(), it.GetMethodCodeItem(),
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800770 it.GetRawMemberAccessFlags(), &addr_found)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700771 success = false;
772 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800773 if (addr_found) {
774 *stop_analysis = true;
775 return success;
776 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700777 class_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -0700778 it.Next();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700779 }
Ian Rogers0571d352011-11-03 19:51:38 -0700780 DCHECK(!it.HasNext());
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100781 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700782 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700783 }
Elliott Hughese3c845c2012-02-28 17:23:01 -0800784
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700785 static constexpr uint32_t kPrologueBytes = 16;
786
787 // When this was picked, the largest arm method was 55,256 bytes and arm64 was 50,412 bytes.
788 static constexpr uint32_t kMaxCodeSize = 100 * 1000;
789
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100790 bool DumpOatMethod(VariableIndentationOutputStream* vios,
791 const DexFile::ClassDef& class_def,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700792 uint32_t class_method_index,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700793 const OatFile::OatClass& oat_class, const DexFile& dex_file,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800794 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800795 uint32_t method_access_flags, bool* addr_found) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700796 bool success = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800797
798 // TODO: Support regex
799 std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx));
800 if (method_name.find(options_.method_filter_) == std::string::npos) {
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +0000801 return success;
802 }
803
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800804 std::string pretty_method = PrettyMethod(dex_method_idx, dex_file, true);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100805 vios->Stream() << StringPrintf("%d: %s (dex_method_idx=%d)\n",
806 class_method_index, pretty_method.c_str(),
807 dex_method_idx);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800808 if (options_.list_methods_) return success;
809
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800810 uint32_t oat_method_offsets_offset = oat_class.GetOatMethodOffsetsOffset(class_method_index);
811 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index);
812 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index);
813 uint32_t code_offset = oat_method.GetCodeOffset();
814 uint32_t code_size = oat_method.GetQuickCodeSize();
815 if (resolved_addr2instr_ != 0) {
816 if (resolved_addr2instr_ > code_offset + code_size) {
817 return success;
818 } else {
819 *addr_found = true; // stop analyzing file at next iteration
820 }
821 }
822
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100823 // Everything below is indented at least once.
824 ScopedIndentation indent1(vios);
825
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800826 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100827 vios->Stream() << "DEX CODE:\n";
828 ScopedIndentation indent2(vios);
829 DumpDexCode(vios->Stream(), dex_file, code_item);
Ian Rogersb23a7722012-10-09 16:54:26 -0700830 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700831
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700832 std::unique_ptr<StackHandleScope<1>> hs;
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700833 std::unique_ptr<verifier::MethodVerifier> verifier;
834 if (Runtime::Current() != nullptr) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700835 // We need to have the handle scope stay live until after the verifier since the verifier has
836 // a handle to the dex cache from hs.
837 hs.reset(new StackHandleScope<1>(Thread::Current()));
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100838 vios->Stream() << "VERIFIER TYPE ANALYSIS:\n";
839 ScopedIndentation indent2(vios);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700840 verifier.reset(DumpVerifier(vios, hs.get(),
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100841 dex_method_idx, &dex_file, class_def, code_item,
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700842 method_access_flags));
Ian Rogersb23a7722012-10-09 16:54:26 -0700843 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800844 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100845 vios->Stream() << "OatMethodOffsets ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800846 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100847 vios->Stream() << StringPrintf("%p ", oat_method_offsets);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100848 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100849 vios->Stream() << StringPrintf("(offset=0x%08x)\n", oat_method_offsets_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700850 if (oat_method_offsets_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100851 vios->Stream() << StringPrintf(
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700852 "WARNING: oat method offsets offset 0x%08x is past end of file 0x%08zx.\n",
853 oat_method_offsets_offset, oat_file_.Size());
854 // If we can't read OatMethodOffsets, the rest of the data is dangerous to read.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100855 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700856 return false;
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800857 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700858
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100859 ScopedIndentation indent2(vios);
860 vios->Stream() << StringPrintf("code_offset: 0x%08x ", code_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700861 uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset());
862 if (aligned_code_begin > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100863 vios->Stream() << StringPrintf("WARNING: "
864 "code offset 0x%08x is past end of file 0x%08zx.\n",
865 aligned_code_begin, oat_file_.Size());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700866 success = false;
867 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100868 vios->Stream() << "\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700869
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100870 vios->Stream() << "gc_map: ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800871 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100872 vios->Stream() << StringPrintf("%p ", oat_method.GetGcMap());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700873 }
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800874 uint32_t gc_map_offset = oat_method.GetGcMapOffset();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100875 vios->Stream() << StringPrintf("(offset=0x%08x)\n", gc_map_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700876 if (gc_map_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100877 vios->Stream() << StringPrintf("WARNING: "
878 "gc map table offset 0x%08x is past end of file 0x%08zx.\n",
879 gc_map_offset, oat_file_.Size());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700880 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800881 } else if (options_.dump_raw_gc_map_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100882 ScopedIndentation indent3(vios);
883 DumpGcMap(vios->Stream(), oat_method, code_item);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800884 }
885 }
886 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100887 vios->Stream() << "OatQuickMethodHeader ";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700888 uint32_t method_header_offset = oat_method.GetOatQuickMethodHeaderOffset();
889 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700890
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800891 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100892 vios->Stream() << StringPrintf("%p ", method_header);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700893 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100894 vios->Stream() << StringPrintf("(offset=0x%08x)\n", method_header_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700895 if (method_header_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100896 vios->Stream() << StringPrintf(
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700897 "WARNING: oat quick method header offset 0x%08x is past end of file 0x%08zx.\n",
898 method_header_offset, oat_file_.Size());
899 // If we can't read the OatQuickMethodHeader, the rest of the data is dangerous to read.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100900 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700901 return false;
902 }
903
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100904 ScopedIndentation indent2(vios);
905 vios->Stream() << "mapping_table: ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800906 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100907 vios->Stream() << StringPrintf("%p ", oat_method.GetMappingTable());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700908 }
909 uint32_t mapping_table_offset = oat_method.GetMappingTableOffset();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100910 vios->Stream() << StringPrintf("(offset=0x%08x)\n", oat_method.GetMappingTableOffset());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700911 if (mapping_table_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100912 vios->Stream() << StringPrintf("WARNING: "
913 "mapping table offset 0x%08x is past end of file 0x%08zx. "
914 "mapping table offset was loaded from offset 0x%08x.\n",
915 mapping_table_offset, oat_file_.Size(),
916 oat_method.GetMappingTableOffsetOffset());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700917 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800918 } else if (options_.dump_raw_mapping_table_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100919 ScopedIndentation indent3(vios);
920 DumpMappingTable(vios, oat_method);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700921 }
922
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100923 vios->Stream() << "vmap_table: ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800924 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100925 vios->Stream() << StringPrintf("%p ", oat_method.GetVmapTable());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700926 }
927 uint32_t vmap_table_offset = oat_method.GetVmapTableOffset();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100928 vios->Stream() << StringPrintf("(offset=0x%08x)\n", vmap_table_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700929 if (vmap_table_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100930 vios->Stream() << StringPrintf("WARNING: "
931 "vmap table offset 0x%08x is past end of file 0x%08zx. "
932 "vmap table offset was loaded from offset 0x%08x.\n",
933 vmap_table_offset, oat_file_.Size(),
934 oat_method.GetVmapTableOffsetOffset());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700935 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800936 } else if (options_.dump_vmap_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100937 DumpVmapData(vios, oat_method, code_item);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700938 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800939 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700940 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100941 vios->Stream() << "QuickMethodFrameInfo\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700942
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100943 ScopedIndentation indent2(vios);
944 vios->Stream()
945 << StringPrintf("frame_size_in_bytes: %zd\n", oat_method.GetFrameSizeInBytes());
946 vios->Stream() << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
947 DumpSpillMask(vios->Stream(), oat_method.GetCoreSpillMask(), false);
948 vios->Stream() << "\n";
949 vios->Stream() << StringPrintf("fp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask());
950 DumpSpillMask(vios->Stream(), oat_method.GetFpSpillMask(), true);
951 vios->Stream() << "\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700952 }
953 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100954 // Based on spill masks from QuickMethodFrameInfo so placed
955 // after it is dumped, but useful for understanding quick
956 // code, so dumped here.
957 ScopedIndentation indent2(vios);
958 DumpVregLocations(vios->Stream(), oat_method, code_item);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700959 }
960 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100961 vios->Stream() << "CODE: ";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700962 uint32_t code_size_offset = oat_method.GetQuickCodeSizeOffset();
963 if (code_size_offset > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100964 ScopedIndentation indent2(vios);
965 vios->Stream() << StringPrintf("WARNING: "
966 "code size offset 0x%08x is past end of file 0x%08zx.",
967 code_size_offset, oat_file_.Size());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700968 success = false;
969 } else {
970 const void* code = oat_method.GetQuickCode();
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700971 uint32_t aligned_code_begin = AlignCodeOffset(code_offset);
972 uint64_t aligned_code_end = aligned_code_begin + code_size;
973
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800974 if (options_.absolute_addresses_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100975 vios->Stream() << StringPrintf("%p ", code);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700976 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100977 vios->Stream() << StringPrintf("(code_offset=0x%08x size_offset=0x%08x size=%u)%s\n",
978 code_offset,
979 code_size_offset,
980 code_size,
981 code != nullptr ? "..." : "");
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700982
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100983 ScopedIndentation indent2(vios);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700984 if (aligned_code_begin > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100985 vios->Stream() << StringPrintf("WARNING: "
986 "start of code at 0x%08x is past end of file 0x%08zx.",
987 aligned_code_begin, oat_file_.Size());
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700988 success = false;
989 } else if (aligned_code_end > oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100990 vios->Stream() << StringPrintf(
991 "WARNING: "
992 "end of code at 0x%08" PRIx64 " is past end of file 0x%08zx. "
993 "code size is 0x%08x loaded from offset 0x%08x.\n",
994 aligned_code_end, oat_file_.Size(),
995 code_size, code_size_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700996 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800997 if (options_.disassemble_code_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700998 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100999 DumpCode(vios, verifier.get(), oat_method, code_item, true, kPrologueBytes);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001000 }
1001 }
1002 } else if (code_size > kMaxCodeSize) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001003 vios->Stream() << StringPrintf(
1004 "WARNING: "
1005 "code size %d is bigger than max expected threshold of %d. "
1006 "code size is 0x%08x loaded from offset 0x%08x.\n",
1007 code_size, kMaxCodeSize,
1008 code_size, code_size_offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001009 success = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001010 if (options_.disassemble_code_) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001011 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001012 DumpCode(vios, verifier.get(), oat_method, code_item, true, kPrologueBytes);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001013 }
1014 }
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001015 } else if (options_.disassemble_code_) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001016 DumpCode(vios, verifier.get(), oat_method, code_item, !success, 0);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001017 }
1018 }
1019 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001020 vios->Stream() << std::flush;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001021 return success;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001022 }
Elliott Hughese3c845c2012-02-28 17:23:01 -08001023
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001024 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
1025 if (spill_mask == 0) {
1026 return;
1027 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001028 os << "(";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001029 for (size_t i = 0; i < 32; i++) {
1030 if ((spill_mask & (1 << i)) != 0) {
1031 if (is_float) {
1032 os << "fr" << i;
1033 } else {
1034 os << "r" << i;
1035 }
1036 spill_mask ^= 1 << i; // clear bit
1037 if (spill_mask != 0) {
1038 os << ", ";
1039 } else {
1040 break;
1041 }
1042 }
1043 }
1044 os << ")";
1045 }
1046
Roland Levillain442b46a2015-02-18 16:54:21 +00001047 // Display data stored at the the vmap offset of an oat method.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001048 void DumpVmapData(VariableIndentationOutputStream* vios,
Roland Levillain442b46a2015-02-18 16:54:21 +00001049 const OatFile::OatMethod& oat_method,
1050 const DexFile::CodeItem* code_item) {
Roland Levillainf2650d12015-05-28 14:53:28 +01001051 if (IsMethodGeneratedByOptimizingCompiler(oat_method, code_item)) {
1052 // The optimizing compiler outputs its CodeInfo data in the vmap table.
Roland Levillain442b46a2015-02-18 16:54:21 +00001053 const void* raw_code_info = oat_method.GetVmapTable();
1054 if (raw_code_info != nullptr) {
1055 CodeInfo code_info(raw_code_info);
1056 DCHECK(code_item != nullptr);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001057 ScopedIndentation indent1(vios);
1058 DumpCodeInfo(vios, code_info, oat_method, *code_item);
Roland Levillain442b46a2015-02-18 16:54:21 +00001059 }
Nicolas Geoffray0a5cd122015-07-16 14:15:05 +01001060 } else if (IsMethodGeneratedByDexToDexCompiler(oat_method, code_item)) {
1061 // We don't encode the size in the table, so just emit that we have quickened
1062 // information.
1063 ScopedIndentation indent(vios);
1064 vios->Stream() << "quickened data\n";
Roland Levillain442b46a2015-02-18 16:54:21 +00001065 } else {
1066 // Otherwise, display the vmap table.
1067 const uint8_t* raw_table = oat_method.GetVmapTable();
1068 if (raw_table != nullptr) {
1069 VmapTable vmap_table(raw_table);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001070 DumpVmapTable(vios->Stream(), oat_method, vmap_table);
Roland Levillain442b46a2015-02-18 16:54:21 +00001071 }
Nicolas Geoffray20d3eae2014-09-17 11:27:23 +01001072 }
Roland Levillain442b46a2015-02-18 16:54:21 +00001073 }
1074
1075 // Display a CodeInfo object emitted by the optimizing compiler.
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001076 void DumpCodeInfo(VariableIndentationOutputStream* vios,
Roland Levillain442b46a2015-02-18 16:54:21 +00001077 const CodeInfo& code_info,
Roland Levillainf2650d12015-05-28 14:53:28 +01001078 const OatFile::OatMethod& oat_method,
Roland Levillain442b46a2015-02-18 16:54:21 +00001079 const DexFile::CodeItem& code_item) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001080 code_info.Dump(vios,
Roland Levillainf2650d12015-05-28 14:53:28 +01001081 oat_method.GetCodeOffset(),
1082 code_item.registers_size_,
1083 options_.dump_code_info_stack_maps_);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001084 }
1085
Roland Levillain442b46a2015-02-18 16:54:21 +00001086 // Display a vmap table.
1087 void DumpVmapTable(std::ostream& os,
1088 const OatFile::OatMethod& oat_method,
1089 const VmapTable& vmap_table) {
1090 bool first = true;
1091 bool processing_fp = false;
1092 uint32_t spill_mask = oat_method.GetCoreSpillMask();
1093 for (size_t i = 0; i < vmap_table.Size(); i++) {
1094 uint16_t dex_reg = vmap_table[i];
1095 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
1096 processing_fp ? kFloatVReg : kIntVReg);
1097 os << (first ? "v" : ", v") << dex_reg;
1098 if (!processing_fp) {
1099 os << "/r" << cpu_reg;
1100 } else {
1101 os << "/fr" << cpu_reg;
1102 }
1103 first = false;
1104 if (!processing_fp && dex_reg == 0xFFFF) {
1105 processing_fp = true;
1106 spill_mask = oat_method.GetFpSpillMask();
1107 }
1108 }
1109 os << "\n";
1110 }
1111
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -07001112 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method,
1113 const DexFile::CodeItem* code_item) {
1114 if (code_item != nullptr) {
1115 size_t num_locals_ins = code_item->registers_size_;
1116 size_t num_ins = code_item->ins_size_;
1117 size_t num_locals = num_locals_ins - num_ins;
1118 size_t num_outs = code_item->outs_size_;
1119
1120 os << "vr_stack_locations:";
1121 for (size_t reg = 0; reg <= num_locals_ins; reg++) {
1122 // For readability, delimit the different kinds of VRs.
1123 if (reg == num_locals_ins) {
1124 os << "\n\tmethod*:";
1125 } else if (reg == num_locals && num_ins > 0) {
1126 os << "\n\tins:";
1127 } else if (reg == 0 && num_locals > 0) {
1128 os << "\n\tlocals:";
1129 }
1130
Nicolas Geoffray15b9d522015-03-12 15:05:13 +00001131 uint32_t offset = StackVisitor::GetVRegOffsetFromQuickCode(
1132 code_item,
1133 oat_method.GetCoreSpillMask(),
1134 oat_method.GetFpSpillMask(),
1135 oat_method.GetFrameSizeInBytes(),
1136 reg,
1137 GetInstructionSet());
Razvan A Lupusorufaf9f0d2014-08-29 17:56:46 -07001138 os << " v" << reg << "[sp + #" << offset << "]";
1139 }
1140
1141 for (size_t out_reg = 0; out_reg < num_outs; out_reg++) {
1142 if (out_reg == 0) {
1143 os << "\n\touts:";
1144 }
1145
1146 uint32_t offset = StackVisitor::GetOutVROffset(out_reg, GetInstructionSet());
1147 os << " v" << out_reg << "[sp + #" << offset << "]";
1148 }
1149
1150 os << "\n";
1151 }
1152 }
1153
Ian Rogersb23a7722012-10-09 16:54:26 -07001154 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001155 const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) {
Ian Rogers1809a722013-08-09 22:05:32 -07001156 const uint8_t* raw_table = oat_method.GetVmapTable();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001157 if (raw_table != nullptr) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001158 const VmapTable vmap_table(raw_table);
1159 uint32_t vmap_offset;
Ian Rogers1809a722013-08-09 22:05:32 -07001160 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001161 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
1162 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
1163 : oat_method.GetCoreSpillMask();
1164 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Ian Rogersb23a7722012-10-09 16:54:26 -07001165 } else {
Nicolas Geoffray15b9d522015-03-12 15:05:13 +00001166 uint32_t offset = StackVisitor::GetVRegOffsetFromQuickCode(
1167 code_item,
1168 oat_method.GetCoreSpillMask(),
1169 oat_method.GetFpSpillMask(),
1170 oat_method.GetFrameSizeInBytes(),
1171 reg,
1172 GetInstructionSet());
Ian Rogersb23a7722012-10-09 16:54:26 -07001173 os << "[sp + #" << offset << "]";
1174 }
1175 }
1176 }
1177
Ian Rogersef7d42f2014-01-06 12:55:46 -08001178 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method,
1179 const DexFile::CodeItem* code_item,
1180 size_t num_regs, const uint8_t* reg_bitmap) {
1181 bool first = true;
1182 for (size_t reg = 0; reg < num_regs; reg++) {
1183 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
1184 if (first) {
1185 os << " v" << reg << " (";
1186 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
1187 os << ")";
1188 first = false;
1189 } else {
1190 os << ", v" << reg << " (";
1191 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
1192 os << ")";
1193 }
1194 }
1195 }
1196 if (first) {
1197 os << "No registers in GC map\n";
1198 } else {
1199 os << "\n";
1200 }
1201 }
Ian Rogersb23a7722012-10-09 16:54:26 -07001202 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method,
1203 const DexFile::CodeItem* code_item) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001204 const uint8_t* gc_map_raw = oat_method.GetGcMap();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001205 if (gc_map_raw == nullptr) {
1206 return; // No GC map.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001207 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001208 const void* quick_code = oat_method.GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -08001209 NativePcOffsetToReferenceMap map(gc_map_raw);
1210 for (size_t entry = 0; entry < map.NumEntries(); entry++) {
1211 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) +
1212 map.GetNativePcOffset(entry);
1213 os << StringPrintf("%p", native_pc);
1214 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001215 }
1216 }
1217
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001218 void DumpMappingTable(VariableIndentationOutputStream* vios,
1219 const OatFile::OatMethod& oat_method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001220 const void* quick_code = oat_method.GetQuickCode();
1221 if (quick_code == nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -08001222 return;
1223 }
Ian Rogers1809a722013-08-09 22:05:32 -07001224 MappingTable table(oat_method.GetMappingTable());
1225 if (table.TotalSize() != 0) {
Ian Rogers1809a722013-08-09 22:05:32 -07001226 if (table.PcToDexSize() != 0) {
1227 typedef MappingTable::PcToDexIterator It;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001228 vios->Stream() << "suspend point mappings {\n";
Ian Rogers1809a722013-08-09 22:05:32 -07001229 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001230 ScopedIndentation indent1(vios);
1231 vios->Stream() << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -07001232 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001233 vios->Stream() << "}\n";
Ian Rogers1809a722013-08-09 22:05:32 -07001234 }
1235 if (table.DexToPcSize() != 0) {
1236 typedef MappingTable::DexToPcIterator It;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001237 vios->Stream() << "catch entry mappings {\n";
Ian Rogers1809a722013-08-09 22:05:32 -07001238 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001239 ScopedIndentation indent1(vios);
1240 vios->Stream() << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -07001241 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001242 vios->Stream() << "}\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001243 }
1244 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001245 }
1246
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001247 uint32_t DumpInformationAtOffset(VariableIndentationOutputStream* vios,
Roland Levillainf2650d12015-05-28 14:53:28 +01001248 const OatFile::OatMethod& oat_method,
1249 const DexFile::CodeItem* code_item,
1250 size_t offset,
1251 bool suspend_point_mapping) {
1252 if (IsMethodGeneratedByOptimizingCompiler(oat_method, code_item)) {
1253 if (suspend_point_mapping) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001254 ScopedIndentation indent1(vios);
1255 DumpDexRegisterMapAtOffset(vios, oat_method, code_item, offset);
Roland Levillainf2650d12015-05-28 14:53:28 +01001256 }
1257 // The return value is not used in the case of a method compiled
1258 // with the optimizing compiler.
1259 return DexFile::kDexNoIndex;
1260 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001261 return DumpMappingAtOffset(vios->Stream(), oat_method, offset, suspend_point_mapping);
Roland Levillainf2650d12015-05-28 14:53:28 +01001262 }
1263 }
1264
Ian Rogers1809a722013-08-09 22:05:32 -07001265 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
1266 size_t offset, bool suspend_point_mapping) {
1267 MappingTable table(oat_method.GetMappingTable());
1268 if (suspend_point_mapping && table.PcToDexSize() > 0) {
1269 typedef MappingTable::PcToDexIterator It;
1270 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
1271 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001272 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -07001273 return cur.DexPc();
1274 }
Elliott Hughese3c845c2012-02-28 17:23:01 -08001275 }
Ian Rogers1809a722013-08-09 22:05:32 -07001276 } else if (!suspend_point_mapping && table.DexToPcSize() > 0) {
1277 typedef MappingTable::DexToPcIterator It;
1278 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
1279 if (offset == cur.NativePcOffset()) {
Brian Carlstrom4b8c13e2013-08-23 18:10:32 -07001280 os << StringPrintf("catch entry dex PC: 0x%04x\n", cur.DexPc());
Ian Rogers1809a722013-08-09 22:05:32 -07001281 return cur.DexPc();
Ian Rogersb23a7722012-10-09 16:54:26 -07001282 }
1283 }
Elliott Hughese3c845c2012-02-28 17:23:01 -08001284 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001285 return DexFile::kDexNoIndex;
Ian Rogersb23a7722012-10-09 16:54:26 -07001286 }
1287
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001288 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method,
1289 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001290 const uint8_t* gc_map_raw = oat_method.GetGcMap();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001291 if (gc_map_raw != nullptr) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001292 NativePcOffsetToReferenceMap map(gc_map_raw);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001293 if (map.HasEntry(native_pc_offset)) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001294 size_t num_regs = map.RegWidth() * 8;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001295 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
Ian Rogersb23a7722012-10-09 16:54:26 -07001296 bool first = true;
1297 for (size_t reg = 0; reg < num_regs; reg++) {
1298 if (((reg_bitmap[reg / 8] >> (reg % 8)) & 0x01) != 0) {
1299 if (first) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001300 os << "GC map objects: v" << reg << " (";
1301 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -07001302 os << ")";
1303 first = false;
1304 } else {
1305 os << ", v" << reg << " (";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001306 DescribeVReg(os, oat_method, code_item, reg, kReferenceVReg);
Ian Rogersb23a7722012-10-09 16:54:26 -07001307 os << ")";
1308 }
1309 }
1310 }
1311 if (!first) {
1312 os << "\n";
1313 }
1314 }
1315 }
1316 }
1317
Mathieu Chartier590fee92013-09-13 13:46:47 -07001318 void DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier,
1319 const OatFile::OatMethod& oat_method,
1320 const DexFile::CodeItem* code_item, uint32_t dex_pc) {
1321 DCHECK(verifier != nullptr);
Ian Rogers7b3ddd22013-02-21 15:19:52 -08001322 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001323 bool first = true;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001324 for (size_t reg = 0; reg < code_item->registers_size_; reg++) {
1325 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
1326 if (kind != kUndefined) {
1327 if (first) {
1328 os << "VRegs: v";
1329 first = false;
1330 } else {
1331 os << ", v";
1332 }
1333 os << reg << " (";
1334 switch (kind) {
1335 case kImpreciseConstant:
1336 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
1337 DescribeVReg(os, oat_method, code_item, reg, kind);
1338 break;
1339 case kConstant:
1340 os << "Constant: " << kinds.at((reg * 2) + 1);
1341 break;
1342 default:
1343 DescribeVReg(os, oat_method, code_item, reg, kind);
1344 break;
1345 }
1346 os << ")";
1347 }
1348 }
1349 if (!first) {
1350 os << "\n";
1351 }
1352 }
1353
1354
Ian Rogersb23a7722012-10-09 16:54:26 -07001355 void DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001356 if (code_item != nullptr) {
Ian Rogersb23a7722012-10-09 16:54:26 -07001357 size_t i = 0;
1358 while (i < code_item->insns_size_in_code_units_) {
1359 const Instruction* instruction = Instruction::At(&code_item->insns_[i]);
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001360 os << StringPrintf("0x%04zx: ", i) << instruction->DumpHexLE(5)
1361 << StringPrintf("\t| %s\n", instruction->DumpString(&dex_file).c_str());
Ian Rogersb23a7722012-10-09 16:54:26 -07001362 i += instruction->SizeInCodeUnits();
1363 }
1364 }
1365 }
1366
Roland Levillainf2650d12015-05-28 14:53:28 +01001367 // Has `oat_method` -- corresponding to the Dex `code_item` -- been compiled by
1368 // the optimizing compiler?
1369 static bool IsMethodGeneratedByOptimizingCompiler(const OatFile::OatMethod& oat_method,
1370 const DexFile::CodeItem* code_item) {
1371 // If the native GC map is null and the Dex `code_item` is not
1372 // null, then this method has been compiled with the optimizing
1373 // compiler.
Nicolas Geoffray0a5cd122015-07-16 14:15:05 +01001374 return oat_method.GetQuickCode() != nullptr &&
1375 oat_method.GetGcMap() == nullptr &&
1376 code_item != nullptr;
1377 }
1378
1379 // Has `oat_method` -- corresponding to the Dex `code_item` -- been compiled by
1380 // the dextodex compiler?
1381 static bool IsMethodGeneratedByDexToDexCompiler(const OatFile::OatMethod& oat_method,
1382 const DexFile::CodeItem* code_item) {
1383 // If the quick code is null, the Dex `code_item` is not
1384 // null, and the vmap table is not null, then this method has been compiled
1385 // with the dextodex compiler.
1386 return oat_method.GetQuickCode() == nullptr &&
1387 oat_method.GetVmapTable() != nullptr &&
1388 code_item != nullptr;
Roland Levillainf2650d12015-05-28 14:53:28 +01001389 }
1390
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001391 void DumpDexRegisterMapAtOffset(VariableIndentationOutputStream* vios,
Roland Levillainf2650d12015-05-28 14:53:28 +01001392 const OatFile::OatMethod& oat_method,
1393 const DexFile::CodeItem* code_item,
1394 size_t offset) {
1395 // This method is only relevant for oat methods compiled with the
1396 // optimizing compiler.
1397 DCHECK(IsMethodGeneratedByOptimizingCompiler(oat_method, code_item));
1398
1399 // The optimizing compiler outputs its CodeInfo data in the vmap table.
1400 const void* raw_code_info = oat_method.GetVmapTable();
1401 if (raw_code_info != nullptr) {
1402 CodeInfo code_info(raw_code_info);
David Brazdilf677ebf2015-05-29 16:29:43 +01001403 StackMapEncoding encoding = code_info.ExtractEncoding();
1404 StackMap stack_map = code_info.GetStackMapForNativePcOffset(offset, encoding);
Roland Levillainf2650d12015-05-28 14:53:28 +01001405 if (stack_map.IsValid()) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001406 stack_map.Dump(vios, code_info, encoding, oat_method.GetCodeOffset(),
1407 code_item->registers_size_);
Roland Levillainf2650d12015-05-28 14:53:28 +01001408 }
1409 }
1410 }
1411
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001412 verifier::MethodVerifier* DumpVerifier(VariableIndentationOutputStream* vios,
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001413 StackHandleScope<1>* hs,
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001414 uint32_t dex_method_idx,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001415 const DexFile* dex_file,
1416 const DexFile::ClassDef& class_def,
1417 const DexFile::CodeItem* code_item,
1418 uint32_t method_access_flags) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001419 if ((method_access_flags & kAccNative) == 0) {
1420 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001421 Runtime* const runtime = Runtime::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001422 Handle<mirror::DexCache> dex_cache(
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001423 hs->NewHandle(runtime->GetClassLinker()->RegisterDexFile(*dex_file,
1424 runtime->GetLinearAlloc())));
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001425 DCHECK(options_.class_loader_ != nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001426 return verifier::MethodVerifier::VerifyMethodAndDump(
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001427 soa.Self(), vios, dex_method_idx, dex_file, dex_cache, *options_.class_loader_,
1428 &class_def, code_item, nullptr, method_access_flags);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001429 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001430
1431 return nullptr;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001432 }
1433
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001434 void DumpCode(VariableIndentationOutputStream* vios,
1435 verifier::MethodVerifier* verifier,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001436 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item,
1437 bool bad_input, size_t code_size) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001438 const void* quick_code = oat_method.GetQuickCode();
1439
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001440 if (code_size == 0) {
1441 code_size = oat_method.GetQuickCodeSize();
1442 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001443 if (code_size == 0 || quick_code == nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001444 vios->Stream() << "NO CODE!\n";
Ian Rogersb23a7722012-10-09 16:54:26 -07001445 return;
Elliott Hughes956af0f2014-12-11 14:34:28 -08001446 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001447 const uint8_t* quick_native_pc = reinterpret_cast<const uint8_t*>(quick_code);
1448 size_t offset = 0;
1449 while (offset < code_size) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001450 if (!bad_input) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001451 DumpInformationAtOffset(vios, oat_method, code_item, offset, false);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001452 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001453 offset += disassembler_->Dump(vios->Stream(), quick_native_pc + offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001454 if (!bad_input) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001455 uint32_t dex_pc =
1456 DumpInformationAtOffset(vios, oat_method, code_item, offset, true);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001457 if (dex_pc != DexFile::kDexNoIndex) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001458 DumpGcMapAtNativePcOffset(vios->Stream(), oat_method, code_item, offset);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001459 if (verifier != nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001460 DumpVRegsAtDexPc(vios->Stream(), verifier, oat_method, code_item, dex_pc);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001461 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001462 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001463 }
1464 }
Ian Rogersb23a7722012-10-09 16:54:26 -07001465 }
1466 }
1467
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001468 const OatFile& oat_file_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001469 const std::vector<const OatFile::OatDexFile*> oat_dex_files_;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001470 const OatDumperOptions& options_;
1471 uint32_t resolved_addr2instr_;
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001472 InstructionSet instruction_set_;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001473 std::set<uintptr_t> offsets_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001474 Disassembler* disassembler_;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001475};
1476
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001477class ImageDumper {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001478 public:
Roland Levillain3887c462015-08-12 18:15:42 +01001479 ImageDumper(std::ostream* os, gc::space::ImageSpace& image_space,
1480 const ImageHeader& image_header, OatDumperOptions* oat_dumper_options)
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001481 : os_(os),
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001482 vios_(os),
1483 indent1_(&vios_),
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001484 image_space_(image_space),
1485 image_header_(image_header),
1486 oat_dumper_options_(oat_dumper_options) {}
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001487
Mathieu Chartier90443472015-07-16 20:32:27 -07001488 bool Dump() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001489 std::ostream& os = *os_;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001490 std::ostream& indent_os = vios_.Stream();
1491
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001492 os << "MAGIC: " << image_header_.GetMagic() << "\n\n";
Brian Carlstrome24fa612011-09-29 00:53:55 -07001493
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001494 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001495
Mathieu Chartiere401d142015-04-22 13:56:20 -07001496 os << "IMAGE SIZE: " << image_header_.GetImageSize() << "\n\n";
1497
1498 for (size_t i = 0; i < ImageHeader::kSectionCount; ++i) {
1499 auto section = static_cast<ImageHeader::ImageSections>(i);
1500 os << "IMAGE SECTION " << section << ": " << image_header_.GetImageSection(section) << "\n\n";
1501 }
Mathieu Chartier31e89252013-08-28 11:29:12 -07001502
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001503 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001504
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001505 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001506
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001507 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
1508
1509 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
1510
1511 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001512
Alex Lighta59dd802014-07-02 16:28:08 -07001513 os << "PATCH DELTA:" << image_header_.GetPatchDelta() << "\n\n";
1514
Igor Murashkin46774762014-10-22 11:37:02 -07001515 os << "COMPILE PIC: " << (image_header_.CompilePic() ? "yes" : "no") << "\n\n";
1516
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001517 {
1518 os << "ROOTS: " << reinterpret_cast<void*>(image_header_.GetImageRoots()) << "\n";
Mathieu Chartiere401d142015-04-22 13:56:20 -07001519 static_assert(arraysize(image_roots_descriptions_) ==
1520 static_cast<size_t>(ImageHeader::kImageRootsMax), "sizes must match");
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001521 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
1522 ImageHeader::ImageRoot image_root = static_cast<ImageHeader::ImageRoot>(i);
1523 const char* image_root_description = image_roots_descriptions_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001524 mirror::Object* image_root_object = image_header_.GetImageRoot(image_root);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001525 indent_os << StringPrintf("%s: %p\n", image_root_description, image_root_object);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001526 if (image_root_object->IsObjectArray()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001527 mirror::ObjectArray<mirror::Object>* image_root_object_array
Ian Rogersfa824272013-11-05 16:12:57 -08001528 = image_root_object->AsObjectArray<mirror::Object>();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001529 ScopedIndentation indent2(&vios_);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001530 for (int j = 0; j < image_root_object_array->GetLength(); j++) {
1531 mirror::Object* value = image_root_object_array->Get(j);
Ian Rogersfa824272013-11-05 16:12:57 -08001532 size_t run = 0;
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001533 for (int32_t k = j + 1; k < image_root_object_array->GetLength(); k++) {
1534 if (value == image_root_object_array->Get(k)) {
Ian Rogersfa824272013-11-05 16:12:57 -08001535 run++;
1536 } else {
1537 break;
1538 }
1539 }
1540 if (run == 0) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001541 indent_os << StringPrintf("%d: ", j);
Ian Rogersfa824272013-11-05 16:12:57 -08001542 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001543 indent_os << StringPrintf("%d to %zd: ", j, j + run);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001544 j = j + run;
Ian Rogersfa824272013-11-05 16:12:57 -08001545 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001546 if (value != nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001547 PrettyObjectValue(indent_os, value->GetClass(), value);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001548 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001549 indent_os << j << ": null\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001550 }
Ian Rogersd5b32602012-02-26 16:40:04 -08001551 }
Brian Carlstrom34f426c2011-10-04 12:58:02 -07001552 }
1553 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001554 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001555
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001556 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001557 os << "METHOD ROOTS\n";
1558 static_assert(arraysize(image_methods_descriptions_) ==
1559 static_cast<size_t>(ImageHeader::kImageMethodsCount), "sizes must match");
1560 for (int i = 0; i < ImageHeader::kImageMethodsCount; i++) {
1561 auto image_root = static_cast<ImageHeader::ImageMethod>(i);
1562 const char* description = image_methods_descriptions_[i];
1563 auto* image_method = image_header_.GetImageMethod(image_root);
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001564 indent_os << StringPrintf("%s: %p\n", description, image_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001565 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001566 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001567 os << "\n";
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001568
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001569 Runtime* const runtime = Runtime::Current();
1570 ClassLinker* class_linker = runtime->GetClassLinker();
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001571 std::string image_filename = image_space_.GetImageFilename();
1572 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001573 os << "OAT LOCATION: " << oat_location;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001574 os << "\n";
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001575 std::string error_msg;
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001576 const OatFile* oat_file = runtime->GetOatFileManager().FindOpenedOatFileFromOatLocation(
1577 oat_location);
Alex Lighta59dd802014-07-02 16:28:08 -07001578 if (oat_file == nullptr) {
Richard Uhlere5fed032015-03-18 08:21:11 -07001579 oat_file = OatFile::Open(oat_location, oat_location,
1580 nullptr, nullptr, false, nullptr,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001581 &error_msg);
Alex Lighta59dd802014-07-02 16:28:08 -07001582 if (oat_file == nullptr) {
1583 os << "NOT FOUND: " << error_msg << "\n";
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001584 return false;
Alex Lighta59dd802014-07-02 16:28:08 -07001585 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001586 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001587 os << "\n";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001588
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001589 stats_.oat_file_bytes = oat_file->Size();
1590
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08001591 oat_dumper_.reset(new OatDumper(*oat_file, *oat_dumper_options_));
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001592
Mathieu Chartier02e25112013-08-14 16:14:24 -07001593 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001594 CHECK(oat_dex_file != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001595 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
1596 oat_dex_file->FileSize()));
Ian Rogers05f28c62012-10-23 18:12:13 -07001597 }
1598
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001599 os << "OBJECTS:\n" << std::flush;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001600
1601 // Loop through all the image spaces and dump their objects.
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001602 gc::Heap* heap = runtime->GetHeap();
Ian Rogers1d54e732013-05-02 21:10:01 -07001603 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -07001604 Thread* self = Thread::Current();
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001605 {
Mathieu Chartierc22c59e2014-02-24 15:16:06 -08001606 {
1607 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1608 heap->FlushAllocStack();
1609 }
Hiroshi Yamauchi90d70682014-02-20 16:17:30 -08001610 // Since FlushAllocStack() above resets the (active) allocation
1611 // stack. Need to revoke the thread-local allocation stacks that
1612 // point into it.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07001613 ScopedThreadSuspension sts(self, kNative);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001614 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07001615 heap->RevokeAllThreadLocalAllocationStacks(self);
Mathieu Chartier357e9be2012-08-01 11:00:14 -07001616 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001617 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001618 // Mark dex caches.
Vladimir Marko05792b92015-08-03 11:56:49 +01001619 dex_caches_.clear();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001620 {
1621 ReaderMutexLock mu(self, *class_linker->DexLock());
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08001622 for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001623 mirror::DexCache* dex_cache =
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08001624 down_cast<mirror::DexCache*>(self->DecodeJObject(data.weak_root));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001625 if (dex_cache != nullptr) {
Vladimir Marko05792b92015-08-03 11:56:49 +01001626 dex_caches_.insert(dex_cache);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001627 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001628 }
1629 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001630 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001631 for (const auto& space : spaces) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001632 if (space->IsImageSpace()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001633 auto* image_space = space->AsImageSpace();
1634 // Dump the normal objects before ArtMethods.
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001635 image_space->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
1636 indent_os << "\n";
Mathieu Chartiere401d142015-04-22 13:56:20 -07001637 // TODO: Dump fields.
1638 // Dump methods after.
1639 const auto& methods_section = image_header_.GetMethodsSection();
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001640 const size_t pointer_size =
Mathieu Chartiere401d142015-04-22 13:56:20 -07001641 InstructionSetPointerSize(oat_dumper_->GetOatInstructionSet());
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001642 DumpArtMethodVisitor visitor(this);
Vladimir Markocf36d492015-08-12 19:27:26 +01001643 methods_section.VisitPackedArtMethods(&visitor, image_space->Begin(), pointer_size);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001644 }
Mathieu Chartier2fde5332012-09-14 14:51:54 -07001645 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001646 // Dump the large objects separately.
Mathieu Chartierbbd695c2014-04-16 09:48:48 -07001647 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001648 indent_os << "\n";
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001649 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001650 os << "STATS:\n" << std::flush;
Ian Rogers700a4022014-05-19 16:49:03 -07001651 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001652 if (file.get() == nullptr) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001653 LOG(WARNING) << "Failed to find image in " << image_filename;
Brian Carlstrom6f277752013-09-30 17:56:45 -07001654 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001655 if (file.get() != nullptr) {
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001656 stats_.file_bytes = file->GetLength();
Brian Carlstrom6f277752013-09-30 17:56:45 -07001657 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001658 size_t header_bytes = sizeof(ImageHeader);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001659 const auto& bitmap_section = image_header_.GetImageSection(ImageHeader::kSectionImageBitmap);
1660 const auto& field_section = image_header_.GetImageSection(ImageHeader::kSectionArtFields);
1661 const auto& method_section = image_header_.GetMethodsSection();
Vladimir Marko05792b92015-08-03 11:56:49 +01001662 const auto& dex_cache_arrays_section = image_header_.GetImageSection(
1663 ImageHeader::kSectionDexCacheArrays);
Mathieu Chartierd39645e2015-06-09 17:50:29 -07001664 const auto& intern_section = image_header_.GetImageSection(
1665 ImageHeader::kSectionInternedStrings);
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08001666 const auto& class_table_section = image_header_.GetImageSection(
1667 ImageHeader::kSectionClassTable);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001668 stats_.header_bytes = header_bytes;
Vladimir Markocf36d492015-08-12 19:27:26 +01001669 stats_.alignment_bytes += RoundUp(header_bytes, kObjectAlignment) - header_bytes;
1670 // Add padding between the field and method section.
1671 // (Field section is 4-byte aligned, method section is 8-byte aligned on 64-bit targets.)
Vladimir Marko05792b92015-08-03 11:56:49 +01001672 stats_.alignment_bytes += method_section.Offset() -
1673 (field_section.Offset() + field_section.Size());
1674 // Add padding between the dex cache arrays section and the intern table. (Dex cache
1675 // arrays section is 4-byte aligned on 32-bit targets, intern table is 8-byte aligned.)
1676 stats_.alignment_bytes += intern_section.Offset() -
1677 (dex_cache_arrays_section.Offset() + dex_cache_arrays_section.Size());
Mathieu Chartiere401d142015-04-22 13:56:20 -07001678 stats_.alignment_bytes += bitmap_section.Offset() - image_header_.GetImageSize();
1679 stats_.bitmap_bytes += bitmap_section.Size();
1680 stats_.art_field_bytes += field_section.Size();
Vladimir Markocf36d492015-08-12 19:27:26 +01001681 stats_.art_method_bytes += method_section.Size();
Vladimir Marko05792b92015-08-03 11:56:49 +01001682 stats_.dex_cache_arrays_bytes += dex_cache_arrays_section.Size();
Mathieu Chartierd39645e2015-06-09 17:50:29 -07001683 stats_.interned_strings_bytes += intern_section.Size();
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08001684 stats_.class_table_bytes += class_table_section.Size();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001685 stats_.Dump(os, indent_os);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001686 os << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001687
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001688 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001689
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001690 return oat_dumper_->Dump(os);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001691 }
1692
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001693 private:
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001694 class DumpArtMethodVisitor : public ArtMethodVisitor {
1695 public:
1696 explicit DumpArtMethodVisitor(ImageDumper* image_dumper) : image_dumper_(image_dumper) {}
1697
1698 virtual void Visit(ArtMethod* method) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
1699 std::ostream& indent_os = image_dumper_->vios_.Stream();
1700 indent_os << method << " " << " ArtMethod: " << PrettyMethod(method) << "\n";
1701 image_dumper_->DumpMethod(method, image_dumper_, indent_os);
1702 indent_os << "\n";
1703 }
1704
1705 private:
1706 ImageDumper* const image_dumper_;
1707 };
1708
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001709 static void PrettyObjectValue(std::ostream& os, mirror::Class* type, mirror::Object* value)
Mathieu Chartier90443472015-07-16 20:32:27 -07001710 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001711 CHECK(type != nullptr);
1712 if (value == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001713 os << StringPrintf("null %s\n", PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001714 } else if (type->IsStringClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001715 mirror::String* string = value->AsString();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001716 os << StringPrintf("%p String: %s\n", string,
Ian Rogers68b56852014-08-29 20:19:11 -07001717 PrintableString(string->ToModifiedUtf8().c_str()).c_str());
Ian Rogers64b6d142012-10-29 16:34:15 -07001718 } else if (type->IsClassClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001719 mirror::Class* klass = value->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001720 os << StringPrintf("%p Class: %s\n", klass, PrettyDescriptor(klass).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001721 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001722 os << StringPrintf("%p %s\n", value, PrettyDescriptor(type).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001723 }
1724 }
1725
Mathieu Chartierc7853442015-03-27 14:35:38 -07001726 static void PrintField(std::ostream& os, ArtField* field, mirror::Object* obj)
Mathieu Chartier90443472015-07-16 20:32:27 -07001727 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001728 os << StringPrintf("%s: ", field->GetName());
Ian Rogers08f1f502014-12-02 15:04:37 -08001729 switch (field->GetTypeAsPrimitiveType()) {
1730 case Primitive::kPrimLong:
Ian Rogersef7d42f2014-01-06 12:55:46 -08001731 os << StringPrintf("%" PRId64 " (0x%" PRIx64 ")\n", field->Get64(obj), field->Get64(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001732 break;
1733 case Primitive::kPrimDouble:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001734 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001735 break;
1736 case Primitive::kPrimFloat:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001737 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001738 break;
1739 case Primitive::kPrimInt:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001740 os << StringPrintf("%d (0x%x)\n", field->Get32(obj), field->Get32(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001741 break;
1742 case Primitive::kPrimChar:
Fred Shih37f05ef2014-07-16 18:38:08 -07001743 os << StringPrintf("%u (0x%x)\n", field->GetChar(obj), field->GetChar(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001744 break;
1745 case Primitive::kPrimShort:
Fred Shih37f05ef2014-07-16 18:38:08 -07001746 os << StringPrintf("%d (0x%x)\n", field->GetShort(obj), field->GetShort(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001747 break;
1748 case Primitive::kPrimBoolean:
Fred Shih37f05ef2014-07-16 18:38:08 -07001749 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj)? "true" : "false",
1750 field->GetBoolean(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001751 break;
1752 case Primitive::kPrimByte:
Fred Shih37f05ef2014-07-16 18:38:08 -07001753 os << StringPrintf("%d (0x%x)\n", field->GetByte(obj), field->GetByte(obj));
Ian Rogers08f1f502014-12-02 15:04:37 -08001754 break;
1755 case Primitive::kPrimNot: {
1756 // Get the value, don't compute the type unless it is non-null as we don't want
1757 // to cause class loading.
1758 mirror::Object* value = field->GetObj(obj);
1759 if (value == nullptr) {
1760 os << StringPrintf("null %s\n", PrettyDescriptor(field->GetTypeDescriptor()).c_str());
Ian Rogers50239c72013-06-17 14:53:22 -07001761 } else {
Ian Rogers08f1f502014-12-02 15:04:37 -08001762 // Grab the field type without causing resolution.
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001763 mirror::Class* field_type = field->GetType<false>();
Ian Rogers08f1f502014-12-02 15:04:37 -08001764 if (field_type != nullptr) {
1765 PrettyObjectValue(os, field_type, value);
1766 } else {
1767 os << StringPrintf("%p %s\n", value,
1768 PrettyDescriptor(field->GetTypeDescriptor()).c_str());
1769 }
Ian Rogers50239c72013-06-17 14:53:22 -07001770 }
Ian Rogers08f1f502014-12-02 15:04:37 -08001771 break;
Ian Rogers48efc2b2012-08-27 17:20:31 -07001772 }
Ian Rogers08f1f502014-12-02 15:04:37 -08001773 default:
1774 os << "unexpected field type: " << field->GetTypeDescriptor() << "\n";
1775 break;
Ian Rogersd5b32602012-02-26 16:40:04 -08001776 }
1777 }
1778
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001779 static void DumpFields(std::ostream& os, mirror::Object* obj, mirror::Class* klass)
Mathieu Chartier90443472015-07-16 20:32:27 -07001780 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001781 mirror::Class* super = klass->GetSuperClass();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001782 if (super != nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001783 DumpFields(os, obj, super);
Ian Rogersd5b32602012-02-26 16:40:04 -08001784 }
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001785 for (ArtField& field : klass->GetIFields()) {
1786 PrintField(os, &field, obj);
Ian Rogersd5b32602012-02-26 16:40:04 -08001787 }
1788 }
1789
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001790 bool InDumpSpace(const mirror::Object* object) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001791 return image_space_.Contains(object);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001792 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001793
Mathieu Chartiere401d142015-04-22 13:56:20 -07001794 const void* GetQuickOatCodeBegin(ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07001795 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -08001796 const void* quick_code = m->GetEntryPointFromQuickCompiledCodePtrSize(
1797 InstructionSetPointerSize(oat_dumper_->GetOatInstructionSet()));
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001798 if (Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(quick_code)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001799 quick_code = oat_dumper_->GetQuickOatCode(m);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001800 }
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001801 if (oat_dumper_->GetInstructionSet() == kThumb2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001802 quick_code = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(quick_code) & ~0x1);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001803 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001804 return quick_code;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001805 }
1806
Mathieu Chartiere401d142015-04-22 13:56:20 -07001807 uint32_t GetQuickOatCodeSize(ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07001808 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001809 const uint32_t* oat_code_begin = reinterpret_cast<const uint32_t*>(GetQuickOatCodeBegin(m));
1810 if (oat_code_begin == nullptr) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001811 return 0;
1812 }
1813 return oat_code_begin[-1];
1814 }
1815
Mathieu Chartiere401d142015-04-22 13:56:20 -07001816 const void* GetQuickOatCodeEnd(ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07001817 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001818 const uint8_t* oat_code_begin = reinterpret_cast<const uint8_t*>(GetQuickOatCodeBegin(m));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001819 if (oat_code_begin == nullptr) {
1820 return nullptr;
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001821 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08001822 return oat_code_begin + GetQuickOatCodeSize(m);
Brian Carlstromf8bbb842012-03-14 03:01:42 -07001823 }
1824
Mathieu Chartier90443472015-07-16 20:32:27 -07001825 static void Callback(mirror::Object* obj, void* arg) SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001826 DCHECK(obj != nullptr);
1827 DCHECK(arg != nullptr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001828 ImageDumper* state = reinterpret_cast<ImageDumper*>(arg);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001829 if (!state->InDumpSpace(obj)) {
1830 return;
1831 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07001832
1833 size_t object_bytes = obj->SizeOf();
1834 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1835 state->stats_.object_bytes += object_bytes;
1836 state->stats_.alignment_bytes += alignment_bytes;
1837
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001838 std::ostream& os = state->vios_.Stream();
1839
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001840 mirror::Class* obj_class = obj->GetClass();
Ian Rogersd5b32602012-02-26 16:40:04 -08001841 if (obj_class->IsArrayClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001842 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1843 obj->AsArray()->GetLength());
Ian Rogersd5b32602012-02-26 16:40:04 -08001844 } else if (obj->IsClass()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001845 mirror::Class* klass = obj->AsClass();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001846 os << StringPrintf("%p: java.lang.Class \"%s\" (", obj, PrettyDescriptor(klass).c_str())
1847 << klass->GetStatus() << ")\n";
Ian Rogersd5b32602012-02-26 16:40:04 -08001848 } else if (obj_class->IsStringClass()) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001849 os << StringPrintf("%p: java.lang.String %s\n", obj,
Ian Rogers68b56852014-08-29 20:19:11 -07001850 PrintableString(obj->AsString()->ToModifiedUtf8().c_str()).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001851 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001852 os << StringPrintf("%p: %s\n", obj, PrettyDescriptor(obj_class).c_str());
Ian Rogersd5b32602012-02-26 16:40:04 -08001853 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001854 ScopedIndentation indent1(&state->vios_);
1855 DumpFields(os, obj, obj_class);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001856 const auto image_pointer_size =
1857 InstructionSetPointerSize(state->oat_dumper_->GetOatInstructionSet());
Ian Rogersd5b32602012-02-26 16:40:04 -08001858 if (obj->IsObjectArray()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001859 auto* obj_array = obj->AsObjectArray<mirror::Object>();
1860 for (int32_t i = 0, length = obj_array->GetLength(); i < length; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001861 mirror::Object* value = obj_array->Get(i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001862 size_t run = 0;
1863 for (int32_t j = i + 1; j < length; j++) {
1864 if (value == obj_array->Get(j)) {
1865 run++;
1866 } else {
1867 break;
1868 }
1869 }
1870 if (run == 0) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001871 os << StringPrintf("%d: ", i);
Ian Rogersd5b32602012-02-26 16:40:04 -08001872 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001873 os << StringPrintf("%d to %zd: ", i, i + run);
Ian Rogersd5b32602012-02-26 16:40:04 -08001874 i = i + run;
1875 }
Brian Carlstrom2ec65202014-03-03 15:16:37 -08001876 mirror::Class* value_class =
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001877 (value == nullptr) ? obj_class->GetComponentType() : value->GetClass();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001878 PrettyObjectValue(os, value_class, value);
Ian Rogersd5b32602012-02-26 16:40:04 -08001879 }
1880 } else if (obj->IsClass()) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001881 mirror::Class* klass = obj->AsClass();
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001882 if (klass->NumStaticFields() != 0) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001883 os << "STATICS:\n";
1884 ScopedIndentation indent2(&state->vios_);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07001885 for (ArtField& field : klass->GetSFields()) {
1886 PrintField(os, &field, field.GetDeclaringClass());
Ian Rogersd5b32602012-02-26 16:40:04 -08001887 }
1888 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001889 } else {
Vladimir Marko05792b92015-08-03 11:56:49 +01001890 auto it = state->dex_caches_.find(obj);
1891 if (it != state->dex_caches_.end()) {
1892 auto* dex_cache = down_cast<mirror::DexCache*>(obj);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001893 const auto& field_section = state->image_header_.GetImageSection(
1894 ImageHeader::kSectionArtFields);
1895 const auto& method_section = state->image_header_.GetMethodsSection();
Vladimir Marko05792b92015-08-03 11:56:49 +01001896 size_t num_methods = dex_cache->NumResolvedMethods();
1897 if (num_methods != 0u) {
1898 os << "Methods (size=" << num_methods << "):";
1899 ScopedIndentation indent2(&state->vios_);
1900 auto* resolved_methods = dex_cache->GetResolvedMethods();
1901 for (size_t i = 0, length = dex_cache->NumResolvedMethods(); i < length; ++i) {
1902 auto* elem = mirror::DexCache::GetElementPtrSize(resolved_methods, i, image_pointer_size);
1903 size_t run = 0;
1904 for (size_t j = i + 1;
1905 j != length && elem == mirror::DexCache::GetElementPtrSize(resolved_methods,
1906 j,
1907 image_pointer_size);
1908 ++j, ++run) {}
1909 if (run == 0) {
1910 os << StringPrintf("%zd: ", i);
1911 } else {
1912 os << StringPrintf("%zd to %zd: ", i, i + run);
1913 i = i + run;
1914 }
1915 std::string msg;
1916 if (elem == nullptr) {
1917 msg = "null";
1918 } else if (method_section.Contains(
1919 reinterpret_cast<uint8_t*>(elem) - state->image_space_.Begin())) {
1920 msg = PrettyMethod(reinterpret_cast<ArtMethod*>(elem));
1921 } else {
1922 msg = "<not in method section>";
1923 }
1924 os << StringPrintf("%p %s\n", elem, msg.c_str());
Ian Rogers0d2d3782012-04-10 11:09:18 -07001925 }
Vladimir Marko05792b92015-08-03 11:56:49 +01001926 }
1927 size_t num_fields = dex_cache->NumResolvedFields();
1928 if (num_fields != 0u) {
1929 os << "Fields (size=" << num_fields << "):";
1930 ScopedIndentation indent2(&state->vios_);
1931 auto* resolved_fields = dex_cache->GetResolvedFields();
1932 for (size_t i = 0, length = dex_cache->NumResolvedFields(); i < length; ++i) {
1933 auto* elem = mirror::DexCache::GetElementPtrSize(resolved_fields, i, image_pointer_size);
1934 size_t run = 0;
1935 for (size_t j = i + 1;
1936 j != length && elem == mirror::DexCache::GetElementPtrSize(resolved_fields,
1937 j,
1938 image_pointer_size);
1939 ++j, ++run) {}
1940 if (run == 0) {
1941 os << StringPrintf("%zd: ", i);
1942 } else {
1943 os << StringPrintf("%zd to %zd: ", i, i + run);
1944 i = i + run;
1945 }
1946 std::string msg;
1947 if (elem == nullptr) {
1948 msg = "null";
1949 } else if (field_section.Contains(
1950 reinterpret_cast<uint8_t*>(elem) - state->image_space_.Begin())) {
1951 msg = PrettyField(reinterpret_cast<ArtField*>(elem));
1952 } else {
1953 msg = "<not in field section>";
1954 }
1955 os << StringPrintf("%p %s\n", elem, msg.c_str());
Mathieu Chartiere401d142015-04-22 13:56:20 -07001956 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001957 }
Brian Carlstrom78128a62011-09-15 17:21:19 -07001958 }
1959 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001960 std::string temp;
1961 state->stats_.Update(obj_class->GetDescriptor(&temp), object_bytes);
Brian Carlstrom78128a62011-09-15 17:21:19 -07001962 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001963
Mathieu Chartiere401d142015-04-22 13:56:20 -07001964 void DumpMethod(ArtMethod* method, ImageDumper* state, std::ostream& indent_os)
Mathieu Chartier90443472015-07-16 20:32:27 -07001965 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001966 DCHECK(method != nullptr);
1967 const auto image_pointer_size =
1968 InstructionSetPointerSize(state->oat_dumper_->GetOatInstructionSet());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +01001969 const void* quick_oat_code_begin = state->GetQuickOatCodeBegin(method);
1970 const void* quick_oat_code_end = state->GetQuickOatCodeEnd(method);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01001971 OatQuickMethodHeader* method_header = reinterpret_cast<OatQuickMethodHeader*>(
1972 reinterpret_cast<uintptr_t>(quick_oat_code_begin) - sizeof(OatQuickMethodHeader));
Mathieu Chartiere401d142015-04-22 13:56:20 -07001973 if (method->IsNative()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01001974 if (!Runtime::Current()->GetClassLinker()->IsQuickGenericJniStub(quick_oat_code_begin)) {
1975 DCHECK(method_header->GetNativeGcMap() == nullptr) << PrettyMethod(method);
1976 DCHECK(method_header->GetMappingTable() == nullptr) << PrettyMethod(method);
1977 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001978 bool first_occurrence;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001979 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +01001980 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001981 if (first_occurrence) {
1982 state->stats_.native_to_managed_code_bytes += quick_oat_code_size;
1983 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +01001984 if (quick_oat_code_begin !=
1985 method->GetEntryPointFromQuickCompiledCodePtrSize(image_pointer_size)) {
1986 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code_begin);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001987 }
1988 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() ||
1989 method->IsResolutionMethod() || method->IsImtConflictMethod() ||
1990 method->IsImtUnimplementedMethod() || method->IsClassInitializer()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001991 } else {
1992 const DexFile::CodeItem* code_item = method->GetCodeItem();
1993 size_t dex_instruction_bytes = code_item->insns_size_in_code_units_ * 2;
1994 state->stats_.dex_instruction_bytes += dex_instruction_bytes;
1995
1996 bool first_occurrence;
1997 size_t gc_map_bytes = state->ComputeOatSize(
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01001998 method_header->GetNativeGcMap(), &first_occurrence);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001999 if (first_occurrence) {
2000 state->stats_.gc_map_bytes += gc_map_bytes;
2001 }
2002
2003 size_t pc_mapping_table_bytes = state->ComputeOatSize(
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01002004 method_header->GetMappingTable(), &first_occurrence);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002005 if (first_occurrence) {
2006 state->stats_.pc_mapping_table_bytes += pc_mapping_table_bytes;
2007 }
2008
Roland Levillain6d7f1792015-07-02 10:59:15 +01002009 size_t vmap_table_bytes = 0u;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01002010 if (!method_header->IsOptimized()) {
Roland Levillain6d7f1792015-07-02 10:59:15 +01002011 // Method compiled with the optimizing compiler have no vmap table.
2012 vmap_table_bytes = state->ComputeOatSize(
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01002013 method_header->GetVmapTable(), &first_occurrence);
Roland Levillain6d7f1792015-07-02 10:59:15 +01002014 if (first_occurrence) {
2015 state->stats_.vmap_table_bytes += vmap_table_bytes;
2016 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07002017 }
2018
Mathieu Chartiere401d142015-04-22 13:56:20 -07002019 uint32_t quick_oat_code_size = state->GetQuickOatCodeSize(method);
2020 state->ComputeOatSize(quick_oat_code_begin, &first_occurrence);
2021 if (first_occurrence) {
2022 state->stats_.managed_code_bytes += quick_oat_code_size;
2023 if (method->IsConstructor()) {
2024 if (method->IsStatic()) {
2025 state->stats_.class_initializer_code_bytes += quick_oat_code_size;
2026 } else if (dex_instruction_bytes > kLargeConstructorDexBytes) {
2027 state->stats_.large_initializer_code_bytes += quick_oat_code_size;
2028 }
2029 } else if (dex_instruction_bytes > kLargeMethodDexBytes) {
2030 state->stats_.large_method_code_bytes += quick_oat_code_size;
2031 }
2032 }
2033 state->stats_.managed_code_bytes_ignoring_deduplication += quick_oat_code_size;
2034
Igor Murashkin7617abd2015-07-10 18:27:47 -07002035 uint32_t method_access_flags = method->GetAccessFlags();
2036
Mathieu Chartiere401d142015-04-22 13:56:20 -07002037 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
Igor Murashkin7617abd2015-07-10 18:27:47 -07002038 indent_os << StringPrintf("SIZE: Dex Instructions=%zd GC=%zd Mapping=%zd AccessFlags=0x%x\n",
2039 dex_instruction_bytes, gc_map_bytes, pc_mapping_table_bytes,
2040 method_access_flags);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002041
2042 size_t total_size = dex_instruction_bytes + gc_map_bytes + pc_mapping_table_bytes +
Vladimir Marko14632852015-08-17 12:07:23 +01002043 vmap_table_bytes + quick_oat_code_size + ArtMethod::Size(image_pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002044
2045 double expansion =
2046 static_cast<double>(quick_oat_code_size) / static_cast<double>(dex_instruction_bytes);
2047 state->stats_.ComputeOutliers(total_size, expansion, method);
2048 }
2049 }
2050
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002051 std::set<const void*> already_seen_;
2052 // Compute the size of the given data within the oat file and whether this is the first time
2053 // this data has been requested
Elliott Hughesa0e18062012-04-13 15:59:59 -07002054 size_t ComputeOatSize(const void* oat_data, bool* first_occurrence) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002055 if (already_seen_.count(oat_data) == 0) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002056 *first_occurrence = true;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002057 already_seen_.insert(oat_data);
2058 } else {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002059 *first_occurrence = false;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002060 }
2061 return oat_dumper_->ComputeSize(oat_data);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002062 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002063
2064 public:
2065 struct Stats {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002066 size_t oat_file_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002067 size_t file_bytes;
2068
2069 size_t header_bytes;
2070 size_t object_bytes;
Mathieu Chartiere401d142015-04-22 13:56:20 -07002071 size_t art_field_bytes;
2072 size_t art_method_bytes;
Vladimir Marko05792b92015-08-03 11:56:49 +01002073 size_t dex_cache_arrays_bytes;
Mathieu Chartierd39645e2015-06-09 17:50:29 -07002074 size_t interned_strings_bytes;
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002075 size_t class_table_bytes;
Mathieu Chartier32327092013-08-30 14:04:08 -07002076 size_t bitmap_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002077 size_t alignment_bytes;
2078
2079 size_t managed_code_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002080 size_t managed_code_bytes_ignoring_deduplication;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002081 size_t managed_to_native_code_bytes;
2082 size_t native_to_managed_code_bytes;
Ian Rogers0d2d3782012-04-10 11:09:18 -07002083 size_t class_initializer_code_bytes;
2084 size_t large_initializer_code_bytes;
2085 size_t large_method_code_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002086
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002087 size_t gc_map_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002088 size_t pc_mapping_table_bytes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002089 size_t vmap_table_bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002090
2091 size_t dex_instruction_bytes;
2092
Mathieu Chartiere401d142015-04-22 13:56:20 -07002093 std::vector<ArtMethod*> method_outlier;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002094 std::vector<size_t> method_outlier_size;
2095 std::vector<double> method_outlier_expansion;
Ian Rogers700a4022014-05-19 16:49:03 -07002096 std::vector<std::pair<std::string, size_t>> oat_dex_file_sizes;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002097
Roland Levillain3887c462015-08-12 18:15:42 +01002098 Stats()
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002099 : oat_file_bytes(0),
2100 file_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002101 header_bytes(0),
2102 object_bytes(0),
Mathieu Chartiere401d142015-04-22 13:56:20 -07002103 art_field_bytes(0),
2104 art_method_bytes(0),
Vladimir Marko05792b92015-08-03 11:56:49 +01002105 dex_cache_arrays_bytes(0),
Mathieu Chartierd39645e2015-06-09 17:50:29 -07002106 interned_strings_bytes(0),
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002107 class_table_bytes(0),
Mathieu Chartier32327092013-08-30 14:04:08 -07002108 bitmap_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002109 alignment_bytes(0),
2110 managed_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002111 managed_code_bytes_ignoring_deduplication(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002112 managed_to_native_code_bytes(0),
2113 native_to_managed_code_bytes(0),
Ian Rogers0d2d3782012-04-10 11:09:18 -07002114 class_initializer_code_bytes(0),
2115 large_initializer_code_bytes(0),
2116 large_method_code_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002117 gc_map_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002118 pc_mapping_table_bytes(0),
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002119 vmap_table_bytes(0),
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002120 dex_instruction_bytes(0) {}
2121
Elliott Hughesa0e18062012-04-13 15:59:59 -07002122 struct SizeAndCount {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002123 SizeAndCount(size_t bytes_in, size_t count_in) : bytes(bytes_in), count(count_in) {}
Elliott Hughesa0e18062012-04-13 15:59:59 -07002124 size_t bytes;
2125 size_t count;
2126 };
2127 typedef SafeMap<std::string, SizeAndCount> SizeAndCountTable;
2128 SizeAndCountTable sizes_and_counts;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002129
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002130 void Update(const char* descriptor, size_t object_bytes_in) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002131 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor);
2132 if (it != sizes_and_counts.end()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002133 it->second.bytes += object_bytes_in;
Elliott Hughesa0e18062012-04-13 15:59:59 -07002134 it->second.count += 1;
2135 } else {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002136 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes_in, 1));
Elliott Hughesa0e18062012-04-13 15:59:59 -07002137 }
2138 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002139
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002140 double PercentOfOatBytes(size_t size) {
2141 return (static_cast<double>(size) / static_cast<double>(oat_file_bytes)) * 100;
2142 }
2143
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002144 double PercentOfFileBytes(size_t size) {
2145 return (static_cast<double>(size) / static_cast<double>(file_bytes)) * 100;
2146 }
2147
2148 double PercentOfObjectBytes(size_t size) {
2149 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
2150 }
2151
Mathieu Chartiere401d142015-04-22 13:56:20 -07002152 void ComputeOutliers(size_t total_size, double expansion, ArtMethod* method) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002153 method_outlier_size.push_back(total_size);
2154 method_outlier_expansion.push_back(expansion);
2155 method_outlier.push_back(method);
2156 }
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002157
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002158 void DumpOutliers(std::ostream& os)
Mathieu Chartier90443472015-07-16 20:32:27 -07002159 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002160 size_t sum_of_sizes = 0;
2161 size_t sum_of_sizes_squared = 0;
2162 size_t sum_of_expansion = 0;
2163 size_t sum_of_expansion_squared = 0;
2164 size_t n = method_outlier_size.size();
2165 for (size_t i = 0; i < n; i++) {
2166 size_t cur_size = method_outlier_size[i];
2167 sum_of_sizes += cur_size;
2168 sum_of_sizes_squared += cur_size * cur_size;
2169 double cur_expansion = method_outlier_expansion[i];
2170 sum_of_expansion += cur_expansion;
2171 sum_of_expansion_squared += cur_expansion * cur_expansion;
2172 }
2173 size_t size_mean = sum_of_sizes / n;
2174 size_t size_variance = (sum_of_sizes_squared - sum_of_sizes * size_mean) / (n - 1);
2175 double expansion_mean = sum_of_expansion / n;
2176 double expansion_variance =
2177 (sum_of_expansion_squared - sum_of_expansion * expansion_mean) / (n - 1);
2178
2179 // Dump methods whose size is a certain number of standard deviations from the mean
2180 size_t dumped_values = 0;
2181 size_t skipped_values = 0;
2182 for (size_t i = 100; i > 0; i--) { // i is the current number of standard deviations
2183 size_t cur_size_variance = i * i * size_variance;
2184 bool first = true;
2185 for (size_t j = 0; j < n; j++) {
2186 size_t cur_size = method_outlier_size[j];
2187 if (cur_size > size_mean) {
2188 size_t cur_var = cur_size - size_mean;
2189 cur_var = cur_var * cur_var;
2190 if (cur_var > cur_size_variance) {
2191 if (dumped_values > 20) {
2192 if (i == 1) {
2193 skipped_values++;
2194 } else {
2195 i = 2; // jump to counting for 1 standard deviation
2196 break;
2197 }
2198 } else {
2199 if (first) {
Elliott Hughesc073b072012-05-24 19:29:17 -07002200 os << "\nBig methods (size > " << i << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002201 first = false;
2202 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002203 os << PrettyMethod(method_outlier[j]) << " requires storage of "
Elliott Hughesc073b072012-05-24 19:29:17 -07002204 << PrettySize(cur_size) << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002205 method_outlier_size[j] = 0; // don't consider this method again
2206 dumped_values++;
2207 }
2208 }
2209 }
2210 }
2211 }
2212 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002213 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07002214 << " methods with size > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002215 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002216 os << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002217
2218 // Dump methods whose expansion is a certain number of standard deviations from the mean
2219 dumped_values = 0;
2220 skipped_values = 0;
2221 for (size_t i = 10; i > 0; i--) { // i is the current number of standard deviations
2222 double cur_expansion_variance = i * i * expansion_variance;
2223 bool first = true;
2224 for (size_t j = 0; j < n; j++) {
2225 double cur_expansion = method_outlier_expansion[j];
2226 if (cur_expansion > expansion_mean) {
2227 size_t cur_var = cur_expansion - expansion_mean;
2228 cur_var = cur_var * cur_var;
2229 if (cur_var > cur_expansion_variance) {
2230 if (dumped_values > 20) {
2231 if (i == 1) {
2232 skipped_values++;
2233 } else {
2234 i = 2; // jump to counting for 1 standard deviation
2235 break;
2236 }
2237 } else {
2238 if (first) {
2239 os << "\nLarge expansion methods (size > " << i
Elliott Hughesc073b072012-05-24 19:29:17 -07002240 << " standard deviations the norm):\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002241 first = false;
2242 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002243 os << PrettyMethod(method_outlier[j]) << " expanded code by "
Elliott Hughesc073b072012-05-24 19:29:17 -07002244 << cur_expansion << "\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002245 method_outlier_expansion[j] = 0.0; // don't consider this method again
2246 dumped_values++;
2247 }
2248 }
2249 }
2250 }
2251 }
2252 if (skipped_values > 0) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002253 os << "... skipped " << skipped_values
Elliott Hughesc073b072012-05-24 19:29:17 -07002254 << " methods with expansion > 1 standard deviation from the norm\n";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002255 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002256 os << "\n" << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002257 }
2258
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01002259 void Dump(std::ostream& os, std::ostream& indent_os)
Mathieu Chartier90443472015-07-16 20:32:27 -07002260 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002261 {
2262 os << "art_file_bytes = " << PrettySize(file_bytes) << "\n\n"
2263 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
Vladimir Marko05792b92015-08-03 11:56:49 +01002264 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
2265 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
2266 "art_field_bytes = %8zd (%2.0f%% of art file bytes)\n"
2267 "art_method_bytes = %8zd (%2.0f%% of art file bytes)\n"
2268 "dex_cache_arrays_bytes = %8zd (%2.0f%% of art file bytes)\n"
2269 "interned_string_bytes = %8zd (%2.0f%% of art file bytes)\n"
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002270 "class_table_bytes = %8zd (%2.0f%% of art file bytes)\n"
Vladimir Marko05792b92015-08-03 11:56:49 +01002271 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
2272 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002273 header_bytes, PercentOfFileBytes(header_bytes),
2274 object_bytes, PercentOfFileBytes(object_bytes),
Mathieu Chartiere401d142015-04-22 13:56:20 -07002275 art_field_bytes, PercentOfFileBytes(art_field_bytes),
2276 art_method_bytes, PercentOfFileBytes(art_method_bytes),
Vladimir Marko05792b92015-08-03 11:56:49 +01002277 dex_cache_arrays_bytes,
2278 PercentOfFileBytes(dex_cache_arrays_bytes),
Mathieu Chartierd39645e2015-06-09 17:50:29 -07002279 interned_strings_bytes,
2280 PercentOfFileBytes(interned_strings_bytes),
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002281 class_table_bytes, PercentOfFileBytes(class_table_bytes),
Mathieu Chartier32327092013-08-30 14:04:08 -07002282 bitmap_bytes, PercentOfFileBytes(bitmap_bytes),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002283 alignment_bytes, PercentOfFileBytes(alignment_bytes))
2284 << std::flush;
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08002285 CHECK_EQ(file_bytes,
2286 header_bytes + object_bytes + art_field_bytes + art_method_bytes +
2287 dex_cache_arrays_bytes + interned_strings_bytes + class_table_bytes +
2288 bitmap_bytes + alignment_bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002289 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002290
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002291 os << "object_bytes breakdown:\n";
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002292 size_t object_bytes_total = 0;
Mathieu Chartier02e25112013-08-14 16:14:24 -07002293 for (const auto& sizes_and_count : sizes_and_counts) {
2294 const std::string& descriptor(sizes_and_count.first);
2295 double average = static_cast<double>(sizes_and_count.second.bytes) /
2296 static_cast<double>(sizes_and_count.second.count);
2297 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002298 os << StringPrintf("%32s %8zd bytes %6zd instances "
Elliott Hughesa0e18062012-04-13 15:59:59 -07002299 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07002300 descriptor.c_str(), sizes_and_count.second.bytes,
2301 sizes_and_count.second.count, average, percent);
2302 object_bytes_total += sizes_and_count.second.bytes;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002303 }
Elliott Hughesc073b072012-05-24 19:29:17 -07002304 os << "\n" << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002305 CHECK_EQ(object_bytes, object_bytes_total);
2306
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002307 os << StringPrintf("oat_file_bytes = %8zd\n"
2308 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2309 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2310 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
2311 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2312 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2313 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07002314 oat_file_bytes,
Brian Carlstrom2ec65202014-03-03 15:16:37 -08002315 managed_code_bytes,
2316 PercentOfOatBytes(managed_code_bytes),
2317 managed_to_native_code_bytes,
2318 PercentOfOatBytes(managed_to_native_code_bytes),
2319 native_to_managed_code_bytes,
2320 PercentOfOatBytes(native_to_managed_code_bytes),
2321 class_initializer_code_bytes,
2322 PercentOfOatBytes(class_initializer_code_bytes),
2323 large_initializer_code_bytes,
2324 PercentOfOatBytes(large_initializer_code_bytes),
2325 large_method_code_bytes,
2326 PercentOfOatBytes(large_method_code_bytes))
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002327 << "DexFile sizes:\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -07002328 for (const std::pair<std::string, size_t>& oat_dex_file_size : oat_dex_file_sizes) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002329 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
Mathieu Chartier02e25112013-08-14 16:14:24 -07002330 oat_dex_file_size.first.c_str(), oat_dex_file_size.second,
2331 PercentOfOatBytes(oat_dex_file_size.second));
Ian Rogers05f28c62012-10-23 18:12:13 -07002332 }
2333
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002334 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
2335 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
2336 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
Ian Rogers05f28c62012-10-23 18:12:13 -07002337 gc_map_bytes, PercentOfOatBytes(gc_map_bytes),
2338 pc_mapping_table_bytes, PercentOfOatBytes(pc_mapping_table_bytes),
2339 vmap_table_bytes, PercentOfOatBytes(vmap_table_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07002340 << std::flush;
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002341
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002342 os << StringPrintf("dex_instruction_bytes = %zd\n", dex_instruction_bytes)
2343 << StringPrintf("managed_code_bytes expansion = %.2f (ignoring deduplication %.2f)\n\n",
Brian Carlstrom2ec65202014-03-03 15:16:37 -08002344 static_cast<double>(managed_code_bytes) /
2345 static_cast<double>(dex_instruction_bytes),
Elliott Hughesc073b072012-05-24 19:29:17 -07002346 static_cast<double>(managed_code_bytes_ignoring_deduplication) /
Elliott Hughescf44e6f2012-05-24 19:42:18 -07002347 static_cast<double>(dex_instruction_bytes))
Elliott Hughesc073b072012-05-24 19:29:17 -07002348 << std::flush;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002349
2350 DumpOutliers(os);
Brian Carlstrom916e74e2011-09-23 11:42:01 -07002351 }
2352 } stats_;
2353
2354 private:
Ian Rogers0d2d3782012-04-10 11:09:18 -07002355 enum {
2356 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
2357 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
2358 kLargeConstructorDexBytes = 4000,
2359 // Number of bytes for a method to be considered large. Based on the 4000 basic block
2360 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
2361 kLargeMethodDexBytes = 16000
2362 };
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01002363
2364 // For performance, use the *os_ directly for anything that doesn't need indentation
2365 // and prepare an indentation stream with default indentation 1.
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002366 std::ostream* os_;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01002367 VariableIndentationOutputStream vios_;
2368 ScopedIndentation indent1_;
2369
Ian Rogers1d54e732013-05-02 21:10:01 -07002370 gc::space::ImageSpace& image_space_;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002371 const ImageHeader& image_header_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07002372 std::unique_ptr<OatDumper> oat_dumper_;
Andreas Gampedf2bb1f2015-05-04 18:25:23 -07002373 OatDumperOptions* oat_dumper_options_;
Vladimir Marko05792b92015-08-03 11:56:49 +01002374 std::set<mirror::Object*> dex_caches_;
Elliott Hughesd1bb4f62011-09-23 14:09:45 -07002375
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08002376 DISALLOW_COPY_AND_ASSIGN(ImageDumper);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002377};
2378
Andreas Gampe00b25f32014-09-17 21:49:05 -07002379static int DumpImage(Runtime* runtime, const char* image_location, OatDumperOptions* options,
2380 std::ostream* os) {
2381 // Dumping the image, no explicit class loader.
2382 NullHandle<mirror::ClassLoader> null_class_loader;
2383 options->class_loader_ = &null_class_loader;
2384
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002385 ScopedObjectAccess soa(Thread::Current());
Andreas Gampe00b25f32014-09-17 21:49:05 -07002386 gc::Heap* heap = runtime->GetHeap();
Mathieu Chartier073b16c2015-11-10 14:13:23 -08002387 gc::space::ImageSpace* image_space = heap->GetBootImageSpace();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002388 CHECK(image_space != nullptr);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002389 const ImageHeader& image_header = image_space->GetImageHeader();
2390 if (!image_header.IsValid()) {
Brian Carlstrom0f5baa02014-05-22 11:54:18 -07002391 fprintf(stderr, "Invalid image header %s\n", image_location);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002392 return EXIT_FAILURE;
2393 }
Igor Murashkin37743352014-11-13 14:38:00 -08002394
Andreas Gampe00b25f32014-09-17 21:49:05 -07002395 ImageDumper image_dumper(os, *image_space, image_header, options);
Igor Murashkin37743352014-11-13 14:38:00 -08002396
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07002397 bool success = image_dumper.Dump();
2398 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
Brian Carlstrom78128a62011-09-15 17:21:19 -07002399}
2400
Andreas Gampe00b25f32014-09-17 21:49:05 -07002401static int DumpOatWithRuntime(Runtime* runtime, OatFile* oat_file, OatDumperOptions* options,
2402 std::ostream* os) {
2403 CHECK(runtime != nullptr && oat_file != nullptr && options != nullptr);
2404
2405 Thread* self = Thread::Current();
2406 CHECK(self != nullptr);
2407 // Need well-known-classes.
2408 WellKnownClasses::Init(self->GetJniEnv());
2409
2410 // Need to register dex files to get a working dex cache.
2411 ScopedObjectAccess soa(self);
2412 ClassLinker* class_linker = runtime->GetClassLinker();
Mathieu Chartierd57d4542015-10-14 10:55:30 -07002413 runtime->GetOatFileManager().RegisterOatFile(std::unique_ptr<const OatFile>(oat_file));
Mathieu Chartierac8f4392015-08-27 13:54:20 -07002414 std::vector<const DexFile*> class_path;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002415 for (const OatFile::OatDexFile* odf : oat_file->GetOatDexFiles()) {
2416 std::string error_msg;
Mathieu Chartierac8f4392015-08-27 13:54:20 -07002417 const DexFile* const dex_file = OpenDexFile(odf, &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002418 CHECK(dex_file != nullptr) << error_msg;
Mathieu Chartierd57d4542015-10-14 10:55:30 -07002419 class_linker->RegisterDexFile(*dex_file, runtime->GetLinearAlloc());
Mathieu Chartierac8f4392015-08-27 13:54:20 -07002420 class_path.push_back(dex_file);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002421 }
2422
2423 // Need a class loader.
Andreas Gampe00b25f32014-09-17 21:49:05 -07002424 // Fake that we're a compiler.
Mathieu Chartierd37d3642015-11-19 16:05:58 -08002425 jobject class_loader = class_linker->CreatePathClassLoader(self, class_path, /*parent*/nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002426
2427 // Use the class loader while dumping.
2428 StackHandleScope<1> scope(self);
2429 Handle<mirror::ClassLoader> loader_handle = scope.NewHandle(
2430 soa.Decode<mirror::ClassLoader*>(class_loader));
2431 options->class_loader_ = &loader_handle;
2432
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002433 OatDumper oat_dumper(*oat_file, *options);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002434 bool success = oat_dumper.Dump(*os);
2435 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
2436}
2437
2438static int DumpOatWithoutRuntime(OatFile* oat_file, OatDumperOptions* options, std::ostream* os) {
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002439 CHECK(oat_file != nullptr && options != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002440 // No image = no class loader.
2441 NullHandle<mirror::ClassLoader> null_class_loader;
2442 options->class_loader_ = &null_class_loader;
2443
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002444 OatDumper oat_dumper(*oat_file, *options);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002445 bool success = oat_dumper.Dump(*os);
2446 return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
2447}
2448
2449static int DumpOat(Runtime* runtime, const char* oat_filename, OatDumperOptions* options,
2450 std::ostream* os) {
2451 std::string error_msg;
Igor Murashkin37743352014-11-13 14:38:00 -08002452 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, nullptr, nullptr, false,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07002453 nullptr, &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002454 if (oat_file == nullptr) {
2455 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
2456 return EXIT_FAILURE;
2457 }
2458
2459 if (runtime != nullptr) {
2460 return DumpOatWithRuntime(runtime, oat_file, options, os);
2461 } else {
2462 return DumpOatWithoutRuntime(oat_file, options, os);
2463 }
2464}
2465
2466static int SymbolizeOat(const char* oat_filename, std::string& output_name) {
2467 std::string error_msg;
Igor Murashkin37743352014-11-13 14:38:00 -08002468 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, nullptr, nullptr, false,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07002469 nullptr, &error_msg);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002470 if (oat_file == nullptr) {
2471 fprintf(stderr, "Failed to open oat file from '%s': %s\n", oat_filename, error_msg.c_str());
2472 return EXIT_FAILURE;
2473 }
2474
2475 OatSymbolizer oat_symbolizer(oat_file, output_name);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002476 if (!oat_symbolizer.Symbolize()) {
2477 fprintf(stderr, "Failed to symbolize\n");
2478 return EXIT_FAILURE;
2479 }
2480
2481 return EXIT_SUCCESS;
2482}
2483
Igor Murashkin37743352014-11-13 14:38:00 -08002484struct OatdumpArgs : public CmdlineArgs {
2485 protected:
2486 using Base = CmdlineArgs;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002487
Igor Murashkin37743352014-11-13 14:38:00 -08002488 virtual ParseStatus ParseCustom(const StringPiece& option,
2489 std::string* error_msg) OVERRIDE {
2490 {
2491 ParseStatus base_parse = Base::ParseCustom(option, error_msg);
2492 if (base_parse != kParseUnknownArgument) {
2493 return base_parse;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002494 }
2495 }
2496
Igor Murashkin37743352014-11-13 14:38:00 -08002497 if (option.starts_with("--oat-file=")) {
2498 oat_filename_ = option.substr(strlen("--oat-file=")).data();
2499 } else if (option.starts_with("--image=")) {
2500 image_location_ = option.substr(strlen("--image=")).data();
2501 } else if (option =="--dump:raw_mapping_table") {
2502 dump_raw_mapping_table_ = true;
2503 } else if (option == "--dump:raw_gc_map") {
2504 dump_raw_gc_map_ = true;
2505 } else if (option == "--no-dump:vmap") {
2506 dump_vmap_ = false;
Roland Levillainf2650d12015-05-28 14:53:28 +01002507 } else if (option =="--dump:code_info_stack_maps") {
2508 dump_code_info_stack_maps_ = true;
Igor Murashkin37743352014-11-13 14:38:00 -08002509 } else if (option == "--no-disassemble") {
2510 disassemble_code_ = false;
2511 } else if (option.starts_with("--symbolize=")) {
2512 oat_filename_ = option.substr(strlen("--symbolize=")).data();
2513 symbolize_ = true;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002514 } else if (option.starts_with("--class-filter=")) {
2515 class_filter_ = option.substr(strlen("--class-filter=")).data();
Igor Murashkin37743352014-11-13 14:38:00 -08002516 } else if (option.starts_with("--method-filter=")) {
2517 method_filter_ = option.substr(strlen("--method-filter=")).data();
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002518 } else if (option.starts_with("--list-classes")) {
2519 list_classes_ = true;
2520 } else if (option.starts_with("--list-methods")) {
2521 list_methods_ = true;
2522 } else if (option.starts_with("--export-dex-to=")) {
2523 export_dex_location_ = option.substr(strlen("--export-dex-to=")).data();
2524 } else if (option.starts_with("--addr2instr=")) {
2525 if (!ParseUint(option.substr(strlen("--addr2instr=")).data(), &addr2instr_)) {
2526 *error_msg = "Address conversion failed";
2527 return kParseError;
2528 }
Igor Murashkin37743352014-11-13 14:38:00 -08002529 } else {
2530 return kParseUnknownArgument;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002531 }
2532
Igor Murashkin37743352014-11-13 14:38:00 -08002533 return kParseOk;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002534 }
2535
Igor Murashkin37743352014-11-13 14:38:00 -08002536 virtual ParseStatus ParseChecks(std::string* error_msg) OVERRIDE {
2537 // Infer boot image location from the image location if possible.
2538 if (boot_image_location_ == nullptr) {
2539 boot_image_location_ = image_location_;
2540 }
2541
2542 // Perform the parent checks.
2543 ParseStatus parent_checks = Base::ParseChecks(error_msg);
2544 if (parent_checks != kParseOk) {
2545 return parent_checks;
2546 }
2547
2548 // Perform our own checks.
2549 if (image_location_ == nullptr && oat_filename_ == nullptr) {
2550 *error_msg = "Either --image or --oat-file must be specified";
2551 return kParseError;
2552 } else if (image_location_ != nullptr && oat_filename_ != nullptr) {
2553 *error_msg = "Either --image or --oat-file must be specified but not both";
2554 return kParseError;
2555 }
2556
2557 return kParseOk;
2558 }
2559
2560 virtual std::string GetUsage() const {
2561 std::string usage;
2562
2563 usage +=
2564 "Usage: oatdump [options] ...\n"
2565 " Example: oatdump --image=$ANDROID_PRODUCT_OUT/system/framework/boot.art\n"
2566 " Example: adb shell oatdump --image=/system/framework/boot.art\n"
2567 "\n"
2568 // Either oat-file or image is required.
2569 " --oat-file=<file.oat>: specifies an input oat filename.\n"
2570 " Example: --oat-file=/system/framework/boot.oat\n"
2571 "\n"
2572 " --image=<file.art>: specifies an input image location.\n"
2573 " Example: --image=/system/framework/boot.art\n"
2574 "\n";
2575
2576 usage += Base::GetUsage();
2577
2578 usage += // Optional.
2579 " --dump:raw_mapping_table enables dumping of the mapping table.\n"
2580 " Example: --dump:raw_mapping_table\n"
2581 "\n"
Mathieu Chartier19510f02015-05-26 14:44:35 -07002582 " --dump:raw_gc_map enables dumping of the GC map.\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002583 " Example: --dump:raw_gc_map\n"
2584 "\n"
2585 " --no-dump:vmap may be used to disable vmap dumping.\n"
2586 " Example: --no-dump:vmap\n"
2587 "\n"
Roland Levillainf2650d12015-05-28 14:53:28 +01002588 " --dump:code_info_stack_maps enables dumping of stack maps in CodeInfo sections.\n"
2589 " Example: --dump:code_info_stack_maps\n"
2590 "\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002591 " --no-disassemble may be used to disable disassembly.\n"
2592 " Example: --no-disassemble\n"
2593 "\n"
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002594 " --list-classes may be used to list target file classes (can be used with filters).\n"
2595 " Example: --list-classes\n"
2596 " Example: --list-classes --class-filter=com.example.foo\n"
2597 "\n"
2598 " --list-methods may be used to list target file methods (can be used with filters).\n"
2599 " Example: --list-methods\n"
2600 " Example: --list-methods --class-filter=com.example --method-filter=foo\n"
2601 "\n"
2602 " --symbolize=<file.oat>: output a copy of file.oat with elf symbols included.\n"
2603 " Example: --symbolize=/system/framework/boot.oat\n"
2604 "\n"
2605 " --class-filter=<class name>: only dumps classes that contain the filter.\n"
2606 " Example: --class-filter=com.example.foo\n"
2607 "\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002608 " --method-filter=<method name>: only dumps methods that contain the filter.\n"
2609 " Example: --method-filter=foo\n"
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002610 "\n"
2611 " --export-dex-to=<directory>: may be used to export oat embedded dex files.\n"
2612 " Example: --export-dex-to=/data/local/tmp\n"
2613 "\n"
2614 " --addr2instr=<address>: output matching method disassembled code from relative\n"
2615 " address (e.g. PC from crash dump)\n"
2616 " Example: --addr2instr=0x00001a3b\n"
Igor Murashkin37743352014-11-13 14:38:00 -08002617 "\n";
2618
2619 return usage;
2620 }
2621
2622 public:
Andreas Gampe00b25f32014-09-17 21:49:05 -07002623 const char* oat_filename_ = nullptr;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002624 const char* class_filter_ = "";
Nicolas Geoffray3fcd2202014-11-12 18:02:36 +00002625 const char* method_filter_ = "";
Andreas Gampe00b25f32014-09-17 21:49:05 -07002626 const char* image_location_ = nullptr;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002627 std::string elf_filename_prefix_;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002628 bool dump_raw_mapping_table_ = false;
2629 bool dump_raw_gc_map_ = false;
2630 bool dump_vmap_ = true;
Roland Levillainf2650d12015-05-28 14:53:28 +01002631 bool dump_code_info_stack_maps_ = false;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002632 bool disassemble_code_ = true;
2633 bool symbolize_ = false;
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002634 bool list_classes_ = false;
2635 bool list_methods_ = false;
2636 uint32_t addr2instr_ = 0;
2637 const char* export_dex_location_ = nullptr;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002638};
2639
Igor Murashkin37743352014-11-13 14:38:00 -08002640struct OatdumpMain : public CmdlineMain<OatdumpArgs> {
2641 virtual bool NeedsRuntime() OVERRIDE {
2642 CHECK(args_ != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002643
Igor Murashkin37743352014-11-13 14:38:00 -08002644 // If we are only doing the oat file, disable absolute_addresses. Keep them for image dumping.
2645 bool absolute_addresses = (args_->oat_filename_ == nullptr);
2646
2647 oat_dumper_options_ = std::unique_ptr<OatDumperOptions>(new OatDumperOptions(
2648 args_->dump_raw_mapping_table_,
2649 args_->dump_raw_gc_map_,
2650 args_->dump_vmap_,
Roland Levillainf2650d12015-05-28 14:53:28 +01002651 args_->dump_code_info_stack_maps_,
Igor Murashkin37743352014-11-13 14:38:00 -08002652 args_->disassemble_code_,
2653 absolute_addresses,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002654 args_->class_filter_,
2655 args_->method_filter_,
2656 args_->list_classes_,
2657 args_->list_methods_,
2658 args_->export_dex_location_,
2659 args_->addr2instr_));
Igor Murashkin37743352014-11-13 14:38:00 -08002660
2661 return (args_->boot_image_location_ != nullptr || args_->image_location_ != nullptr) &&
2662 !args_->symbolize_;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002663 }
2664
Igor Murashkin37743352014-11-13 14:38:00 -08002665 virtual bool ExecuteWithoutRuntime() OVERRIDE {
2666 CHECK(args_ != nullptr);
Andreas Gampec24f3992014-12-17 20:40:11 -08002667 CHECK(args_->oat_filename_ != nullptr);
Andreas Gampe00b25f32014-09-17 21:49:05 -07002668
Mathieu Chartierd424d082014-10-15 10:31:46 -07002669 MemMap::Init();
Igor Murashkin37743352014-11-13 14:38:00 -08002670
Andreas Gampec24f3992014-12-17 20:40:11 -08002671 if (args_->symbolize_) {
2672 return SymbolizeOat(args_->oat_filename_, args_->output_name_) == EXIT_SUCCESS;
2673 } else {
2674 return DumpOat(nullptr,
2675 args_->oat_filename_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002676 oat_dumper_options_.get(),
Andreas Gampec24f3992014-12-17 20:40:11 -08002677 args_->os_) == EXIT_SUCCESS;
2678 }
Andreas Gampe00b25f32014-09-17 21:49:05 -07002679 }
2680
Igor Murashkin37743352014-11-13 14:38:00 -08002681 virtual bool ExecuteWithRuntime(Runtime* runtime) {
2682 CHECK(args_ != nullptr);
2683
2684 if (args_->oat_filename_ != nullptr) {
2685 return DumpOat(runtime,
2686 args_->oat_filename_,
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002687 oat_dumper_options_.get(),
Igor Murashkin37743352014-11-13 14:38:00 -08002688 args_->os_) == EXIT_SUCCESS;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002689 }
Igor Murashkin37743352014-11-13 14:38:00 -08002690
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -08002691 return DumpImage(runtime, args_->image_location_, oat_dumper_options_.get(), args_->os_)
Igor Murashkin37743352014-11-13 14:38:00 -08002692 == EXIT_SUCCESS;
Andreas Gampe00b25f32014-09-17 21:49:05 -07002693 }
2694
Igor Murashkin37743352014-11-13 14:38:00 -08002695 std::unique_ptr<OatDumperOptions> oat_dumper_options_;
2696};
Andreas Gampe00b25f32014-09-17 21:49:05 -07002697
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002698} // namespace art
Brian Carlstrom78128a62011-09-15 17:21:19 -07002699
2700int main(int argc, char** argv) {
Igor Murashkin37743352014-11-13 14:38:00 -08002701 art::OatdumpMain main;
2702 return main.Main(argc, argv);
Brian Carlstrom78128a62011-09-15 17:21:19 -07002703}